/* --- Reset e Configurações Globais --- */
        :root {
            --primary-blue: #0a2e6c;
            --secondary-blue: #007bff;
            --light-gray: #f8f9fa;
            --text-color: #333;
            --white: #ffffff;
        }

        @font-face {
            font-family: 'Luxe Uno';
            src: url(../fonts/LuxeUno/LuxeUno-Regular.ttf) format('truetype');
        }

        @font-face {
            font-family: 'Luxe Uno Heavy';
            src: url(../fonts/LuxeUno/LuxeUno-Heavy.ttf) format('truetype');
        }

        * {
            margin: 0;
            padding: 0;
            border: 0;
            box-sizing: border-box;
            vertical-align: baseline;
            background: none repeat scroll 0 0 transparent;
            outline: 0;

        }

        body {
            font-family: 'Luxe Uno', sans-serif;
            color: var(--text-color);
            background-color: var(--white);
        }

        .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 20px;
            
        }

        section {
            padding: 80px 0;
        }

        h1, h2, h3 {
            color: var(--primary-blue);
            font-weight: 700;
        }

        h1 { font-size: 3rem; }
        h2 { font-size: 2.5rem; text-align: center; margin-bottom: 50px;}
        p { font-size: 1rem; line-height: 1.6; }

        .btn {
            display: inline-block;
            padding: 15px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            letter-spacing: 1px;
        }

        .btn-primary {
            text-decoration: none;
            align-items: left;
            z-index: 300;
            background-color: rgb(0, 62, 149);
            background-image: none;
            color: rgb(255, 255, 255);
            border: 0;
            font-size: 18px;
            text-align: center;
            border-radius: 100px;
            font-family: "Luxe Uno", sans-serif;
            font-style: normal;
            font-weight: 800;
            padding: 10px;
            padding-left: 25px;
            padding-right: 25px;
            letter-spacing: 1px;
        }

        .btn-primary:hover {
            background-color: #0056b3;
        }

        .btn-light {
            background-color: rgb(0, 62, 149);
            color: var(--secondary-blue);
            border: 0;
            width: 180px;
        }

        .btn-light2 {
            color: rgb(0, 62, 149);
            border: 0;
            width: 350px;
            border-radius: 50px;
            background-color: var(--white);
            font-size: 18px;
            font-weight: 800;
            white-space: nowrap;
            letter-spacing: 2px;
            position: static; /* Alterado de relative para static */
            height: 50px;
            line-height: 15px;
            margin-top: 30px; /* Adiciona espaço acima do botão */
            margin-left: auto; /* Centraliza o botão horizontalmente */
            margin-right: auto; /* Centraliza o botão horizontalmente */
            display: block; /* Garante que o botão ocupe a largura definida */
        }

        .btn-light2:hover {
            background-color: var(--secondary-blue);
            color: var(--white);
            letter-spacing: 2px;
        }
        
        .btn-light:hover {
            background-color: var(--light-gray);
        }

        /* --- Header / Navegação --- */
        .header {
            background-color: rgb(21, 101, 192);
            border-color: rgb(0, 0, 0);
            width: 100%;
            padding-bottom: 20px;
            position: absolute;
            top: 0;
            z-index: 1000;
        }

        .header .container {
            display: flex;
            align-items: center;
            justify-content: space-between; /* Garante que a logo e o menu fiquem nas extremidades */
            letter-spacing: 2px;
    /* margin-left removido para permitir a centralização pelo .container */
        }
        .header .logo {
            margin-left: -30%;
            margin-right: 70%;
        }
        .header li a {
            margin-left: 10%;
        }

        .logo {
            padding-top: 10px;
            padding-bottom: 10px;
            margin-top: 20px;
    margin-left: 0; /* Remove margem desnecessária */
        }

        .nav-menu ul {
            list-style: none;
            display: flex;
            align-items: center;
    gap: 40px; /* Espaço entre os itens do menu */
            margin: 0;
            padding: 0;
            padding-top: 20px;
            white-space: nowrap;
            font-size: 14px;
        }

        .nav-menu ul li {
    /* O espaçamento agora é controlado pelo 'gap' no 'ul' */
        }

        .nav-menu a {
            color: var(--white);
            text-decoration: none;
            font-family: 'Luxe Uno', sans-serif; /* Garante a mesma fonte */
            font-weight: 800; /* Ajusta o peso da fonte */
        }
        
        .menu-toggle {
            display: none; /* Escondido no desktop */
            background: none;
            border: none;
            color: var(--white);
            font-size: 28px;
            cursor: pointer;
            z-index: 1100;
        }

        /* --- Seção Hero --- */
        .hero {
            background-image: url('../images/image.png'); /* Caminho para a nova imagem de fundo */
            background-size: contain; /* Cobre a área sem distorcer */
            background-repeat: no-repeat;
            background-position: top center; /* Alinha a imagem no topo e centro */
            color: var(--white);
            background-color: #d7e1e8;
            text-align: center; /* Centraliza o conteúdo do hero */
            padding: 200px 80px 55px 80px; /* Padding horizontal reduzido */
            margin-top: 80px; /* Remove a margem que causava o espaço em branco */
        }

        .hero h1 {
            color: var(--white);
            font-size: 2.4rem;
            margin: 0 0 30px auto;
            text-align: left;
            font-family: "Luxe Uno", sans-serif;
            padding-top: 60px;
            font-weight: 700;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            letter-spacing: 2px;
            
        }

        .hero h1 span {
            font-family: "Luxe Uno", sans-serif;
            font-style: normal;
            font-weight: 400;
            -webkit-font-smoothing: antialiased;
            letter-spacing: 2px;
        }
        
        /* --- Seção Tipos de Tratamentos --- */
        .treatments {
            background-image: url('../images/fundinho.png');
            background-size: cover;
            background-attachment: fixed; /* Fixa a imagem de fundo durante o scroll */
            background-repeat: no-repeat;
            background-color: var(--primary-blue); /* Cor de fallback */
            margin-top: 0; /* Remove a margem negativa */
            padding: 40px 0; /* Padding vertical reduzido */
        }
        .treatments h2 {
            color: var(--white);
            font-size: 62px !important;
            font-weight: 700;
            align-items: left;
            justify-content: left;
            text-align: left;
            font-family: 'Luxe Uno', sans-serif;
            letter-spacing: 2px;
        }
        .treatments-content {
            display: flex;
            align-items: flex-start; /* Alinha os itens no topo */
            gap: 50px;
            flex-wrap: nowrap; /* Impede que os itens quebrem a linha */
        }

        .treatments-left-col {
            display: flex;
            flex-direction: column;
            flex: 0 0 45%; /* Ocupa 45% da largura */
        }

        .treatments-images-container {
            flex: 0 0 50%; /* Ocupa 50% da largura */
            min-width: 0; /* Permite que os itens flexíveis encolham */
        }

        .treatments-image img {
            width: 100%;
            height: auto;
            border-radius: 10px;
        }
        .accordion-item {
            background-color: var(--white);
            margin-bottom: 10px;
            border-radius: 10px;
            background-color: #f2f2f2;
        }
        .accordion-header {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 300;
            font-style: italic;
            letter-spacing: 1px;
            font-size: 18px;
            color: rgb(64, 84, 95);
            height: 50px;
            transition: all .2s ease;
            background-color: #f2f2f2;
            border-radius: 10px 15px 15px 10px !important;
        }

        .accordion-header:hover {
            color: #007bff;
        }

        .accordion-header i {
            transition: transform 0.3s ease;
        }
        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            padding: 0 20px;
        }
        .accordion-content p {
            padding-bottom: 20px;
            
        }
        .accordion-item.active .accordion-header i {
            transform: rotate(180deg);
        }
        .treatments-images-container {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 40px;
            height: auto; 
            margin-left: 50px;
        }
 
        .treatments-image-large {
            width: 70%;
            height: 350px; /* Define uma altura fixa para a imagem maior */
            position: relative; /* Necessário para posicionar o floco de neve */
            overflow: visible; /* Permite que o floco de neve "vaze" para fora */
        }
 
        .treatments-image-large img {
            width: 100%;
            height: 100%;
            border-radius: 10px;
            object-fit: cover;
            position: relative; /* Para garantir que a imagem fique sobre o floco de neve */
            z-index: 1;
        }

        .snowflake-bg-treatments {
            position: absolute;
            bottom: -40px; /* Metade para fora */
            right: -90%; /* Metade para fora */
            width: 450px; /* Tamanho do floco de neve */
            height: 480px;
            z-index: 0; /* Fica atrás da imagem */
            transform: scaleX(-1);
        }

        .snowflake-bg-treatments img {
            width: 100%;
            height: 100%;
            opacity: 0.8; /* Leve transparência para integrar melhor */
        }
 
        .treatments-images-small-row {
            display: flex;
            gap: 30px;
            height: 250px; 
            margin-left: 0px;/* Define uma altura fixa para a linha das imagens menores */
        }
 
        .treatments-image-small-1 {
            flex: 1;
            height: 100%; 
            width: auto;/* Faz com que o container da imagem ocupe toda a altura da linha */
        }

        .treatments-image-small-2 {
            flex: 1;
            height: 80%;
            width: 150px;
        }
 
        .treatments-image-small img {
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
        }

        .treatments-cta {
            text-align: left; /* Alinha o botão à esquerda */
        }

        .treatments-accordion .accordion-item {
            position: relative;
        }
        .treatments-accordion .accordion-content {
            position: relative; /* Garante o comportamento padrão de empurrar */
        }

        /* --- Seção "Quer Saber Mais?" --- */
        .more-info {
            text-align: center;

        }

        .more-info h2 {
            font-family: "Luxe Uno", sans-serif;
            font-size: 56px;
            color: #003e95;
            letter-spacing: 2px;
        }

        .more-info p {
            margin: -50px auto 30px;
            color: rgba(0, 62, 149, 0.3);
            font-size: 34px;
            letter-spacing: 1px;
        }


        .filter-buttons {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .filter-buttons .btn {
            background-color: var(--primary-blue);
            color: white;
            padding: 10px 25px;
            font-size: 18px;
        }
        
        /* --- Seção "O que é Crioterapia" --- */
        .info-section {
            background: url(../images/fundao.png);
            background-size: cover;
            padding-top: 150px;
            padding-bottom: 50px;
        }
        .info-content {
            display: flex;
            align-items: center;
            gap: 50px;
            padding: 0;
            margin-top: -100px;
        }
        .info-text, .info-image {
            flex: 1;
        }
        .info-text h2 {
            text-align: left;
            color: var(--white);
            margin-bottom: 20px;
        }
        .info-text p {
            color: var(--light-gray);
            margin-bottom: 30px;
            letter-spacing: 1px;
            font-size: 18px;
        }
        .info-image img {
            width: 450px;
            height: 800px;
            border-radius: 10px;
        }

        /* --- Seção de Testemunhos --- */
        .testimonials {
            background-image: url('../images/fundinho.png');
            background-size: cover;
            background-attachment: fixed; /* Fixa a imagem de fundo durante o scroll */
            background-repeat: no-repeat;
            background-color: var(--primary-blue); /* Cor de fallback */
        }
        .testimonials h2 {
            color: var(--white);
            font-size: 62px !important;
            font-weight: 400;
        }
        .testimonials-grid {
            display: flex;
            justify-content: center;
            gap: 30px;
        }
        .testimonial-card {
            background-color: var(--white);
            padding: 30px;
            border-radius: 10px;
            width: 350px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        .testimonial-header {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        .testimonial-header img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
        }
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .testimonial-author h4 {
            color: var(--primary-blue);
            margin: 0;
        }
        .stars {
            color: #ffc107;
        }
        
        /* --- Seção "Cryo Club Care" --- */
        .info-section2 {
            background: url(../images/fundao.png);
            background-size: cover;
            padding-top: 100px;
            padding-bottom: 100px;
        }
        .info-content2 {
            display: flex;
            align-items: center;
            gap: 50px;
            padding: 0;
        }
        .info-text2, .info-image2 {
            flex: 1;
        }

        .info-text2 h3 {
            letter-spacing: 12px;
            text-align: left;
            color: rgb(38, 141, 243);
            margin-bottom: 20px;
            font-size: 18px;
            opacity: 0.8;
            font-weight: 800;
        }

        .info-text2 h2 {
            text-align: left;
            color: var(--white);
            margin-bottom: 20px;
            font-size: 40px;
            font-weight: 400;
            letter-spacing: 2px;
        }
        .info-text2 p {
            color: var(--light-gray);
            margin-bottom: 30px;
            width: 100;
            font-size: 18px;
            margin-top: 40px;
            opacity: 0.9;
        }
        .info-image2 img {
            width: 450px;
            height: 800px;
            border-radius: 10px;
        }
        
        /* --- Seção Agendamento --- */
        .booking {
            text-align: center;
        }
        .booking .icon {
            font-size: 1.5rem;
            color: var(--secondary-blue);
            margin-bottom: 5px;
            align-items: start;
            justify-content: left;
            text-align: left;
        }

        .booking h2 {
            letter-spacing: 2px;
            font-size: 3rem;
            font-weight: 400;
            align-self: left;
            text-align: left;
            color: #003e95;
        }

        .booking p {
            margin-bottom: 30px;
            font-size: 1.1rem;
            text-align: left;
            
        
        }

        /* --- Seção FAQ --- */
        /* --- Seção de Perguntas Frequentes (FAQ) --- */
        .faq-section {
            padding: 80px 0;
            background-color: var(--white); /* Fundo branco para a seção */
            position: relative; /* Essencial para posicionar o floco de neve */
        }

        .faq-section .container {
            display: flex;
            gap: 50px; /* Alinha o conteúdo ao topo */
            align-items: flex-start;
            position: relative; /* Torna este container a referência para o floco de neve */
        }

        .faq-left {
            flex: 1;
            padding-right: 20px; /* Espaçamento para o texto */
        }

        .faq-left h2 {
            color: #003e95;
            font-size: 2.8rem;
            line-height: 1.1;
            margin-bottom: 0;
            text-align: left;
            z-index: 1; /* Para ficar acima do floco de neve */
            position: relative;
        }

        .faq-section .snowflake-bg {
            position: absolute;
            bottom: 0;
            left: -10%; /* Ajusta a posição horizontal */
            /* Move o floco para baixo, para fora do container, colando-o na próxima seção */
            transform: translateY(50%);
            width: 400px;
            height: 400px;
            opacity: 1;
            z-index: 1; /* Coloca atrás do conteúdo do FAQ */
        }


        .faq-right {
            flex: 2; /* Ocupa mais espaço que o lado esquerdo */
        }

        .accordion-container {
            width: 100%;
        }

        .faq-section .accordion-item {
            background-color: #f8f8f8; /* Fundo cinza claro para os itens */
            border: 1px solid #e0e0e0;
            margin-bottom: 10px;
            border-radius: 8px;
            overflow: hidden; /* Garante que o conteúdo não vaze */
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }

        .faq-section .accordion-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 25px;
            cursor: pointer;
            background-color: var(--white); /* Fundo branco para o cabeçalho */
            border-bottom: 1px solid #e0e0e0; /* Linha divisória */
            transition: background-color 0.3s ease;
        }

        .faq-section .accordion-header:hover {
            background-color: #f0f0f0;
        }

        .faq-section .accordion-header h3 {
            margin: 0;
            font-size: 1.1rem;
            color: var(--primary-blue);
            font-weight: 600;
        }

        .faq-section .accordion-header i {
            color: var(--primary-blue);
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        .faq-section .accordion-header.open {
            border-bottom: none; /* Remove a borda quando aberto */
        }

        .faq-section .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out, padding 0.4s ease-out;
            background-color: #f8f8f8; /* Fundo do conteúdo */
            padding: 0 25px; /* Define o padding horizontal para quando abrir */
        }

        .faq-section .accordion-content.open {
            padding: 15px 25px; /* Adiciona padding quando aberto */
        }

        .faq-section .accordion-content p {
            margin: 0;
            color: #555;
            font-size: 0.95rem;
        }

        /* Responsividade FAQ */
        @media (max-width: 992px) {
            .faq-section .container {
                flex-direction: column;
                align-items: center;
            }
            .faq-left, .faq-right {
                flex: none;
                width: 100%;
            }
            .faq-left {
                text-align: center;
                padding-right: 0;
                margin-bottom: 40px;
            }
            .faq-left h2 {
                text-align: center;
                font-size: 2.5rem;
            }
            .snowflake-bg {
                top: auto;
                bottom: 0;
                transform: none;
                left: 50%;
                transform: translateX(-50%);
                width: 200px;
                height: 200px;
            }
        }

        @media (max-width: 576px) {
            .faq-left h2 {
                font-size: 2rem;
            }
            .faq-section .accordion-header h3 {
                font-size: 1rem;
            }
            .faq-section .accordion-header, .faq-section .accordion-content {
                padding: 15px 20px;
            }
            .faq-section .accordion-content.open {
                padding: 10px 20px;
            }
        }
        /* --- Seção CTA Final --- */
        .final-cta {
            background-color: var(--primary-blue);
            text-align: center;
            color: var(--white);
        }
        .final-cta h2 {
            color: var(--white);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .final-cta-v2 {
            background-image: url('../images/fundinho.png');
            background-size: cover;
            background-attachment: fixed;
            background-repeat: no-repeat;
            background-color: var(--primary-blue);
            text-align: center;
            color: var(--white);
            position: relative; /* Essencial para o posicionamento do floco de neve */
            overflow: hidden; /* Evita que o floco de neve vaze para fora */
        }

        .final-cta-v2::after {
            content: '';
            position: absolute;
            bottom: 0;
            margin-bottom: -30px;
            left: 0;
            width: 100%;
            height: 300px; /* Altura da imagem da fumaça, ajuste se necessário */
            background-image: url('../images/fumaca.png');
            background-size: cover;
            background-position: center bottom;
            background-repeat: no-repeat;
            z-index: 1; /* Fica acima do fundo, mas abaixo do conteúdo */
        }

        .final-cta-v2 .snowflake-bg {
            position: absolute;
            bottom: 150px; /* Metade para fora, metade para dentro */
            left: 50%;
            transform: translateX(-80%) translateY(-70%);
            width: 400px;
            height: 400px;
            opacity: 1; /* Deixa mais sutil */
            z-index: 1; /* Fica atrás do texto e botão */
        }

        .final-cta-v2 .container {
            position: relative; /* Para que o conteúdo fique acima do floco de neve */
            z-index: 2; /* Garante que o conteúdo fique acima da fumaça */
        }

        .final-cta-v2 h2 {
            color: var(--white);
        }

        /* --- Footer --- */
        .footer {
            padding: 40px 0;
            /* Removido text-align: center; pois o container interno será flex */
        }
        .footer .container {
            display: flex; /* Habilita Flexbox */
            flex-direction: column; /* Empilha os itens verticalmente */
            align-items: center; /* Centraliza os itens horizontalmente */
        }
        .footer p {
            font-size: 0.9rem;
            color: #6c757d;
            margin-bottom: 20px;
            text-align: center;
        }

        .social-icons {
        }
        /* As regras para .social-icons a e .social-icons não precisam ser alteradas aqui,
           pois serão centralizadas pelo flexbox do .footer .container */


.final-cta .btn-cta {
    background-color: var(--white);
    color: var(--primary-blue);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.final-cta .btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}


/* --- Rodapé do Site --- */
.site-footer {
    background-color: var(--white);
    padding: 40px 0;
    text-align: center;
}

.site-footer p {
    color: var(--light-gray);
    margin: 0 0 20px 0;
    font-size: 0.9rem;
}

.site-footer .social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    color: var(--white);
    margin: 0 8px;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.site-footer .social-icons a:hover {
    background-color: #0056b3; /* Um azul um pouco mais claro no hover */
    transform: scale(1.1);
}

/* --- Ajustes para Telas Menores (Responsividade) --- */
@media (max-width: 768px) {
    .final-cta h2 {
        font-size: 1.8rem;
    }

    .final-cta {
        padding: 80px 0 120px 0;
    }

    .final-cta::after {
        height: 100px;
    }
}

#moreInfoModal .modal-body {
    min-height: 500px;
    overflow-y: auto;
}
/* --- Estilos do Modal e do Fundo (Overlay) --- */
.modal-overlay {
    position: fixed; /* Cobre a tela inteira */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 46, 108, 0.7); /* Azul escuro semi-transparente */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Garante que fique sobre todo o conteúdo */
    opacity: 0; /* Começa invisível */
    visibility: hidden; /* Começa inacessível */
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1; /* Torna visível */
    visibility: visible;
}

