* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html, body {
       font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
      color: #575757;
      scroll-behavior: smooth;
      height: 100%;
    }

    h3{
      padding-bottom:20px;
    }

    section {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 60px 20px;
      position: relative;
      flex-direction: column;
    }

    .topo{
      /*box-shadow: 0px 0px 5px #454545;
      background-color: #FFF; */
      position: fixed;
      top: 0;
      width: 100%;
      left: 0;
      z-index: 100;
      height: 110px;
    }

    /* MENU FIXO - BOTÃO SANDUÍCHE */
    .menu-toggle {
    position: fixed;
    top: 30px;
    right: 40px;
    z-index: 11000;
    background: #60acd6;
    color: white;
    border: none;
    padding: 3px 9px;
    font-size: 1.8rem;
    border-radius: 8px;
    cursor: pointer;
    user-select: none;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5); */
    transition: background 0.3s ease;
    }
    .menu-toggle:hover {
      background: rgba(0,0,0,0.3);
    }

    /* NAV OVERLAY (fundo escuro que cobre toda a tela quando menu aberto) */
    .nav-overlay {
      position: fixed;
      top: 0; left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(0,0,0,0.5);
      z-index: 10500;
      display: none;
    }

    /* PAINEL LATERAL */
    .nav-panel {
       font-family: "Raleway", sans-serif;
      font-optical-sizing: auto;
      text-transform: uppercase;
      font-optical-sizing: auto;
      position: fixed;
      top: 0; right: 0;
      width: 280px;
      height: 100vh;
      background: #2e1935;
      padding: 60px 30px 30px 30px;
      box-sizing: border-box;
      color: white;
      overflow-y: auto;
      box-shadow: -2px 0 12px rgba(0,0,0,0.7);
      transform: translateX(100%);
      transition: transform 0.3s ease;
      z-index: 11000;
      display: flex;
      flex-direction: column;
      gap: 30px;
    }

    /* Quando o painel está aberto */
    .nav-overlay.show {
      display: block;
    }
    .nav-panel.show {
      transform: translateX(0);
    }

    /* Lista vertical */
    .nav-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 25px;
      margin-top: 0;
      padding-left: 0;
    }

    /* Links do menu */
    .nav-links li a {
      color: white;
      font-size: 1.25rem;
      text-decoration: none;
      padding: 8px 12px;
      border-radius: 6px;
      transition: background-color 0.3s ease, color 0.3s ease;
    }
    .nav-links li a:hover {
      background-color: #60acd6;
      color: #ffffff;
    }

    /* Botão fechar no topo do painel */
    .nav-close-btn {
      position: absolute;
      top: 15px;
      left: 15px;
      font-size: 1.8rem;
      background: none;
      border: none;
      color: white;
      cursor: pointer;
      user-select: none;
      padding: 4px 10px;
      border-radius: 4px;
      transition: background-color 0.2s ease;
    }
    .nav-close-btn:hover {
      background-color: rgba(255, 255, 255, 0.2);
    }

    /* HERO COM VÍDEO */
    .hero {
      position: relative;
      overflow: hidden;
      color: white;
      text-align: center;
      width: 100%;
    }

    .hero video, .hero img{
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
        filter: brightness(65%);
    }

    .hero-text {
      position: relative;
       font-family: "Raleway", sans-serif;
      font-weight: 200;
    font-optical-sizing: auto;
      font-optical-sizing: auto;
      z-index: 1;
      font-size: 3.8rem;
      padding: 20px;
      text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    }

    h2{
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    color: #60acd6;
    font-weight: 300;
    font-size: 2rem;
      margin-bottom: 20px;
      text-align: center;
    }

    ul{
        list-style: none; padding-left: 0; line-height: 1.4em;
    }
    #especialidades, #locais{
        background: linear-gradient(45deg, #d7d7d7, #ffffff00);
    }
    #conhecimento{
            background: linear-gradient(90deg, #d7d7d7, #ffffff00);
    }
    .agendamento-flutuante {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 40px;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  padding: 1rem;
  z-index: 1000;
  width: 250px;
   font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
}

/* botão de fechar no mobile */
.btn-fechar {
  display: block;
  position: absolute;
  top: 8px;
  right: 12px;
  background: transparent;
  border: none;
  color: #999;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
}

.agendamento-conteudo {
  text-align: center;
}

