/* ==================================================== */
/* ESTILOS EXCLUSIVOS: RETIRO LA DIOSA SABIA */
/* ==================================================== */

.page-retiro {
    background-color: #F5F4EF; /* Fundo padrão do site */
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

.retiro-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

/* Lado Esquerdo: Imagem fixa ao rolar */
.retiro-imagem-box {
    position: sticky;
    top: 40px;
}

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

/* Lado Direito: Informações */
.retiro-info-box {
    padding-bottom: 40px;
}

.tag-retiro {
    display: inline-block;
    background: #004A3C; /* Verde escuro inspirado no cartaz */
    color: #D4AF37; /* Dourado */
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.titulo-retiro {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #004A3C;
    margin-bottom: 5px;
    line-height: 1.1;
}

.subtitulo-retiro {
    font-size: 1.4rem;
    font-style: italic;
    color: #004A3C;
    margin-bottom: 25px;
}

.lugar-retiro, .fecha-retiro {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 500;
}

/* TABS E HORÁRIOS */
.programacao {
    margin-top: 40px;
    background: #FFFFFF;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.programacao h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #004A3C;
    margin-bottom: 20px;
}

.tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid #EEE;
    padding-bottom: 10px;
}

.tab-btn {
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: #888;
    cursor: pointer;
    padding: 8px 15px;
    border-radius: 6px;
    transition: 0.3s;
}

.tab-btn:hover {
    color: #004A3C;
}

.tab-btn.active {
    background: #004A3C;
    color: #FFF;
}

.tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-content.active {
    display: block;
}

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

.lista-horarios li {
    display: flex;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid #EEE;
    font-size: 0.95rem;
    color: #444;
}

.lista-horarios li:last-child {
    border-bottom: none;
}

.lista-horarios li strong {
    color: #004A3C;
    min-width: 75px;
}

/* PREÇO E BOTÃO */
.box-preco {
    margin-top: 40px;
    background: #004A3C;
    color: #FFF;
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 74, 60, 0.2);
}

.preco-valor h3 {
    font-family: 'Playfair Display', serif;
    color: #D4AF37;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.preco-valor p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.contato-extra {
    font-size: 0.85rem;
    color: #D4AF37;
    margin-bottom: 25px;
    line-height: 1.5;
}

.btn-whatsapp-comprar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: #25D366; /* Cor oficial do WhatsApp */
    color: white;
    padding: 16px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    width: 100%;
}

.btn-whatsapp-comprar img {
    width: 24px;
    filter: brightness(0) invert(1);
}

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

/* 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; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVIDADE */
@media (max-width: 900px) {
    .retiro-container {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 0 auto;
        padding: 0;
    }
    
    .retiro-imagem-box {
        position: relative;
        top: 0;
    }
    
    .flyer-img {
        border-radius: 0; /* No celular, a imagem ocupa a tela toda sem bordas no topo */
    }

    .retiro-info-box {
        padding: 20px;
    }
    
    .titulo-retiro {
        font-size: 2.8rem;
    }
}