.modal-content {
    background-color: var(--white, #fff);
    padding: 40px 50px;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    
    /* Floco de neve sutil ao fundo */
    /* IMPORTANTE: Substitua pelo caminho do seu SVG ou PNG de floco de neve */
    background-image: url('caminho/para/seu/floco-de-neve.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50%; /* Ajuste o tamanho do floco de neve conforme necessário */
}

/* --- Botão de Fechar (X) --- */
.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: #aaa;
    cursor: pointer;
    line-height: 1;
}

/* --- Layout Interno do Modal --- */
.modal-layout {
    display: flex;
    gap: 40px; /* Espaçamento entre as colunas */
}

.modal-left, .modal-right {
    flex: 1;
}

/* --- Coluna da Esquerda --- */
.modal-left h2 {
    font-size: 3rem;
    color: var(--primary-blue, #0a2e6c);
    margin-top: 0;
    margin-bottom: 30px;
}

.modal-section-title {
    background-color: var(--primary-blue, #0a2e6c);
    color: var(--white, #fff);
    display: inline-block;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.checklist {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.checklist li {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #333;
    margin-bottom: 15px;
}

/* Ícone de check estilizado */
.checklist li::before {
    content: '\f00c'; /* Código do ícone de check do Font Awesome */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-blue, #0a2e6c);
    border: 2px solid var(--primary-blue, #0a2e6c);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    font-size: 0.9rem;
}

.modal-left .final-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-blue, #0a2e6c);
    margin-bottom: 30px;
}

/* --- Coluna da Direita --- */
.modal-right p {
    color: #555;
    line-height: 1.7;
    margin-top: 0;
    margin-bottom: 35px;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    color: #333;
    margin-bottom: 12px;
}

/* Seta estilizada para os benefícios */
.benefits-list li::before {
    content: '❯';
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--primary-blue, #0a2e6c);
    margin-right: 12px;
}

/* --- Botão de Ação Principal --- */
.modal-cta-button {
    background-color: var(--primary-blue, #0a2e6c);
    color: var(--white, #fff);
    display: block;
    width: 100%;
    text-align: center;
    padding: 18px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.modal-cta-button:hover {
    background-color: #0056b3; /* Um tom de azul mais claro */
}


/* --- Responsividade para Telas Menores --- */
@media (max-width: 820px) {
    .modal-layout {
        flex-direction: column; /* Empilha as colunas */
    }
    .modal-left h2 {
        font-size: 2.5rem;
    }
    .modal-content {
        padding: 30px;
    }
}

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

.booking-text {
    flex: 1;
    padding-left: 20px;
    text-align: center;
}

.booking-streetview {
    flex: 1;
    padding-right: 20px;
}

.booking-streetview iframe {
    width: 100%;
    height: 450px; /* Or a height that fits the design */
}

.accordion-container2 {
    width: 100%;
}

.accordion-item2 {
    background-color: var(--white); /* Fundo branco para cada item */
    border-radius: 8px; /* Cantos arredondados */
    margin-bottom: 10px; /* Espaçamento entre os itens */
    overflow: hidden; /* Garante que o conteúdo não vaze */
    box-shadow: 0 2px 5px rgba(0,0,0,0.03); /* Sombra sutil */
}

.accordion-header2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px; /* Preenchimento interno */
    cursor: pointer;
    background-color: rgba(116,116,116,0.1); /* Fundo branco padrão */
    transition: background-color 0.2s ease;
}

.accordion-header2:hover {
    background-color: #f5f5f5; /* Um cinza muito sutil no hover */
}

.accordion-header2 h3 {
    margin: 0;
    font-size: 1.1rem; /* Tamanho da fonte */
    color: #6c757d; /* Cor do texto cinza claro, como na imagem */
    font-weight: 500; /* Levemente mais fino, como na imagem */
}

.accordion-header2 i {
    color: #6c757d; /* Cor do ícone cinza claro */
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

/* Estilo para quando o item do acordeão está ativo (aberto) */
.accordion-item.active .accordion-header2 {
    background-color: rgba(116,116,116,0.1); /* Mantém o fundo branco */
    border-bottom: 1px solid #e0e0e0; /* Adiciona uma borda inferior quando aberto */
}

.accordion-item.active .accordion-header2 h3 {
    color: var(--primary-blue); /* Cor do texto azul quando aberto */
    font-weight: 600; /* Negrito quando aberto */
}

.accordion-item.active .accordion-header2 i {
    color: var(--primary-blue); /* Cor do ícone azul quando aberto */
    transform: rotate(180deg); /* Gira o ícone para indicar "fechar" */
}

.accordion-content2 {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background-color: rgba(116,116,116,0.1); /* Fundo branco para o conteúdo */
    padding: 0 25px; /* Padding horizontal inicial */
    border-top: none; /* Não tem borda superior inicialmente */
}

.accordion-item.active .accordion-content2 {
    max-height: 150px; /* Altura suficiente para o conteúdo */
    padding: 15px 25px 20px; /* Adiciona padding quando aberto (ajuste o último valor para o padding inferior) */
    border-top: none; /* Garante que a borda não apareça aqui */
}

.accordion-content2 p {
    margin: 0;
    color: black;
    font-size: 0.95rem;
    line-height: 1.6;
    padding-top: 20px;
    padding-bottom: 20px;
}


.accordion-item.active:last-child .accordion-header2 h3 {
    color: var(--primary-blue); /* Texto azul como na imagem */
    font-weight: 600;
}
.accordion-item.active:last-child .accordion-header2 i {
    color: var(--primary-blue); /* Ícone azul */
}


/* E no seu accordion-header h3 e i, use a variável */
/* .accordion-header h3 { color: var(--light-gray-text); } */
/* .accordion-header i { color: var(--light-gray-text); } */

/* --- Seção Nossas Unidades --- */
.unidades-section {
    width: 100%;
    max-width: 1200px;
    margin: 60px auto; /* Centraliza e dá espaço */
    padding: 20px;
    text-align: center;
}

.unidades-section h2 {
    font-size: 2.5rem; /* 40px */
    font-weight: 700;
    color: #0d3d6f; /* Azul escuro do título */
    margin-bottom: 50px;
}

.unidades-container {
    display: flex;
    flex-wrap: wrap; /* Permite que os itens quebrem para a próxima linha em telas menores */
    justify-content: center;
    gap: 40px; /* Espaço entre os cards */
}

.unidade-card {
    flex-basis: 320px; /* Largura base de cada card */
    flex-grow: 1;      /* Permite que cresça se houver espaço */
    max-width: 360px;  /* Limite de largura */
    text-align: center;
}

.unidade-card img {
    width: 100%;
    height: auto;
    border-radius: 20px; /* Bordas arredondadas da imagem */
    margin-bottom: 25px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, filter 0.3s ease; /* Animação suave para o zoom e brilho */
}

.unidade-card:hover img {
    transform: scale(1.03); /* Aumenta levemente o tamanho da imagem */
    filter: brightness(1.05); /* Aumenta levemente o brilho */
}

.unidade-card h3 {
    font-size: 1.75rem; /* 28px */
    font-weight: 600;
    color: #1a5a9e; /* Azul médio */
    margin-bottom: 10px;
}

.unidade-card p {
    font-size: 1rem; /* 16px */
    color: #555;
    padding: 0 10px; /* Evita que o texto cole nas bordas em telas pequenas */
}

.unidade-endereco-link {
    text-decoration: none;
    color: inherit;
}

.unidade-endereco-link:hover p {
    text-decoration: underline;
    color: #1a5a9e;
}

.cta-container {
    margin-top: 60px;
}

.btn-fale-conosco {
    display: inline-block;
    background-color: #0d3d6f; /* Azul escuro do botão */
    color: #ffffff;
    padding: 18px 40px;
    border: none;
    border-radius: 50px; /* Formato de pílula */
    font-size: 1.1rem; /* 17.6px */
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-fale-conosco:hover {
    background-color: #1a5a9e; /* Azul um pouco mais claro no hover */
    transform: translateY(-2px); /* Efeito de "levantar" */
}

/* Media query para telas menores (celulares) */
@media (max-width: 768px) {
    .unidades-section h2 {
        font-size: 2rem;
    }
    .unidade-card h3 {
        font-size: 1.5rem;
    }
    /* Em telas pequenas, os cards ficam um abaixo do outro */
    .unidades-container {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }
}

/* --- RESPONSIVE STYLES MERGED FROM responsive.css --- */

/* --- Reset para Responsividade --- */
body {
    overflow-x: hidden; /* Impede o scroll horizontal em todas as resoluções */
}

/* --- Estilos para Widescreen e Laptops Maiores (Ajustes finos) --- */
@media (max-width: 1600px) { /* Ajustado para um breakpoint maior */
    .header .container,
    .info-content,
    .info-content2,
    .testimonials-grid,
    .more-info .container,
    .booking .container {
        margin-left: auto;
        margin-right: auto;
    }

    .hero h1 {
        margin-right: 10%; /* Ajuste fino para telas um pouco menores */
    }

    .hero .btn-primary {
        margin-right: 10%; /* Ajuste fino para telas um pouco menores */
    }

    .info-text p, .info-text h2, .info-text2 p, .info-text2 h2, .info-text2 h3 {
        margin-left: 0;
    }

    .btn-light2 {
        left: 0;
        margin-left: 0;
    }

    .final-cta-v2 .container h2 {
        margin-left: 0;
    }

    .final-cta-v2::after {
        padding-bottom: 10px !important;
    }

    .final-cta-v2 .container a.btn-light2 {
        margin-left: 0;
    }

    .footer {
        margin-left: auto;
        margin-right: auto;
    }
}

/* --- Estilos para Laptops (até 1440px) --- */
@media (max-width: 1440px) {
    .hero h1 {
        margin-right: 5%;
    }

    .hero .btn-primary {
        margin-right: 5%;
    }

    .treatments h2,
    .treatments-content,
    .testimonials h2,
    .testimonials-grid,
    .more-info .container {
        margin-right: 0;
    }

    .info-content,
    .info-content2 {
        margin-left: 5%;
    }

    .more-info h2,
    .more-info p,
    .filter-buttons {
        margin-left: auto; /* Centraliza o conteúdo */
        margin-right: auto; /* Centraliza o conteúdo */
        text-align: center;
    }
}

/* --- Reset e Configurações Globais --- */
        :root {
            --primary-blue: #0a2e6c;
            --secondary-blue: #007bff;
            --light-gray: #f8f9fa;
            --text-color: #333;
            --white: #ffffff;
        }

        @font-face {
            font-family: 'Luxe Uno';
            src: url(../fonts/LuxeUno/LuxeUno-Regular.ttf) format('truetype');
        }

        @font-face {
            font-family: 'Luxe Uno Heavy';
            src: url(../fonts/LuxeUno/LuxeUno-Heavy.ttf) format('truetype');
        }

        * {
            margin: 0;
            padding: 0;
            border: 0;
            box-sizing: border-box;
            vertical-align: baseline;
            background: none repeat scroll 0 0 transparent;
            outline: 0;

        }

        body {
            font-family: 'Luxe Uno', sans-serif;
            color: var(--text-color);
            background-color: var(--white);
        }

        .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 20px;
            
        }

        section {
            padding: 80px 0;
        }

        h1, h2, h3 {
            color: var(--primary-blue);
            font-weight: 700;
        }

        h1 { font-size: 3rem; }
        h2 { font-size: 2.5rem; text-align: center; margin-bottom: 50px;}
        p { font-size: 1rem; line-height: 1.6; }

        .btn {
            display: inline-block;
            padding: 15px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            letter-spacing: 1px;
        }

        .btn-primary {
            text-decoration: none;
            align-items: left;
            z-index: 300;
            background-color: rgb(0, 62, 149);
            background-image: none;
            color: rgb(255, 255, 255);
            border: 0px;
            font-size: 18px;
            text-align: center;
            border-radius: 100px;
            font-family: "Luxe Uno", sans-serif;
            font-style: normal;
            font-weight: 800;
            margin-right: 255px;
            padding: 10px;
            padding-left: 25px;
            padding-right: 25px;
            letter-spacing: 1px;
        }

        .btn-primary:hover {
            background-color: #0056b3;
        }

        .btn-light {
            background-color: rgb(0, 62, 149);
            color: var(--secondary-blue);
            border: 0;
            width: 180px;
        }

        .btn-light2 {
            color: rgb(0, 62, 149);
            border: 0;
            width: 350px;
            border-radius: 50px;
            background-color: var(--white);
            font-size: 18px;
            font-weight: 800;
            white-space: nowrap;
            letter-spacing: 2px;
            position: static; /* Alterado de relative para static */
            height: 50px;
            line-height: 15px;
            margin-top: 30px; /* Adiciona espaço acima do botão */
            margin-left: auto; /* Centraliza o botão horizontalmente */
            margin-right: auto; /* Centraliza o botão horizontalmente */
            display: block; /* Garante que o botão ocupe a largura definida */
        }

        .btn-light2:hover {
            background-color: var(--secondary-blue);
            color: var(--white);
            letter-spacing: 2px;
        }
        
        .btn-light:hover {
            background-color: var(--light-gray);
        }

        /* --- Header / Navegação --- */
        .header {
            background-color: rgb(21, 101, 192);
            border-color: rgb(0, 0, 0);
            width: 100%;
            padding-bottom: 20px;
            position: absolute;
            top: 0;
            z-index: 1000;
        }

        .header .container {
            display: flex;
            align-items: center;
            justify-content: space-between; /* Garante que a logo e o menu fiquem nas extremidades */
            letter-spacing: 2px;
            /* margin-left removido para permitir a centralização pelo .container */
        }

        .logo {
            padding-top: 10px;
            padding-bottom: 10px;
            margin-top: 20px;
            margin-left: 0; /* Remove margem desnecessária */
        }

        .nav-menu ul {
            list-style: none;
            display: flex;
            align-items: center;
            gap: 40px; /* Espaço entre os itens do menu */
            margin: 0;
            padding: 0;
            padding-top: 20px;
            white-space: nowrap;
            font-size: 14px;
        }
        .nav-menu ul li {
            /* O espaçamento agora é controlado pelo 'gap' no 'ul' */
        }

        .nav-menu a {
            color: var(--white);
            text-decoration: none;
            font-family: 'Luxe Uno', sans-serif; /* Garante a mesma fonte */
            font-weight: 800; /* Ajusta o peso da fonte */
        }
        
        .menu-toggle {
            display: none; /* Escondido no desktop */
            background: none;
            border: none;
            color: var(--white);
            font-size: 28px;
            cursor: pointer;
            z-index: 1100;
        }

        /* --- Seção Hero --- */
        .hero {
            background-image: url('../images/image.png'); /* Caminho para a nova imagem de fundo */
            background-size: cover; /* Cobre a área sem distorcer */
            background-repeat: no-repeat;
            background-position: top center; /* Alinha a imagem no topo e centro */
            color: var(--white);
            background-color: #d7e1e8;
            text-align: right;
            padding: 200px 80px 55px 80px; /* Padding horizontal reduzido */
            margin-top: 80px; /* Remove a margem que causava o espaço em branco */
        }

        .hero h1 {
            color: var(--white);
            font-size: 2.4rem; /* Reduzindo o tamanho da fonte */
            max-width: 550px; /* Diminuindo a largura para empurrar para a direita */
            margin: 0 0 30px auto;
            text-align: left;
            font-family: "Luxe Uno", sans-serif;
            padding-top: 60px;
            font-weight: 700;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            letter-spacing: 2px;
            
        }

        .hero h1 span {
            font-family: "Luxe Uno", sans-serif;
            font-style: normal;
            font-weight: 400;
            -webkit-font-smoothing: antialiased;
            letter-spacing: 2px;
        }
        
        /* --- Seção Tipos de Tratamentos --- */
        .treatments {
            background-image: url('../images/fundinho.png');
            background-size: cover;
            background-attachment: fixed; /* Fixa a imagem de fundo durante o scroll */
            background-repeat: no-repeat;
            background-color: var(--primary-blue); /* Cor de fallback */
            margin-top: 0; /* Remove a margem negativa */
            padding: 40px 0; /* Padding vertical reduzido */
        }
        .treatments h2 {
            color: var(--white);
            font-size: 62px !important;
            font-weight: 700;
            align-items: left;
            justify-content: left;
            text-align: left;
            font-family: 'Luxe Uno', sans-serif;
            letter-spacing: 2px;
            margin-right: 5%
        }
        .treatments-content {
            display: flex;
            align-items: flex-start; /* Alinha os itens no topo */
            gap: 50px;
            margin-right: 5%;
            flex-wrap: nowrap; /* Impede que os itens quebrem a linha */
        }

        .treatments-left-col {
            display: flex;
            flex-direction: column;
            flex: 0 0 45%; /* Ocupa 45% da largura */
        }

        .treatments-images-container {
            flex: 0 0 50%; /* Ocupa 50% da largura */
            min-width: 0; /* Permite que os itens flexíveis encolham */
        }

        .treatments-image img {
            width: 100%;
            height: auto;
            border-radius: 10px;
        }
        .accordion-item {
            background-color: var(--white);
            margin-bottom: 10px;
            border-radius: 10px;
            background-color: #f2f2f2;
        }
        .accordion-header {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 300;
            font-style: italic;
            letter-spacing: 1px;
            font-size: 18px;
            color: rgb(64, 84, 95);
            height: 50px;
            transition: all .2s ease;
            background-color: #f2f2f2;
            border-radius: 10px 15px 15px 10px !important;
        }

        .accordion-header:hover {
            color: #007bff;
        }

        .accordion-header i {
            transition: transform 0.3s ease;
        }
        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            padding: 0 20px;
        }
        .accordion-content p {
            padding-bottom: 20px;
            
        }
        .accordion-item.active .accordion-header i {
            transform: rotate(180deg);
        }
        .treatments-images-container {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 40px;
            height: auto; 
            margin-left: 50px;
        }
 
        .treatments-image-large {
            width: 70%;
            height: 350px; /* Define uma altura fixa para a imagem maior */
            position: relative; /* Necessário para posicionar o floco de neve */
            overflow: visible; /* Permite que o floco de neve "vaze" para fora */
        }
 
        .treatments-image-large img {
            width: 100%;
            height: 100%;
            border-radius: 10px;
            object-fit: cover;
            position: relative; /* Para garantir que a imagem fique sobre o floco de neve */
            z-index: 1;
        }

        .snowflake-bg-treatments {
            position: absolute;
            bottom: -40px; /* Metade para fora */
            right: -90%; /* Metade para fora */
            width: 450px; /* Tamanho do floco de neve */
            height: 480px;
            z-index: 0; /* Fica atrás da imagem */
            transform: scaleX(-1);
        }

        .snowflake-bg-treatments img {
            width: 100%;
            height: 100%;
            opacity: 0.8; /* Leve transparência para integrar melhor */
        }
 
        .treatments-images-small-row {
            display: flex;
            gap: 30px;
            height: 250px; 
            margin-left: 0px;/* Define uma altura fixa para a linha das imagens menores */
        }
 
        .treatments-image-small-1 {
            flex: 1;
            height: 100%; 
            width: auto;/* Faz com que o container da imagem ocupe toda a altura da linha */
        }

        .treatments-image-small-2 {
            flex: 1;
            height: 80%;
            width: 150px;
        }
 
        .treatments-image-small img {
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
        }

        .treatments-cta {
            text-align: left; /* Alinha o botão à esquerda */
        }

        .treatments-accordion .accordion-item {
            position: relative;
        }
        .treatments-accordion .accordion-content {
            position: relative; /* Garante o comportamento padrão de empurrar */
        }

        /* --- Seção "Quer Saber Mais?" --- */
        .more-info {
            text-align: center;

        }

        .more-info h2 {
            font-family: "Luxe Uno", sans-serif;
            font-size: 56px;
            color: #003e95;
            letter-spacing: 2px;
            margin-right: 10%;
        }

        .more-info p {
            margin: -50px auto 30px;
            color: rgba(0, 62, 149, 0.3);
            font-size: 34px;
            letter-spacing: 1px;
            margin-right: 10%;
        }


        .filter-buttons {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-right: 10%;
        }

        .filter-buttons .btn {
            background-color: var(--primary-blue);
            color: white;
            padding: 10px 25px;
            font-size: 18px;
        }
        
        /* --- Seção "O que é Crioterapia" --- */
        .info-section {
            background: url(../images/fundao.png);
            background-size: cover;
            padding-top: 150px;
            padding-bottom: 50px;
        }
        .info-content {
            display: flex;
            align-items: center;
            gap: 50px;
            margin-left: 10%;
            padding: 0;
            margin-top: -100px;
        }
        .info-text, .info-image {
            flex: 1;
        }
        .info-text h2 {
            text-align: left;
            color: var(--white);
            margin-bottom: 20px;
            margin-left: -150px;
        }
        .info-text p {
            color: var(--light-gray);
            margin-bottom: 30px;
            letter-spacing: 1px;
            font-size: 18px;
            margin-left: -150px;
        }
        .info-image img {
            width: 450px;
            height: 800px;
            border-radius: 10px;
            margin-left: 80px;
        }

        /* --- Seção de Testemunhos --- */
        .testimonials {
            background-image: url('../images/fundinho.png');
            background-size: cover;
            background-attachment: fixed; /* Fixa a imagem de fundo durante o scroll */
            background-repeat: no-repeat;
            background-color: var(--primary-blue); /* Cor de fallback */
        }
        .testimonials h2 {
            color: var(--white);
            font-size: 62px !important;
            font-weight: 400;
            margin-right: 10%;
        }
        .testimonials-grid {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-right: 10%;
        }
        .testimonial-card {
            background-color: var(--white);
            padding: 30px;
            border-radius: 10px;
            width: 350px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        .testimonial-header {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        .testimonial-header img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
        }
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .testimonial-author h4 {
            color: var(--primary-blue);
            margin: 0;
        }
        .stars {
            color: #ffc107;
        }
        
        /* --- Seção "Cryo Club Care" --- */
        .info-section2 {
            background: url(../images/fundao.png);
            background-size: cover;
            padding-top: 100px;
            padding-bottom: 100px;
        }
        .info-content2 {
            display: flex;
            align-items: center;
            gap: 50px;
            margin-left: 10%;
            padding: 0;
        }
        .info-text2, .info-image2 {
            flex: 1;
        }

        .info-text2 h3 {
            letter-spacing: 12px;
            text-align: left;
            color: rgb(38, 141, 243);
            margin-bottom: 20px;
            margin-left: -150px;
            font-size: 18px;
            opacity: 0.8;
            font-weight: 800;
        }

        .info-text2 h2 {
            text-align: left;
            color: var(--white);
            margin-bottom: 20px;
            margin-left: -150px;
            font-size: 40px;
            font-weight: 400;
            letter-spacing: 2px;
        }
        .info-text2 p {
            color: var(--light-gray);
            margin-bottom: 30px;
            width: 100;
            font-size: 18px;
            margin-left: -150px;
            margin-top: 40px;
            opacity: 0.9;
        }
        .info-image2 img {
            width: 450px;
            height: 800px;
            border-radius: 10px;
            margin-left: 25px;
            margin-bottom: -100px;
            margin-top: -100px;
            margin-right: -50px;
        }
        
        /* --- Seção Agendamento --- */
        .booking {
            text-align: center;
        }
        .booking .icon {
            font-size: 1.5rem;
            color: var(--secondary-blue);
            margin-bottom: 5px;
            align-items: start;
            justify-content: left;
            text-align: left;
        }

        .booking h2 {
            letter-spacing: 2px;
            font-size: 3rem;
            font-weight: 400;
            align-self: left;
            text-align: left;
            color: #003e95;
        }

        .booking p {
            margin-bottom: 30px;
            font-size: 1.1rem;
            text-align: left;
            
        
        }

        /* --- Seção FAQ --- */
        /* --- Seção de Perguntas Frequentes (FAQ) --- */
        .faq-section {
            padding: 80px 0;
            background-color: var(--white); /* Fundo branco para a seção */
            position: relative; /* Essencial para posicionar o floco de neve */
        }

        .faq-section .container {
            display: flex;
            gap: 50px; /* Alinha o conteúdo ao topo */
            align-items: flex-start;
            position: relative; /* Torna este container a referência para o floco de neve */
        }

        .faq-left {
            flex: 1;
            padding-right: 20px; /* Espaçamento para o texto */
        }

        .faq-left h2 {
            color: #003e95;
            font-size: 2.8rem;
            line-height: 1.1;
            margin-bottom: 0;
            text-align: left;
            z-index: 1; /* Para ficar acima do floco de neve */
            position: relative;
        }

        .faq-section .snowflake-bg {
            position: absolute;
            bottom: 0;
            left: -10%; /* Ajusta a posição horizontal */
            /* Move o floco para baixo, para fora do container, colando-o na próxima seção */
            transform: translateY(50%);
            width: 400px;
            height: 400px;
            opacity: 1;
            z-index: 1; /* Coloca atrás do conteúdo do FAQ */
        }


        .faq-right {
            flex: 2; /* Ocupa mais espaço que o lado esquerdo */
        }

        .accordion-container {
            width: 100%;
        }

        .faq-section .accordion-item {
            background-color: #f8f8f8; /* Fundo cinza claro para os itens */
            border: 1px solid #e0e0e0;
            margin-bottom: 10px;
            border-radius: 8px;
            overflow: hidden; /* Garante que o conteúdo não vaze */
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }

        .faq-section .accordion-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 25px;
            cursor: pointer;
            background-color: var(--white); /* Fundo branco para o cabeçalho */
            border-bottom: 1px solid #e0e0e0; /* Linha divisória */
            transition: background-color 0.3s ease;
        }

        .faq-section .accordion-header:hover {
            background-color: #f0f0f0;
        }

        .faq-section .accordion-header h3 {
            margin: 0;
            font-size: 1.1rem;
            color: var(--primary-blue);
            font-weight: 600;
        }

        .faq-section .accordion-header i {
            color: var(--primary-blue);
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        .faq-section .accordion-header.open {
            border-bottom: none; /* Remove a borda quando aberto */
        }

        .faq-section .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out, padding 0.4s ease-out;
            background-color: #f8f8f8; /* Fundo do conteúdo */
            padding: 0 25px; /* Define o padding horizontal para quando abrir */
        }

        .faq-section .accordion-content.open {
            padding: 15px 25px; /* Adiciona padding quando aberto */
        }

        .faq-section .accordion-content p {
            margin: 0;
            color: #555;
            font-size: 0.95rem;
        }

        /* Responsividade FAQ */
        @media (max-width: 992px) {
            .faq-section .container {
                flex-direction: column;
                align-items: center;
            }
            .faq-left, .faq-right {
                flex: none;
                width: 100%;
            }
            .faq-left {
                text-align: center;
                padding-right: 0;
                margin-bottom: 40px;
            }
            .faq-left h2 {
                text-align: center;
                font-size: 2.5rem;
            }
            .snowflake-bg {
                top: auto;
                bottom: 0;
                transform: none;
                left: 50%;
                transform: translateX(-50%);
                width: 200px;
                height: 200px;
            }
        }

        @media (max-width: 576px) {
            .faq-left h2 {
                font-size: 2rem;
            }
            .faq-section .accordion-header h3 {
                font-size: 1rem;
            }
            .faq-section .accordion-header, .faq-section .accordion-content {
                padding: 15px 20px;
            }
            .faq-section .accordion-content.open {
                padding: 10px 20px;
            }
        }
        /* --- Seção CTA Final --- */
        .final-cta {
            background-color: var(--primary-blue);
            text-align: center;
            color: var(--white);
        }
        .final-cta h2 {
            color: var(--white);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .final-cta-v2 {
            background-image: url('../images/fundinho.png');
            background-size: cover;
            background-attachment: fixed;
            background-repeat: no-repeat;
            background-color: var(--primary-blue);
            text-align: center;
            color: var(--white);
            position: relative; /* Essencial para o posicionamento do floco de neve */
            overflow: hidden; /* Evita que o floco de neve vaze para fora */
        }

        .final-cta-v2::after {
            content: '';
            position: absolute;
            bottom: 0;
            margin-bottom: -30px;
            left: 0;
            width: 100%;
            height: 300px; /* Altura da imagem da fumaça, ajuste se necessário */
            background-image: url('../images/fumaca.png');
            background-size: cover;
            background-position: center bottom;
            background-repeat: no-repeat;
            z-index: 1; /* Fica acima do fundo, mas abaixo do conteúdo */
        }

        .final-cta-v2 .snowflake-bg {
            position: absolute;
            bottom: 150px; /* Metade para fora, metade para dentro */
            left: 50%;
            transform: translateX(-80%) translateY(-70%);
            width: 400px;
            height: 400px;
            opacity: 1; /* Deixa mais sutil */
            z-index: 1; /* Fica atrás do texto e botão */
        }

        .final-cta-v2 .container {
            position: relative; /* Para que o conteúdo fique acima do floco de neve */
            z-index: 2; /* Garante que o conteúdo fique acima da fumaça */
        }

        .final-cta-v2 h2 {
            color: var(--white);
        }

        /* --- Footer --- */
        .footer {
            padding: 40px 0;
            margin-left: 3.5%;
            /* Removido text-align: center; pois o container interno será flex */
        }
        .footer .container {
            display: flex; /* Habilita Flexbox */
            flex-direction: column; /* Empilha os itens verticalmente */
            align-items: center; /* Centraliza os itens horizontalmente */
            margin-left: 7%;
        }
        .footer p {
            font-size: 0.9rem;
            color: #6c757d;
            margin-bottom: 20px;
            text-align: center;
            margin-left: 7%;
        }

        .social-icons {
            margin-left: 6%;
        }
        /* As regras para .social-icons a e .social-icons não precisam ser alteradas aqui,
           pois serão centralizadas pelo flexbox do .footer .container */


.final-cta .btn-cta {
    background-color: var(--white);
    color: var(--primary-blue);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.final-cta .btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}


/* --- Rodapé do Site --- */
.site-footer {
    background-color: var(--white);
    padding: 40px 0;
    text-align: center;
}

.site-footer p {
    color: var(--light-gray);
    margin: 0 0 20px 0;
    font-size: 0.9rem;
}

.site-footer .social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    color: var(--white);
    margin: 0 8px;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.site-footer .social-icons a:hover {
    background-color: #0056b3; /* Um azul um pouco mais claro no hover */
    transform: scale(1.1);
}

/* --- Ajustes para Telas Menores (Responsividade) --- */
@media (max-width: 768px) {
    .final-cta h2 {
        font-size: 1.8rem;
    }

    .final-cta {
        padding: 80px 0 120px 0;
    }

    .final-cta::after {
        height: 100px;
    }
}

#moreInfoModal .modal-body {
    min-height: 500px;
    overflow-y: auto;
}
/* --- Estilos do Modal e do Fundo (Overlay) --- */
.modal-overlay {
    position: fixed; /* Cobre a tela inteira */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 46, 108, 0.7); /* Azul escuro semi-transparente */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Garante que fique sobre todo o conteúdo */
    opacity: 0; /* Começa invisível */
    visibility: hidden; /* Começa inacessível */
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1; /* Torna visível */
    visibility: visible;
}

.modal-content {
    background-color: var(--white, #fff);
    padding: 40px 50px;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    
    /* Floco de neve sutil ao fundo */
    /* IMPORTANTE: Substitua pelo caminho do seu SVG ou PNG de floco de neve */
    background-image: url('caminho/para/seu/floco-de-neve.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50%; /* Ajuste o tamanho do floco de neve conforme necessário */
}

/* --- Botão de Fechar (X) --- */
.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: #aaa;
    cursor: pointer;
    line-height: 1;
}

/* --- Layout Interno do Modal --- */
.modal-layout {
    display: flex;
    gap: 40px; /* Espaçamento entre as colunas */
}

.modal-left, .modal-right {
    flex: 1;
}

/* --- Coluna da Esquerda --- */
.modal-left h2 {
    font-size: 3rem;
    color: var(--primary-blue, #0a2e6c);
    margin-top: 0;
    margin-bottom: 30px;
}

.modal-section-title {
    background-color: var(--primary-blue, #0a2e6c);
    color: var(--white, #fff);
    display: inline-block;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.checklist {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.checklist li {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #333;
    margin-bottom: 15px;
}

/* Ícone de check estilizado */
.checklist li::before {
    content: '\f00c'; /* Código do ícone de check do Font Awesome */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-blue, #0a2e6c);
    border: 2px solid var(--primary-blue, #0a2e6c);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    font-size: 0.9rem;
}

.modal-left .final-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-blue, #0a2e6c);
    margin-bottom: 30px;
}

/* --- Coluna da Direita --- */
.modal-right p {
    color: #555;
    line-height: 1.7;
    margin-top: 0;
    margin-bottom: 35px;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    color: #333;
    margin-bottom: 12px;
}

/* Seta estilizada para os benefícios */
.benefits-list li::before {
    content: '❯';
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--primary-blue, #0a2e6c);
    margin-right: 12px;
}

/* --- Botão de Ação Principal --- */
.modal-cta-button {
    background-color: var(--primary-blue, #0a2e6c);
    color: var(--white, #fff);
    display: block;
    width: 100%;
    text-align: center;
    padding: 18px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.modal-cta-button:hover {
    background-color: #0056b3; /* Um tom de azul mais claro */
}


/* --- Responsividade para Telas Menores --- */
@media (max-width: 820px) {
    .modal-layout {
        flex-direction: column; /* Empilha as colunas */
    }
    .modal-left h2 {
        font-size: 2.5rem;
    }
    .modal-content {
        padding: 30px;
    }
}

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

.booking-text {
    flex: 1;
    padding-left: 20px;
    text-align: center;
}

.booking-streetview {
    flex: 1;
    padding-right: 20px;
}

.booking-streetview iframe {
    width: 100%;
    height: 450px; /* Or a height that fits the design */
}

.accordion-container2 {
    width: 100%;
}

.accordion-item2 {
    background-color: var(--white); /* Fundo branco para cada item */
    border-radius: 8px; /* Cantos arredondados */
    margin-bottom: 10px; /* Espaçamento entre os itens */
    overflow: hidden; /* Garante que o conteúdo não vaze */
    box-shadow: 0 2px 5px rgba(0,0,0,0.03); /* Sombra sutil */
}

.accordion-header2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px; /* Preenchimento interno */
    cursor: pointer;
    background-color: rgba(116,116,116,0.1); /* Fundo branco padrão */
    transition: background-color 0.2s ease;
}

.accordion-header2:hover {
    background-color: #f5f5f5; /* Um cinza muito sutil no hover */
}

.accordion-header2 h3 {
    margin: 0;
    font-size: 1.1rem; /* Tamanho da fonte */
    color: #6c757d; /* Cor do texto cinza claro, como na imagem */
    font-weight: 500; /* Levemente mais fino, como na imagem */
}

.accordion-header2 i {
    color: #6c757d; /* Cor do ícone cinza claro */
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

/* Estilo para quando o item do acordeão está ativo (aberto) */
.accordion-item.active .accordion-header2 {
    background-color: rgba(116,116,116,0.1); /* Mantém o fundo branco */
    border-bottom: 1px solid #e0e0e0; /* Adiciona uma borda inferior quando aberto */
}

.accordion-item.active .accordion-header2 h3 {
    color: var(--primary-blue); /* Cor do texto azul quando aberto */
    font-weight: 600; /* Negrito quando aberto */
}

.accordion-item.active .accordion-header2 i {
    color: var(--primary-blue); /* Cor do ícone azul quando aberto */
    transform: rotate(180deg); /* Gira o ícone para indicar "fechar" */
}

.accordion-content2 {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background-color: rgba(116,116,116,0.1); /* Fundo branco para o conteúdo */
    padding: 0 25px; /* Padding horizontal inicial */
    border-top: none; /* Não tem borda superior inicialmente */
}

.accordion-item.active .accordion-content2 {
    max-height: 150px; /* Altura suficiente para o conteúdo */
    padding: 15px 25px 20px; /* Adiciona padding quando aberto (ajuste o último valor para o padding inferior) */
    border-top: none; /* Garante que a borda não apareça aqui */
}

.accordion-content2 p {
    margin: 0;
    color: black;
    font-size: 0.95rem;
    line-height: 1.6;
    padding-top: 20px;
    padding-bottom: 20px;
}


.accordion-item.active:last-child .accordion-header2 h3 {
    color: var(--primary-blue); /* Texto azul como na imagem */
    font-weight: 600;
}
.accordion-item.active:last-child .accordion-header2 i {
    color: var(--primary-blue); /* Ícone azul */
}


/* E no seu accordion-header h3 e i, use a variável */
/* .accordion-header h3 { color: var(--light-gray-text); } */
/* .accordion-header i { color: var(--light-gray-text); } */

/* --- Seção Nossas Unidades --- */
.unidades-section {
    width: 100%;
    max-width: 1200px;
    margin: 60px auto; /* Centraliza e dá espaço */
    padding: 20px;
    text-align: center;
}

.unidades-section h2 {
    font-size: 2.5rem; /* 40px */
    font-weight: 700;
    color: #0d3d6f; /* Azul escuro do título */
    margin-bottom: 50px;
}

.unidades-container {
    display: flex;
    flex-wrap: wrap; /* Permite que os itens quebrem para a próxima linha em telas menores */
    justify-content: center;
    gap: 40px; /* Espaço entre os cards */
}

.unidade-card {
    flex-basis: 320px; /* Largura base de cada card */
    flex-grow: 1;      /* Permite que cresça se houver espaço */
    max-width: 360px;  /* Limite de largura */
    text-align: center;
}

.unidade-card img {
    width: 100%;
    height: auto;
    border-radius: 20px; /* Bordas arredondadas da imagem */
    margin-bottom: 25px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, filter 0.3s ease; /* Animação suave para o zoom e brilho */
}

.unidade-card:hover img {
    transform: scale(1.03); /* Aumenta levemente o tamanho da imagem */
    filter: brightness(1.05); /* Aumenta levemente o brilho */
}

.unidade-card h3 {
    font-size: 1.75rem; /* 28px */
    font-weight: 600;
    color: #1a5a9e; /* Azul médio */
    margin-bottom: 10px;
}

.unidade-card p {
    font-size: 1rem; /* 16px */
    color: #555;
    padding: 0 10px; /* Evita que o texto cole nas bordas em telas pequenas */
}

.unidade-endereco-link {
    text-decoration: none;
    color: inherit;
}

.unidade-endereco-link:hover p {
    text-decoration: underline;
    color: #1a5a9e;
}

.cta-container {
    margin-top: 60px;
}

.btn-fale-conosco {
    display: inline-block;
    background-color: #0d3d6f; /* Azul escuro do botão */
    color: #ffffff;
    padding: 18px 40px;
    border: none;
    border-radius: 50px; /* Formato de pílula */
    font-size: 1.1rem; /* 17.6px */
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-fale-conosco:hover {
    background-color: #1a5a9e; /* Azul um pouco mais claro no hover */
    transform: translateY(-2px); /* Efeito de "levantar" */
}

/* Media query para telas menores (celulares) */
@media (max-width: 768px) {
    .unidades-section h2 {
        font-size: 2rem;
    }
    .unidade-card h3 {
        font-size: 1.5rem;
    }
    /* Em telas pequenas, os cards ficam um abaixo do outro */
    .unidades-container {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }
}

/* --- Estilos para Tablets e Celulares (até 768px) --- */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; margin-bottom: 30px; }

    .container {
        max-width: 90%; /* Garante que o container não vaze */
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .header {
        position: absolute;
        padding: 10px 0;
    }

    .header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        margin-left: 0;
        padding: 0 15px;
    }

    .menu-toggle {
        display: block; /* Mostra o botão hambúrguer no mobile */
    }

    .logo {
        margin: 10px 0;
        margin-left: 0;
    }

    .nav-menu {
        display: none; /* Esconde o menu por padrão */
        position: fixed;
        top: 80px; /* Altura aproximada do header */
        left: 0;
        width: 100%;
        background-color: rgb(21, 101, 192);
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .nav-menu.active {
        display: block; /* Mostra o menu quando a classe 'active' está presente */
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 10px;
        margin-left: 0;
    }

    .nav-menu ul li {
        margin: 0 5px;
        width: 100%;
        text-align: center;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero {
        margin-top: 0;
        padding: 80px 0;
        text-align: center;
        background-size: cover; /* Garante que a imagem cubra a área */
        background-position: center center; /* Centraliza a imagem no mobile */
        position: relative; /* Necessário para o overlay */
        z-index: 1;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        background-color: rgba(10, 46, 108, 0.4); /* Overlay azul para contraste */
        z-index: -1;
        border-radius: inherit;
    }

    .hero h1 {
        margin: 0 auto 30px;
        text-align: center;
        max-width: 90%;
    }

    .btn, .btn-primary, .btn-light, .btn-light2 {
        width: auto !important; /* Remove larguras fixas */
        max-width: 90%; /* Garante que não vaze */
        padding: 12px 25px !important; /* Diminui o padding */
        font-size: 16px !important; /* Diminui a fonte */
        white-space: normal !important; /* Permite quebra de linha se necessário */
        left: auto !important; /* Reseta posicionamento */
        margin-left: auto !important; /* Reseta margens */
        margin-right: auto !important; /* Reseta margens */
    }

    .hero .btn-primary {
        margin: 0 auto; /* Centraliza o botão */
        display: table; /* Garante a centralização com margin: auto */
    }

    .treatments-content {
        flex-direction: column;
        gap: 30px; /* Ajusta o espaçamento entre os itens */
    }

    .treatments-accordion,
    .treatments-images-container {
        flex: 1 1 100%;
        margin-top: 0;
        margin-left: 0;
    }

    .treatments-accordion {
        order: 1;
        margin-bottom: 0;
    }

    .treatments-cta { 
        order: 2; 
        margin-top: 0;
        width: 100%; /* Garante que o container ocupe toda a largura */
    }
    .treatments-images-container { order: 3; }

    .treatments-cta .btn-light2 {
        margin: 20px auto 0 !important; /* Garante centralização */
    }

    .treatments-cta .btn-light2 {
        position: static; /* Remove posicionamento absoluto */
        margin: 20px auto 0 !important; /* Garante centralização */
    }

    .snowflake-bg-treatments {
        width: 250px; /* Reduz o tamanho do floco de neve */
        height: 250px;
        right: -50px; /* Ajusta a posição para não vazar da tela */
        bottom: -50px;
    }

    .treatments-images-container {
        flex-direction: row; /* Imagens lado a lado */
        justify-content: center; /* Centraliza o conjunto de imagens */
        align-items: flex-start; /* Alinha os itens no topo */
        gap: 15px; /* Espaçamento entre as imagens */
        width: 100%;
    }

    .treatments-image-large, .treatments-image-small {
        flex: 1; /* Faz com que todas as imagens tenham o mesmo tamanho */
        width: 30%; /* Define uma base de largura */
        height: 200px; /* Altura fixa para todas as imagens */
    }

    .treatments-images-small-row {
        flex: 2; /* Ocupa o espaço de duas imagens */
        display: flex;
        gap: 15px;
        width: 66%; /* Largura combinada */
    }

    .treatments h2 {
        text-align: center;
        margin-right: 0;
    }

    .treatments .container,
    .more-info .container {
        margin-left: auto;
        margin-right: auto;
    }
    .treatments-content {
        margin-left: 0;
    }

    .more-info h2,
    .more-info p,
    .filter-buttons {
        margin-left: 0;
        margin-right: 0;
    }

    .filter-buttons {
        padding: 0 15px;
        justify-content: center; /* Centraliza os botões de filtro */
    }

    .treatments-cta {
        margin-top: 20px;
        margin-right: 0;
    }

    .info-content, .info-content2 {
        flex-direction: column;
        gap: 30px;
        margin-left: 0;
        margin-right: 0;
        text-align: center;
    }

    .info-text h2, .info-text2 h2, .info-text2 h3 {
        text-align: center;
        margin-left: 0; /* Remove margem para centralizar */
    }

    .info-image, .info-image2 {
        order: -1; /* Move a imagem para cima do texto */
    }

    .info-image, .info-image2 {
        padding: 0;
        margin: 0 auto;
    }

    .info-image img, .info-image2 img {
        margin: 0 auto;
        display: block;
        max-width: 100%;
        width: 100%;
        max-width: 400px;
        height: auto;
    }
    
    .info-text, .info-text2 {
        padding: 0;
        margin: 0;
        text-align: center; /* Garante que todo o texto fique centralizado */
    }

    .btn-light2 {
        left: 0;
        margin: 20px auto 0;
        display: block;
        width: fit-content;
    }

    .info-text p, .info-text2 p {
        margin-left: 0; /* Remove margem para centralizar */
    }

    .info-section .btn-light2 {
        left: auto; /* Reseta o posicionamento */
        position: static; /* Remove o posicionamento relativo que causa problemas */
        display: block;
        margin: 20px auto 0 !important; /* Força a centralização */
    }

    .booking-content {
        margin-left: 0;
        flex-direction: column;
        gap: 40px; /* Adiciona um espaço entre o mapa e o texto */
    }

    .booking-streetview {
        order: 1; /* Mapa primeiro */
        width: 100%;
        padding-right: 0; /* Remove padding desnecessário no mobile */
    }

    .booking-text {
        order: 2; /* Texto depois do mapa */
        padding-left: 0; /* Remove padding desnecessário no mobile */
    }

    .booking h2 {
        font-size: 2.2rem;
    }

    .testimonial-author {
        flex-direction: column; /* Empilha o nome e as estrelas */
        align-items: flex-start; /* Alinha à esquerda dentro do card */
        gap: 5px; /* Reduz o espaçamento entre nome e estrelas */
    }

    .testimonials-grid {
        flex-direction: column;
        align-items: center;
        margin-left: 0;
        margin-right: 0;
        margin: 0;
    }

    .testimonial-card {
        width: 100%;
        max-width: 350px;
    }

    .testimonials h2 {
        margin-right: 0; /* Centraliza o título dos depoimentos */
    }

    .faq-section .container {
        flex-direction: column;
        align-items: center;
    }

    .faq-left {
        text-align: center;
        margin-bottom: 30px;
    }

    .faq-left h2 {
        text-align: center;
    }

    .faq-section .snowflake-bg {
        display: none; /* Esconde o floco de neve em telas menores para não poluir */
    }

    .final-cta-v2 .container h2 {
        font-size: 2rem !important;
        margin-left: 0 !important; /* Remove a margem inline */
        text-align: center; /* Centraliza o texto */
    }

    .final-cta-v2 .container h2 span {
        font-size: 2.5rem !important;
    }

    .final-cta-v2 {
        background-position: center 1px; /* Desce a imagem de fundo em 1px */
    }

    .final-cta-v2::after {
        padding-bottom: 10px !important;
    }

    .final-cta-v2 .container a.btn-light2 {
        margin: 20px auto 40px !important; /* Adiciona margem inferior */
        width: fit-content;
        display: table; /* Garante a centralização */
    }

    .footer .container {
        margin: 0 auto; /* Centraliza o container */
        display: flex;
        flex-direction: column;
        align-items: center; /* Centraliza todos os itens dentro do container */
    }

    .footer p {
        text-align: center;
    }

    .nav-menu a.btn {
        padding: 8px 15px !important; /* Diminui o padding do botão do menu */
    }

    /* --- Seção Nossas Unidades --- */
    .unidades-section {
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .unidades-section h2 {
        font-size: 2rem !important;
        margin-bottom: 40px;
    }

    .unidades-container {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }

    .unidade-card h3 {
        font-size: 1.5rem;
    }

}

/* --- Estilos para Celulares (até 767px) --- */
@media (max-width: 767px) {
    section {
        padding: 60px 0;
    }

    .container {
        padding: 0 15px;
    }

    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; margin-bottom: 30px; }
    .treatments h2, .testimonials h2, .more-info h2 { font-size: 2.2rem !important; }

    .treatments-cta {
        margin-top: 20px;
    }
    .treatments-images-container {
        gap: 20px;
    }

    .treatments-image-large {
        width: 100%;
        height: 300px;
    }

    .treatments-image-small img {
        width: 100%;
        height: 100%;
    }

    .treatments-image-small-1,
    .treatments-image-small-2 {
        width: 100%; /* Garante que as imagens menores se ajustem */
        height: auto;
    }

    .snowflake-bg-treatments {
        width: 150px;
        height: 150px;
        bottom: -30px;
        right: -30px;
    }

    .treatments-images-small-row {
        height: auto;
        gap: 15px;
    }

    .more-info p {
        font-size: 1.2rem;
        margin-top: -15px;
    }

    .filter-buttons .btn {
        width: auto !important;
        font-size: 0.9rem !important; /* Diminui a fonte dos botões de filtro */
        padding: 8px 15px !important; /* Diminui o padding dos botões de filtro */
    }

    .info-text p, .info-text2 p, .modal-layout p {
        font-size: 1rem;
    }

    .info-text h2, .info-text2 h2 {
        font-size: 2.2rem;
    }

    .info-text h2 span, .faq-left h2 span {
        font-size: 2.2rem !important; /* Diminui o tamanho do span nos títulos */
    }

    .final-cta-v2 .container h2 {
        font-size: 1.2rem !important; /* Diminui a fonte do título final */
        letter-spacing: 1px;
    }

    .final-cta-v2 .container h2 span {
        font-size: 1.6rem !important; /* Diminui a fonte do span no título final */
    }

    .final-cta-v2::after {
        height: 150px;
        margin-bottom: -15px;
    }

    .modal-content {
        padding: 20px;
        width: 95%;
    }

    .modal-left h2 {
        font-size: 1.8rem !important; /* Diminui a fonte do título do modal */
    }
}

/* --- Estilos para Celulares Pequenos (até 480px) --- */
@media (max-width: 480px) {
    .treatments-images-small-row {
        flex-direction: column;
        height: auto;
    }
}

/* --- Estilos para Celulares Pequenos (até 480px) --- */
@media (max-width: 480px) {
    .unidade-card {
        max-width: 100%; /* Permite que o card ocupe a largura total */
    }
}