@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');


/* Variáveis CSS */
:root {
    --primary-blue: #0026ff;
    --secondary-blue: #3353ee;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #212529;
    --text-color: #495057;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Reset e Estilos Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--white);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
    position: relative;
}

h1, h2, h3, h4 {
    color: var(--dark-gray);
    font-weight: 600;
}

h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
     
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-color);
    margin-bottom: 60px;
    font-size: 1.2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Barra de Navegação */
#navbar {
    background-color: var(--white);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

#navbar.scrolled {
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

#navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-decoration: none;
    transition: var(--transition);
}


.logo:hover {
    transform: scale(1.02);
}

.logo-img {
  height: 70px;
  margin-top: -10px;
  object-fit: contain;
  display: block;
  border: none;            /* Remove a borda */
  border-radius: 0;        /* Remove cantos arredondados */
  background: transparent; /* Garante que não tenha fundo */
}


.logo:hover img {
    transform: rotate(-5deg);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    color:blue;
}

.nav-links a {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    font-size: 1.05rem;
    padding: 5px 0;
}

.nav-links a:hover, 
.nav-links a.active {
    color: var(--primary-blue);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary-blue);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    margin-left: 30px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(51, 83, 238, 0.3);
    transition: var(--transition);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(237, 238, 238, 0.4);
}

/* Esconde o hambúrguer no desktop */
.hamburger {
    display: none;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
    margin-left: 15px;
}

/* Mostra e aumenta APENAS no mobile */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.2rem;
        width: 50px;
        height: 50px;
        color: #ffffff; /* Valor hexadecimal direto */
        z-index: 1001;

    }

    .social-icons-desktop {
        display: none;
        margin-left: 20px;
    }
}

.social-icons-desktop a {
    margin-left: 15px;
    font-size: 1.2rem;
}

 .nav-links.active a {
        color: #000000 !important; /* Troque #000000 pela cor que desejar */
    }


/* Mantém o estilo quando o menu está aberto */
.hamburger.open {
    color:white;
    position: static; /* Remove posição fixa se existir */

}

.hamburger:hover {
    color:white;
}

/* Seção Hero */
.hero {
    background: url('fotoinicio.jpg') no-repeat center center/cover;
    background-size: cover;
    background-position: center;
    position: relative;
    height: 80vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.hero-text {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    max-width: 600px;
    margin-left: 4%;
    margin-right: auto;
    transform: translateX(-260px);
    margin-top: 100px;
}

.hero-text h1 {
    color: white;
    font-size: 1.8rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.hero-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
}


.hero-cta {
    margin-top: 40px;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-blue);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    border: 2px solid var(--white);
    text-align: center;

}

.btn-primary:hover {
    background: transparent;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(0, 51, 153, 0.3);
    transform: translateY(-3px);
}

.checkbox-item {
    display: flex;
    align-items: center;
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
}

.checkbox-item i {
    margin-right: 10px;
    color: var(--primary-blue);
}

/* NEW STATS STYLES (Updated as requested) */
.stats-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 30px 0;
}

.stat-item {
    background: white;
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.15);
    border: 1px solid rgba(26, 115, 232, 0.2);
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(26, 115, 232, 0.2);
}

.stat-number {
    font-size: 28px;
    font-weight: bold;
    color: #1A73E8;
    display: block;
    margin-bottom: 5px;
}

.stat-item span:not(.stat-number) {
    font-size: 16px;
    color: #333;
    display: block;
    margin-top: 5px;
    line-height: 1.4;
}