.agendamento-conteudo .titulo {
  font-weight: bold;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.botao {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  margin: 0.4rem auto;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  font-weight: bold;
  font-size: 0.95rem;
  transition: background 0.3s ease;
  width: 80%;
  gap: 0.5rem;
}

.botao i {
  font-size: 1rem;
}

.botao-telefone {
  background-color: #2d89ef;
  color: white;
}

.botao-telefone:hover {
  background-color: #1c6ed2;
}

.botao-whatsapp {
  background-color: #25D366;
  color: white;
}

.botao-whatsapp:hover {
  background-color: #1ebe5d;
}

/* Ícone reduzido flutuante (oculto inicialmente) */
.icone-flutuante {
  display: block;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  text-align: center;
  line-height: 52px;
  font-size: 22px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  cursor: pointer;
}


.locais-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

/* Cada bloco */
.localatendimento.div46 {
  position: relative;
  flex: 1 1 calc(50% - 10px);
  max-width: calc(50% - 10px);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Imagem */
.fotolocal img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

/* Descrição sobre a imagem */
.desclocal {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  backdrop-filter: blur(4px);
}

.form-cirurgia-container {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  padding: 30px 20px;
  max-width: 800px;
  margin: 40px auto;
   font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
}

.form-cirurgia-titulo {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 20px;
}

.form-cirurgia-titulo span {
  display: block;
  font-weight: 600;
  margin: 10px 0;
}

.form-cirurgia-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-cirurgia-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.form-cirurgia-campo {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
}

.form-cirurgia-campo.full {
  flex: 1 1 100%;
}

.form-cirurgia-campo label {
  font-weight: 500;
  margin-bottom: 6px;
}

.form-cirurgia-input,
.form-cirurgia-textarea {
  padding: 12px;
  border: 2px solid #60acd6;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  transition: border 0.3s ease;
  background: #fff;
  resize: none;
}

.form-cirurgia-input:focus,
.form-cirurgia-textarea:focus {
  border-color: #2a9773;
  box-shadow: 0 0 0 2px rgba(56, 180, 139, 0.2);
}

.form-cirurgia-botao-wrap {
  text-align: center;
}

.form-cirurgia-botao {
  background-color: #a567b7;
  color: #FFF;
  font-style: italic;
  font-weight: 500;
  border: none;
  border-radius: 8px;
  padding: 12px 32px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.form-cirurgia-botao:hover {
  background-color: #60acd6;
}

    /* ESPECIALIDADES */
    .especialidades {
      background: #f7f7f7;
      text-align: center;
      width: 100%;
    }

    .especialidades p {
      font-size: 1.1rem;
      max-width: 600px;
      margin: 0 auto 40px;
      color: #444;
    }

    .especialidades-lista {
      max-width: 900px;
      margin: 0 auto;
      padding: 0;
      list-style: none;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px 40px;
      font-size: 1rem;
      color: #333;
      text-align: left;
    }

    .especialidades-lista li {
      line-height: 1.5;
      padding-left: 5px;
    }

    /* DEPOIMENTOS */
    .depoimentos {
      background: #fff;
      text-align: center;
      position: relative;
      padding-bottom: 80px;
      width: 100%;
    }

    .depo-wrapper {
      position: relative;
      width: 100%;
      max-width: 900px;
      margin: 0 auto;
      overflow: hidden;
    }

    .depoimentos-container {
      display: flex;
      transition: transform 0.6s ease;
      will-change: transform;
    }

    .depoimento {
      flex: 0 0 50%; /* 2 depoimentos por vez */
      box-sizing: border-box;
      padding: 0 60px;
      opacity: 1;
      line-height: 1.5em;
    }

    .depoimento img {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 15px;
    }

    /* SETAS DE NAVEGAÇÃO */
    .depo-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      font-size: 2.5rem;
      color: rgba(136, 136, 136, 0.7);
      background: rgba(255, 255, 255, 0.8);
      border-radius: 50%;
      width: 45px;
      height: 45px;
      border: none;
      cursor: pointer;
      z-index: 10;
      transition: color 0.3s, background 0.3s;
      display: flex;
      align-items: center;
      justify-content: center;
      user-select: none;
    }

    .depo-nav:hover {
      color: #333;
      background: rgba(255, 255, 255, 1);
    }

    .depo-prev {
      left: 10px;
    }

    .depo-next {
      right: 10px;
    }

.qvideo {
  position: relative;
  width: 100%;
  height: 100vh; /* tela cheia */
  overflow: hidden;
}

.qvideo video {
  position: absolute;
  top: 50%; left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover; /* cobre toda a área, cortando sobras */
}

/* ====== Tema (base #60acd6) ====== */
.procedimentos-section {
  --proc-accent-500: #60acd6;   /* base */
  --proc-accent-600: #60acd6;   /* +escuro */
  --proc-accent-400: #60acd6;   /* +claro */
  --proc-accent-50:  #f6f1f8;   /* bem claro para fundos */
  --proc-text:       #1a1a1a;
  --proc-muted:      #666;
  --proc-bg:         #ffffff;
  --proc-glow:       #60acd6;
}

/* ====== Layout base ====== */
.procedimentos-section {
  background:
    radial-gradient(1200px 600px at 10% -10%, var(--proc-accent-50), transparent 65%),
    var(--proc-bg);
  padding: clamp(24px, 5vw, 56px) 16px;
}
.procedimentos-section .proc-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ====== Cabeçalho ====== */
.procedimentos-section .proc-header h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  color: var(--proc-text);
  margin-bottom: .5rem;
  letter-spacing: .2px;
  position: relative;
}
.procedimentos-section .proc-header h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--proc-accent-600), var(--proc-accent-400));
}
.procedimentos-section .proc-header p {
  color: var(--proc-muted);
  margin-bottom: clamp(16px, 2vw, 24px);
}

