/* --- RESET DE VIEWPORT E CORREÇÃO DE OVERFLOW --- */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Garante que padding e borda não adicionem largura extra aos elementos */
*, *::before, *::after {
    box-sizing: border-box;
}

/* Bloqueia a página inteira; o conteúdo do modal continua rolando normalmente. */
html:has(body.modal-open),
body.modal-open {
    overflow: hidden !important;
    overscroll-behavior: none;
}
/* --- FIM DO RESET --- */

/* ---------------------------------- */
/* VARIÁVEIS E CONFIGURAÇÕES GLOBAIS  */
/* ---------------------------------- */
:root {
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Poppins', sans-serif;
    --bg-color: #111111;
    --card-color: #1A1A1A;
    --text-primary: #E0E0E0;
    --text-secondary: #aaaaaa;
    --accent-color: #D4B45C;
    --accent-color-hover: #EAC470;
    --border-color: rgba(212, 180, 92, 0.2);
    --shadow-color: rgba(0, 0, 0, 0.5);
}
body:not(.dark-mode) {
    --bg-color: #F5F5F5;
    --card-color: #FFFFFF;
    --text-primary: #1A1A1A;
    --text-secondary: #555555;
    --border-color: rgba(0, 0, 0, 0.1);
    --shadow-color: rgba(0, 0, 0, 0.1);
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { 
    background-color: var(--bg-color); 
    color: var(--text-primary); 
    font-family: var(--font-sans); 
    line-height: 1.7; 
    transition: background-color 0.3s ease, color 0.3s ease;
    overflow-x: hidden; 
    /* Aumentado para 120px (80 menu + 36 top bar + folga) */
    padding-top: 120px; 
}
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
img { max-width: 100%; display: block; }
.content-section { padding: 5rem 0; }
.content-section-dark { background-color: var(--card-color); }
body:not(.dark-mode) .content-section-dark { background-color: #EAEAEA; }
.fade-in-section { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.fade-in-section.is-visible { opacity: 1; transform: translateY(0); }

/* ---------------------------------- */
/* COMPONENTES REUTILIZÁVEIS          */
/* ---------------------------------- */
.section-title { font-family: var(--font-serif); font-size: clamp(2.2rem, 5vw, 3rem); color: var(--accent-color); margin-bottom: 2.5rem; letter-spacing: 1px; font-weight: 700; text-align: center;}
.section-subtitle { text-align: center; color: var(--text-secondary); margin-top: -2rem; margin-bottom: 3rem; font-size: 1.1rem; }

.payment-methods-note {
    max-width: 780px;
    margin: -1.5rem auto 2.5rem;
    padding: 0.85rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: var(--card-bg);
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.5;
}

.payment-methods-note strong {
    color: var(--accent-color);
}
/* --- BOTÕES GLOBAIS (ESTILOS E HOVER) --- */
.btn { 
    display: inline-block; 
    font-family: var(--font-sans); 
    font-weight: 600; 
    text-decoration: none; 
    padding: 0.8rem 2rem; 
    border-radius: 50px; 
    text-align: center; 
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); /* Transição mais suave */
    cursor: pointer; 
    border: 2px solid transparent; 
    position: relative;
    overflow: hidden;
}

/* Estilo Primário (Dourado Vivo com Gradiente) */
.btn-primary { 
    /* Efeito de Ouro: Gradiente diagonal */
    background: linear-gradient(135deg, #D4B45C 0%, #F0E68C 100%);
    color: #000;
    box-shadow: 0 4px 15px rgba(212, 180, 92, 0.3); /* Brilho suave */
    border: 2px solid transparent; /* Para manter o tamanho igual */
}

.btn-primary:hover { 
    background: linear-gradient(135deg, #FFF 0%, #F9F9F9 100%);
    color: #000;
    transform: translateY(-3px); 
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

/* Estilo Secundário (Borda com Fundo Sutil) */
.btn-secondary { 
    background-color: rgba(212, 180, 92, 0.05); /* Fundo muito leve para não ficar morto */
    color: var(--accent-color); 
    border-color: var(--accent-color); 
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.btn-secondary:hover { 
    background-color: var(--accent-color); 
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}
.full-width { width: 100%; }

/* ---------------------------------- */
/* HEADER E NAVEGAÇÃO                 */
/* ---------------------------------- */
.main-header { position: fixed; top: 0; left: 0; width: 100%; padding: 1rem 0; background-color: var(--bg-color); z-index: 1000; border-bottom: 1px solid var(--border-color); }
body.dark-mode .main-header { background-color: rgba(17, 17, 17, 0.85); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
/* Cabeçalho expandido para usar a largura da tela */
.main-header .container { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    width: 95%; /* Usa quase toda a tela */
    max-width: 1800px; /* Limite bem maior que o padrão */
    margin: 0 auto;
}

.logo { display: flex; align-items: center; text-decoration: none; }
.logo img { max-height: 55px; width: auto; }
.desktop-nav { display: none; }

/* Links do menu em linha única */
.nav-link { 
    color: var(--text-primary); 
    text-decoration: none; 
    margin: 0 0.8rem; /* Espaçamento levemente reduzido */
    font-weight: 500; 
    transition: color 0.3s ease;
    white-space: nowrap; /* PROIBIDO QUEBRAR LINHA */
    font-size: 0.95rem;
}
.nav-link:hover { color: var(--accent-color); }
.header-right { display: flex; align-items: center; gap: 1rem; }
#theme-toggle { background: none; border: none; cursor: pointer; color: var(--accent-color); padding: 5px; min-width: 36px; min-height: 36px; display: flex; align-items: center; justify-content: center; }
#theme-toggle svg { width: 24px; height: 24px; display: none; }
.dark-mode #theme-toggle .moon-icon { display: block; }
body:not(.dark-mode) #theme-toggle .sun-icon { display: block; }
.mobile-nav-toggle { display: block; background: none; border: none; cursor: pointer; padding: 10px; z-index: 1001; }
.hamburger-icon, .hamburger-icon::before, .hamburger-icon::after { content: ''; display: block; width: 25px; height: 3px; background-color: var(--text-primary); border-radius: 3px; transition: all 0.3s ease; position: relative; }
.hamburger-icon::before { transform: translateY(-8px); }
.hamburger-icon::after { transform: translateY(8px); }
.mobile-nav-menu { position: fixed; top: 0; right: 0; width: 100%; height: 100vh; background-color: var(--bg-color); display: flex; flex-direction: column; align-items: center; justify-content: center; transform: translateX(100%); visibility: hidden; transition: transform 0.4s ease-in-out, visibility 0.4s; z-index: 999; }
.mobile-nav-menu nav { display: flex; flex-direction: column; align-items: center; gap: 2rem; }
.mobile-nav-link { color: var(--text-primary); text-decoration: none; font-size: 2rem; font-family: var(--font-serif); }
body.mobile-nav-active .hamburger-icon { background-color: transparent; }
body.mobile-nav-active .hamburger-icon::before { transform: rotate(45deg); }
body.mobile-nav-active .hamburger-icon::after { transform: translateY(-3px) rotate(-45deg); }
body.mobile-nav-active .mobile-nav-menu { transform: translateX(0); visibility: visible; }
body.mobile-nav-active { overflow: hidden; }

/* ---------------------------------- */
/* SEÇÃO HERO (POSICIONAMENTO AJUSTADO) */
/* ---------------------------------- */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: flex-start; /* Joga tudo para o topo */
    justify-content: center;
    padding-top: 40px; /* Reduzido de 100px para 40px para colar no menu */
    padding-bottom: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
}
.hero-container {
    width: 100%;
    max-width: 800px;
}
.hero-title {
    text-align: center;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.hero-title img {
    width: 100%;
    max-width: 500px; /* Tamanho destaque para o Hero */
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3)); /* Leve sombra para destacar do vídeo */
}
.hero-subtitle {
    text-align: center;
    font-size: clamp(1.1rem, 2.5vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 550px;
        margin: 0 auto 3rem; /* Garante centralização e espaçamento */
}
.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-bottom: 4rem; /* Maior espaçamento */
     justify-content: center; /* Garante que os botões se centralizem */
}
.hero-cta-group .btn {
    min-width: 240px; /* Força todos os botões a terem a mesma largura mínima */
    box-sizing: border-box; /* Garante que o padding não quebre o layout */
}
/* Estilos do bloco promocional removidos */


/* ---------------------------------- */
/* DEMAIS SEÇÕES (Sem alterações)     */
/* ---------------------------------- */
.location-title { text-align: center; font-family: var(--font-sans); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--text-primary); margin-top: 4rem; margin-bottom: 1rem; font-size: 1.5rem; }
.location-promo { text-align: center; color: var(--accent-color); font-weight: 600; margin-top: -0.5rem; margin-bottom: 2rem; }
.professionals-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; justify-items: center; }
.professional-card { text-decoration: none; color: var(--text-primary); text-align: center; transition: transform 0.3s ease; cursor: pointer; }
.professional-card:hover:not(.unavailable) { transform: scale(1.05); }
.professional-card.unavailable { opacity: 0.5; cursor: not-allowed; }
.professional-image img { width: 200px; height: 200px; object-fit: cover; border-radius: 50%; border: 3px solid var(--accent-color); box-shadow: 0 5px 20px var(--shadow-color); }
.professional-name { font-family: var(--font-serif); font-size: 1.8rem; color: var(--accent-color); margin-top: 1rem; }
.professional-role { color: var(--text-secondary); }
.courses-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.course-card { background-color: var(--bg-color); border: 1px solid var(--border-color); border-radius: 8px; display: flex; flex-direction: column; }
.course-card-header { padding: 1.5rem; border-bottom: 1px solid var(--border-color); }
.course-card-title { font-family: var(--font-serif); font-size: 1.4rem; color: var(--accent-color); }
.course-card-body { padding: 1.5rem; flex-grow: 1; }
.course-card-details { margin-bottom: 1rem; color: var(--text-secondary); font-size: 0.9rem; }
.course-card-details p { margin-bottom: 0.25rem; }
.course-card-details strong { color: var(--text-primary); }
.course-card-body h5 { font-weight: 700; margin-top: 1rem; margin-bottom: 0.5rem; color: var(--text-primary); }
.course-card-body ul { list-style: none; padding-left: 0; }
.course-card-body li { position: relative; padding-left: 1.5rem; margin-bottom: 0.5rem; color: var(--text-secondary); }
.course-card-body li::before { content: '•'; position: absolute; left: 0; color: var(--accent-color); font-size: 1.2rem; line-height: 1; top: 6px; }
.course-card-note { margin-top: 1.5rem; font-size: 0.9rem; color: var(--text-secondary); }
.course-card-note strong { color: var(--text-primary); }
.course-card-footer { padding: 1.5rem; border-top: 1px solid var(--border-color); margin-top: auto; }
.testimonial-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.testimonial-card { background-color: var(--card-color); border-radius: 8px; padding: 2rem; border: 1px solid var(--border-color); }
.testimonial-quote { font-style: italic; color: var(--text-secondary); }
.contact-section { background-color: var(--card-color); }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.contact-card { text-decoration: none; padding: 2rem; border-radius: 8px; border: 1px solid var(--border-color); transition: all 0.3s ease; text-align: center; }
.contact-card:hover { transform: translateY(-5px); border-color: var(--accent-color); box-shadow: 0 10px 30px var(--shadow-color); }
.contact-icon { width: 70px; height: 70px; margin: 0 auto 1rem; }
.contact-title { font-family: var(--font-serif); font-size: 1.5rem; color: var(--text-primary); }
.contact-description { font-size: 0.9rem;;color: var(--text-secondary); }
.modal-open { overflow: hidden; }
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.9); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); display: flex; justify-content: center; align-items: center; z-index: 1001; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; padding: 1rem; overscroll-behavior: contain; }
.modal-overlay.active { opacity: 1; pointer-events: auto; }
.modal-content { background-color: var(--bg-color); border-radius: 10px; border: 1px solid var(--border-color); width: 100%; max-width: 1100px; max-height: 90vh; overflow-y: auto; position: relative; transform: scale(0.95); transition: transform 0.3s ease; }
.modal-overlay.active .modal-content { transform: scale(1); }
.modal-close-btn { position: absolute; top: 0.5rem; right: 0.5rem; width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; background: none; border: none; font-size: 2rem; color: var(--text-secondary); cursor: pointer; line-height: 1; z-index: 1002; }
.modal-header { position: relative; display: flex; justify-content: center; align-items: center; width: 100%; padding: 60px 2rem 1.5rem; }
.modal-professional-info { text-align: center; }
.modal-professional-info .professional-icon { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; border: 4px solid var(--accent-color); box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); margin: 0 auto; }
.modal-professional-info span { font-size: 1.2rem; color: var(--text-primary); font-weight: 600; display: block; margin-top: 0.5rem; }
.modal-cta-group { display: flex; gap: 1rem; position: absolute; top: 1.5rem; right: 4rem; }
.modal-cta-link img { height: 32px; width: 32px; transition: transform 0.3s ease; }
.modal-cta-link:hover img { transform: scale(1.1); }
.modal-body { padding: 1rem 2rem 2rem; }
.modal-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.modal-bio-column { color: var(--text-secondary); line-height: 1.8; }
.bio-title, .services-column-title { font-family: var(--font-sans); font-weight: 600; color: var(--text-primary); text-transform: uppercase; letter-spacing: 1px; padding-bottom: 0.5rem; margin-bottom: 1.5rem; border-bottom: 1px solid var(--border-color); }
.modal-bio-column h4 { font-family: var(--font-serif); color: var(--accent-color); font-size: 1.2rem; margin-top: 1.5rem; margin-bottom: 0.5rem; }
.service-category { margin-bottom: 2rem; }
.service-category h4 { color: var(--accent-color); font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: 1rem; }
.service-item { display: flex; flex-direction: column; gap: 0.5rem; padding: 0.5rem; border-radius: 4px; transition: background-color 0.2s ease; margin-bottom: 1.5rem; }
.service-item:hover { background-color: var(--card-color); }
.service-media { width: 100%; background-color: #000; border-radius: 4px; position: relative; cursor: pointer; overflow: hidden; aspect-ratio: 16 / 9; }
.service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.service-item:hover .service-media img { transform: scale(1.1); }
.play-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 40px; height: 40px; background-color: rgba(0, 0, 0, 0.5); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.play-icon::after { content: ''; display: block; width: 0; height: 0; border-top: 8px solid transparent; border-bottom: 8px solid transparent; border-left: 14px solid #fff; margin-left: 4px; }
.service-item:hover .play-icon { background-color: var(--accent-color); }
.service-info { padding-top: 0.5rem; }
.service-info p { margin: 0 0 0.5rem; color: var(--text-secondary); }
.service-info strong { color: var(--text-primary); }
.listen-link { display: inline-block; color: var(--text-secondary); text-decoration: none; font-size: 0.9rem; transition: color 0.3s ease; }
.listen-link:hover { color: var(--accent-color); }
.dynamic-video-player, .dynamic-audio-player { width: 100%; display: block; border-radius: 4px; }
.modal-main-cta { margin-top: 2rem; }

.whatsapp-float:hover { transform: scale(1.1); }
.main-footer { padding: 3rem 0; background-color: var(--card-color); border-top: 1px solid var(--border-color); text-align: center; }
.footer-links { margin-bottom: 1.5rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2rem; }
.social-link { color: var(--text-secondary); text-decoration: none; transition: color 0.3s ease; display: inline-flex; align-items: center; gap: 0.5rem; }
.social-link:hover { color: var(--accent-color); }
.copyright { color: var(--text-secondary); font-size: 0.9rem; }
.page-header { text-align: center; padding: 3rem 0; border-bottom: 1px solid var(--border-color); margin-bottom: 3rem; }
.filters-section { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 3rem; max-width: 800px; margin-left: auto; margin-right: auto; }
.form-input { width: 100%; padding: 0.8rem 1rem; border-radius: 8px; background-color: var(--card-color); border: 1px solid var(--border-color); color: var(--text-primary); font-size: 1rem; font-family: var(--font-sans); }
.form-input:focus { outline: none; border-color: var(--accent-color); }
    .results-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
.loading-indicator, .no-results-message { text-align: center; padding: 4rem; font-size: 1.2rem; color: var(--text-secondary); }


.massage-category {
    margin-bottom: 5rem;
}
.category-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 3rem;
    text-align: center;
}
.massages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 2.5rem;
}
.massage-card {
    background-color: var(--card-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
}
.massage-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    text-align: center;
}
.massage-media {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 1rem;
}
.massage-media img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.massage-card:hover .massage-media img {
    transform: scale(1.05);
}
.massage-audio {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem; /* Aumenta o espaço entre o ícone e o texto */
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: color 0.3s ease;
    border-bottom: 1px solid transparent; /* Adiciona uma base para a animação */
}
.massage-audio:hover {
    color: var(--accent-color);
}
.massage-audio span {
    text-decoration: underline;
    font-weight: 600; /* Deixa o texto mais forte */
}

