/* ==========================================================================
   Design System & Variáveis de Estilo
   ========================================================================== */
:root {
    /* Cores da Marca */
    --color-plum-dark: #230823;       /* Roxo profundo místico */
    --color-plum-medium: #3c143c;     /* Ameixa médio */
    --color-plum-light: #522052;      /* Ameixa suave */
    --color-lavender-bg: #f8f4f9;     /* Lavanda muito claro para fundos */
    --color-lavender-glass: rgba(248, 244, 249, 0.85);
    --color-gold: #c5a059;            /* Dourado místico */
    --color-gold-hover: #b59453;      /* Dourado escurecido */
    --color-gold-glow: rgba(197, 160, 89, 0.4);
    --color-white: #ffffff;
    --color-black-pure: #0f030f;
    --color-text-dark: #2b102b;       /* Roxo muito escuro para texto */
    --color-text-muted: #725b72;      /* Roxo acinzentado para descrições */
    --color-success: #2e7d32;
    --color-danger: #c62828;
    
    /* Tipografia */
    --font-title: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', Helvetica, Arial, sans-serif;
    
    /* Sombras e Bordas */
    --shadow-premium: 0 10px 30px rgba(35, 8, 35, 0.1);
    --shadow-gold: 0 0 15px rgba(197, 160, 89, 0.3);
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    
    /* Transições */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.2s ease;
}

/* ==========================================================================
   Reset & Estilos Globais
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-lavender-bg);
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--color-text-dark);
    background-color: var(--color-lavender-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Tipografia Avançada */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0.5px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

/* Seleção de Texto Personalizada */
::selection {
    background-color: var(--color-gold);
    color: var(--color-white);
}

/* ==========================================================================
   Componentes Globais: Botões
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2.2rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--color-gold);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

.btn-primary:hover {
    background-color: var(--color-gold-hover);
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--color-plum-medium);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(60, 20, 60, 0.3);
}

.btn-secondary:hover {
    background-color: var(--color-plum-dark);
    box-shadow: 0 6px 20px rgba(35, 8, 35, 0.5);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--color-white);
    color: var(--color-white);
}

.btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-text-dark);
    transform: translateY(-2px);
}

.btn-card-action {
    background-color: transparent;
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
    width: 100%;
    margin-top: 1.5rem;
}

.btn-card-action:hover {
    background-color: var(--color-gold);
    color: var(--color-white);
    box-shadow: var(--shadow-gold);
}

.btn-block {
    width: 100%;
}

/* Botão de WhatsApp Pulsante */
.btn-whatsapp-pulse {
    background-color: #25d366;
    color: var(--color-white);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    animation: pulseWhatsApp 2s infinite;
}

.btn-whatsapp-pulse:hover {
    background-color: #128c7e;
    box-shadow: 0 6px 20px rgba(18, 140, 126, 0.6);
    transform: translateY(-2px);
}

.btn-whatsapp-pulse i {
    margin-right: 8px;
    font-size: 1.15rem;
}

/* ==========================================================================
   Header Sticky Navigation
   ========================================================================== */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
}

.header-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
}

.header-logo {
    height: 84px; /* Aumentado em 40% (base 60px) para destaque visual conforme solicitado */
    width: auto;
    transition: var(--transition-smooth);
}

/* Alternância dos Logos */
.logo-white {
    display: block;
}

.logo-purple {
    display: none;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-white);
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    cursor: pointer;
}

.mobile-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: var(--color-white);
}

/* Classe de Scroll Fixo do Menu */
#main-header.sticky {
    padding: 0.8rem 0;
    background-color: var(--color-lavender-glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(35, 8, 35, 0.08);
}

#main-header.sticky .logo-white {
    display: none;
}

#main-header.sticky .logo-purple {
    display: block;
}

#main-header.sticky .nav-link {
    color: var(--color-text-dark);
}

#main-header.sticky .mobile-toggle .bar {
    background-color: var(--color-text-dark);
}