/* ====== Grid responsivo ====== */
.procedimentos-section .proc-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(12px, 2vw, 20px);
  padding: 0;
  margin: 0;
}
.procedimentos-section .proc-item { margin: 0; }

/* ====== Card ====== */
.procedimentos-section .proc-card {
  display: block;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(143,84,160,0.14);
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  text-decoration: none;
}
.procedimentos-section .proc-card:focus-visible {
  outline: 3px solid var(--proc-accent-500);
  outline-offset: 3px;
}

/* ====== Mídia (imagem + overlay) ====== */
.procedimentos-section .proc-media { margin: 0; position: relative; }
.procedimentos-section .proc-media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to top,
      rgba(18, 7, 22, .65) 0%,
      rgba(18, 7, 22, .15) 55%,
      rgba(18, 7, 22, 0) 75%);
  z-index: 1;
  transition: opacity .3s ease;
}
.procedimentos-section .proc-media img {
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: 4/3;           /* ajuste p/ 1/1 se quiser quadrado */
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .45s ease, opacity .3s ease;
}

/* ====== Título/CTA sobre a imagem ====== */
.procedimentos-section .proc-caption {
  position: absolute;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 2;
  color: #fff;
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 10px; flex-wrap: wrap;
}
.procedimentos-section .proc-title {
  font-weight: 800;
  width: 100%;
  letter-spacing: .2px;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  text-shadow: 0 2px 10px rgba(0,0,0,.45);
}
.procedimentos-section .proc-cta {
  font-size: .9rem;
  padding: .38rem .72rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(180deg, rgba(96, 172, 214, 0.9), rgba(84, 158, 201, 0.9));
  box-shadow:
    0 8px 22px var(--proc-glow),
    inset 0 0 0 1px rgba(255,255,255,.16);
  white-space: nowrap;
}

.texto_procedimento p.titulo {
  margin-top: 40px; /* Espaçamento superior */
  margin-bottom: 20px; /* Espaçamento inferior */
}

.texto_procedimento p.titulo h3 {
  margin: 0; /* Remove margem padrão do H3 dentro do P */
}

.proc-header{
  line-height: 1.6em;
}

.texto_procedimento {
  margin-top: 2rem;
  padding: 1.5rem 2rem;
  background: #fafafa;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  line-height: 1.6;
  color: #333;
}