/* ONDA SONORA ANIMADA */
.sound-wave {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 16px; /* Altura do ícone */
}
.sound-wave span {
    display: block;
    width: 3px;
    background-color: var(--accent-color);
    animation: wave 1.2s infinite ease-in-out;
    text-decoration: none !important; /* Remove sublinhado das barras */
}

/* Animação das barras com delay diferente para cada uma */
.sound-wave span:nth-child(1) { height: 10px; animation-delay: 0.1s; }
.sound-wave span:nth-child(2) { height: 16px; animation-delay: 0.2s; }
.sound-wave span:nth-child(3) { height: 12px; animation-delay: 0.3s; }
.sound-wave span:nth-child(4) { height: 8px;  animation-delay: 0.4s; }
.sound-wave span:nth-child(5) { height: 14px; animation-delay: 0.5s; }

/* Animação Keyframes */
@keyframes wave {
    0% { transform: scaleY(0.1); }
    50% { transform: scaleY(1); }
    100% { transform: scaleY(0.1); }
}

/* Estilo do player de áudio que aparece */
.massage-card .dynamic-audio-player {
    width: 100%;
    height: 40px;
    margin-bottom: 1rem;
}

.massage-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    flex-grow: 1; /* Faz a descrição ocupar o espaço disponível */
}
.massage-pricing {
    margin-bottom: 1.5rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}
.massage-pricing p {
    margin-bottom: 0.5rem;
}
.massage-pricing strong {
    color: var(--text-primary);
}
.antecipado {
    color: var(--accent-color);
    font-weight: 600;
}
.massage-professionals {
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.massage-professionals a {
    color: var(--accent-color);
    text-decoration: underline;
    font-weight: 600;
    cursor: pointer;
}
.massage-professionals a:hover {
    text-decoration: none;
}

/* NOVO MODAL DE VÍDEO */
.video-modal-content {
    background-color: #000;
    width: auto;
    max-width: 450px; /* Ideal para vídeos verticais */
    padding: 0;
    border: 1px solid var(--border-color);
}
#video-player-container video {
    width: 100%;
    max-height: 80vh;
    display: block;
    border-radius: 9px;
}