/* ==========================================================================
   Hero Section & Slideshow
   ========================================================================== */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--color-white);
    overflow: hidden;
}

/* Slideshow */
.slideshow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center; /* Restaurado para o centro conforme solicitado para manter a proporção e enquadramento originais */
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    transform: scale(1.05);
}

.slide.active {
    opacity: 1;
    z-index: 2;
    animation: zoomEffect 10s forwards;
}

/* Overlay mística ameixa */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-plum-dark);
    opacity: 0.65;
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 4;
    max-width: 800px;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo-wrapper {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-logo {
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.triple-moon-container {
    margin-bottom: 1.5rem;
    color: var(--color-gold);
    animation: fadeInUp 1.2s ease-out;
}

.hero-subtitle {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-style: italic;
    color: var(--color-white);
    animation: fadeInUp 1.4s ease-out;
}

.hero-tagline {
    font-size: 1.05rem;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.85);
    animation: fadeInUp 1.6s ease-out;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    animation: fadeInUp 1.8s ease-out;
}

/* ==========================================================================
   Estrutura de Seções
   ========================================================================== */
section {
    padding: 8rem 0;
}

.section-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold);
    margin-bottom: 0.8rem;
}

.section-label.dark {
    color: var(--color-gold);
}

.section-title {
    font-size: 3.5rem;
    color: var(--color-text-dark);
}

.section-title.white {
    color: var(--color-white);
}

.title-decorator-line {
    width: 60px;
    height: 2px;
    background-color: var(--color-plum-medium);
    margin: 1.2rem auto 0;
}

.title-decorator-line.gold {
    background-color: var(--color-gold);
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

/* ==========================================================================
   Seção: Quem Sou Eu (Biografia)
   ========================================================================== */
.biography-section {
    background-color: var(--color-white);
}

.bio-image-col {
    display: flex;
    justify-content: center;
}

.image-border-decoration {
    position: relative;
    padding: 15px;
}

.image-border-decoration::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    border: 2px solid var(--color-gold);
    z-index: 1;
    transform: translate(30px, 30px);
    pointer-events: none;
    transition: var(--transition-smooth);
}

.bio-photo {
    position: relative;
    z-index: 2;
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-premium);
}

.bio-text-col .lead-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-plum-medium);
    margin-bottom: 1.5rem;
}

.bio-text-col p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.btn-saiba-mais {
    margin-top: 1rem;
}

/* ==========================================================================
   Seção: Atendimentos e Leituras (Cards)
   ========================================================================== */
.services-section {
    background-color: var(--color-plum-dark);
    background-image: radial-gradient(circle at 10% 20%, rgba(60, 20, 60, 0.4) 0%, rgba(35, 8, 35, 0.8) 90%);
}

.service-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2.2rem;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-lg);
    border: 1px solid transparent;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-8px);
    background-color: rgba(255, 255, 255, 0.06);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.service-card:hover::before {
    border-color: var(--color-gold);
    box-shadow: inset 0 0 15px rgba(197, 160, 89, 0.1);
}

.card-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: rgba(197, 160, 89, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    transition: var(--transition-smooth);
}

.service-card:hover .card-icon-wrapper {
    background-color: var(--color-gold);
    color: var(--color-white);
    box-shadow: var(--shadow-gold);
}

.card-title {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: var(--color-white);
}

.card-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.card-pricing-list {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}

.pricing-item strong {
    color: var(--color-gold);
    font-size: 0.95rem;
}