.texto_procedimento ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.texto_procedimento ul li {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.texto_procedimento ul li::before {
  content: "•";
  color: #60acd6; /* cor base do seu tema */
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.texto_procedimento small {
  display: block;
  font-size: 0.85em;
  color: #555;
  margin-top: 0.2rem;
}

.texto_procedimento .nota {
  margin-top: 1rem;
  font-size: 0.9em;
  color: #666;
  font-style: italic;
}



/* reset útil */
* { box-sizing: border-box; }

.stats-section {
  text-align: center;
  padding: 60px 20px;
  font-family: "Montserrat", sans-serif;
  background: transparent;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* título */
.stats-title {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 600;
  margin-bottom: 36px;
  color: #222;
}
.stats-title span {
  display: block;
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 400;
  margin-top: 6px;
  color: #555;
}

/* GRID: forçando 3 colunas no desktop */
.stats-grid {
  display: grid;
  gap: 32px;
  /* forçar 3 colunas iguais no desktop */
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
}

/* cada card/item */
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 170px; /* equaliza a altura dos itens */
  padding: 8px 12px;
  text-align: center;
}

/* ícone redondo */
.icon-wrapper {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #17a54a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 36px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
  margin-bottom: 16px;
  transition: transform .22s ease, box-shadow .22s ease;
}
.icon-wrapper:hover { transform: translateY(-6px); box-shadow: 0 8px 20px rgba(0,0,0,0.18); }

.stat-text {
  font-size: clamp(14px, 1.2vw, 18px);
  color: #333;
  line-height: 1.4;
  margin: 0;
  max-width: 280px;
}

/* ===== Responsividade ===== */

/* Tablet — 2 colunas */
@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .icon-wrapper {
    width: 76px;
    height: 76px;
    font-size: 30px;
  }

  .stat-item { min-height: 150px; }
}

/* Mobile — 1 coluna */
@media (max-width: 600px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .icon-wrapper {
    width: 68px;
    height: 68px;
    font-size: 26px;
    margin-bottom: 12px;
  }

  .stats-section { padding: 40px 16px; }
  .stat-text { font-size: 15px; max-width: 100%; padding: 0 6px; }
  .stats-title { margin-bottom: 22px; }
}



/* ====== Interações (hover) ====== */
@media (hover: hover) and (pointer: fine) {
  .procedimentos-section .proc-card:hover {
    transform: translateY(-2px);
    border-color: rgba(143,84,160,0.28);
    box-shadow:
      0 14px 36px rgba(0,0,0,0.12),
      0 0 0 6px rgba(143,84,160,0.06);
  }
  .procedimentos-section .proc-card:hover .proc-media img {
    transform: scale(1.08);
  }
  .procedimentos-section .proc-card:hover .proc-media::after {
    opacity: .92;
  }
  .procedimentos-section .proc-card:hover .proc-cta {
    filter: brightness(1.05);
  }
}

/* ====== Ajustes finos (mobile) ====== */
@media (max-width: 420px) {
  .procedimentos-section .proc-caption {
    left: 10px; right: 10px; bottom: 10px;
  }
  .procedimentos-section .proc-title {
    font-size: 1rem;
  }
  .procedimentos-section .proc-cta {
    font-size: .85rem;
    padding: .34rem .62rem;
  }
}






    @media (max-width: 768px) {
      h2{
        font-size: 1.4em;
      }
            .btn-fechar {
    display: block;
  }
  .localatendimento.div46 {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .fotolocal img {
    height: 200px;
  }
  .form-cirurgia-grid {
    flex-direction: column;
  }

  .form-cirurgia-campo {
    flex: 1 1 100%;
  }

  .form-cirurgia-container {
    padding: 20px 15px;
  }

  .agendamento-flutuante {
    width: 90%;
    right: 5%;
    bottom: 15px;
  }
    .hero-text {
      font-size: 1.8rem;
    }
    .especialidades-lista {
      grid-template-columns: 1fr;
    }
      .depoimento {
        flex: 0 0 100%; /* 1 depoimento por vez no mobile */
      }
      .depo-nav {
        font-size: 1.8rem;
        width: 35px;
        height: 35px;
      }
      .depo-prev {
        left: 5px;
      }
      .depo-next {
        right: 5px;
      }
      section{
        min-height: auto;
      }
    }

    .video-radio {
  margin-top: 50px;
  text-align: center;
}

.video-radio h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #333;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  background: #000;
  
  /* Mantém 4:3 responsivo */
  aspect-ratio: 4 / 3;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}


    /* RODAPÉ */
    footer {
      background-color: #60acd6;;
      color: #fff;
      padding: 40px 20px;
      text-align: center;
      width: 100%;
    }

    /* PARALLAX */
    .parallax {
      opacity: 0;
      transform: translateY(150px);
      transition: all 0.8s ease-out;
    }

    .parallax.visible {
      opacity: 1;
      transform: translateY(0);
    }
#conhecimento .depoimento {
    flex: 0 0 100%; /* Mostra 1 vídeo por vez */
  }
  #conhecimento{
    background: #f7f7f7;
  }
  .logo{
    position: absolute;
    top:0px;
    left: 60px;
    width: 160px;
    z-index: 110;
  }
  #imglogo, .linklogo{
    position: absolute;
    top: 20px;
    left: 20px;
    width: 160px;
    left: 50%;
    margin-left: -100px;
    height: auto;
    z-index: 30;
    filter: brightness(100%);
  }

  .lista-com-bolinha {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.lista-com-bolinha li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.8em;
  line-height: 1.5;
}

.lista-com-bolinha li::before {
  content: "";
    position: absolute;
    left: 0;
    top: 0.35em;
    width: 0.6em;
    height: 0.6em;
    background-color: #a5a5a5;
    border-radius: 50%;
}

li {
  opacity: 0;
  transform: translateX(30px);
  transition: transform 0.4s ease, opacity 0.4s ease;
}
li.visivel {
  opacity: 1;
  transform: translateX(0);
}

#hero {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .hero-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .hero-images img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }

  .hero-images img.fade {
    opacity: 1;
  }

/* Animação */
@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}