.card-image {
    width: 100%;
    height: 220px;
    object-fit: contain; /* Garante que a imagem inteira apareça */
}

.card-body { padding: 1.5rem; }
.card-title { font-family: var(--font-serif); font-size: 1.8rem; color: var(--accent-color); margin-bottom: 0.25rem; }
.card-location { color: var(--text-secondary); font-size: 1rem; margin-bottom: 1rem; }
.card-distance { color: var(--accent-color); font-weight: 600; }

/* ---------------------------------- */
/* RESPONSIVIDADE                     */
/* ---------------------------------- */
@media (min-width: 768px) {
    .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
    .contact-grid { grid-template-columns: repeat(3, 1fr); } /* <-- VALOR ALTERADO AQUI */
    .courses-grid { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
    .filters-section { flex-direction: row; align-items: center; }
}
@media (min-width: 900px) {
    .desktop-nav { display: flex; }
    .mobile-nav-toggle { display: none; }
}
@media (min-width: 1024px) {
    .modal-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
    .modal-services-column { border-left: 1px solid var(--border-color); padding-left: 2rem; }
}

/* ---------------------------------- */
/* VÍDEO DE FUNDO NA SEÇÃO HERO       */
/* ---------------------------------- */
.hero-section {
    position: relative; /* Essencial para posicionar o vídeo e o conteúdo */
    overflow: hidden; /* Garante que o vídeo não "vaze" para fora da seção */
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Coloca o vídeo atrás do conteúdo */
}

.video-background img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garante que o vídeo cubra todo o espaço, mesmo que corte as bordas */
    filter: grayscale(100%) brightness(0.5); /* Mantém contraste sem esconder a foto */
}

@media (max-width: 768px) {
    .video-background {
        height: 100svh;
    }

    .video-background img {
        object-position: 68% center;
    }
}

/* Garante que o conteúdo fique na frente do vídeo */
.hero-container {
    position: relative;
    z-index: 2;
}

.massage-media::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%; /* Altura do degradê */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    pointer-events: none; /* Garante que o clique ainda funcione no vídeo */
    border-radius: 4px; /* Acompanha o arredondamento da imagem */
}

.massage-rating {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    color: var(--accent-color);
    margin-top: -0.75rem; /* Puxa para mais perto do título */
    margin-bottom: 1rem;
}

/* ---------------------------------- */
/* NOVOS ESTILOS ADICIONADOS (V2)     */
/* ---------------------------------- */

/* Para o sistema de avaliação com estrelas e rótulo */
.massage-rating {
    display: flex;
    justify-content: center;
    align-items: center; /* Garante alinhamento vertical */
    gap: 0.5rem; /* Aumenta o espaço entre o texto e as estrelas */
    color: var(--accent-color);
    margin-top: -0.75rem;
    margin-bottom: 1rem;
}

.rating-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.rating-stars {
    display: flex;
    gap: 0.2rem;
}

/* Refinamento no card de preços para separação visual */
.massage-pricing {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

/* Para alinhar as opções de preço nos cards de casais */
.price-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    gap: 1rem;
}

.price-option span:last-child {
    font-weight: 600;
    color: var(--text-primary);
}

/* ---------------------------------- */
/* SEÇÃO DE PERFIL DO ESPECIALISTA    */
/* ---------------------------------- */
.profile-section {
    padding: 6rem 0;
    border-top: 1px solid var(--border-color);
}

/* Garante que o fundo se alterne corretamente se a seção anterior for escura */
body:not(.dark-mode) .profile-section {
    background-color: #EAEAEA;
}
.content-section-dark + .profile-section {
    background-color: var(--bg-color); /* Garante fundo normal se vier depois de uma seção escura */
}
body:not(.dark-mode) .content-section-dark + .profile-section {
    background-color: #F5F5F5;
}