.pricing-item.highlight {
    background-color: rgba(197, 160, 89, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: var(--border-radius-sm);
    border-left: 3px solid var(--color-gold);
}

.pricing-item.highlight strong {
    font-size: 1.05rem;
}

.services-meta-info {
    width: 90%;
    max-width: 600px;
    margin: 4rem auto 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.services-meta-info i {
    color: var(--color-gold);
    margin-right: 6px;
}

/* ==========================================================================
   Seção: Formulário de Agendamento (Booking)
   ========================================================================== */
.booking-section {
    background-color: var(--color-white);
}

.booking-image-col {
    display: flex;
    justify-content: center;
}

.image-frame-gold {
    position: relative;
    padding: 10px;
}

.image-frame-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1.5px solid var(--color-gold);
    pointer-events: none;
    border-radius: var(--border-radius-md);
}

.booking-photo {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-premium);
}

.booking-form-col .section-title {
    margin-bottom: 2rem;
}

/* Formulário de Estilo Premium */
.premium-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-dark);
}

.form-group .required {
    color: var(--color-gold);
}

.premium-form input,
.premium-form select,
.premium-form textarea {
    padding: 0.9rem 1.2rem;
    background-color: var(--color-lavender-bg);
    border: 1px solid rgba(60, 20, 60, 0.1);
    border-radius: 50px;
    color: var(--color-text-dark);
    font-size: 0.92rem;
    transition: var(--transition-fast);
    outline: none;
    width: 100%;
}

.premium-form select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233c143c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.5rem center;
    background-size: 1rem;
    cursor: pointer;
}

.premium-form textarea {
    border-radius: var(--border-radius-md);
    resize: none;
}

.premium-form input:focus,
.premium-form select:focus,
.premium-form textarea:focus {
    border-color: var(--color-gold);
    background-color: var(--color-white);
    box-shadow: 0 0 10px var(--color-gold-glow);
}

.form-submit-wrapper {
    margin-top: 1.5rem;
}

/* ==========================================================================
   Seção: FAQ e Vídeo (Dúvidas)
   ========================================================================== */
.faq-section {
    background-color: var(--color-plum-dark);
    background-image: radial-gradient(circle at 90% 20%, rgba(60, 20, 60, 0.3) 0%, rgba(35, 8, 35, 0.8) 90%);
    color: var(--color-white);
}

.faq-video-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-video-col h2 {
    margin-bottom: 0.5rem;
}

.white-p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

/* Wrapper do Player de Vídeo */
.video-preview-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* Ratio 16:9 */
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    border: 2px solid rgba(197, 160, 89, 0.2);
    transition: var(--transition-smooth);
}

.video-preview-wrapper:hover {
    transform: scale(1.02);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-gold);
}

.video-placeholder-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.video-preview-wrapper:hover .video-placeholder-thumb {
    filter: brightness(0.6);
}

.video-overlay-play {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    background-color: rgba(35, 8, 35, 0.3);
}

.play-button-icon {
    width: 70px;
    height: 70px;
    background-color: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.6rem;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.5);
    transition: var(--transition-smooth);
    padding-left: 5px; /* Alinhar o triângulo no centro */
}

.video-preview-wrapper:hover .play-button-icon {
    transform: scale(1.15);
    background-color: var(--color-white);
    color: var(--color-plum-dark);
}

.faq-cta-wrapper {
    margin-top: 1.5rem;
}

/* Accordion de Perguntas (Em Linha) */
.faq-accordion-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.inline-faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.faq-item {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    background-color: rgba(255, 255, 255, 0.04);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h4 {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--color-white);
}

.faq-question i {
    color: var(--color-gold);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    background-color: rgba(0, 0, 0, 0.1);
}

