/* =========================
   BASE
========================= */
body {
    background: #f6f7f9;
}

.content {
    padding: 60px 0;
}

.section {
    padding: 70px 0;
}

h1, h2, h3 {
    color: #111827;
}

p {
    color: #4b5563;
    line-height: 1.7;
}

/* =========================
   HERO LOCAL
========================= */
.hero-local {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: #fff;
    padding: 90px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 24px;
    max-width: 520px;
}

.hero-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0,0,0,.25);
}

/* =========================
   ABOUT
========================= */
.two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.two-cols img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,.1);
}

/* =========================
   FEATURES
========================= */
.features {
    background: #f3f4f6;
}

.features-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.feature-card {
    background: #fff;
    border-radius: 18px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
    transition: transform .25s ease, box-shadow .25s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,.12);
}

.feature-card img {
    width: 100%;
    height: 140px;
    object-fit: contain;
    margin-bottom: 12px;
}

/* =========================
   AUDIENCE
========================= */
.audience-list {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    list-style: none;
}

.audience-list li {
    background: #fff;
    padding: 14px 16px;
    border-radius: 12px;
    font-weight: 500;
    box-shadow: 0 6px 16px rgba(0,0,0,.06);
}

/* =========================
   BENEFITS
========================= */
.benefits {
    background: #ffffff;
    text-align: center;
}

.price-local {
    margin-top: 16px;
    font-size: 22px;
    color: #111827;
}

/* =========================
   CTA FINAL
========================= */
.cta {
    background: #111827;
    color: #fff;
    text-align: center;
}

.cta h2,
.cta p {
    color: #fff;
}

.cta-buttons {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    gap: 18px;
}

/* =========================
   BOTONES (HEREDA HEADER.CSS)
========================= */
.btn.primary {
    font-size: 16px;
    padding: 14px 26px;
}

.btn.secondary {
    font-size: 16px;
    padding: 14px 26px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
    .hero-grid,
    .two-cols {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 34px;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .feature-card img {
        height: 120px;
    }
}