.profile-grid {
    display: grid;
    grid-template-columns: 1fr; /* Mobile-first: uma coluna */
    gap: 2rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.profile-image-column .profile-image {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    border-radius: 12px;
    object-fit: cover;
    aspect-ratio: 3 / 4;
    border: 2px solid var(--border-color);
    box-shadow: 0 10px 40px var(--shadow-color);
}

.profile-details-column {
    color: var(--text-secondary);
}

.profile-name {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--accent-color);
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.profile-location {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    color: var(--text-primary);
}

.profile-section-title {
    font-family: var(--font-sans);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-primary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.profile-bio p, .profile-bio h4 {
    margin-bottom: 1rem;
}

.profile-bio h4 {
    font-family: var(--font-serif);
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-top: 1.5rem;
}

.service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.service-list-item {
    display: inline-block;
    background-color: var(--card-color);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-list-item:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #111;
    transform: translateY(-2px);
}

.profile-cta {
    margin-top: 2rem;
}

@media (min-width: 900px) {
    .profile-grid {
        grid-template-columns: 1fr 1.5fr;
        gap: 4rem;
    }
}

article.massage-card[id] {
    scroll-margin-top: 120px;
}



.massage-media {
    position: relative; /* Essencial para o posicionamento dos filhos */
}

.massage-media-poster {
    position: relative;
    z-index: 2;
}

/* --- NOVO SISTEMA DE AVALIAÇÃO (MULTI-CRITÉRIO) --- */

.massage-ratings-grid {
    margin-top: -0.5rem;  /* Puxa para mais perto do título */
    margin-bottom: 1.0rem; /* Espaço antes da mídia */
    display: flex;
    flex-direction: column;
    gap: 0.5rem; /* Espaço entre cada critério */
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

.rating-criterion {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.criterion-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.criterion-stars {
    display: flex;
    gap: 0.25rem; /* Espaço entre as estrelas */
}

/* Estilo para os ícones de estrela */
.criterion-stars .star-filled {
    color: var(--accent-color);
}
.criterion-stars .star-empty {
    color: var(--border-color);
}

/* --- NOVOS ESTILOS PARA O DIRETÓRIO DE UNIDADES --- */

/* 1. Container das Classificações por Estrelas */
.card-ratings {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.rating-criterion {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.criterion-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.criterion-stars {
    display: flex;
    gap: 0.25rem;
}

.criterion-stars .star-filled { color: var(--accent-color); }
.criterion-stars .star-empty { color: var(--border-color); }

/* Estilo para a mensagem "Em breve" */
.ratings-soon {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
    text-align: center;
}

   .card-actions {
        display: flex;
        flex-direction: column; /* <-- MUDANÇA PRINCIPAL: Força o empilhamento vertical */
        gap: 0.75rem; /* Espaço entre os botões empilhados */
        padding: 1.5rem;
        border-top: 1px solid var(--border-color);
        margin-top: auto;
    }

    .card-actions .btn {
        width: 100%; /* Faz cada botão ocupar a largura total do container */
        box-sizing: border-box; /* Garante que o padding não quebre o layout */
    }

/* Garante que o padding inferior do card-body seja zerado, pois agora é controlado pelo .card-actions */
   .directory-card {
        text-decoration: none;
        color: var(--text-primary);
        background-color: var(--card-color);
        border: 1px solid var(--border-color);
        border-radius: 8px;
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        /* --- ADIÇÕES --- */
        display: flex;
        flex-direction: column;
    }
.directory-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px var(--shadow-color); }
    .directory-card .card-body {
        padding-bottom: 1.5rem;
        flex-grow: 1;
    }

/* --- BOTÃO DE AGENDAMENTO (CTA) NOS CARDS DE MASSAGEM --- */
.massage-cta {
    margin-top: 1.5rem; /* Cria espaço entre o conteúdo acima e o botão */
}

/* --- NOVOS ESTILOS PARA OS DEPOIMENTOS DO GOOGLE --- */
.testimonial-card {
    display: flex;
    flex-direction: column;
    height: 100%; /* Garante que os cards na mesma linha tenham a mesma altura */
}
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.author-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}
.author-info {
    display: flex;
    flex-direction: column;
}
.author-name {
    font-weight: 700;
    color: var(--text-primary);
}
.testimonial-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.testimonial-rating {
    display: flex;
    color: var(--accent-color);
}
.testimonial-body {
    flex-grow: 1; /* Faz o corpo do depoimento ocupar o espaço extra, alinhando os rodapés */
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1rem;
}
.testimonial-footer {
    margin-top: auto; /* Empurra o rodapé para o final do card */
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.google-logo {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 0.5rem;
}
    /* --- ESTILO CONDICIONAL PARA O GRID DO DIRETÓRIO --- */
    /* Altera o comportamento do grid quando ele contém um único item */
    .results-grid.single-item {
        /* Define uma única coluna com largura máxima para evitar que se estique */
        grid-template-columns: minmax(280px, 380px);
        /* Centraliza a coluna do grid na página */
        justify-content: center;
    }

    

/* --- AVATAR COM INICIAIS PARA DEPOIMENTOS --- */
.author-initial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--border-color); /* Fundo sutil */
    
    /* Centraliza a inicial perfeitamente */
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* Estilo da letra */
    font-size: 1.5rem; /* Tamanho da letra */
    font-weight: 700;
    color: var(--accent-color); /* Cor de destaque */
}


.massage-media .play-icon {
    z-index: 3;
}

.massage-media .play-icon,
.massage-media-poster {
    pointer-events: none;
}

.massage-audio,
.massage-audio:focus,
.massage-audio:active {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: color 0.3s ease;
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid transparent !important;
    padding: 0;
    outline: none;
}

.massage-audio:hover {
    color: var(--accent-color);
}
/* Regra Global: Força o texto do tempo a ser PRETO em AMBOS os temas. */
.dynamic-audio-player::-webkit-media-controls-current-time-display,
.dynamic-audio-player::-webkit-media-controls-time-remaining-display {
    color: #000 !important;
    text-shadow: none; /* Garante que não haja sombra de texto indesejada */
}

/* Regras Apenas para o Tema Escuro */
body.dark-mode .dynamic-audio-player {
    accent-color: var(--accent-color);
}

body.dark-mode .dynamic-audio-player::-webkit-media-controls-panel {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
}

body.dark-mode .dynamic-audio-player::-webkit-media-controls-timeline {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    margin: 0 10px;
}

/* Deixa os ícones (play, volume) brancos no tema escuro */
body.dark-mode .dynamic-audio-player::-webkit-media-controls-play-button,
body.dark-mode .dynamic-audio-player::-webkit-media-controls-mute-button {
    color: var(--text-primary);
    opacity: 0.8;
}

body.dark-mode .dynamic-audio-player::-webkit-media-controls-play-button:hover,
body.dark-mode .dynamic-audio-player::-webkit-media-controls-mute-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.hero-title {
    color: #E0E0E0;
}
.hero-subtitle {
    color: #aaaaaa;
}
.back-to-top-btn {
    background-color: var(--accent-color);
    color: #111;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px var(--shadow-color);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top-btn:hover {
    background-color: var(--accent-color-hover);
    transform: scale(1.1) translateY(0);
}

.whatsapp-float {
    background-color: #25D366;
    color: #FFF;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    /* A propriedade box-sizing aqui não é mais necessária, mas pode ser mantida se desejar */
}

.floating-action-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    
    /* Alinha os botões lado a lado */
    display: flex;
    align-items: center;
    gap: 1rem; /* Espaço entre os botões */
}

/*
==========================================================================
   BLOCO FINAL - BOTÃO DE PROMOÇÃO RESPONSIVO
==========================================================================
*/

/* --- ALERTAS FLUTUANTES (PROMO + MDAY) --- */

/* Container do Grid */
.promo-float-grid {
    display: flex; /* Padrão flex (1 botão) */
    justify-content: center;
    gap: 10px;
    /* Animação de entrada */
    opacity: 0;
    animation: fadeInPromo 0.6s 0.5s ease-out forwards;
}

/* Se tiver 2 botões, vira Grid lado a lado */
.promo-float-grid.promo-grid-double {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Divide o espaço exatamente ao meio */
    width: 100%;
}

/* Estilo Base dos Botões (Dourado Brilhante - Esquerda) */
.promo-float-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Dourado mais claro/vivo */
    background: linear-gradient(135deg, #F0E68C 0%, #D4B45C 100%);
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem; /* Fonte levemente menor para garantir centralização */
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.2;
    padding: 5px;
    border: 1px solid #FFF;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    text-decoration: none;
    min-height: 55px; /* Altura fixa para alinhar os dois */
    width: 100%; /* Ocupa todo o espaço da célula do grid */
}

/* Estilo Massagem Day (Dourado Escuro/Bronze - Direita) */
.mday-float-style {
    /* Dourado mais fechado/nobre */
    background: linear-gradient(135deg, #C5A059 0%, #997529 100%);
    color: #000;
    border-color: #FFF;
}

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


/* POSICIONAMENTO DOS ALERTAS */

/* Desktop */
@media (min-width: 769px) {
    #promo-container {
        position: fixed;
        top: 125px; /* Subiu um pouco para ficar mais perto do menu */
        right: 20px;
        z-index: 998;
        width: 300px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    #promo-container {
        width: 90%;
        max-width: 400px;
        margin: 1rem auto; /* Centralizado no topo do fluxo */
        order: -1; /* Força ser o primeiro no Main */
    }
    
    main {
        display: flex;
        flex-direction: column;
    }
}

/*
==========================================================================
   ESTILOS DO MODAL DE PROMOÇÃO
==========================================================================
*/

.promo-modal-content {
    max-width: 500px;
    text-align: center;
}

.promo-modal-text-content {
    padding: 2rem;
}

.promo-modal-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.promo-modal-description {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.promo-modal-cta {
    width: 100%;
}


.criterion-label {
    cursor: help;
}

.dynamic-tooltip {
    position: fixed; /* Flutua sobre tudo */
    background-color: var(--card-color);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
    width: 240px; /* Largura máxima */
    box-shadow: 0 4px 15px var(--shadow-color);
    z-index: 1002; /* Fica acima de quase tudo */
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
    pointer-events: none; /* Garante que o tooltip não bloqueie outros cliques */
}

.dynamic-tooltip.is-visible {
    opacity: 1;
}

/* A seta, agora também um div gerenciado por JS */
.dynamic-tooltip-arrow {
    position: fixed;
    z-index: 1003;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--border-color);
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
    pointer-events: none;
}

.dynamic-tooltip-arrow.is-visible {
    opacity: 1;
}

/*
==========================================================================
   PERFIS E MODAL DE LOCAIS
==========================================================================
*/

/* 1. Estilo para os links de local no perfil do profissional */
.location-link {
    color: var(--accent-color);
    text-decoration: underline;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.location-link:hover {
    text-decoration: none;
    background-color: var(--accent-color);
    color: #111;
    padding: 2px 6px;
    border-radius: 4px;
}


/* 2. Estilo para o conteúdo do Modal de Locais */
.local-modal-content {
    max-width: 600px; /* AUMENTADO: Mais largo e imponente */
    padding: 0;
    overflow: hidden;
}

/* 3. Estilo para o Carrossel de Imagens */
.local-modal-carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #000;
}

.carousel-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.4);
    color: #fff;
    border: none;
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.carousel-btn.prev {
    left: 10px;
    border-radius: 5px 0 0 5px;
}

.carousel-btn.next {
    right: 10px;
    border-radius: 0 5px 5px 0;
}


/* 4. Estilo para as Informações do Modal (AJUSTE FINAL) */
.local-modal-info {
    /* Topo reduzido para 0.5rem (Cola na foto) */
    padding: 0.5rem 2.5rem 1.5rem 2.5rem; 
}

/* Botão 10% menor */
.local-modal-info .btn {
    padding: 0.7rem 1.5rem !important; /* Mais fino */
    font-size: 0.95rem; /* Letra levemente menor */
    margin-bottom: 0rem !important;
}

.local-modal-title {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--accent-color);
    margin-top: 0;
    margin-bottom: 0.5rem; /* Cola na descrição */
}

.local-modal-description {
    color: var(--text-secondary);
    margin-bottom: 1rem; /* Cola no botão */
    line-height: 1.6;
}

.local-modal-ratings {
    display: flex;
    flex-direction: column;
    gap: 0.25rem; /* Bem mais junto */
    text-align: left;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem; /* Aproxima do botão acima */
    margin-top: 0.5rem;
}

.rating-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.rating-label {
    font-weight: 600;
    color: var(--text-primary);
}

.rating-stars {
    display: flex;
    gap: 0.2rem;
    color: var(--accent-color);
    font-size: 1.2rem;
}


/*
==========================================================================
   INTERFACE DO QUIZ DINÂMICO
==========================================================================
*/

#quiz-container {
    padding-top: 4rem;
    padding-bottom: 4rem;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.quiz-step {
    width: 100%;
    max-width: 600px;
    text-align: center;
    animation: fadeInStep 0.5s ease-out;
}

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

.quiz-loading, .quiz-error {
    color: var(--text-secondary);
    font-size: 1.2rem;
}

.quiz-question, .quiz-result-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    color: var(--accent-color);
    margin-bottom: 3rem;
}

.quiz-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.quiz-option-btn, .quiz-restart-btn {
    display: block;
    width: 100%;
    padding: 1.2rem 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    background-color: var(--card-color);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.quiz-option-btn:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #111;
    transform: translateY(-3px);
}

.quiz-restart-btn {
    margin-top: 3rem;
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.quiz-restart-btn:hover {
    background-color: var(--accent-color);
    color: #111;
}

/* --- Estilo para os cards de resultado --- */
.quiz-results-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: left;
}

