/* =========================================================================
   0 - Fonts e Variáveis Globais
   ========================================================================= */
:root{
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  --heading-font: "Ubuntu", sans-serif;
  --nav-font: "Poppins", sans-serif;
  --background-color: #ffffff;
  --default-color: #363f40;
  --heading-color: #1f2f31;
  --accent-color: #2e7bbf;
  --primary-color: #385ca7;
  --secondary-color: #2e7bbf;
  --accent-color-2: #3f97d3;
  --contrast-color: #ffffff;
  --surface-color: #ffffff;
  --text-dark: #2c3e50;
  --text-light: #7f8c8d;
  --bg-light: #f8f9fa;
  scroll-behavior: smooth;
}

*{box-sizing:border-box;margin:0;padding:0}
body{
  font-family:var(--default-font);
  color:var(--default-color);
  background-color:var(--background-color);
  line-height:1.6;
}

/*--------------------------------------------------------------
# Global Header - IDÊNTICO AO ABOUT
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 0;
  transition: all 0.5s;
  z-index: 997;
  min-height: 100px;
  height: 100px;
  top: 0;
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
}

.header .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1320px;
  margin: 0 auto;
  height: 80px;
  padding: 0 20px;
}

/* ===== LOGO ===== */
.header .logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 0 !important;
  margin-right: auto;
}

.header .logo img {
  height: 130px;
  width: auto;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

body:not(.index-page) .logo {
  justify-content: flex-start !important;
  width: auto;
  margin-right: auto;
}

body:not(.index-page) .logo img,
body:not(.index-page) .logo-normal {
  display: block !important;
  opacity: 1 !important;
  height: 130px !important;
  max-height: 130px !important;
  width: auto;
  margin: 0 !important;
  margin-left: 0 !important;
  transform: translateX(0) !important;
  position: relative;
  z-index: 20;
}

body:not(.index-page) .logo-home {
  display: none !important;
}

/* ===== NAVMENU WRAPPER ===== */
.navmenu-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
  position: relative;
  margin-left: auto;
}

body:not(.index-page) .navmenu-wrapper {
  background: transparent !important;
  padding: 0 !important;
}