/* Social Icons */
.social-icons {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 10;
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    color: white;
    font-size: 18px;
    transition: var(--transition);
    text-decoration: none;
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 40px;
        text-align: left;
        display: flex;
        align-items: flex-start;
    }

    .hero-content {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .hero-text {
        width: 90%;
        max-width: 100%;
        margin-left: 5%;
        padding: 25px;
        backdrop-filter: blur(5px);
        background-color: rgba(255, 255, 255, 0.15);
        transform: none;
        border-radius: 10px;
        margin-top: 0;
    }

    .hero-text h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero-text p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .hero-cta {
        margin-top: 25px;
        width: 100%;
    }

    .btn-primary {
        width: 100%;
        max-width: 100%;
        padding: 12px 20px;
        font-size: 1rem;
    }

    .hero-stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 30px auto 0;
    width: 100%;
  }

    .checkbox-item {
        justify-content: flex-start;
        font-size: 0.9rem;
        margin-top: 15px;
    }

    .stats-container {
        flex-direction: column;
        align-items: center;
        width: 90%;
        margin: 30px auto 0;
    }

    .stat-item {
    width: 90%;
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
    .hero-text {
        width: 95%;
        margin-left: 2.5%;
        padding: 20px;
    }

    .hero-text h1 {
        font-size: 1.6rem;
    }

    .hero-text p {
        font-size: 0.95rem;
    }

    .checkbox-item span {
        font-size: 0.85rem;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-item span:not(.stat-number) {
        font-size: 14px;
    }
}

/* Estatísticas */
.hero-stats {
    flex: 0 0 30%;
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-left: auto; /* Empurra todo o bloco para a direita */
    align-items: flex-end; /* Alinha os itens à direita dentro do container */
}

.stat-item {
    background: var(--white);
    padding: 10px;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    text-align: center;
    border-top: 4px solid var(--primary-blue);
    margin-left: auto; /* Alinha cada caixinha à direita do container */
    width: 80%; /* Reduz a largura para criar mais espaço ao redor */
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-color);
}

/* Seções alternadas azul e branco */
.blue-section {
    background-color: var(--primary-blue);
    color: white;
}
        
.blue-section h2,
.blue-section h3,
.blue-section h4 {
    color: white;
}
        
.blue-section .section-subtitle {
    color: rgba(255,255,255,0.9);
}
        
.white-section {
    background-color: var(--white);
    color: var(--text-color);
}

/* Seção de especialidades */
.treatment-blocks-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px; /* Menor espaçamento */
    margin-top: 30px;
}

.treatment-block {
  background: rgba(9, 87, 175, 0.1); /* azul claro com 10% de opacidade */
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  text-decoration: none;
  color: var(--dark-gray);
  border-top: 3px solid var(--primary-blue);
  min-height: 140px;
  min-width: 120px;
  max-width: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.treatment-icon {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--primary-blue);
}

.treatment-block h3 {
    font-size: 13px;
    margin-bottom: 4px;
}

.treatment-block p {
    font-size: 10px;
    line-height: 1.2;
}

/* Responsivo */
@media (max-width: 1200px) {
    .treatment-blocks-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .treatment-blocks-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .treatment-block {
        min-height: 140px;
        padding: 15px 8px;
    }

    .treatment-icon {
        font-size: 1.4rem;
        margin-bottom: 8px;
    }

    .treatment-block h3 {
        font-size: 0.85rem;
    }

    .treatment-block p {
        font-size: 0.7rem;
    }
}

    

/* Seção Sobre Nós */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    height: 400px; /* Altura fixa para o container */
    background-color: var(--light-gray);
    position: relative; /* Adicionado para melhor posicionamento */
}

.about-image img {
    width: 100%; /* Alterado de 20% para 100% */
    height: 100%; /* Alterado de 20% para 100% */
    object-fit: cover;
    object-position: center; /* Garante que a imagem fique centralizada */
    display: block;
    
}

/* Restante do seu CSS permanece igual */
.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-features {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.feature-item i {
    color: var(--primary-blue);
    font-size: 1.5rem;
}



/* Seção Tratamentos - Layout Alternado */
/* Seção Tratamentos - Layout Alternado */
/* Seção Tratamentos - Versão Atualizada */
.white-section {
    background-color: white;
    padding: 80px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    color: #016fca;
    font-size: 36px;
    margin-bottom: 40px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #4a90e2;
    margin-bottom: 60px;
}

.treatment-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 32px;
}

.treatment-row.reverse {
    flex-direction: row-reverse;
}

.treatment-info {
    flex: 1;
    min-width: 300px;
}