.massage-card-result {
    background-color: var(--card-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.massage-card-result-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.massage-card-result-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.massage-card-result-body .massage-description {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

@media (min-width: 600px) {
    .quiz-results-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}


.footer-links-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 2rem;
    margin-bottom: 1.5rem;
}

/*
==========================================================================
   NOVAS SEÇÕES DE VÍDEO (DEPOIMENTO E DÚVIDAS)
==========================================================================
*/

/* --- Card de Depoimento Vertical --- */
.video-card-wrapper {
    display: flex;
    justify-content: center;
}

.video-card {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px var(--shadow-color);
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-card-vertical {
    width: 100%;
    max-width: 280px; /* Largura similar a de um celular */
    border: 2px solid var(--border-color);
}

.video-card-thumb {
    width: 100%;
    display: block;
}

.play-icon-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-icon-overlay::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 18px solid #fff;
    margin-left: 5px;
}

.video-card:hover .play-icon-overlay {
    background-color: var(--accent-color);
}

.video-card-label {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* --- Seção de Dúvidas (Grid) --- */
.doubts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.doubts-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

@media (min-width: 900px) {
    .doubts-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

/* Estilo para o iframe do YouTube preencher o modal */
#video-player-container iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
}

/* Ajusta o modal para vídeos verticais (YouTube Shorts) */
.video-modal-vertical {
    max-width: 380px !important; /* Largura ideal para shorts */
    width: auto !important;
}
.video-modal-vertical #video-player-container iframe {
    aspect-ratio: 9 / 16;
}

/* --- MODAL DE INFORMAÇÕES ESTENDIDAS --- */
.info-modal-content {
    max-width: 700px;
    padding: 2.5rem;
}

.info-content h3 {
    font-family: var(--font-serif);
    color: var(--accent-color);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.info-content h3:first-child { margin-top: 0; }

.info-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.info-content li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.info-content li::before {
    content: '•';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.alert-box {
    background-color: rgba(255, 0, 0, 0.1);
    border-left: 4px solid #ff4444;
    padding: 1rem;
    margin: 1.5rem 0;
    border-radius: 4px;
}

.alert-box strong {
    color: #ff4444;
    display: block;
    margin-bottom: 0.5rem;
}

.info-cta-container {
    margin-top: 2rem;
    text-align: center;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

/* CÓDIGO DO BOTÃO FLUTUANTE REMOVIDO */

/* Link dentro do menu */
.menu-item {
    text-decoration: none; /* Remove sublinhado padrão de link */
    color: inherit;
    cursor: pointer;
    transition: opacity 0.2s;
}
.menu-item:hover {
    opacity: 0.7;
}

/* Ajuste para Mobile */
@media (max-width: 768px) {
    .menu-float-btn {
        /* No mobile, removemos do topo para não cobrir o header ou promoção */
        top: auto;
        bottom: 90px; /* Acima dos botões de ação flutuantes */
        left: auto;
        right: 0; /* Mantém na direita como uma aba */
        
        border-radius: 50px 0 0 50px;
        border-right: none;
        padding: 10px 15px;
        font-size: 0.85rem;
    }
}

/* ========================================================================== */
/* MÓDULO TABELA DE PREÇOS (REESCRITA TOTAL - TEMA DINÂMICO) */
/* ========================================================================== */

/* 1. O Modal/Container Principal */
.menu-modal-content {
    background-color: var(--card-color); /* Fundo dinâmico (Branco/Preto) */
    color: var(--accent-color);
    width: 95%; 
    max-width: 900px;
    padding: 5px; 
    border: none;
    margin: 20px auto; 
    overflow-x: hidden;
    transition: background-color 0.3s ease;
}

/* 2. O Quadro Decorativo (Frame) */
.menu-frame {
    background-color: var(--card-color); /* Garante fundo igual ao modal */
    border: 2px solid var(--accent-color);
    padding: 1.5rem;
    position: relative;
    border-radius: 8px;
    /* Sombra interna sutil */
    box-shadow: inset 0 0 0 4px var(--card-color), inset 0 0 0 6px var(--accent-color); 
    width: 100%;
}

/* Elementos decorativos (Flor-de-lis) */
.menu-frame::before, .menu-frame::after {
    content: '⚜';
    position: absolute;
    font-size: 1.5rem;
    color: var(--accent-color);
    background-color: var(--card-color);
    padding: 0 10px;
    line-height: 1;
}
.menu-frame::before { top: -12px; left: 50%; transform: translateX(-50%); }
.menu-frame::after { bottom: -12px; left: 50%; transform: translateX(-50%); }

/* 3. Cabeçalho */
.menu-header {
    text-align: center;
    margin-bottom: 2rem;
    font-family: var(--font-serif);
    padding-top: 1rem;
}

.menu-header h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
}

.menu-header p {
    font-style: italic;
    font-size: 1rem;
    opacity: 0.8;
    color: var(--text-secondary); /* Adapta ao tema claro/escuro */
}

/* 4. Grid de Layout */
.menu-body {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 1rem;
}

@media (min-width: 850px) {
    .menu-body {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

/* 5. Títulos das Categorias */
.menu-category h4 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    border-bottom: 1px dotted var(--accent-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    color: var(--text-primary); /* Preto no claro, Branco no escuro */
}

/* 6. O Item do Menu (A Correção Definitiva) */
.menu-item {
    display: flex;
    align-items: flex-end; /* Alinha texto e pontilhado pela base */
    margin-bottom: 1rem;
    font-family: var(--font-sans);
    cursor: pointer;
    text-decoration: none;
    width: 100%;
}

/* Nome da Massagem */
.menu-item-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--accent-color); /* Dourado */
    white-space: nowrap;
    margin-right: 8px;
    background: transparent !important; /* Sem fundo preto */
}

/* O Espaçador Pontilhado */
.menu-item-spacer {
    flex-grow: 1; /* Ocupa o espaço vazio */
    border-bottom: 2px dotted var(--accent-color);
    margin-bottom: 5px; /* Ajuste fino vertical */
    opacity: 0.4;
}

/* O Preço */
.menu-item-price {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-primary); /* Adapta cor */
    white-space: nowrap;
    margin-left: 8px;
    background: transparent !important; /* Sem fundo preto */
}

/* Interação */
.menu-item:hover .menu-item-name {
    color: var(--text-primary); /* Muda de cor ao passar o mouse */
}

/* 7. Rodapé */
.menu-footer {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
    border-top: 1px solid rgba(212, 180, 92, 0.3);
    padding-top: 1rem;
}



/* AJUSTES FINAIS MOBILE */
@media (max-width: 600px) {
    .menu-frame {
        padding: 1rem;
    }
    
    .menu-item-name {
        font-size: 0.85rem;
        white-space: normal; /* No mobile muito pequeno, permite nome quebrar linha se precisar */
        max-width: 70%;
    }
    
    .menu-item-price {
        font-size: 0.9rem;
    }
    
    .menu-header h3 {
        font-size: 1.5rem;
    }
}

.menu-frame {
    border: 2px solid var(--accent-color);
    padding: 2rem;
    position: relative;
    /* Borda interna decorativa */
    box-shadow: inset 0 0 0 4px var(--card-color), inset 0 0 0 6px var(--accent-color); 
}

/* Cantos decorativos */
.menu-frame::before, .menu-frame::after {
    content: '⚜'; /* Símbolo decorativo */
    position: absolute;
    font-size: 1.5rem;
    color: var(--accent-color);
    background-color: var(--card-color);
    padding: 0 10px;
}
.menu-frame::before { top: -14px; left: 50%; transform: translateX(-50%); }
.menu-frame::after { bottom: -14px; left: 50%; transform: translateX(-50%); }

.menu-header {
    text-align: center;
    margin-bottom: 2rem;
    font-family: var(--font-serif);
}

.menu-header h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.menu-header p {
    font-style: italic;
    font-size: 1.1rem;
    opacity: 0.8;
}

/* Layout em duas colunas no desktop */
.menu-body {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .menu-body {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.menu-category {
    margin-bottom: 2rem;
}

.menu-category h4 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    border-bottom: 1px dotted var(--accent-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.8rem;
    font-family: var(--font-sans);
}

.menu-item-name {
    font-weight: 600;
    position: relative;
    padding-right: 5px;
    background-color: var(--card-color); /* Para cobrir os pontos se necessário */
    z-index: 1;
}

.menu-item-spacer {
    flex-grow: 1;
    border-bottom: 1px dotted var(--accent-color); /* A linha pontilhada */
    margin: 0 5px;
    opacity: 0.5;
    position: relative;
    top: -5px;
}

.menu-item-price {
    font-weight: 700;
    white-space: nowrap;
    background-color: var(--card-color);
    padding-left: 5px;
    z-index: 1;
}

.menu-footer {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.8rem;
    opacity: 0.7;
    border-top: 1px solid rgba(212, 180, 92, 0.3);
    padding-top: 1rem;
}

/* --- AJUSTES FINOS MOBILE: RATINGS COMPACTOS --- */
@media (max-width: 768px) {
    /* 1. Compactar avaliações nos Cards de Massagem */
    .massage-ratings-grid {
        gap: 0.2rem; /* Reduzido de 0.5rem para 0.2rem */
        padding: 0.5rem 0;
        margin-bottom: 0.5rem;
    }

    /* 2. Compactar avaliações no Modal de Locais */
    .local-modal-ratings {
        gap: 0.4rem; /* Reduzido de 1rem para 0.4rem (Drástico) */
        padding-top: 1rem;
    }

    /* 3. Remover margens extras das linhas individuais */
    .rating-criterion, .rating-item {
        margin-bottom: 0;
        min-height: auto;
    }
    
    /* 4. Ajuste de tamanho da fonte para não quebrar linha */
    .criterion-label, .rating-label {
        font-size: 0.85rem;
        margin: 0;
    }
}

/* --- NOVA BUSCA GLOBAL (VISUAL LIMPO) --- */

/* Título Tipográfico */
.hero-title-text {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 6vw, 5rem); /* Grande e elegante */
    color: #FFF;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 15px rgba(0,0,0,0.6);
    text-align: center;
}

.text-accent {
    color: var(--accent-color);
    display: block;
    font-size: 0.4em; /* Subtítulo menor */
    letter-spacing: 4px;
    font-weight: 600;
    margin-top: 10px;
    text-transform: uppercase;
    font-family: var(--font-sans);
}

/* Container Principal da Busca (Estilo Card Flutuante) */
.global-search-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 2rem auto 3rem auto;
    text-align: left;
    z-index: 100;
    
    /* Visual do Card (Igual referência) */
    background-color: rgba(18, 18, 18, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
}

.search-label {
    display: block;
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.search-bar-container {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Wrapper do Input */
.input-wrapper {
    flex-grow: 1;
    position: relative;
    background-color: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    height: 55px; /* Altura confortável */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.input-wrapper:focus-within {
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(212, 180, 92, 0.3);
}

.search-icon-input {
    color: var(--accent-color);
    margin-right: 10px;
}

.search-filter-icon {
    color: var(--text-secondary);
    margin-left: 10px;
    transition: color 0.3s;
}
.search-filter-icon:hover { color: var(--accent-color); }

#global-search-input {
    background: transparent;
    border: none;
    color: #FFF;
    width: 100%;
    font-size: 1rem;
    font-family: var(--font-sans);
    outline: none;
}

#global-search-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Botão Integrado */
.search-btn-agenda {
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    border-radius: 8px; /* Quadrado arredondado para combinar com o input */
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Lista de Sugestões (Flutuante/Dropdown) */
.search-suggestions-list {
    position: absolute;
    top: 100%; 
    left: 0;
    width: 100%;
    
    background-color: rgba(18, 18, 18, 0.98); /* Fundo sólido escuro */
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-top: none;
    border-radius: 0 0 16px 16px; /* Arredonda embaixo para casar com o card */
    
    list-style: none;
    padding: 0;
    margin: 0;
    
    /* Controle de Visibilidade */
    max-height: 0;
    overflow-y: auto; /* Rolagem se a lista for longa */
    opacity: 0;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 15px 40px rgba(0,0,0,0.9);
    z-index: 1000; /* Acima de tudo */
}

/* Estado Aberto */
.search-suggestions-list.active {
    max-height: 350px; /* Altura máxima com scroll */
    opacity: 1;
    padding: 0.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Scrollbar fina para a lista */
.search-suggestions-list::-webkit-scrollbar {
    width: 6px;
}
.search-suggestions-list::-webkit-scrollbar-thumb {
    background-color: var(--accent-color);
    border-radius: 3px;
}

/* Item da Lista (Compacto e Discreto) */
.suggestion-item {
    display: flex;
    align-items: center;
    padding: 8px 15px; /* Padding reduzido para compactação */
    cursor: pointer;
    transition: background-color 0.2s;
    border-bottom: 1px solid rgba(255,255,255,0.03); /* Linha muito sutil */
}

.suggestion-item:last-child { border-bottom: none; }
.suggestion-item:hover { background-color: rgba(255, 255, 255, 0.05); }

/* Ícone Dourado */
.suggestion-icon {
    color: var(--accent-color); /* Dourado do tema */
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.suggestion-icon svg {
    width: 18px; /* Tamanho discreto */
    height: 18px;
}

/* Título */
.suggestion-title {
    color: #E0E0E0;
    font-size: 0.95rem;
    font-weight: 400; /* Peso normal para discrição */
    letter-spacing: 0.3px;
}

/* RESPONSIVIDADE SEARCH */
@media (max-width: 768px) {
    .search-bar-container {
        flex-direction: column; /* Empilha Input e Botão */
        gap: 0.8rem;
    }
    
    .input-wrapper, .search-btn-agenda {
        width: 100%;
        border-radius: 50px; /* Mais arredondado no mobile */
    }
    
    .search-suggestions-list {
        max-width: 100%; /* Dropdown ocupa largura total */
        position: relative; /* Empurra o conteúdo para baixo no mobile */
        border-radius: 8px;
        margin-top: 5px;
        border-top: 1px solid var(--border-color);
    }
    
    .hero-title-text {
        font-size: 2rem;
    }
}

/* --- SEÇÃO HERO: ONDE ESTAMOS --- */
.hero-locations-wrapper {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 2rem auto;
    text-align: left;
    animation: fadeIn 1s ease-out;
}

.hero-locations-title {
    color: #FFF;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: var(--font-sans);
}

.hero-locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

/* O CARD */
.hero-location-card {
    position: relative;
    height: 180px; /* Altura solicitada pelo usuário */
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

/* Garante que a imagem fique centralizada no corte */
.hero-location-card img {
    object-position: center center;
}

.hero-location-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent-color);
}

/* A FOTO (NATURAL DO PHOTOSHOP + ZOOM) */
.hero-location-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: none; /* Remove qualquer alteração de cor */
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Zoom suave */
}

.hero-location-card:hover img {
    transform: scale(1.05); /* Efeito de zoom leve ao passar o mouse */
}

/* Ícone e Texto (Topo Esquerdo) */
.hero-location-info {
    position: absolute;
    top: 8px;  /* Bem próximo da borda superior */
    left: 15px; /* Leve ajuste na esquerda também */
    transform: none;
    display: flex;
    align-items: center;
    gap: 8px;
    width: auto; /* Ocupa apenas o espaço necessário */
    justify-content: flex-start;
    z-index: 2;
    pointer-events: none;
}

.hero-location-info svg {
    color: var(--accent-color);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.8));
}

.hero-location-info span {
    color: #E0E0E0;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.9); /* Sombra forte para leitura */
    font-family: var(--font-sans);
}

.hero-locations-footer {
    color: var(--text-secondary);
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 0.5rem;
}

@media (max-width: 600px) {
    /* MUDANÇA: 2 Colunas (Lado a Lado) para caber as 4 na tela */
    .hero-locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem; /* Espaço um pouco menor */
    }

    /* Altura ajustada para o formato quadrado/retangular */
    .hero-location-card {
        height: 120px; /* Reduzido de 180px para 120px */
    }
    
    /* Ajuste fino da fonte para não ficar grande demais no card menor */
    .hero-location-info span {
        font-size: 0.9rem;
    }
    
    .hero-location-info svg {
        width: 18px;
        height: 18px;
    }
}

/* ========================================================================== */
/* PÁGINA DEDICADA: TABELA DE PREÇOS (.tabela.html) */
/* ========================================================================== */

main.tabela-container {
    padding: 120px 1rem 4rem 1rem;
    min-height: 100vh;
    background-color: var(--bg-color); /* Obedece ao tema claro/escuro */
    display: flex;
    justify-content: center;
    transition: background-color 0.3s ease;
}

/* Quando o frame está na página dedicada, ele pode ser mais largo que no modal */
.tabela-container .menu-frame {
    width: 100%;
    max-width: 1000px;
    height: fit-content;
}

/* Complementos da tabela de preços */
.tabela-quiz-cta {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem 1.5rem;
    margin: 0 0 2rem;
    padding: 1.25rem 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(212, 180, 92, 0.65);
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(212, 180, 92, 0.12), rgba(212, 180, 92, 0.03));
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12), inset 0 0 24px rgba(212, 180, 92, 0.06);
}

.tabela-quiz-cta h4,
.tabela-pagamentos h4 {
    margin: 0;
    color: var(--text-primary);
    font-family: var(--font-primary);
}

.tabela-quiz-cta p {
    margin: 0.35rem 0 0;
    color: var(--text-secondary);
    font-size: 0.92rem;
}

.tabela-quiz-cta .btn {
    min-width: 260px;
    text-align: center;
}

.tabela-quiz-brilho {
    position: absolute;
    top: 0.35rem;
    left: 0.55rem;
    color: var(--accent-color);
    opacity: 0.7;
}

.tabela-pagamentos {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212, 180, 92, 0.35);
}

.tabela-pagamentos > h4 {
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.tabela-pagamentos-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
}

.tabela-pagamento-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    min-height: 94px;
    padding: 1rem;
    border: 1px solid rgba(212, 180, 92, 0.35);
    border-radius: 12px;
    background-color: color-mix(in srgb, var(--card-color) 92%, var(--accent-color) 8%);
}

