/* ============================================= */
/* ESTILOS PÁGINA "SUMA TU QUINCHO"              */
/* ============================================= */

/* Hero Section */
.sumar-hero {
    background: linear-gradient(rgba(17, 24, 39, 0.7), rgba(17, 24, 39, 0.7)), url('https://i.postimg.cc/m2YhQ2qD/outdoor-quincho-barbecue-area-with-people-enjoying.jpg') no-repeat center center/cover;
    padding: 6rem 1.5rem;
    text-align: center;
    color: var(--white);
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem auto;
    opacity: 0.9;
}

/* Estructura General de Secciones */
.page-section {
    padding: 5rem 1.5rem;
}
.section-gray {
    background-color: #f9fafb;
}
.section-container {
    max-width: 1100px;
    margin: 0 auto;
}
.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

/* Grilla de Beneficios */
.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    text-align: center;
}
.beneficio-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.beneficio-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}
.beneficio-card p {
    color: #6b7280;
}


/* Sección de Requisitos (2 columnas) */
.requisitos-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.requisitos-section .section-title {
    text-align: left;
}
.requisitos-texto ul {
    list-style: none;
    padding: 0;
}
.requisitos-texto li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: #374151;
}
.requisitos-img img {
    width: 70%;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}


/* Sección Final de CTA */
.cta-final-section {
    text-align: center;
    background-color: var(--secondary-color);
    color: var(--white);
}
.cta-final-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--white);
}
.cta-final-section p {
    max-width: 500px;
    margin: 0 auto 2rem auto;
    opacity: 0.9;
}
.btn-whatsapp-cta {
    
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* ---- VISTA MÓVIL ---- */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .page-section {
        padding: 3.5rem 1.5rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .requisitos-container {
        grid-template-columns: 1fr;
    }
    .requisitos-img {
        /* Se oculta en móvil para simplificar, o se puede poner arriba con order: -1 */
        display: none;
    }
    .requisitos-section .section-title {
        text-align: center;
    }
    .testimonio-card blockquote {
        font-size: 1.2rem;
    }
}