/*=========================
    GENERALES
=========================*/
body { 
    font-family: 'Inter', sans-serif; 
    background: #f5f5f5; 
    color: #666; 
    line-height: 1.7; 
}

.container { 
    width: 90%; 
    max-width: 1200px; 
    margin: auto; 
}

section { 
    padding: 150px 0; 
}

h1, h2, h3 { 
    font-weight: 700; 
    color: #333; 
}

h2 { 
    text-align: center; 
    font-size: 2.2rem; 
    margin-bottom: 50px; 
}

/*=========================
    BOTONES
=========================*/
.btn { 
    display: inline-block; 
    padding: 15px 35px; 
    background: #696969; 
    color: #ffffff; 
    text-decoration: none; 
    border-radius: 8px; 
    transition: all 0.3s ease; 
    font-weight: 600; 
}

.btn:hover { 
    background: #3f3f3f; 
}

.btn.dark { background: #2c3e50; }
.btn.dark:hover { background: #1a252f; }

.btn.whatsapp { background: #25d366; }
.btn.whatsapp:hover { background: #128c7e; }

/*=========================
    HERO
=========================*/

.h2reco {
    margin-top: 40px;
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #333;
}
.hero-rec {
    background: url('../img/fondo.webp') no-repeat center center;
    background-size: cover;
    position: relative;
    
    display: flex;
    align-items: center;
    min-height: 500px;
    width: 100%;
}

.hero-wrapper { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    gap: 60px; 
    flex-wrap: wrap; 
}

.hero-content { 
    flex: 1 1 500px; 
    z-index: 2; 
}

.hero-content h1 { 
    color: #333; 
    font-size: 3.5rem; 
    line-height: 1.2; 
    margin-bottom: 20px; 
}

.hero-content p { 
    font-size: 1.25rem; 
    margin-bottom: 35px; 
}

.hero-image { 
    flex: 1 1 400px; 
    text-align: right; 
}

.hero-image img { 
    max-width: 100%; 
    height: auto; 
    border-radius: 12px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.15); 
}

/*=========================
    TARJETAS (BENEFICIOS Y PROTOCOLOS)
=========================*/
.benefits-grid, .cards { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 30px; 
}

.benefit-card, .card { 
    background: #ffffff; 
    padding: 40px; 
    border-radius: 12px; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); 
    transition: 0.3s; 
}

.benefit-card:hover, .card:hover { 
    transform: translateY(-8px); 
    box-shadow: 0 15px 25px rgba(0,0,0,0.1); 
}

.benefit-card h3, .card h3 { 
    margin-bottom: 15px; 
    color: #333; 
}

/*=========================
    CTA
=========================*/
.cta{
    margin-top: -170px;
}
.cta-text { 
    text-align: center; 
    font-size: 1.2rem; 
    margin-bottom: 30px; 
}

/* Contenedor */
.btn-reco {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

/* Estilo base de los botones */
.btn-reco a {
    padding: 12px 28px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border: 2px solid #000000;
    border-radius: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

/* Botón 1: WhatsApp (Fondo blanco, texto negro) */
.btn-was {
    background: #ffffff00;
    color: #000000;
}

/* Botón 2: Email (Fondo negro, texto blanco) */
.btn-mail {
    background: #000000;
    color: #ffffff;
}

/* Efectos Hover (Se invierten los colores) */
.btn-was:hover {
    background: #000000;
    color: #ffffff;
}

.btn-mail:hover {
    background: #ffffff;
    color: #000000;
}


/*=========================
    RESPONSIVE
=========================*/
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
    .cta{
    margin-top: -50px;
}
    .hero-wrapper { margin-top: 95px;gap: 0; text-align: center; }
    .hero-image { order: -1; text-align: center; margin-bottom: 30px; }
    section { padding-top: 0px; padding-bottom: 60px; }
    
}