.tabela-pagamento-item strong,
.tabela-pagamento-item span {
    display: block;
}

.tabela-pagamento-item strong {
    color: var(--text-primary);
}

.tabela-pagamento-item div > span:not(.tabela-bandeiras) {
    margin-top: 0.25rem;
    color: var(--text-secondary);
    font-size: 0.78rem;
    line-height: 1.35;
}

.tabela-pagamento-icone {
    flex: 0 0 auto;
    color: var(--accent-color);
}

.tabela-pagamento-item div > .tabela-desconto,
body.dark-mode .tabela-pagamento-item div > .tabela-desconto,
body:not(.dark-mode) .tabela-pagamento-item div > .tabela-desconto {
    display: inline-block;
    width: fit-content;
    padding: 0.18rem 0.5rem;
    border-radius: 999px;
    color: #18130a;
    background-color: var(--accent-color);
    font-weight: 700;
}

.tabela-logo-pix {
    width: 70px;
    height: 32px;
    flex: 0 0 auto;
    object-fit: contain;
    object-position: left center;
}

.tabela-bandeiras {
    display: flex !important;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin-top: 0.55rem;
}

.tabela-bandeiras img {
    width: 46px;
    height: 28px;
    padding: 0.18rem;
    border: 1px solid rgba(212, 180, 92, 0.45);
    border-radius: 4px;
    background-color: #ffffff;
    object-fit: contain;
}

@media (max-width: 760px) {
    .tabela-quiz-cta {
        grid-template-columns: 1fr;
        padding: 1.15rem;
        text-align: center;
    }

    .tabela-quiz-cta .btn {
        width: 100%;
        min-width: 0;
    }

    .tabela-pagamentos-grid {
        grid-template-columns: 1fr;
    }

    .tabela-pagamento-item {
        min-height: 0;
    }
}

/* --- SEÇÃO HERO: PROFISSIONAIS --- */
.hero-prof-wrapper {
    width: 100%;
    max-width: 900px; /* Um pouco mais largo para caber 3 lado a lado */
    margin: 2rem auto;
    text-align: left;
    animation: fadeIn 1.2s ease-out;
}