.faq-answer p {
    padding: 1.5rem;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

/* Classe Ativa do Accordion */
.faq-item.active {
    border-color: var(--color-gold);
    background-color: rgba(255, 255, 255, 0.05);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* ==========================================================================
   Seção: Newsletter (Fique por Dentro)
   ========================================================================== */
.newsletter-section {
    background-color: var(--color-lavender-bg);
    background-image: linear-gradient(180deg, var(--color-lavender-bg) 0%, #ece5f0 100%);
    padding: 6rem 0;
    text-align: center;
}

.newsletter-container {
    max-width: 700px;
    margin: 0 auto;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.newsletter-container h2 {
    font-size: 2.8rem;
    color: var(--color-text-dark);
}

.newsletter-container p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    max-width: 550px;
    margin-bottom: 1.5rem;
}

/* Formulário Alinhado de Newsletter */
.newsletter-form-inline {
    display: flex;
    width: 100%;
    max-width: 500px;
    gap: 0.8rem;
}

.newsletter-form-inline input {
    flex-grow: 1;
    padding: 0.9rem 1.5rem;
    border: 1px solid rgba(60, 20, 60, 0.1);
    border-radius: 50px;
    background-color: var(--color-white);
    color: var(--color-text-dark);
    font-size: 0.92rem;
    outline: none;
    transition: var(--transition-fast);
}

.newsletter-form-inline input:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 10px var(--color-gold-glow);
}

.newsletter-form-inline .btn {
    flex-shrink: 0;
    white-space: nowrap;
}

/* ==========================================================================
   Seção: Contato & Redes Sociais
   ========================================================================== */
.contact-section {
    background-color: var(--color-white);
}

.contact-form-col .section-title {
    margin-bottom: 2rem;
}

.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.contact-intro {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* Lista de Contatos com Ícones Metálicos */
.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail-item {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(60, 20, 60, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-plum-medium);
    font-size: 1.3rem;
    transition: var(--transition-smooth);
}

.contact-detail-item:hover .icon-box {
    background-color: var(--color-gold);
    color: var(--color-white);
    box-shadow: var(--shadow-gold);
}

.contact-detail-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.contact-detail-item p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.contact-link {
    font-weight: 500;
    transition: var(--transition-fast);
}

.contact-link:hover {
    color: var(--color-gold);
}

.whatsapp-pulsing-wrapper {
    margin-top: 1.5rem;
}

/* ==========================================================================
   Main Footer (Rodapé Robusto)
   ========================================================================== */
#main-footer {
    background-color: var(--color-plum-dark);
    color: var(--color-white);
    padding: 5rem 0 2rem;
    border-top: 2px solid var(--color-gold);
}

.footer-top-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 3.5rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
}

.footer-col-about {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    height: 60px; /* Aumentado de 50px para 60px para consistência visual */
    width: auto;
    align-self: flex-start;
}

.footer-col-about p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    max-width: 400px;
}

.social-icons-list {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-icon:hover {
    background-color: var(--color-gold);
    color: var(--color-white);
    box-shadow: var(--shadow-gold);
    transform: translateY(-3px);
}

.footer-col-links h3,
.footer-col-hours h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    position: relative;
    color: var(--color-gold);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    font-size: 0.9rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}

.footer-col-hours {
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
}

.footer-col-hours strong {
    color: var(--color-white);
}

.footer-col-hours em {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.gold-heart {
    color: var(--color-gold);
    margin: 0 3px;
}

/* ==========================================================================
   Popups e Modais Genéricos
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 3, 15, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-window {
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(197, 160, 89, 0.25);
    display: flex;
    flex-direction: column;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
}

.modal-overlay.active .modal-window {
    transform: scale(1);
}

/* Tamanhos Customizados do Modal */
.modal-window.max-w-large {
    max-width: 900px;
}

.modal-window.max-w-small {
    max-width: 450px;
}

.modal-window.max-w-video {
    max-width: 800px;
    background-color: var(--color-black-pure);
    border-color: var(--color-gold);
}

.modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(60, 20, 60, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--color-lavender-bg);
}

.modal-header h3 {
    font-size: 1.6rem;
    color: var(--color-text-dark);
}

.modal-window.max-w-video .modal-header {
    background-color: var(--color-plum-dark);
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

.modal-window.max-w-video .modal-header h3 {
    color: var(--color-white);
}

.modal-close-btn {
    background: none;
    border: none;
    font-size: 2.2rem;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
    line-height: 0.5;
}

.modal-close-btn:hover {
    color: var(--color-gold);
}

.modal-body {
    padding: 2.2rem;
    overflow-y: auto;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-dark);
}

