/* ==================================================== */
/* ESTILOS EXCLUSIVOS: RETIRO 2 (DIOSA SABIA TRES CAMINOS) */
/* ==================================================== */

.page-retiro2 {
    background-color: #FDF9F1; /* Fondo crema suave */
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

.retiro-container {
    max-width: 1100px;
    margin: 50px auto;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

/* Imagen */
.retiro-imagem-box {
    position: relative;
}

.flyer-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(212, 114, 138, 0.15);
    display: block;
}

/* Información */
.retiro-info-box {
    padding-bottom: 20px;
}

.pre-titulo {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #222;
    letter-spacing: 2px;
    margin-bottom: 5px;
    text-align: center;
}

.sub-pre-titulo {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 30px;
}

.sub-pre-titulo em {
    text-transform: lowercase;
    font-family: 'Playfair Display', serif;
    color: #C04E6B; /* Rosa escuro */
}

.titulo-retiro {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    color: #222;
    line-height: 1.1;
    margin-bottom: 40px;
    text-align: center;
}

.titulo-retiro span {
    color: #C04E6B; /* Color rosado del texto */
}

/* Lista de Beneficios */
.beneficios-section {
    margin-bottom: 40px;
}

.lista-beneficios {
    list-style: none;
    padding: 0;
}

.lista-beneficios li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    font-size: 1.15rem;
    color: #444;
    line-height: 1.5;
}

.icon-flor {
    font-size: 1.8rem;
    flex-shrink: 0;
    margin-top: -5px;
}

.lista-beneficios li strong {
    color: #C04E6B; /* Destaca las palabras en rosa */
    font-weight: 600;
}

/* Footer de información (Fecha, Lugar, Botón) */
.info-footer-box {
    background: #FFF;
    border: 2px solid #F0DDB3; /* Borde dorado/crema */
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #555;
    text-align: left;
}

.info-item strong {
    color: #222;
    font-size: 1.2rem;
}

.icon-info {
    font-size: 2rem;
}

.cupos-limitados {
    font-family: 'Playfair Display', serif;
    color: #C04E6B;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.btn-whatsapp-comprar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: #0A1C14; /* Verde muy oscuro del botón en la imagen */
    color: #E2C785; /* Dorado del texto */
    padding: 16px 30px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    width: 100%;
    margin-bottom: 20px;
}

.btn-whatsapp-comprar img {
    width: 26px;
}

.btn-whatsapp-comprar:hover {
    background-color: #1a3327;
    transform: translateY(-3px);
}

.contato-extra {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    font-weight: 500;
}

/* Animações Iniciais */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* RESPONSIVIDADE */
@media (max-width: 900px) {
    .retiro-container {
        grid-template-columns: 1fr;
        gap: 40px;
        margin: 20px auto;
    }
    
    .titulo-retiro {
        font-size: 2.5rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}