.hero-section-title {
    color: #FFF;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: var(--font-sans);
    padding-left: 5px; /* Alinhamento visual */
}

.hero-prof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
}

/* CARD DO PROFISSIONAL */
.hero-prof-card {
    position: relative;
    display: block;
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3 / 4; /* Formato Retrato (Vertical) */
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.hero-prof-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.hero-prof-img-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-prof-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Sem filtro de cor, apenas ajuste de brilho leve */
    filter: brightness(0.8);
    transition: transform 0.5s ease, filter 0.3s ease;
}

.hero-prof-card:hover img {
    transform: scale(1.05);
    filter: brightness(1.0);
}

/* Gradiente Preto na parte inferior para o texto aparecer */
.hero-prof-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.95), transparent);
    pointer-events: none;
}

/* Informações (Nome e Frase) */
.hero-prof-info {
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 2;
    padding: 0 10px;
}

.hero-prof-info h4 {
    color: #FFF;
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin-bottom: 2px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.hero-prof-info p {
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobile: Profissionais Lado a Lado (3 Colunas) */
@media (max-width: 600px) {
    .hero-prof-grid {
        grid-template-columns: repeat(3, 1fr); /* FORÇA OS 3 LADO A LADO */
        gap: 0.5rem; /* Espaço menor para caber */
    }
    
    .hero-prof-card {
        border-radius: 8px; /* Cantos menos arredondados para aproveitar espaço */
    }

    .hero-prof-info {
        padding: 0 2px;
        bottom: 10px;
    }
    
    /* Fonte menor para caber o nome sem quebrar */
    .hero-prof-info h4 {
        font-size: 0.9rem; 
        line-height: 1.1;
    }
    
    /* Esconde a frase de efeito no mobile se ficar muito apertado, ou deixa minúscula */
    .hero-prof-info p {
        font-size: 0.55rem;
        letter-spacing: 0;
        white-space: nowrap; /* Tenta não quebrar linha */
        overflow: hidden;
        text-overflow: ellipsis;
    }
}
/* --- SEÇÃO MASSAGEM DAY --- */
.mday-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.mday-intro p {
    margin-bottom: 1rem;
}

.mday-benefits {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.mday-benefits li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--accent-color);
    font-weight: 600;
}

.mday-benefits li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: #FFF;
}

.mday-alert {
    color: #FFF;
    font-weight: 700;
    margin-top: 1rem;
}

/* --- NOVO LAYOUT: FLYER DINÂMICO MASSAGEM DAY --- */
.mday-flyer-card {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    background-color: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.mday-flyer-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.mday-flyer-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Wrapper para dar altura ao card (proporção retrato) */
.mday-flyer-card::before {
    content: '';
    display: block;
    padding-top: 140%; /* Proporção retrato */
}

/* O conteúdo flutuante por cima da imagem */
.mday-flyer-content {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 14px 12px;
    z-index: 10;
}

/* Posições Ímpar/Par */
.mday-content-right {
    right: 0;
    text-align: right;
    align-items: flex-end;
}

.mday-content-left {
    left: 0;
    text-align: left;
    align-items: flex-start;
}

/* Textos do Flyer */
.mday-flyer-promo {
    font-family: var(--font-sans);
    font-size: 1.6rem;
    font-weight: 800;
    color: #FFF;
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.mday-flyer-mes {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 1.9rem;
}

/* Área central que contém os itens de massagem */
.mday-items-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
    justify-content: center;
}

/* Cada item (massagem + preço) */
.mday-item {
    padding: 5px 0;
}

/* Divisor entre itens */
.mday-item-divider {
    width: 60%;
    height: 1px;
    background: rgba(255,255,255,0.25);
    margin: 4px 0;
    align-self: center;
}

.mday-content-right .mday-item-divider {
    margin-left: auto;
    margin-right: 0;
}

.mday-content-left .mday-item-divider {
    margin-left: 0;
    margin-right: auto;
}

.mday-flyer-titulo {
    font-family: var(--font-serif);
    color: #FFF;
    line-height: 1.0;
    margin-bottom: 3px;
}

.mday-t1 { font-size: 0.75rem; font-family: var(--font-sans); letter-spacing: 2px; opacity: 0.85;}
.mday-t2 { font-size: 1.3rem; }
.mday-t3 { font-size: 1.3rem; }

/* Preços */
.mday-flyer-precos {
    margin-bottom: 0;
}

.mday-preco-de {
    font-family: var(--font-sans);
    color: #FFF;
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: -4px;
}

.mday-riscado {
    color: #cc1a1a;
    font-weight: 700;
    position: relative;
}

/* Risco diagonal elegante */
.mday-riscado::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -10%;
    width: 120%;
    height: 2px;
    background-color: #FFF;
    transform: rotate(-10deg);
}

.mday-preco-por {
    font-family: var(--font-serif);
    color: #FFF;
    font-size: 1rem;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.mday-destaque {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
}

/* Footer / Locais — agora no fluxo normal (flex-shrink: 0) */
.mday-flyer-footer {
    flex-shrink: 0;
}

.mday-flyer-local {
    font-family: var(--font-sans);
    color: #cc1a1a;
    font-size: 0.85rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2px;
}

.mday-flyer-tel {
    font-family: var(--font-sans);
    color: #FFF;
    font-size: 0.95rem;
    font-weight: 800;
}

/* Responsividade Mobile */
@media (max-width: 480px) {
    .mday-flyer-card {
        max-width: 340px;
    }
    
    .mday-flyer-promo { font-size: 1.3rem; }
    .mday-flyer-mes { font-size: 1.5rem; }
    
    .mday-t1 { font-size: 0.65rem; }
    .mday-t2, .mday-t3 { font-size: 1.1rem; }
    
    .mday-preco-de { font-size: 0.85rem; }
    .mday-destaque { font-size: 1.9rem; }
    
    .mday-flyer-local { font-size: 0.75rem; }
    .mday-flyer-tel { font-size: 0.8rem; }
}

/* --- COMPACTAÇÃO MOBILE: MASSAGEM DAY --- */
@media (max-width: 768px) {
    /* 1. Reduz o padding geral da seção */
    #massagem-day-section {
        padding: 2rem 0 !important; /* Era 5rem */
    }

    /* 2. Compacta o texto de introdução */
    .mday-intro {
        margin-bottom: 1.5rem; /* Era 3rem */
        font-size: 0.95rem; /* Fonte menor */
        padding: 0 10px;
    }

    .mday-intro p {
        margin-bottom: 0.5rem;
    }

    /* 3. Lista de Benefícios mais apertada */
    .mday-benefits {
        gap: 0.5rem; /* Reduz espaço entre itens */
        margin: 1rem 0;
        flex-direction: column; /* Empilha para ler melhor */
        align-items: center;
    }

    .mday-benefits li {
        font-size: 0.9rem;
        margin: 0;
    }

    /* 4. Card do Mês Compacto */
    .mday-header {
        padding: 0.5rem; /* Cabeçalho mais fino */
    }
    
    .mday-header h3 {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }

    .mday-image-wrapper {
        width: 100%; /* Aumenta a largura relativa para ver melhor a foto */
        margin: auto; /* Menos margem vertical */
    }

    /* 5. Etiqueta de Preço menor */
    .mday-price-tag {
        padding: 5px 10px;
        bottom: 10px;
        right: 10px;
    }
    
    .mday-new-price { font-size: 1.1rem; }
    .mday-old-price { font-size: 0.75rem; }

    /* 6. Botão CTA */
    .mday-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        width: 100%; /* Botão largura total no mobile */
        justify-content: center;
    }
}

/* --- CTA BUTTON MASSAGEM DAY --- */
.mday-cta-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

/* --- CARROSSEL DE PRINTS SOCIAIS --- */
.social-carousel-wrapper {
    max-width: 400px; /* Largura ideal para prints de celular */
    margin: 0 auto;
    position: relative;
}

.social-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory; /* O segredo do swipe perfeito */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    background-color: #000;
    
    /* Esconder Scrollbar */
    scrollbar-width: none; /* Firefox */
}
.social-track::-webkit-scrollbar { display: none; /* Chrome/Safari */ }

.social-slide {
    flex: 0 0 100%; /* Cada slide ocupa 100% do container */
    scroll-snap-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #121212;
}

.social-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain; /* Garante que o print inteiro apareça */
    max-height: 700px; /* Limite de altura para não estourar em monitores */
}

/* Controles */
.social-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding: 0 1rem;
}