/* Modal de Biografia */
.modal-bio-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 2.5rem;
    align-items: start;
}

.modal-bio-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-md);
    border: 2px solid var(--color-gold);
    box-shadow: var(--shadow-premium);
}

.modal-bio-text p {
    margin-bottom: 1.2rem;
    color: var(--color-text-dark);
}

/* Modal de FAQ (Accordion no Modal) */
.modal-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-faq-item {
    border: 1px solid rgba(60, 20, 60, 0.08);
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.modal-faq-question {
    padding: 1.2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: var(--color-lavender-bg);
    transition: var(--transition-fast);
}

.modal-faq-question:hover {
    background-color: #eee9f0;
}

.modal-faq-question h4 {
    font-size: 1.1rem;
    color: var(--color-text-dark);
    font-weight: 500;
}

.modal-faq-question i {
    color: var(--color-gold);
    font-size: 0.8rem;
    transition: var(--transition-smooth);
}

.modal-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    background-color: var(--color-white);
}

.modal-faq-answer p {
    padding: 1.5rem;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    border-top: 1px solid rgba(60, 20, 60, 0.05);
}

/* FAQ Item Ativo no Modal */
.modal-faq-item.active {
    border-color: var(--color-gold);
}

.modal-faq-item.active .modal-faq-question {
    background-color: rgba(197, 160, 89, 0.06);
}

.modal-faq-item.active .modal-faq-question i {
    transform: rotate(45deg); /* vira o X ou cruz */
}

/* Modal de Iframe de Vídeo */
.p-0 {
    padding: 0 !important;
}

.iframe-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Modal de Notificação AJAX */
.text-center {
    text-align: center;
}

.notification-icon {
    font-size: 3.5rem;
    color: var(--color-gold);
    margin-bottom: 1.2rem;
}

.notification-message {
    font-size: 1rem;
    color: var(--color-text-dark);
    margin-bottom: 1.8rem;
}

.btn-close-notif {
    min-width: 120px;
}

/* ==========================================================================
   Keyframes & Efeitos de Animação
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomEffect {
    from {
        transform: scale(1.05);
    }
    to {
        transform: scale(1.01);
    }
}

@keyframes pulseWhatsApp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ==========================================================================
   Media Queries & Responsividade
   ========================================================================== */

/* Breakpoint: Desktop Grande e Normal */
@media screen and (max-width: 1200px) {
    .section-title {
        font-size: 3rem;
    }
}

/* Breakpoint: Tablets */
@media screen and (max-width: 992px) {
    section {
        padding: 6rem 0;
    }
    
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .bio-image-col {
        order: -1; /* Exibe a imagem de biografia acima do texto */
        max-width: 450px;
        margin: 0 auto;
    }
    
    .booking-image-col {
        max-width: 450px;
        margin: 0 auto;
    }
    
    .footer-top-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .footer-col-about {
        grid-column: span 2;
    }
}

/* Breakpoint: Celulares */
@media screen and (max-width: 768px) {
    #main-header {
        padding: 1rem 0;
    }
    
    .mobile-toggle {
        display: block;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--color-plum-dark);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transition: right 0.4s ease-in-out;
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.4);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        color: var(--color-white) !important;
        font-size: 1.1rem;
    }
    
    /* Toggle Hamburger Animation */
    .mobile-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background-color: var(--color-white) !important;
    }
    
    .mobile-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background-color: var(--color-white) !important;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
    }
    
    .hero-tagline {
        font-size: 0.95rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        gap: 1rem;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .newsletter-form-inline {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .newsletter-form-inline input {
        border-radius: 50px;
    }
    
    .footer-top-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-col-about {
        grid-column: span 1;
    }
    
    .modal-bio-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .modal-bio-img {
        max-width: 200px;
        margin: 0 auto;
        display: block;
    }
    
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
}