/* ===== NAVEGAÇÃO DESKTOP ===== */
@media (min-width: 1200px) {
  .navmenu {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  
  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: flex-end !important;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #000000 !important;
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    text-decoration: none;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #099aa7 !important;
  }

  .navmenu ul li a {
    position: relative !important;
  }

  .navmenu ul li a::after {
    content: '' !important;
    position: absolute !important;
    width: 0 !important;
    height: 2px !important;
    bottom: -1px !important;
    left: 0 !important;
    right: 0 !important;
    background: #2e7bbf !important;
    transition: width 0.4s ease !important;
    margin: 0 auto !important;
  }

  .navmenu ul li a:hover::after {
    width: 100% !important;
  }

  .navmenu .dropdown > a::after {
    display: none !important;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: #ffffff;
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    max-height: 400px;
    overflow-y: auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: #363f40;
  }

  .navmenu .dropdown ul a:hover {
    color: #099aa7;
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown ul li a[href*="wa.me"] {
    display: none !important;
  }
  
  .navmenu .dropdown ul li:has(a[href*="wa.me"]) {
    display: none !important;
  }
}

/* ===== BOTÃO AGENDAR CONSULTA ===== */
.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  margin-left: 0 !important;
  border-radius: 25px;
  transition: 0.3s;
  white-space: nowrap;
  min-width: 160px;
  text-align: center;
  display: inline-block;
  text-decoration: none;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.scrolled .header,
.header.scrolled {
  background: #ffffff !important;
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
  padding: 0;
  min-height: 80px;
}

/* ===== MOBILE E TABLET ===== */
@media (max-width: 1199px) {
  .header {
    min-height: 80px !important;
    height: 80px !important;
    padding: 0 !important;
  }

  .header .container {
    min-height: 80px !important;
    height: 80px !important;
    padding: 0 15px !important;
    display: flex;
    align-items: center;
    position: relative !important;
  }

  body:not(.index-page) .logo-normal {
    height: 130px !important;
    max-height: 130px !important;
    min-height: 130px !important;
    margin-top: 0 !important;
    margin-left: 0 !important;
  }

  .header .btn-getstarted {
    display: none !important;
  }

  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 24px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 9999;
    position: absolute;
    right: 15px;
    top: 25px;
    margin: 0;
    display: block;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #000000 !important;
    position: fixed;
    top: 20px;
    right: 20px;
    font-size: 32px;
    z-index: 9999;
  }

  .navmenu ul {
    display: none !important;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: #ffffff;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

body.mobile-nav-active .navmenu ul {
  display: block !important;
  position: fixed;
  top: 80px !important;
  right: 15px !important;
  left: auto !important;
  background: #fff;
  width: 280px;
  max-width: calc(100vw - 30px);
  padding: 15px 10px !important;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  overflow-y: auto;
  max-height: calc(100vh - 100px);
}

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    border: 2px solid transparent;
    border-radius: 20px;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a:hover,
  .navmenu .active {
    color: #3f97d3 !important;
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    box-shadow: none;
    padding: 0;
    margin: 10px 20px;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    transition: all 0.4s ease-in-out;
    max-height: 0;
    overflow: hidden;
  }

  .navmenu .dropdown.dropdown-active ul {
    display: block !important;
    max-height: 2000px !important;
    padding: 10px 0 !important;
    overflow-y: auto;
  }

  .navmenu .dropdown ul li a {
    padding: 12px 20px !important;
    font-size: 14px !important;
    color: #363f40 !important;
    display: block !important;
    border: none !important;
    background: transparent !important;
    border-radius: 0 !important;
  }

  .navmenu .dropdown ul li a:hover {
    background: rgba(46, 123, 191, 0.1) !important;
    color: #099aa7 !important;
  }

  .navmenu .dropdown.dropdown-active > a i.toggle-dropdown {
    transform: rotate(180deg);
    background-color: var(--accent-color) !important;
    color: white !important;
  }

  .mobile-nav-active {
    overflow: hidden;
  }
}

@media (max-width: 768px) {
  .header .logo img {
    height: 130px !important;
    max-height: 130px !important;
  }

  body:not(.index-page) .logo-normal {
    height: 45px !important;
    max-height: 45px !important;
    margin-top: 0 !important;
  }

  .header {
    min-height: 65px !important;
    padding: 8px 0 !important;
  }

  .header .container {
    padding: 8px 15px !important;
  }
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer{
  background: linear-gradient(135deg,#2e7bbf 0%,#1a5a8f 50%,#3f97d3 100%);
  color:#fff;
  font-size:14px;
  position:relative;
  overflow:hidden;
  z-index:1;
}



.footer .logo-rodape {
  max-width: 280px;
  width: auto;
  height: auto;
  display: block;
  margin: -70px 30px 10px 0; /* 20px puxa levemente para a esquerda */
}




.footer .tagline {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-style: italic;
  margin-top: -40px;
  margin-bottom: 0;
    margin-left: 28px;

}

.footer::before{
  content:''; position:absolute; top:-40%; left:-15%; width:900px; height:900px;
  background: rgba(26,60,100,.4);
  border-radius:45% 55% 60% 40%; z-index:0; pointer-events:none;
}
.footer::after{
  content:''; position:absolute; bottom:-50%; right:-20%; width:1000px; height:1000px;
  background: rgba(35,80,130,.35);
  border-radius:60% 40% 50% 50%; z-index:0; pointer-events:none;
}

.footer-top::before,
.footer-top::after{
  content:''; position:absolute; z-index:0; pointer-events:none;
}
.footer-top::before{ top:10%; left:25%; width:700px; height:700px; background: rgba(45,100,150,.25); border-radius:50% 50% 45% 55%; }
.footer-top::after{ top:-30%; right:5%; width:600px; height:600px; background: rgba(30,75,120,.3); border-radius:40% 60% 55% 45%; }

.footer .footer-top{ padding:60px 0 40px; position:relative; z-index:1 }
.footer .logo-section{ margin-bottom:10px; margin-top:0 }


.footer h4{ color:#fff; font-size:16px; font-weight:700; margin-bottom:20px; text-transform:uppercase; letter-spacing:1px }
.footer .footer-links ul{ list-style:none; padding:0; margin:0 }
.footer .footer-links ul li{ padding:8px 0; transition: all .3s }
.footer .footer-links ul a{ color: rgba(255,255,255,.85); text-decoration:none; display:inline-block }
.footer .footer-links ul a:hover{ color:#fff; padding-left:5px }

.footer .social-links{ display:flex; gap:12px; margin-bottom:20px }
.footer .social-links a{
  display:flex; align-items:center; justify-content:center;
  width:42px; height:42px; border-radius:50%;
  background: rgba(255,255,255,.15); color:#fff; font-size:18px; text-decoration:none;
  transition:all .3s;
}
.footer .social-links a:hover{ background:#fff; color:var(--accent-color); transform: translateY(-3px); box-shadow:0 5px 15px rgba(0,0,0,.2) }

.footer .contact-info p{ color: rgba(255,255,255,.85); margin-bottom:12px; display:flex; gap:8px }
.footer .copyright{ border-top:1px solid rgba(255,255,255,.15); padding:25px 0; position:relative; z-index:1 }
.footer .privacy-link{ color: rgba(255,255,255,.8); font-size:12px; text-decoration:underline; transition: color .3s; cursor:pointer }

.footer::before, .footer::after, .footer-top::before, .footer-top::after { pointer-events:none; z-index:0 !important; }
.footer, .footer * { position:relative; z-index:5 !important; pointer-events:auto !important; }

/* =========================================================================
   WHATSAPP FLUTUANTE
   ========================================================================= */
.whatsapp-float{
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index:1000;
}
.whatsapp-float a{
  display:flex; align-items:center; justify-content:center;
  width:60px; height:60px; border-radius:50%;
  background:#25D366; text-decoration:none;
  box-shadow:0 4px 20px rgba(37,211,102,.4);
  animation: pulse-whatsapp 2s infinite;
  transition: all .3s;
}
.whatsapp-float a:hover{ transform:scale(1.1); box-shadow:0 6px 25px rgba(37,211,102,.6); background:#20bd5a }
.whatsapp-float i{ font-size:32px; color:#fff }

@keyframes pulse-whatsapp{
  0%{ box-shadow:0 0 0 0 rgba(37,211,102,.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) }
}

@media(max-width:768px){
  .whatsapp-float{ bottom:20px; right:20px }
  .whatsapp-float a{ width:55px; height:55px }
  .whatsapp-float i{ font-size:28px }
}

/* =========================================================================
   PRIVACY PAGE CONTENT
   ========================================================================= */
.privacy-section{
  padding:5rem 5%;
  max-width:1000px;
  margin:0 auto;
  padding-top:150px;
}
.privacy-header{ text-align:center; margin-bottom:3rem; padding-bottom:2rem; border-bottom:3px solid var(--secondary-color) }
.privacy-header h1{ font-size:2.5rem; color:var(--primary-color); margin-bottom:1rem; font-weight:700; margin-top:50px }
.privacy-header .version{ color:var(--text-light); font-size:1rem }

.privacy-content{
  background:#fff;
  padding:3rem;
  border-radius:15px;
  box-shadow:0 5px 30px rgba(0,0,0,.08);
}
.privacy-content h2{ color:var(--primary-color); font-size:1.8rem; margin-top:2.5rem; margin-bottom:1rem; padding-bottom:.5rem; border-bottom:2px solid var(--accent-color-2) }
.privacy-content p{ margin-bottom:1.2rem; text-align:justify; color:var(--text-dark) }
.privacy-content ul{ margin-left:2rem; margin-bottom:1.5rem }
.intro-text{ font-size:1.1rem; color:var(--text-light); line-height:1.8 }

.contact-box{
  background: linear-gradient(135deg,#4a9cd6,#5caade);
  color:#fff; padding:2rem; border-radius:10px; margin-top:3rem; text-align:center;
}
.contact-box a{ color:#fff; text-decoration:underline; font-weight:600 }

@media (max-width: 992px){
  .privacy-section{ padding:3.5rem 4% ; padding-top:140px }
  .privacy-header h1{ font-size:2rem }
  .privacy-content{ padding:2rem }
}


/* ================================
   RODAPÉ RESPONSIVO UNIVERSAL
================================ */

/* Garante que as colunas se comportem */
.footer .footer-top .row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

/* Ajusta a logo sem quebrar no mobile */
.footer .logo-rodape {
  max-width: 260px;
  height: auto;
  width: 100%;
}

/* Alinha tudo corretamente */
.footer .footer-about,
.footer .footer-links,
.footer .footer-contact-section {
  text-align: left;
}

/* -------- MOBILE (TELAS PEQUENAS) -------- */
@media (max-width: 767px) {

  /* Logo centralizada no mobile */
  .footer .footer-about {
    text-align: center !important;
  }

  .footer .logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer .tagline {
    text-align: center;
    margin-top: 4px;
    margin-left: 0 !important; /* remove deslocamento lateral */
  }

  /* Colunas ocupam largura total */
  .footer .footer-links,
  .footer .footer-contact-section {
    text-align: center;
  }

  .footer .footer-links ul li a {
    justify-content: center;
  }

  .footer .social-links {
    justify-content: center;
    display: flex;
    gap: 16px;
  }

  .footer .contact-info {
    text-align: center;
  }
}

/* -------- TABLETS MÉDIOS -------- */
@media (min-width: 768px) and (max-width: 991px) {

  .footer .footer-about {
    text-align: center;
  }

  .footer .logo-section {
    align-items: center;
  }

  .footer .tagline {
    margin-left: 0 !important;
  }

  .footer .footer-links,
  .footer .footer-contact-section {
    text-align: center;
  }
}

/* -------- TELAS MUITO GRANDES -------- */
@media (min-width: 1400px) {

  .footer .container.footer-top {
    max-width: 1400px;
  }
}


/* Arruma a coluna de contato no mobile */
@media (max-width: 767px) {

  .footer .footer-contact-section {
    text-align: center !important;
  }

  .footer .footer-contact-section .social-links {
    justify-content: center !important;
  }

  .footer .contact-info {
    text-align: center !important;
    margin-top: 15px;
  }

  .footer .contact-info p {
    margin: 6px 0;
    display: flex;
    justify-content: center;
    gap: 6px;
  }

  .footer .contact-info i {
    margin-right: 4px;
  }
}


/*--------------------------------------------------------------
# Global Header - ADAPTADO DO ABOUT
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 0;
  transition: all 0.5s;
  z-index: 997;
  min-height: 80px;
  top: 0;
}

.header .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 25px !important;
}

.header .logo img {
  height: 130px;
  width: auto;
  max-height: 130px;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

/* Exibe a logo normal nas páginas que não são a index */
body:not(.index-page) .logo {
  justify-content: center !important;
  width: 100%;
}

body:not(.index-page) .logo img {
  display: block;
  opacity: 1;
  margin: 0 auto !important;
  margin-left: 220px !important;
  transform: translateX(0) !important;
}

/* Logo específica para OUVIDORIA (sempre visível) */
body:not(.index-page) .logo-home {
  display: none !important;
}

body:not(.index-page) .logo-normal {
  display: block !important;
  opacity: 1 !important;
  height: 130px !important;
  max-height: 130px !important;
  width: auto;
  margin: 0 auto !important;
  margin-left: -1200px !important;
  transform: translateX(0) !important;
  position: relative;
  z-index: 20;
}

.header .logo img.logo-visible {
  opacity: 1;
  transform: translateY(0);
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .logo h1 span {
  color: var(--accent-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 4px;
  transition: 0.3s;
  white-space: nowrap;
  min-width: 160px;
  text-align: center;
  display: inline-block;
}

.header .btn-getstarted {
  margin-left: 25px !important;
  width: auto !important;
  padding: 8px 26px !important;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}



/* Global Header on Scroll */
.scrolled .header {
  --background-color: #ffffff;
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
  padding: 0;
  min-height: 80px;
}

/*--------------------------------------------------------------
# Ajuste do Menu para Direita
--------------------------------------------------------------*/
@media (min-width: 1200px) {
  .navmenu {
    margin-left: auto !important;
    margin-right: 20px !important;
  }
  
  .navmenu ul {
    justify-content: flex-end !important;
  }
}

body:not(.index-page) .navmenu {
    margin-left: auto !important;
}


/* Linha azul no hover dos itens de menu */
.navmenu ul li a {
  position: relative;
}

.navmenu ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -1px;
  left: 0;
  right: 0;
  background: #2e7bbf;
  transition: width 0.4s ease;
  margin: 0 auto;
}

.navmenu ul li a:hover::after {
  width: 100%;
}

.navmenu .dropdown > a::after {
  display: none;
}

/*--------------------------------------------------------------
# Animações da logo
--------------------------------------------------------------*/
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-40px) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/*--------------------------------------------------------------
# Container e ajustes gerais
--------------------------------------------------------------*/
.header .container {
  height: 80px;
  align-items: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: center !important;
}

/* Esconde botão "Agendar Consulta" em dispositivos mobile e tablet */
@media (max-width: 1199px) {
  .header .btn-getstarted {
    display: none !important;
  }
}

/*--------------------------------------------------------------
# HEADER MOBILE - OUVIDORIA PAGE
--------------------------------------------------------------*/
@media (max-width: 1199px) {
  /* Altura e estrutura do header */
  .header {
    min-height: 80px !important;
    height: 80px !important;
    padding: 0 !important;
  }
  
  .header .container {
    min-height: 80px !important;
    height: 80px !important;
    padding: 0 15px !important;
    display: flex;
    align-items: center;
    position: relative !important;
  }
  
  /* Quando o menu mobile está ativo */
  body.mobile-nav-active .header,
  body.mobile-nav-active .header .container {
    min-height: 80px !important;
    height: 80px !important;
  }
  
  /* Logo no mobile - OUVIDORIA */
  body:not(.index-page) .logo-normal {
    height: 50px !important;
    max-height: 50px !important;
    margin-top: 0 !important;
    margin-left: 0 !important;
  }
  
  /* Esconde logo-home na ouvidoria */
  body:not(.index-page) .logo-home {
    display: none !important;
  }
  
  /* Ícone do menu mobile (hambúrguer) */
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 24px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 9999;
    position: absolute;
    right: 15px;
    top: 25px;
    margin: 0;
  }
  
  /* X preto no menu mobile quando ativo */
  .mobile-nav-active .mobile-nav-toggle {
    color: #000000 !important;
    position: fixed;
    top: 20px;
    right: 20px;
    font-size: 32px;
    z-index: 9999;
  }
  
  /* Container do menu */
  .navmenu {
    padding: 0;
    z-index: 9997;
  }
  
  /* Menu escondido por padrão */
  .navmenu ul {
    display: none !important;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
  
  /* Bloco branco do menu mobile quando ativo */
  body.mobile-nav-active .navmenu ul {
    display: block !important;
    position: fixed;
    top: 60px !important;
    right: 20px;
    left: auto;
    background: #fff;
    width: 260px;
    padding: 5px 10px !important;
    border-radius: 12px;
    min-height: 180px !important;
    max-height: 440px !important;
    overflow-y: auto !important;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
  }
  
  /* Estilo dos links do menu */
  .navmenu a {
    font-size: 17px;
    font-weight: 500;
  }
  
  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    border: 2px solid transparent;
    border-radius: 20px;
  }
  
  /* Ícone do dropdown */
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }
  
  .navmenu .dropdown > a i.toggle-dropdown {
    display: inline-flex !important;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 50%;
  }
  
  /* Hover dos links */
  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }
  
  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #3f97d3 !important;
  }
  
  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }
  
  /* Dropdowns no mobile */
  .navmenu .dropdown ul {
    position: static;
    display: none;
    box-shadow: none;
    padding: 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 8px;
    transition: all 0.4s ease-in-out;
    max-height: 0;
    overflow: hidden;
  }

  .navmenu .dropdown.dropdown-active ul {
    display: block !important;
    max-height: 2000px !important;
    padding: 10px 0 !important;
    overflow-y: auto;
  }

  /* Estilo dos itens do dropdown */
  .navmenu .dropdown ul li {
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .navmenu .dropdown ul li a {
    padding: 12px 20px !important;
    font-size: 14px !important;
    color: var(--nav-dropdown-color) !important;
    display: block !important;
    border: none !important;
    background: transparent !important;
    border-radius: 0 !important;
  }

  .navmenu .dropdown ul li a:hover {
    background: rgba(46, 123, 191, 0.1) !important;
    color: var(--nav-dropdown-hover-color) !important;
  }

  /* Ícone de rotação quando dropdown está ativo */
  .navmenu .dropdown.dropdown-active > a i.toggle-dropdown {
    transform: rotate(180deg);
    background-color: var(--accent-color) !important;
    color: white !important;
  }
  
  /* Itens do menu mobile */
  .navmenu ul li {
    width: 100%;
    margin-bottom: 8px;
  }
  
  .navmenu ul li a {
    display: block;
    padding: 12px 15px;
    background: transparent;
    border-radius: 6px;
    color: #363f40;
    font-size: 15px;
    font-weight: 500;
    transition: background 0.3s ease;
  }
  
  .navmenu ul li a:hover {
    background: #f8f9fa;
  }
  
  /* Previne overflow quando menu está ativo */
  .mobile-nav-active {
    overflow: hidden;
  }
  
  .mobile-nav-active .navmenu {
    position: relative;
    overflow: hidden;
    inset: 0;
    background: transparent;
    transition: 0.3s;
    z-index: 9997;
  }
}



/*--------------------------------------------------------------
# CORREÇÃO APÓS SCROLL - OUVIDORIA
--------------------------------------------------------------*/
.header.header-scrolled,
.header.scrolled,
.header.fixed-top {
  background: #fff !important;
  z-index: 9999 !important;
  opacity: 1 !important;
  transition: all 0.3s ease;
}

.header.header-scrolled .container,
.header.scrolled .container {
  min-height: 70px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

/*--------------------------------------------------------------
# GARANTE VISIBILIDADE DA LOGO - OUVIDORIA
--------------------------------------------------------------*/
body:not(.index-page) .logo-normal {
  opacity: 1 !important;
  visibility: visible !important;
  display: inline-block !important;
  position: relative !important;
  z-index: 10000 !important;
}

body:not(.index-page) .logo-home {
  display: none !important;
}

/*--------------------------------------------------------------
# NAVMENU-WRAPPER (SEM FUNDO BRANCO NA OUVIDORIA)
--------------------------------------------------------------*/
body:not(.index-page) .navmenu-wrapper {
  background: transparent !important;
  padding: 0 !important;
}

/*--------------------------------------------------------------
# CORREÇÃO DEFINITIVA - LOGO FIXA NO MOBILE
--------------------------------------------------------------*/
@media (max-width: 1199px) {
  /* Força o tamanho fixo da logo em TODAS as situações */
  .header .logo img,
  .header.scrolled .logo img,
  header.scrolled .logo img,
  body.scrolled .header .logo img,
  body:not(.index-page) .logo img,
  body:not(.index-page) .logo-normal,
  body:not(.index-page).scrolled .logo img,
  .logo-home,
  .logo-normal {
    height: 70px !important;
    max-height: 70px !important;
    min-height: 70px !important;
    width: auto !important;
    margin: 0 !important;
    margin-top: 0 !important;
    margin-left: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
    transform: none !important;
    scale: 1 !important;
    transition: none !important;
    animation: none !important;
  }

  /* Posiciona a logo no CANTO ESQUERDO */
  .header .logo,
  .header.scrolled .logo,
  body:not(.index-page) .logo {
    transform: none !important;
    transition: none !important;
    animation: none !important;
    margin: 0 !important;
    margin-right: auto !important;
    padding: 0 !important;
    justify-content: flex-start !important;
    text-align: left !important;
  }

  /* Container do header alinha itens nas pontas */
  .header .container,
  .header.scrolled .container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0 15px !important;
  }

  /* Fixa a altura do header */
  .header,
  .header.scrolled,
  header,
  header.scrolled {
    min-height: 70px !important;
    max-height: 70px !important;
    height: 70px !important;
    padding: 0 !important;
  }

  .header .container,
  .header.scrolled .container {
    min-height: 70px !important;
    max-height: 70px !important;
    height: 70px !important;
  }

  /* Remove qualquer centralização forçada */
  body:not(.index-page) .logo {
    justify-content: flex-start !important;
    width: auto !important;
    margin-left: 0 !important;
  }
}



/*--------------------------------------------------------------
# FIXA O HEADER NO MOBILE - REDUZIDO
--------------------------------------------------------------*/
@media (max-width: 1199px) {
  /* FIXA A ALTURA DO HEADER EM 65PX */
  .header {
    min-height: 65px !important;
    max-height: 65px !important;
    height: 65px !important;
    padding: 0 !important;
  }

  .header .container {
    min-height: 65px !important;
    max-height: 65px !important;
    height: 65px !important;
    padding: 0 15px !important;
    display: flex;
    align-items: center;
    position: relative !important;
  }

  /* QUANDO O MENU MOBILE ESTÁ ATIVO */
  body.mobile-nav-active .header {
    min-height: 65px !important;
    max-height: 65px !important;
    height: 65px !important;
    overflow: visible !important;
  }

  body.mobile-nav-active .header .container {
    min-height: 65px !important;
    max-height: 65px !important;
    height: 65px !important;
  }

  /* GARANTE QUE O MENU NÃO EMPURRA O HEADER */
  body.mobile-nav-active .navmenu {
    position: absolute !important;
    top: 0 !important;
    height: 0 !important;
  }
}



/* ========== HEADER MOBILE - ABOUT PAGE ========== */
@media (max-width: 1199px) {
  /* Altura e estrutura do header */
  .header {
    min-height: 80px !important;
    height: 80px !important;
    padding: 0 !important;
  }


  
    /* Esconde o botão "Agendar Consulta" no mobile/tablet */
  .header .btn-getstarted {
    display: none !important;
  }
  
  .header .container {
    min-height: 80px !important;
    height: 80px !important;
    padding: 0 15px !important;
    display: flex;
    align-items: center;
    position: relative !important;
  }
  
  /* Quando o menu mobile está ativo */
  body.mobile-nav-active .header,
  body.mobile-nav-active .header .container {
    min-height: 80px !important;
    height: 80px !important;
  }

  
  
  /* Logo no mobile - ABOUT */
  body:not(.index-page) .logo-normal {
    height: 50px !important;
    max-height: 50px !important;
    margin-top: 0 !important;
    margin-left: 0 !important;
  }
  
  /* Esconde logo-home na about */
  body:not(.index-page) .logo-home {
    display: none !important;
  }
  
  /* Ícone do menu mobile (hambúrguer) */
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 24px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 9999;
    position: absolute;
    right: 15px;
    top: 25px;
    margin: 0;
  }
  
  /* X preto no menu mobile quando ativo */
  .mobile-nav-active .mobile-nav-toggle {
    color: #000000 !important;
    position: fixed;
    top: 20px;
    right: 20px;
    font-size: 32px;
    z-index: 9999;
  }
  
  /* Container do menu */
  .navmenu {
    padding: 0;
    z-index: 9997;
  }
  
  /* Menu escondido por padrão */
  .navmenu ul {
    display: none !important;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
  
/* Bloco branco do menu mobile quando ativo */
body.mobile-nav-active .navmenu ul {
  display: block !important;
  position: fixed;
  top: 60px !important;
  right: 20px;
  left: auto;
  background: #fff;
  width: 260px;
  padding: 5px 10px !important;
  border-radius: 12px;
  min-height: 180px !important; /* aumentei um pouco a base mínima */
  max-height: 440px !important; /* antes estava 380px */
  overflow-y: auto !important;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
}

  
  /* Estilo dos links do menu */
  .navmenu a {
    font-size: 17px;
    font-weight: 500;
  }
  
  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    border: 2px solid transparent;
    border-radius: 20px;
  }
  
  /* Ícone do dropdown */
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }
  
  .navmenu .dropdown > a i.toggle-dropdown {
    display: inline-flex !important;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 50%;
  }
  
  /* Hover dos links */
  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }
  
  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #3f97d3 !important;
  }
  
  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }
  
  /* Dropdowns no mobile */
  /* Dropdowns no mobile */
.navmenu .dropdown ul {
  position: static;
  display: none;
  box-shadow: none;
  padding: 0;
  margin: 10px 20px;
  background-color: var(--nav-dropdown-background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 8px;
  transition: all 0.4s ease-in-out;
  max-height: 0;
  overflow: hidden;
}

.navmenu .dropdown.dropdown-active ul {
  display: block !important;
  max-height: 2000px !important;
  padding: 10px 0 !important;
  overflow-y: auto;
}

/* Estilo dos itens do dropdown */
.navmenu .dropdown ul li {
  width: 100%;
  padding: 0;
  margin: 0;
}

.navmenu .dropdown ul li a {
  padding: 12px 20px !important;
  font-size: 14px !important;
  color: var(--nav-dropdown-color) !important;
  display: block !important;
  border: none !important;
  background: transparent !important;
  border-radius: 0 !important;
}

.navmenu .dropdown ul li a:hover {
  background: rgba(46, 123, 191, 0.1) !important;
  color: var(--nav-dropdown-hover-color) !important;
}

/* Ícone de rotação quando dropdown está ativo */
.navmenu .dropdown.dropdown-active > a i.toggle-dropdown {
  transform: rotate(180deg);
  background-color: var(--accent-color) !important;
  color: white !important;
}
  
  .navmenu .dropdown.active ul {
    display: block !important;
    max-height: 1000px;
    background-color: rgba(33, 37, 41, 0.03);
  }
  
  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }
  
  .navmenu .dropdown > a {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
  }
  
  .navmenu .dropdown > a .toggle-dropdown {
    margin-left: auto;
  }
  
  /* Força dropdowns fechados no mobile */
  body.mobile-nav-active .navmenu .dropdown ul {
    display: none !important;
  }
  
  body.mobile-nav-active .navmenu .dropdown.active ul {
    display: block !important;
  }
  
  /* Itens do menu mobile */
  .navmenu ul li {
    width: 100%;
    margin-bottom: 8px;
  }
  
  .navmenu ul li a {
    display: block;
    padding: 12px 15px;
    background: transparent;
    border-radius: 6px;
    color: #363f40;
    font-size: 15px;
    font-weight: 500;
    transition: background 0.3s ease;
  }
  
  .navmenu ul li a:hover {
    background: #f8f9fa;
  }
  
  /* Previne overflow quando menu está ativo */
  .mobile-nav-active {
    overflow: hidden;
  }
  
  .mobile-nav-active .navmenu {
    position: relative;
    overflow: hidden;
    inset: 0;
    background: transparent;
    transition: 0.3s;
    z-index: 9997;
  }
}


/* ========== CORREÇÃO APÓS SCROLL - ABOUT ========== */
.header.header-scrolled,
.header.scrolled,
.header.fixed-top {
  background: #fff !important;
  z-index: 9999 !important;
  opacity: 1 !important;
  transition: all 0.3s ease;
}

.header.header-scrolled .container,
.header.scrolled .container {
  min-height: 70px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

/* ========== GARANTE VISIBILIDADE DA LOGO - ABOUT ========== */
body:not(.index-page) .logo-normal {
  opacity: 1 !important;
  visibility: visible !important;
  display: inline-block !important;
  position: relative !important;
  z-index: 10000 !important;
}

body:not(.index-page) .logo-home {
  display: none !important;
}

/* ========== NAVMENU-WRAPPER (SEM FUNDO BRANCO NA ABOUT) ========== */
body:not(.index-page) .navmenu-wrapper {
  background: transparent !important;
  padding: 0 !important;
}

/* ============================================
   CORREÇÃO DEFINITIVA - LOGO FIXA NO MOBILE
   ============================================ */

@media (max-width: 1199px) {
  /* Força o tamanho fixo da logo em TODAS as situações */
  .header .logo img,
  .header.scrolled .logo img,
  header.scrolled .logo img,
  body.scrolled .header .logo img,
  body:not(.index-page) .logo img,
  body:not(.index-page) .logo-normal,
  body:not(.index-page).scrolled .logo img,
  .logo-home,
  .logo-normal {
    height: 70px !important;
    max-height: 70px !important;
    min-height: 70px !important;
    width: auto !important;
    margin: 0 !important;
    margin-top: 0 !important;
    margin-left: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
    transform: none !important;
    scale: 1 !important;
    transition: none !important;
    animation: none !important;
  }

  /* Posiciona a logo no CANTO ESQUERDO */
  .header .logo,
  .header.scrolled .logo,
  body:not(.index-page) .logo {
    transform: none !important;
    transition: none !important;
    animation: none !important;
    margin: 0 !important;
    margin-right: auto !important;
    padding: 0 !important;
    justify-content: flex-start !important;
    text-align: left !important;
  }

  /* Container do header alinha itens nas pontas */
  .header .container,
  .header.scrolled .container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0 15px !important;
  }

  /* Fixa a altura do header */
  .header,
  .header.scrolled,
  header,
  header.scrolled {
    min-height: 70px !important;
    max-height: 70px !important;
    height: 70px !important;
    padding: 0 !important;
  }

  .header .container,
  .header.scrolled .container {
    min-height: 70px !important;
    max-height: 70px !important;
    height: 70px !important;
  }

  /* Remove qualquer centralização forçada */
  body:not(.index-page) .logo {
    justify-content: flex-start !important;
    width: auto !important;
    margin-left: 0 !important;
  }
}


/* ========== CORREÇÃO FINAL DROPDOWN MOBILE ========== */
@media (max-width: 1199px) {
  
  /* FORÇA TODOS os dropdowns a ficarem ESCONDIDOS por padrão */
  .navmenu .dropdown ul,
  body.mobile-nav-active .navmenu .dropdown ul {
    display: none !important;
    max-height: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    overflow: hidden !important;
  }
  
  /* SÓ mostra quando tiver a classe dropdown-active */
  .navmenu .dropdown.dropdown-active ul,
  body.mobile-nav-active .navmenu .dropdown.dropdown-active ul {
    display: block !important;
    max-height: 2000px !important;
    padding: 10px 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    overflow-y: auto !important;
  }
  
  /* Remove bordas e estilos desnecessários dos links principais */
  .navmenu .dropdown > a {
    border: none !important;
  }
  
  /* Estilo dos itens dropdown */
  .navmenu .dropdown ul li a {
    padding: 12px 20px !important;
    font-size: 14px !important;
    border: none !important;
    border-radius: 0 !important;
  }
  
  /* Ícone girado quando dropdown está ativo */
  .navmenu .dropdown.dropdown-active > a i.toggle-dropdown {
    transform: rotate(180deg) !important;
    background-color: var(--accent-color) !important;
    color: white !important;
  }
}



/* ======== CORREÇÃO FINAL - SUBMENU MOBILE ======== */
@media (max-width: 1199px) {

  /* Mantém o menu branco centralizado */
  body.mobile-nav-active .navmenu ul {
    display: block !important;
    position: fixed;
    top: 80px !important;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: #fff;
    width: 90%;
    max-width: 320px;
    padding: 15px 10px !important;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    overflow-y: auto;
    max-height: calc(100vh - 100px);
  }

  /* 🔹 Submenu escondido inicialmente */
  .navmenu .dropdown ul {
    display: none;
    background: #fff;
    margin-top: 5px;
    padding: 0;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    position: static !important; /* ← ESSENCIAL */
  }

  /* 🔹 Quando ativo, aparece logo abaixo */
  .navmenu .dropdown.dropdown-active > ul {
    display: block !important;
  }

  /* 🔹 Links do submenu */
  .navmenu .dropdown ul li a {
    display: block;
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul li a:hover {
    color: var(--accent-color);
  }

  /* 🔹 Ícone da seta gira */
  .navmenu .dropdown > a i {
    transition: transform 0.3s ease;
  }

  .navmenu .dropdown.dropdown-active > a i {
    transform: rotate(180deg);
    background: var(--accent-color);
    color: #fff;
  }
}

/* ========== FIXA O HEADER NO MOBILE - REDUZIDO ========== */
@media (max-width: 1199px) {
  /* FIXA A ALTURA DO HEADER EM 65PX */
  .header {
    min-height: 65px !important;
    max-height: 65px !important;
    height: 65px !important;
    padding: 0 !important;
  }

  .header .container {
    min-height: 65px !important;
    max-height: 65px !important;
    height: 65px !important;
    padding: 0 15px !important;
    display: flex;
    align-items: center;
    position: relative !important;
  }

  /* QUANDO O MENU MOBILE ESTÁ ATIVO */
  body.mobile-nav-active .header {
    min-height: 65px !important;
    max-height: 65px !important;
    height: 65px !important;
    overflow: visible !important;
  }

  body.mobile-nav-active .header .container {
    min-height: 65px !important;
    max-height: 65px !important;
    height: 65px !important;
  }

  /* GARANTE QUE O MENU NÃO EMPURRA O HEADER */
  body.mobile-nav-active .navmenu {
    position: absolute !important;
    top: 0 !important;
    height: 0 !important;
  }


}


























/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/

/* ==== CORREÇÃO FINAL LOGO DESKTOP - OUVIDORIA ==== */
@media (min-width: 992px) {
  body:not(.index-page) .header .logo img.logo-normal {
    display: block !important;
    opacity: 1 !important;
    transform: none !important;
    margin: 0 auto !important;
    height: 130px !important;
    max-height: 130px !important;
    position: relative !important;
    z-index: 9999 !important;
    visibility: visible !important;
  }

  body:not(.index-page) .header .logo img.logo-home {
    display: none !important;
  }


}




/* ==========================================================
   SOLUÇÃO DEFINITIVA — FORÇA O HEADER EXATAMENTE COMO O PRINT
   ========================================================== */

@media (max-width: 1199px) {

  /* ======= HEADER ALTURA ======= */
  .header {
    height: 70px !important;
    min-height: 70px !important;
    max-height: 70px !important;
    padding: 0 !important;
  }

  .header .container {
    height: 70px !important;
    min-height: 70px !important;
    max-height: 70px !important;
    padding: 0 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  /* ======= REMOVE TODAS LOGOS DUPLICADAS ======= */
  .logo-home,
  .logo-normal {
    display: none !important;
  }

  /* ======= DEIXA APENAS A LOGO PRINCIPAL ======= */
  .header .logo {
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: auto !important;
  }

  .header .logo img {
    display: block !important;
    height: 60px !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
    opacity: 1 !important;
  }

  /* ======= ÍCONE DO MENU — ALINHADO PERFEITO ======= */
  .mobile-nav-toggle {
    position: absolute !important;
    right: 15px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    font-size: 28px !important;
    margin: 0 !important;
    line-height: 0 !important;
    z-index: 9999 !important;
  }

  /* Quando menu está aberto – o X */
  body.mobile-nav-active .mobile-nav-toggle {
    top: 20px !important;
    right: 20px !important;
    transform: none !important;
    font-size: 32px !important;
  }
}


/* ==========================================================
   CORREÇÃO FINAL — GARANTE APENAS 1 LOGO NO MOBILE/TABLET
   ========================================================== */

@media (max-width: 1199px) {

  /* Remove todas logo-home, logo-normal e LOGOS extras */
  .logo-home,
  .logo-normal,
  .header .logo-home,
  .header .logo-normal,
  body:not(.index-page) .logo-home,
  body:not(.index-page) .logo-normal {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
  }

  /* Só mantém a primeira logo dentro do header */
  .header .logo img:first-child {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
}


/* Remove o sublinhado dos links no mobile/tablet */
@media (max-width: 1199px) {
  .navmenu a,
  .navmenu a:focus,
  .navmenu ul li a,
  .navmenu .dropdown ul li a {
    text-decoration: none !important;
  }
}

/* Garante que o X apareça quando o menu mobile está ativo */
@media (max-width: 1199px) {
  
  /* Mostra o ícone de menu hambúrguer */
  .mobile-nav-toggle {
    display: block !important;
    position: absolute !important;
    right: 15px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    font-size: 28px !important;
    color: #000 !important;
    z-index: 9999 !important;
    cursor: pointer !important;
  }
  
  /* Quando o menu está ativo, mostra o X */
  body.mobile-nav-active .mobile-nav-toggle {
    display: block !important;
    position: fixed !important;
    top: 20px !important;
    right: 20px !important;
    transform: none !important;
    font-size: 32px !important;
    color: #000000 !important;
    z-index: 99999 !important;
  }
  
  /* Garante que o ícone seja clicável */
  .mobile-nav-toggle i {
    pointer-events: none;
  }
}

/* Ajusta o espaçamento do cabeçalho da página */
.privacy-header {
  margin-top: 80px !important; /* Ajuste este valor conforme necessário */
  padding-top: 40px !important;
}

/* Ou ajuste direto no h1 */
.privacy-header h1 {
  margin-top: 60px !important; /* Ajuste este valor conforme necessário */
}