.treatment-info h3 {
    color: #016fca;
    font-size: 2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    line-height: 1.3;
}

.treatment-info h3::after {
    
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #016fca, #4a90e2);
    border-radius: 2px;
}

.treatment-info p {
    color: #4a5568;
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.treatment-benefits {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.treatment-benefits li {
    color: #2d3748;
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.treatment-benefits li::before {
    content: '✓';
    font-family: sans-serif;
    font-weight: bold;
    color: #016fca;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.treatment-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    min-width: 300px;
}

.treatment-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.treatment-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .treatment-row,
    .treatment-row.reverse {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .treatment-info {
        padding: 0 15px;
    }

    .treatment-info h3 {
        font-size: 1.7rem;
    }

    .treatment-info h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .treatment-info p {
        font-size: 1.05rem;
    }

    .treatment-benefits {
        padding: 0 15px;
    }

    .treatment-image {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        order: -1; /* imagem vem antes do texto no mobile */
    }

    .treatment-image img {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .treatment-info h3 {
        font-size: 1.6rem;
    }

    .treatment-image {
        margin-bottom: 30px;
    }

    .treatment-benefits li {
        font-size: 1rem;
    }

    .treatment-info p {
        font-size: 1rem;
    }

    .btn-know-more {
        padding: 12px 30px;
    }
}

.btn-know-more {
    display: block;
    max-width: 250px;
    margin: 0 auto;
    text-align: center;
    margin-top: -15px;
    margin-bottom: 15px;
}


/* ========== FAQ SECTION ========== */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, #f8fafc 100%);
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(1, 111, 202, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.faq-section::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: rgba(1, 111, 202, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.faq-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    margin-bottom: 15px;
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #016fca;
    border-radius: 3px;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 60px;
    font-size: 1.1rem;
    color: #4a7fb6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* FAQ Container */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 5px 25px rgba(1, 111, 202, 0.1);
    border-radius: 15px;
    overflow: hidden;
    background: white;
    border: 1px solid #e1e8f0;
}

/* Categorias */
.faq-category {
    padding: 25px 30px;
    border-bottom: 1px solid #e8f0fe;
    transition: all 0.4s ease;
}

.faq-category:last-child {
    border-bottom: none;
}

.faq-category h3 {
    font-size: 1.3rem;
    color: #016fca;
    margin-bottom: 0;
    padding: 15px 20px 15px 45px;
    border-radius: 8px;
    background: rgba(1, 111, 202, 0.05);
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.faq-category h3::before {
    content: '';
    position: absolute;
    left: 20px;
    width: 10px;
    height: 10px;
    background: #016fca;
    border-radius: 50%;
}

.faq-category h3:hover {
    background: rgba(1, 111, 202, 0.1);
}

.faq-category h3.active {
    background: #016fca;
    color: white;
}

.faq-category h3.active::before {
    background: white;
}

.faq-category h3::after {
    content: '⌄';
    display: inline-block;
    margin-left: auto;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.faq-category h3.active::after {
    transform: rotate(180deg);
    color: white;
}

/* Perguntas e Respostas */
.faq-item {
    margin: 15px 0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: none;
}

.faq-item.show {
    display: block;
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 18px 25px;
    background: #f8fafc;
    border: none;
    border-left: 3px solid #016fca;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    color: #2c3e50;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f1f5f9;
    border-left-color: #014a8c;
}

.faq-question.active {
    background: #016fca;
    color: white;
    border-left-color: #014a8c;
}

.faq-question::after {
    content: '⌄';
    display: inline-block;
    margin-left: 15px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(180deg);
    color: white;
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    background: white;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer.show {
    padding: 20px 25px;
    max-height: 1000px;
    border-left: 3px solid #e1e8f0;
}

.faq-answer p {
    margin: 0;
    color: #4a5568;
    line-height: 1.7;
    font-size: 1rem;
}

.faq-answer strong {
    color: #016fca;
    font-weight: 600;
}

/* CTA (Call to Action) */
.faq-cta {
    text-align: center;
    margin-top: 60px;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #e1e8f0;
}

.faq-cta p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.btn {
    display: inline-block;
    padding: 12px 32px;
    background: #016fca;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1rem;
    box-shadow: 0 4px 6px rgba(1, 111, 202, 0.2);
    border: 1px solid rgba(255,255,255,0.2);
}

.btn:hover {
    background: #0158a0;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(1, 111, 202, 0.3);
}

/* Responsividade */
@media (max-width: 768px) {
    .faq-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .faq-category {
        padding: 15px;
    }
    
    .faq-category h3 {
        padding: 12px 15px 12px 35px;
        font-size: 1.1rem;
    }
    
    .faq-category h3::before {
        left: 15px;
    }
    
    .faq-question {
        padding: 15px;
        font-size: 0.95rem;
    }
    
    .faq-answer.show {
        padding: 15px;
    }
    
    .faq-cta {
        padding: 20px;
    }
}
/* Seção de Avaliações */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.2);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.avatar {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.5rem;
    font-weight: bold;
}

.stars {
    color: #ffd700;
    margin-bottom: 15px;
}

/* Rodapé */
.footer {
    background:  rgb(9, 87, 175);
    color: var(--white);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-social {
    margin-top: 20px;
    text-align: center;
}

.footer-social a {
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #ddd;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
    position: relative;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo .logo {
    color: var(--white);
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.7;
}

.footer-links h3, 
.footer-hours h3 {
    margin-bottom: 25px;
    font-size: 1.3rem;
    color: var(--white);
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after,
.footer-hours h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--white);
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
    display: inline-block;
    padding: 5px 0;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--white);
    transition: width 0.3s;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-links a:hover::before {
    width: 20px;
}

.footer-hours p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    position: relative;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.footer-bottom p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .footer-social {
        margin: 15px 0;
    }
    
    .footer-social a {
        font-size: 1.3rem;
        margin-right: 10px;
    }
    
    /* Nova regra para corrigir a cor dos telefones e CEP */
    .footer p[style*="font-weight: 500"],
    .footer p[style*="opacity: 0.9"] {
        color: white !important;
        text-decoration: none !important;
    }
    
    .footer div > div > p[style*="font-weight: 500"] {
        color: white !important;
    }
    
    .footer div > div > p[style*="opacity: 0.9"]:last-child {
        color: white !important;
    }
}

/* Botão WhatsApp */
.whatsapp-btn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: var(--transition);
    text-decoration: none;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    animation: none;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

/* Responsividade */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text, .hero-stats {
        flex: 0 0 100%;
    }
    
    .hero-stats {
        margin-top: 50px;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .stat-item {
        flex: 0 0 calc(50% - 15px);
        
    }
    

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
        height: 400px;
    }

    .modal-content {
        margin: 20px auto;
        max-width: 95%;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 150px 0 80px;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .stat-item {
        flex: 0 0 100%;
    }

    .nav-links {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 90px);
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 40px;
        transition: left 0.3s;
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
        color:blue;
    }

    .nav-cta {
        margin: 20px 0 0;
        width: 80%;
        text-align: center;
    }

    .hamburger {
        display: block;
    }

    .modal-header {
        padding: 20px;
    }

    .modal-body {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .hero-stats {
        gap: 20px;
    }
    
    .stat-item {
        min-width: 140px;
        padding: 15px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .whatsapp-btn {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        bottom: 30px;
        right: 30px;
    }
}

/* Filtros de especialidade */
.specialty-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid var(--primary-blue);
    background: transparent;
    color: var(--primary-blue);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    background: rgba(0, 38, 255, 0.1);
}

.filter-btn.active {
    background: var(--primary-blue);
    color: white;
}

/* Esconder categorias quando filtradas */
.treatment-category.hidden {
    display: none;
}

/* Estilos para os blocos de tratamento */
.treatment-block {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
    text-decoration: none;
    color: var(--dark-gray);
    border-top: 4px solid var(--primary-blue);
    display: block;
}

.treatment-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.treatment-block h3 {
    margin: 15px 0 10px;
    color: var(--primary-blue);
}

.treatment-block p {
    color: var(--text-color);
    font-size: 0.95rem;
    margin-bottom: 0;
}


.treatment-questions {
    margin: 20px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 15px;
}

.treatment-questions .question {
    margin-bottom: 15px;
}

.treatment-questions h5 {
    color: var(--primary-blue);
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.treatment-questions p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 15px;
}

/* Ajustes para os cards de tratamento */
.treatment-card {
    display: flex;
    flex-direction: column;
}

.treatment-description {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.btn-know-more {
    margin-top: auto;
    align-self: flex-start;
}

/* Estilos para o accordion dos tratamentos */
.treatment-accordion {
    margin: 20px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 15px;
}

.treatment-accordion .accordion-item {
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.treatment-accordion .accordion-header {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(0, 38, 255, 0.05);
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.treatment-accordion .accordion-header:hover {
    background-color: rgba(0, 38, 255, 0.1);
}

.treatment-accordion .accordion-header span {
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 0.95rem;
}

.treatment-accordion .accordion-header i {
    transition: transform 0.3s ease;
    color: var(--primary-blue);
    font-size: 0.9rem;
}

.treatment-accordion .accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.treatment-accordion .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 15px;
    background-color: rgba(255, 255, 255, 0.7);
}

.treatment-accordion .accordion-item.active .accordion-content {
    max-height: 300px;
    padding: 0 15px 15px;
}

.treatment-accordion .accordion-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-top: 10px;
}

/* ===== SEÇÃO DEPOIMENTOS ===== */
/* Seção Depoimentos - Versão Somente Imagens */
/* FUNDO AZUL + IMAGENS ALINHADAS */
/* ESTRUTURA PRINCIPAL */
/* Seção Depoimentos */
.depoimentos-print {
  background:rgb(9, 87, 175);
  padding: 80px 20px;
  color: white;
  text-align: center;
  font-family: Arial, sans-serif;
  position: relative;
}

.cabecalho-print h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.cabecalho-print h2 {
  font-size: 1.3rem;
  font-weight: normal;
  margin-bottom: 50px;
  opacity: 0.9;
}

/* Container com as imagens dos prints */
.container-prints {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto 40px;
}

/* Cada imagem do depoimento */
.print-depoimento {
  width: 270px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  background: white;
  transition: all 0.3s ease;
  transform: translateY(0);
}

.print-depoimento:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
}

.print-depoimento img {
  width: 100%;
  height: auto;
  display: block;
}

/* Botão de Avaliações */
.avaliacoes-btn-container {
  margin-top: 40px;
  text-align: center;
}

.btn-google-avaliacoes {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 35px;
  background: white;
  color: #0026ff;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  border: 2px solid white;
}

.logo-google-avaliacoes {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 10px;
}

.logo-google-avaliacoes img {
  max-width: 250px; /* Aumentado */
  height: auto;
  display: inline-block;
}


.btn-google-avaliacoes i {
  margin-right: 12px;
  font-size: 1.4rem;
  color: #0026ff;
}

.btn-google-avaliacoes:hover {
  background: transparent;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.btn-google-avaliacoes:hover i {
  color: white;
}

/* Responsivo para telas menores */
@media (max-width: 768px) {
  .depoimentos-print {
    padding: 60px 20px;
  }
  
  .cabecalho-print h1 {
    font-size: 2rem;
    line-height: 1.3;
  }

  .cabecalho-print h2 {
    font-size: 1.1rem;
    margin-bottom: 40px;
  }

  .container-prints {
    gap: 20px;
  }

  .print-depoimento {
    width: 100%;
    max-width: 350px;
  }
  
  .btn-google-avaliacoes {
    padding: 14px 30px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .cabecalho-print h1 {
    font-size: 1.8rem;
  }
  
  .btn-google-avaliacoes {
    width: 100%;
    max-width: 300px;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(26, 115, 232, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(26, 115, 232, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(26, 115, 232, 0);
  }
}

.btn-primary.pulsar {
  animation: pulse 2s infinite;
}