.social-btn {
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-btn:hover {
    background: var(--accent-color);
    color: #000;
}

.social-counter {
    color: var(--text-secondary);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

/* --- OTIMIZAÇÃO GLOBAL DE ESPAÇAMENTO (MOBILE) --- */
@media (max-width: 768px) {
    /* Reduz o espaçamento entre seções pela metade */
    .content-section {
        padding: 2.5rem 0; 
    }

    /* Aproxima o título da seção do conteúdo */
    .section-title {
        font-size: 2rem; /* Leve redução da fonte */
        margin-bottom: 1rem;
    }

    /* Aproxima o subtítulo do grid */
    .section-subtitle {
        margin-bottom: 2rem;
    }
    
    /* Remove margens excessivas do container principal */
    .container {
        width: 92%; /* Ganha um pouco mais de largura lateral */
    }
}

/* --- BARRA DE TOPO (REDES SOCIAIS) --- */
.top-bar {
    background-color: #000; /* Fundo preto sólido */
    height: 36px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1002; /* Acima do header */
    border-bottom: none; /* Linha removida */
    display: flex;
    align-items: center;
}

.top-bar-container {
    display: flex;
    justify-content: flex-end; /* Alinha tudo à direita */
    align-items: center;
    width: 95%;
    max-width: 1800px;
}

.top-bar-text {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-right: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.top-social-icons {
    display: flex;
    gap: 15px;
}

.top-social-icons a {
    color: var(--accent-color); /* Ícones dourados */
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    min-height: 36px;
    transition: transform 0.2s, color 0.2s;
}

.top-social-icons a:hover {
    transform: scale(1.1);
    color: #FFF;
}

/* AJUSTE NO CABEÇALHO PRINCIPAL PARA DESCER */
.main-header {
    top: 36px; /* Empurra o menu para baixo da barra social */
}

/* AJUSTE NO MOBILE */
@media (max-width: 600px) {
    .top-bar-container {
        justify-content: center; /* Centraliza no celular */
    }
    
    .top-bar-text {
        display: none; /* Esconde o texto "Siga-nos" para economizar espaço */
    }
}

/* --- AJUSTE MODAL LOCAIS (MOBILE) --- */
@media (max-width: 600px) {
    /* Título em uma linha */
    .local-modal-title {
        white-space: nowrap;
        font-size: 1.3rem;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-bottom: 0.5rem; /* Menos espaço abaixo do título */
    }
    
    /* Descrição menor */
    .local-modal-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.4;
    }

    /* COMPACTAÇÃO AGRESSIVA (MOBILE) */
    .local-modal-info {
        padding: 0.8rem 1rem !important; /* Mínimo de borda */
    }

    /* Título colado no topo */
    .local-modal-title {
        margin-top: 0;
        margin-bottom: 0.3rem;
        font-size: 1.3rem;
    }

    /* Descrição apertada */
    .local-modal-description {
        margin-bottom: 0.8rem;
        font-size: 0.85rem;
        line-height: 1.3;
    }

    /* Botão com menos margem */
    .local-modal-info .btn {
        margin-bottom: 1rem !important; /* Reduz o espaço abaixo do botão */
        padding: 0.6rem 1rem; /* Botão mais fino */
    }

    /* Avaliações compactas */
    .local-modal-ratings {
        padding-top: 0.8rem;
        gap: 0.2rem; /* Quase colado */
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .rating-item {
        min-height: 20px; /* Altura mínima da linha */
    }

    .rating-item {
        margin-bottom: 2px; /* Remove margem extra */
    }
}

/* ============================================================
   MODAL - MASSAGEM AS CEGAS (Grupos e Datas)
   ============================================================ */
.cegas-modal-content {
    max-width: 680px;
    height: min(92vh, 900px);
    max-height: calc(100dvh - 2rem);
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.cegas-modal-header {
    background: linear-gradient(135deg, rgba(212,180,92,0.12) 0%, rgba(0,0,0,0) 100%);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 3.5rem 0.85rem;
    text-align: center;
    flex-shrink: 0;
}
.cegas-modal-header h2 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--accent-color);
    margin: 0 0 0.4rem 0;
}
.cegas-modal-header p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}
#cegas-grupos-container {
    padding: 1.5rem;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.cegas-grupo {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1.2rem;
    transition: border-color 0.2s ease;
}
.cegas-grupo:hover { border-color: var(--accent-color); }
.cegas-grupo--esgotado { opacity: 0.55; pointer-events: none; }
.cegas-grupo-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.85rem;
    flex-wrap: wrap;
}
.cegas-data-hora { display: flex; align-items: center; gap: 0.6rem; }
.cegas-data-icon { font-size: 1.4rem; flex-shrink: 0; }
.cegas-data { display: block; font-weight: 700; color: var(--text-primary); font-size: 0.95rem; }
.cegas-hora { display: block; font-size: 0.82rem; color: var(--text-secondary); margin-top: 0.15rem; }
.cegas-faixa-tag {
    background: linear-gradient(135deg, var(--accent-color), #b8943c);
    color: #111;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
}
.cegas-vagas {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.85rem;
    padding: 0.4rem 0.7rem;
    border-radius: 6px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-color);
}
.cegas-vagas strong { color: #4caf82; }
.cegas-vagas--critico strong { color: #f0a500; }
.cegas-vagas--esgotado strong { color: #e05252; }
.cegas-participantes { margin-bottom: 1rem; }
.cegas-participantes-titulo {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 0.5rem 0;
}
.cegas-participantes-lista { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.3rem; }
.cegas-participante { font-size: 0.875rem; color: var(--text-primary); padding: 0.3rem 0.5rem; background: rgba(255,255,255,0.03); border-radius: 5px; }
.cegas-participante-observacoes { display: flex; flex-wrap: wrap; gap: 0.3rem; margin: 0.35rem 0 0 1.35rem; }
.cegas-participante-observacao { padding: 0.18rem 0.45rem; border-left: 2px solid var(--accent-color); border-radius: 0 4px 4px 0; background: rgba(212, 180, 92, 0.08); color: var(--text-secondary); font-size: 0.78rem; line-height: 1.35; }
.cegas-participante--vazio { color: var(--text-secondary); font-style: italic; }
.cegas-btn-inscrever {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #111;
    background: linear-gradient(135deg, var(--accent-color), #b8943c);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    letter-spacing: 0.3px;
    border: 0;
    cursor: pointer;
}
.cegas-btn-inscrever:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,180,92,0.3); }
.cegas-btn-esgotado {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-color);
    cursor: default;
}
.cegas-loading, .cegas-erro, .cegas-vazio { text-align: center; padding: 3rem 1.5rem; color: var(--text-secondary); }
.cegas-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-color);
    border-top-color: var(--accent-color);
    border-radius: 50%;
    animation: cegas-spin 0.8s linear infinite;
    margin: 0 auto 1rem;
}
@keyframes cegas-spin { to { transform: rotate(360deg); } }
@media (max-width: 480px) {
    #modal-cegas { padding: 0.5rem; }
    .cegas-modal-content {
        height: calc(100dvh - 1rem);
        max-height: calc(100dvh - 1rem);
    }
    .cegas-modal-header { padding: 0.75rem 3rem 0.65rem; }
    .cegas-modal-header h2 { font-size: 1.3rem; }
    #cegas-grupos-container { padding: 1rem; }
    .cegas-grupo-header { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   PAGAMENTO PIX - MASSAGEM ÀS CEGAS
   ============================================================ */
#modal-pix-cegas {
    z-index: 1100;
}

.pix-cegas-modal-content {
    width: min(94vw, 520px);
    max-height: calc(100dvh - 1.5rem);
    overflow-y: auto;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.pix-cegas-header {
    padding: 1rem 3.25rem 0.8rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(135deg, rgba(212,180,92,0.12), transparent);
}

.pix-cegas-header h2 {
    margin: 0;
    color: var(--accent-color);
    font-family: var(--font-serif);
    font-size: 1.5rem;
}

.pix-cegas-header p {
    margin: 0.2rem 0 0;
    color: var(--text-secondary);
}

.pix-cegas-body {
    padding: 1rem 1.25rem 1.25rem;
    text-align: center;
}

.pix-cegas-sessao {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: rgba(255,255,255,0.04);
}

.pix-cegas-sessao p {
    margin: 0;
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.pix-cegas-sessao span {
    display: block;
    margin-top: 0.15rem;
    color: var(--text-primary);
}

.pix-cegas-valor {
    margin: 0.8rem 0 0.65rem;
    color: var(--text-primary);
    font-size: 1.05rem;
}

.pix-cegas-valor strong {
    color: var(--accent-color);
}

.pix-cegas-qrcode {
    display: block;
    width: min(48vw, 230px);
    height: auto;
    margin: 0 auto 0.8rem;
    padding: 0.35rem;
    background: #fff;
    border-radius: 8px;
}

.pix-cegas-label {
    display: block;
    margin-bottom: 0.35rem;
    text-align: left;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 600;
}

.pix-cegas-copia {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.5rem;
}

#pix-cegas-codigo {
    min-width: 0;
    padding: 0.65rem;
    color: var(--text-primary);
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-color);
    border-radius: 6px;
}

.pix-cegas-copia .btn {
    padding: 0.65rem 0.85rem;
    white-space: nowrap;
}

.pix-cegas-feedback {
    min-height: 1.2em;
    margin: 0.3rem 0;
    color: #4caf82;
    font-size: 0.8rem;
}

.pix-cegas-aviso {
    margin: 0.55rem 0 0.8rem;
    color: var(--text-secondary);
    font-size: 0.83rem;
    line-height: 1.4;
}

.pix-cegas-whatsapp {
    display: block;
    width: 100%;
    text-align: center;
}

@media (max-width: 520px) {
    #modal-pix-cegas {
        padding: 0.5rem;
    }

    .pix-cegas-modal-content {
        width: 100%;
        max-height: calc(100dvh - 1rem);
    }

    .pix-cegas-header {
        padding: 0.75rem 3rem 0.6rem;
    }

    .pix-cegas-header h2 {
        font-size: 1.3rem;
    }

    .pix-cegas-body {
        padding: 0.75rem;
    }

    .pix-cegas-sessao {
        grid-template-columns: 1fr;
        gap: 0.35rem;
        text-align: left;
    }

    .pix-cegas-sessao p {
        display: grid;
        grid-template-columns: 4.5rem 1fr;
        gap: 0.3rem;
    }

    .pix-cegas-sessao span {
        display: inline;
        margin: 0;
    }

    .pix-cegas-qrcode {
        width: min(55vw, 210px);
    }

    .pix-cegas-copia {
        grid-template-columns: 1fr;
    }
}
