  :root {
      --cream:    #f5f0eb;
      --sand:     #e8ddd0;
      --taupe:    #c4b09a;
      --brown:    #8b6f5e;
      --dark:     #2a2320;
      --charcoal: #3d3530;
      --gold:     #7E90B3;
      --gold-lt:  #e2c99a;
      --white:    #ffffff;
     
      --font-sans:  'Outfit', sans-serif;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-sans);
      background: var(--white);
      color: var(--charcoal);
      overflow-x: hidden;
    }

    body {
    margin: 0px;
   
    padding: 0px !important;
}

    /* ─── TYPOGRAPHY ─── */
    h1,h2,h3,h4,h5 { font-family: var(--font-serif); font-weight: 400; }
    h1 { font-size: clamp(2.6rem, 5vw, 4.2rem); line-height: 1.1; }
    h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
    h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }

.new-width{
  max-width: 50%
}

.offcanvas {
    bottom: -50px;
}

.vagas-status{
  display:flex;
  gap:16px;
  margin-top:22px;
  flex-wrap:wrap;
}

.vagas-btn{
  padding:12px 24px;
  font-size:.95rem;
  font-weight:600;
  letter-spacing:.4px;
  border-radius:6px;
  border:1px solid transparent;
  cursor:pointer;
  transition:all .25s ease;
}

/* botão sem vagas */
.vagas-fechado{
  background:#f1f1f1;
  color:#666;
  border-color:#ddd;
}

/* botão com vagas */
.vagas-aberto{
  background:#6b7f95;
  color:#fff;
  border-color:#6b7f95;
}

.vagas-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 6px 14px rgba(0,0,0,.12);
}
    .label-tag {
      font-family: var(--font-sans);
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--gold);
    }

    /* ─── BUTTONS ─── */
    .btn-braga {
      font-family: var(--font-sans);
      font-size: .8rem;
      font-weight: 600;
      letter-spacing: 0px;
      text-transform: uppercase;
      padding: .85rem 2rem;
      border-radius: 0;
      border: 1.5px solid var(--gold);
      color: var(--gold);
      background: transparent;
      transition: all .35s ease;
       border-radius: 100px;
    }
  .btn-braga:hover, .btn-braga:focus {
    background: #69788F;
    color: var(--dark);
    box-shadow: none;

}
    .btn-braga-fill {
      background: var(--gold);
      color: var(--dark);
      border-color: var(--gold);
    }
    .btn-braga-fill:hover {
      background: transparent;
      color: var(--gold);
    }
    .btn-braga-dark {
      border-color: var(--dark);
      color: var(--dark);
    }
    .btn-braga-dark:hover {
      background: var(--dark);
      color: var(--white);
    }

    /* ─── TOGGLE CUSTOMIZADO ─── */
    .nav-toggle-btn {
      background: none;
      border: none;
      padding: .4rem .2rem;
      cursor: pointer;
      flex-shrink: 0;
      opacity: .9;
      transition: opacity .2s;
    }
    .nav-toggle-btn:hover { opacity: 1; }
    .nav-toggle-btn svg path { transition: fill .2s; }

    /* ─── BOTÃO AGENDAR PILL ─── */
    .btn-nav-agendar {
      font-family: var(--font-sans);
      font-size: .78rem;
      font-weight: 500;
      letter-spacing: .04em;
      color: var(--white);
      text-decoration: none;
      border: 1.5px solid rgba(255,255,255,.55);
      border-radius: 999px;
      padding: .55rem 1.4rem;
      white-space: nowrap;
      transition: all .3s ease;
      flex-shrink: 0;
    }
    .btn-nav-agendar i { font-size: 1rem; }
    .btn-nav-agendar:hover {
      background: rgba(255,255,255,.12);
      border-color: rgba(255,255,255,.85);
      color: var(--white);
    }
    @media (max-width: 480px) {
      .btn-nav-agendar span { display: none; }
      .btn-nav-agendar { padding: .55rem .9rem; font-size: 0; gap: 0; }
      .btn-nav-agendar i { font-size: 1.1rem; }
    }

    /* ─── NAVBAR ─── */
    #mainNav {
      background: #5b6a7a;
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      padding: .9rem 0;
      transition: all .4s ease;
      z-index: 9999;
      border-bottom: 1px dashed #6b7d91;
      position: relative;
    }


    #mainNav.scrolled {
      padding: .55rem 0;
      background: #5b6a7a;
      box-shadow: 0 4px 30px rgba(0,0,0,.25);
    }
    .navbar-brand {
      font-family: var(--font-serif);
      font-size: 1.6rem;
      font-weight: 500;
      color: var(--cream) !important;
      letter-spacing: .06em;
    }
    .navbar-brand span { color: var(--gold); }
    .nav-link {
      font-family: var(--font-sans);
      font-size: .75rem;
      font-weight: 500;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(245,240,235,.75) !important;
      padding: .4rem .9rem !important;
      transition: color .25s;
    }
    .nav-link:hover, .nav-link.active { color: var(--gold) !important; }
    .nav-link.btn-nav {
      border: 1px solid var(--gold);
      color: var(--gold) !important;
      padding: .4rem 1.2rem !important;
      border-radius: 0;
      margin-left: .5rem;
    }
    .nav-link.btn-nav:hover {
      background: var(--gold);
      color: var(--dark) !important;
    }
    .navbar-toggler {
      border: 1px solid rgba(201,169,110,.5);
      padding: .35rem .65rem;
    }
    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(201,169,110,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    /* Dropdown */
    .dropdown-menu {
      background: var(--dark);
      border: none;
      border-top: 2px solid var(--gold);
      border-radius: 0;
      padding: .5rem 0;
      min-width: 220px;
    }
    .dropdown-item {
      font-family: var(--font-sans);
      font-size: .78rem;
      letter-spacing: .06em;
      color: rgba(245,240,235,.75);
      padding: .5rem 1.4rem;
      transition: all .2s;
    }
    .dropdown-item:hover {
      background: rgba(201,169,110,.15);
      color: var(--gold);
    }



/* NOVO — só entra quando tiver a classe hero-imagem */
#hero.hero-imagem {
  background: none;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(30,45,60,0.72) 0%, rgba(30,45,60,0.35) 55%, transparent 100%);
}

/* RESPONSIVO — só afeta o novo */
@media (max-width: 768px) {
  #hero.hero-imagem {
    min-height: 60vh;
    background-position: center center;
  }

  .hero-overlay {
    background: linear-gradient(to bottom, rgba(30,45,60,0.75) 100%, rgba(30,45,60,0.45) 60%, transparent 100%);
  }
}

    #contato-form {
  padding: 5rem 0;
}

/* ── Cabeçalho ── */
.contato-header {
    text-align: left;
    margin-bottom: 3.5rem;
    margin-top: 30px;
}

.contato-titulo {
  font-family: var(--font-sans);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: .5rem;
}

.contato-sub {
  font-family: var(--font-sans);
  font-size: .97rem;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
}

/* ── Layout 2 colunas ── */
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

/* ── Lista de informações ── */
.contato-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.contato-info-list li {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
}

.contato-info-list li i {
  font-size: 1.05rem;
  color: var(--gold);
  margin-top: .15rem;
  flex-shrink: 0;
}

.contato-info-list li div {
  display: flex;
  flex-direction: column;
  gap: .18rem;
}

.contato-info-list li strong {
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
}

.contato-info-list li span,
.contato-info-list li a {
  font-family: var(--font-sans);
  font-size: .92rem;
  color: rgba(255,255,255,.82);
  text-decoration: none;
  line-height: 1.55;
  transition: color .2s;
}

.contato-info-list li a:hover {
  color: var(--white);
}

/* ── Mapa ── */
.contato-mapa {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
}

/* ── Responsivo ── */
@media (max-width: 900px) {
  .contato-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

    /* ── Seção Cursos — herda estrutura do #contato-form ── */
#cursos {
  position: relative;
  overflow: hidden;
  padding: 0;
}

/* Subtítulo abaixo do h2 */
.cursos-subtitulo {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: rgba(255,255,255,.8);
  line-height: 1.5;
  margin-bottom: 2rem;
}

.cursos-lista-titulo {
  font-family: var(--font-sans);
  font-size: .88rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}

/* Aviso direito com bordas de canto estilizadas */
.cursos-aviso {
  position: relative;
  padding: 1.4rem 1.6rem;
  max-width: 240px;
}

/* Cantos decorativos */
.cursos-aviso::before,
.cursos-aviso::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: rgba(255,255,255,.5);
  border-style: solid;
}
.cursos-aviso::before {
  top: 0; left: 0;
  border-width: 1.5px 0 0 1.5px;
}
.cursos-aviso::after {
  bottom: 0; right: 0;
  border-width: 0 1.5px 1.5px 0;
}

.cursos-aviso p {
  font-family: var(--font-sans);
  font-size: .82rem;
  color: rgba(255,255,255,.75);
  line-height: 1.65;
  text-align: left;
  margin: 0;
}

  .contato-left1 h2 {
    font-family: var(--font-sans);
    font-size: clamp(1.9rem, 3vw, 2.4rem);
    font-weight: 800;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.8rem;
}

.cursos-right p {
    font-family: var(--font-serif);
    font-size: clamp(0.5rem, 1.5vw, 1.2rem);
    color: var(--white);
    line-height: 1.45;
    text-align: left;
    margin: 0;
}

.cursos-right {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: flex-end;
    }

       .cursos-bg {
      position: absolute;
      inset: 0;
      background-image: url('../img/contato.jpg');
      background-size: cover;
      background-position: center;
    }
    .cursos-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(80,100,125,.4);
    }
    .cursos-inner {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: stretch;
      min-height: 620px;
      padding: 80px 7vw;
      gap: 8vw;
    }

    /* ── Seção blog ── */
#blog {
  padding: 1rem 0;
  background: var(--cream);
  
}

/* ── Cabeçalho ── */
.blog-header {
  margin-bottom: 3rem;
  margin-top:20px;
}

.blog-sup {
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--brown);
  margin-bottom: .5rem;
}

.blog-titulo {
  font-family: var(--font-sans);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: .6rem;
  line-height: 1.3;
}

.blog-desc {
  font-family: var(--font-sans);
  font-size: .92rem;
  color: var(--charcoal);
  opacity: .65;
  line-height: 1.6;
  max-width: 680px;
}

/* ── Grade ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 1.5rem;
  margin-bottom: 3rem;
}

/* ── Card ── */
.blog-card {
  display: flex;
  flex-direction: column;
}

.blog-card-img-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4/3;
  margin-bottom: 1rem;
}

.blog-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.blog-card-img-wrap:hover img {
  transform: scale(1.04);
}

.blog-tag {
  position: absolute;
  top: .7rem;
  left: .7rem;
  background: rgba(42,35,32,.62);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .05em;
  padding: .25rem .65rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.blog-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-titulo {
  font-family: var(--font-sans);
  font-size: .92rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.5;
  margin-bottom: .8rem;
}

.blog-card-titulo a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}

.blog-card-titulo a:hover {
  color: var(--gold);
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: auto;
}

.blog-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.blog-autor {
  font-family: var(--font-sans);
  font-size: .75rem;
  color: var(--charcoal);
  font-weight: 500;
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-data {
  font-family: var(--font-sans);
  font-size: .75rem;
  color: var(--charcoal);
  opacity: .5;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Paginação ── */
.blog-paginacao {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
}

.blog-page-num,
.blog-page-btn {
  font-family: var(--font-sans);
  font-size: .85rem;
  color: var(--charcoal);
  text-decoration: none;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: background .2s, color .2s;
}

.blog-page-num:hover,
.blog-page-btn:hover {
  background: var(--sand);
}

.blog-page-num.active {
  background: var(--charcoal);
  color: var(--white);
}

.blog-page-reticencias {
  font-family: var(--font-sans);
  font-size: .85rem;
  color: var(--charcoal);
  opacity: .45;
  padding: 0 .2rem;
}

/* ── Responsivo ── */
@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Página do post ── */
#blog-post {
  padding: 4rem 0 6rem;
  background: var(--cream);
}

/* ── Cabeçalho ── */
.post-sup {
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--brown);
  margin-bottom: .6rem;
}

.post-titulo {
  font-family: var(--font-sans);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.25;
  margin-bottom: 1.2rem;
  max-width: 780px;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: 2rem;
}

/* ── Imagem de capa ── */
.post-capa {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 3rem;
  max-height: 520px;
}

.post-capa img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Corpo do artigo ── */
.post-body {
  max-width: 720px;
  margin: 0 auto;
}

.post-body p {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.8;
  margin-bottom: 1.4rem;
}

.post-body h2 {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 2.5rem 0 .8rem;
}

.post-body ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}

.post-body ul li {
  font-family: var(--font-sans);
  font-size: .96rem;
  color: var(--charcoal);
  line-height: 1.6;
  padding-left: 1.2rem;
  position: relative;
}

.post-body ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}

/* ── Steps numerados ── */
.post-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
  padding: 1.5rem;
  background: rgba(126,144,179,.08);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
}

.post-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.post-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: .1rem;
}

.post-step strong {
  font-family: var(--font-sans);
  font-size: .92rem;
  color: var(--charcoal);
  display: block;
  margin-bottom: .2rem;
}

.post-step p {
  margin: 0 !important;
  font-size: .88rem !important;
  opacity: .75;
}

/* ── Timeline de recuperação ── */
.post-timeline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}

.post-timeline-item {
  background: rgba(126,144,179,.08);
  border: 1px solid rgba(126,144,179,.25);
  border-radius: 8px;
  padding: 1rem 1.2rem;
}

.post-tl-periodo {
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--gold);
  display: block;
  margin-bottom: .4rem;
}

.post-timeline-item p {
  font-size: .88rem !important;
  margin: 0 !important;
  opacity: .8;
}

/* ── Blockquote ── */
.post-blockquote {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.7;
  border-left: 3px solid var(--gold);
  padding: .8rem 1.5rem;
  margin: 2rem 0;
  background: rgba(126,144,179,.07);
  border-radius: 0 8px 8px 0;
}

/* ── CTA final ── */
.post-cta {
  max-width: 720px;
  margin: 3rem auto 0;
  text-align: center;
}

/* ── Responsivo ── */
@media (max-width: 600px) {
  .post-timeline {
    grid-template-columns: 1fr;
  }
  .post-capa {
    border-radius: 8px;
  }
}

/* ── Seção ── */
#selecao {
  padding: 5rem 0;
  background: var(--cream);
}

.selecao-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0 3rem;
  align-items: start;
}

/* Reaproveitando .oport-divisor — cor escura para fundo claro */
#selecao .oport-divisor {
  background: rgba(61,53,48,.12);
}

/* ── Coluna ── */
.selecao-titulo {
  font-family: var(--font-sans);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: .8rem;
}

.selecao-desc {
  font-family: var(--font-sans);
  font-size: .95rem;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 1.8rem;
  opacity: .8;
}

/* Cards no fundo claro */
#selecao .online-card-item {
  border-color: var(--charcoal);
  color: var(--charcoal);
  font-size: .82rem;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.selecao-cards {
  margin-bottom: 1.5rem;
}

.selecao-aviso {
  font-family: var(--font-sans);
  font-size: .82rem;
  color: var(--charcoal);
  opacity: .55;
  line-height: 1.65;
}

/* ── Links grid ── */
.selecao-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
  margin-top: .5rem;
}

/* ── Botões de candidatura ── */
.selecao-btns {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.selecao-btn {
  font-family: var(--font-sans);
  font-size: .88rem;
  font-weight: 700;
  color: var(--charcoal);
  text-decoration: none;
  padding: .55rem 0;
  border-bottom: 1px solid rgba(61,53,48,.15);
  transition: color .2s, border-color .2s;
  display: block;
}

.selecao-btn:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ── Responsivo ── */
@media (max-width: 900px) {
  .selecao-grid {
    grid-template-columns: 1fr;
    gap: 3rem 0;
  }
  #selecao .oport-divisor {
    display: none;
  }
  .selecao-links-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Seção ── */
#oportunidades {
  padding: 5rem 0;
  background-color: #6b7f95;
}

.oport-titulo {
  font-family: var(--font-sans);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 3rem;
}

/* ── Layout 2 grupos + divisor ── */
.oport-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0 2.5rem;
  align-items: start;
}

.oport-divisor {
  background: rgba(255,255,255,.18);
  align-self: stretch;
}

/* ── Grupo ── */
.oport-label {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255,255,255,.55);
    margin-bottom: 1.2rem;
    color: #fff;
}

/* ── Seção ── */
#candidatura {
  padding: 5rem 0;
  background-color: #6b7f95;
}

/* ── Layout 2 colunas ── */
.cand-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

/* ── Lado processo ── */
.cand-steps-cards {
  flex-direction: column !important;
  margin-bottom: 1.5rem;
}

.cand-step-card {
  flex: none !important;
  min-width: unset !important;
  width: 100% !important;
  flex-direction: row !important;
  justify-content: flex-start !important;
  gap: 1rem;
  text-align: left !important;
}

.cand-step-num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.35);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: .75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    float: left;
    margin-right: 10px;
}

.cand-aviso {
  font-family: var(--font-sans);
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: .4rem;
}

.cand-aviso i {
  margin-top: .1rem;
  flex-shrink: 0;
}

/* ── Formulário ── */
.cand-form-titulo {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.cand-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cand-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.cand-field {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.cand-field label {
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  letter-spacing: .04em;
}

.cand-optional {
  font-weight: 400;
  opacity: .6;
}

.cand-field input,
.cand-field textarea {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  padding: .65rem .9rem;
  font-family: var(--font-sans);
  font-size: .88rem;
  color: var(--white);
  outline: none;
  transition: border-color .2s, background .2s;
  resize: none;
}

.cand-field input::placeholder,
.cand-field textarea::placeholder {
  color: rgba(255,255,255,.3);
}

.cand-field input:focus,
.cand-field textarea:focus {
  border-color: rgba(255,255,255,.45);
  background: rgba(255,255,255,.1);
}

/* Upload de arquivo */
.cand-file-label {
  background: rgba(255,255,255,.07);
  border: 1px dashed rgba(255,255,255,.25);
  border-radius: 8px;
  padding: .65rem .9rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  font-family: var(--font-sans);
  font-size: .88rem;
  color: rgba(255,255,255,.5);
}

.cand-file-label:hover {
  border-color: rgba(255,255,255,.45);
  background: rgba(255,255,255,.1);
  color: var(--white);
}

.cand-file-label input[type="file"] {
  display: none;
}

/* Microcopy */
.cand-microcopy {
  font-family: var(--font-sans);
  font-size: .75rem;
  color: rgba(255,255,255,.38);
  line-height: 1.55;
  display: flex;
  align-items: flex-start;
  gap: .4rem;
}

.cand-microcopy i {
  margin-top: .1rem;
  flex-shrink: 0;
}

.cand-btn-wrap {
  margin-top: .5rem;
}

/* ── Responsivo ── */
@media (max-width: 900px) {
  .cand-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .cand-field-row {
    grid-template-columns: 1fr;
  }
}

/* Altura mínima nos cards para ficarem uniformes */
#oportunidades .online-card-item {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── CTA ── */
.oport-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ── Responsivo ── */
@media (max-width: 768px) {

  .cursos-bg::after {
    
    background: rgba(80,100,125,.8);
}
  .oport-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem 0;
  }
  .oport-divisor {
    display: none;
  }
}

    /* ── Seção principal ── */
#clinica {
    background: #748398;
    padding-top: 0px;
    padding-bottom: 0px;
}

.sobre-desc {
    font-family: var(--font-sans);
    font-size: 2rem;
    color: rgba(255,255,255,.75);
    text-align: center;
    max-width: 680px;
    margin: auto;
    line-height: 1.1;
    font-weight: 300;
    padding-bottom: 10px;
}

.sobre-desc1 {
    font-family: var(--font-sans);
    font-size: 2rem;
    color: rgba(255,255,255,.75);
    text-align: center;
    max-width: 1200px;
    margin: auto;
    line-height: 1.1;
    font-weight: 300;
    padding-bottom: 20px;
    padding-top: 20px;
}

.sobre-desc2 {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    color: #fff;
    text-align: center;
    max-width: 1200px;
    margin: auto;
    line-height: 1.1;
    font-weight: 300;
    padding-bottom: 20px;
    padding-top: 20px;
}

.sobre-titulo {
    font-family: var(--font-sans);
    font-size: clamp(2.4rem, 3.6vw, 3.6rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.35;
    margin: auto;
    text-align: center;
}

.sobre{
  padding-top: 40px;
  color: #fff;
  margin:auto;
  font-size: 24px;
  font-weight: 300;
  text-align: center;
}

.clinica-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  min-height: 500px;
}

/* Col 1 — Título */
.clinica-col-titulo {
  display: flex;
  align-items: center;
  padding: 4rem 3rem 4rem 4rem;
}

.clinica-titulo {
    font-family: var(--font-sans);
    font-size: clamp(1.4rem, 2.9vw, 2.9rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.35;
    margin: 0;
}

/* Col 2 — Foto */
.clinica-col-foto {
  overflow: hidden;
}

.clinica-foto {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Col 3 — Texto */
.clinica-col-texto {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  padding: 4rem 4rem 4rem 3rem;
}

.clinica-col-texto p {
    font-family: var(--font-sans);
    font-size: clamp(.88rem, 1.4vw, 3rem);
    color: rgba(255,255,255,.82);
    line-height: 1.35;
    margin: 0;
}

/* ── Faixa depoimento ── */
.clinica-depoimento {
  border-top: 1px solid rgba(255,255,255,.15);
  padding: 2.5rem 0;
}

.clinica-dep-inner {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    flex-wrap: wrap;
}

.clinica-dep-label {
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: rgba(255,255,255,.45);
  white-space: nowrap;
  flex-shrink: 0;
}

.clinica-dep-texto {
  font-family: var(--font-sans);
  font-size: .92rem;
  color: rgba(255,255,255,.8);
  line-height: 1.65;
  margin: 0;
  font-style: normal;
}

.clinica-dep-texto cite {
  display: inline;
  font-style: normal;
  font-weight: 700;
  color: var(--white);
  margin-left: .3rem;
}

/* ── Responsivo ── */
@media (max-width: 900px) {
  .clinica-grid {
    grid-template-columns: 1fr;
  }
  .clinica-col-titulo {
    padding: 3rem 1.5rem 1.5rem;
  }
  .clinica-col-foto {
    height: 300px;
  }
  .clinica-col-texto {
    padding: 2rem 1.5rem 3rem;
  }
  .clinica-dep-inner {
    flex-direction: column;
    gap: 1rem;
  }
}

#ambiente {
  background: var(--cream);
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.ambiente-sup {
  font-family: var(--font-sans);
  font-size: 2rem;
  letter-spacing: .1em;
  color: var(--brown);
  text-align: center;
  margin-bottom: .6rem;
  text-transform: none;
}

.ambiente-titulo {
  font-family: var(--font-sans);
  font-size: clamp(1.6rem, 3vw, 3.6rem);
  font-weight: 700;
  color: var(--charcoal);
  text-align: center;
  margin-bottom: .8rem;
}

.ambiente-desc {
  font-family: var(--font-sans);
  font-size: 2rem;
  color: var(--charcoal);
  text-align: center;
  margin-bottom: 2.5rem;
  opacity: .75;
}

/* Cards no contexto claro — override de cor */
#ambiente .online-card-item {
  border-color: #5A6A83;
  color: #5A6A83;
  font-size: .82rem;
}

.ambiente-cards-5 {
  margin-bottom: 0;
}

.ambiente-cards-5 .online-card-item {
  min-width: 140px;
}

/* ── Grade de fotos ── */
.ambiente-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 314px);
    gap: 22px;
    margin: 2.5rem 0;
    cursor: pointer;
    padding: 0px 40px;
}

.ambiente-foto-wrap {
  position: relative;
  overflow: hidden;
}

.ambiente-foto-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}

.ambiente-zoom-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(42,35,32,0);
  transition: background .3s;
  color: var(--white);
  font-size: 1.6rem;
  opacity: 0;
  transition: opacity .3s, background .3s;
}

.ambiente-foto-wrap:hover img {
  transform: scale(1.06);
}

.ambiente-foto-wrap:hover .ambiente-zoom-icon {
  opacity: 1;
  background: rgba(42,35,32,.35);
}

/* ── Seção ── */
#dr-eduardo {
  padding: 5rem 0;
  background-color: #5E6A79;
}

#dra-lilian {
  padding: 5rem 0;
  background-color: #5E6A79;
  border-top: 1.5px dashed rgba(255, 255, 255, .18);
}




/* ── Layout 2 colunas ── */
.dr-edu-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3.5rem;
  align-items: start;
}

/* ── Foto circular ── */
.dr-edu-foto-wrap {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,.2);
  margin: 0 auto;
}

.dr-edu-foto-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Conteúdo direito ── */
.dr-edu-nome {
  font-family: var(--font-sans);
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: .3rem;
}

.dr-edu-crm {
  font-family: var(--font-sans);
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 0;
}

.dr-edu-sep {
  height: 1px;
  background: rgba(255,255,255,.15);
  margin: 1.2rem 0;
}

.dr-edu-bio {
  font-family: var(--font-sans);
  font-size: .92rem;
  color: rgba(255,255,255,.78);
  line-height: 1.75;
}

.dr-edu-subtitulo {
  font-family: var(--font-sans);
  font-size: .9rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: 1.4rem;
  margin-bottom: .5rem;
}

/* Listas padrão */
.dr-edu-lista {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.dr-edu-lista li {
  font-family: var(--font-sans);
  font-size: .88rem;
  color: rgba(255,255,255,.75);
  line-height: 1.6;
  padding-left: .9rem;
  position: relative;
}

.dr-edu-lista li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: rgba(255,255,255,.35);
}

/* Citação */
.dr-edu-quote {
  font-family: var(--font-sans);
  font-size: .9rem;
  font-style: italic;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  border-left: 2px solid rgba(255,255,255,.2);
  padding-left: 1rem;
  margin: 0;
}

/* Diferenciais com ícone */
.dr-edu-diferenciais {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}

.dr-edu-diferenciais li {
  font-family: var(--font-sans);
  font-size: .88rem;
  color: rgba(255,255,255,.82);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: .55rem;
}

.dr-edu-diferenciais li i {
  color: var(--gold);
  font-size: .85rem;
  margin-top: .18rem;
  flex-shrink: 0;
}

/* ── Faixa depoimentos ── */
.dr-edu-deps {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.15);
}

.dr-edu-deps-titulo {
  font-family: var(--font-sans);
  font-size: .88rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  margin-bottom: 1.5rem;
}

.dr-edu-deps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.dr-edu-dep-texto {
  font-family: var(--font-sans);
  font-size: .9rem;
  color: rgba(255,255,255,.78);
  line-height: 1.7;
  margin-bottom: .6rem;
}

.dr-edu-dep-autor {
  font-family: var(--font-sans);
  font-size: .82rem;
  font-weight: 700;
  color: var(--white);
}

/* ── Responsivo ── */
@media (max-width: 768px) {
  .dr-edu-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .dr-edu-foto-col {
    display: flex;
    justify-content: center;
  }
  .dr-edu-deps-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ── Seção ── */
#trabalho-integrado {
    overflow: hidden;
    background-color: #5A6A83;
    padding: 0px 0px;
}

.ti-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}

/* ── Coluna conteúdo ── */
.ti-col-content {
  padding: 4rem 3.5rem 4rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ti-bloco {
  padding: 2.5rem 0;
}

.ti-sep {
  height: 1px;
  background: rgba(255,255,255,.15);
}

.ti-label {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    color: #fff;
    margin-bottom: .7rem;
}

.ti-titulo {
  font-family: var(--font-sans);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 1.2rem;
}

.ti-desc {
  font-family: var(--font-sans);
  font-size: .92rem;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin-bottom: 1.8rem;
}

/* Cards — override para fundo escuro já herdado */
#trabalho-integrado .online-cards {
  margin-bottom: 1.8rem;
}

/* Depoimento */
.ti-dep {
  border-left: 2px solid rgba(255,255,255,.2);
  padding-left: 1rem;
}

.ti-dep-texto {
  font-family: var(--font-sans);
  font-size: .88rem;
  font-style: italic;
  color: rgba(255,255,255,.7);
  line-height: 1.65;
  margin-bottom: .4rem;
}

.ti-dep-autor {
  font-family: var(--font-sans);
  font-size: .82rem;
  font-weight: 700;
  color: var(--white);
}

/* Compromisso Ético */
.ti-etico-intro {
  font-family: var(--font-sans);
  font-size: .9rem;
  color: var(--white);
  margin-bottom: .9rem;
}

/* ── Coluna foto ── */
.ti-col-foto {
  overflow: hidden;
}

.ti-col-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ── Responsivo ── */
@media (max-width: 900px) {
  .ti-grid {
    grid-template-columns: 1fr;
  }
  .ti-col-foto {
    height: 420px;
    order: -1;
  }
  .ti-col-content {
    padding: 3rem 1.5rem;
  }
}

/* ── Processo ── */
.processo-titulo {
  font-family: var(--font-sans);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--charcoal);
  text-align: center;
  margin-bottom: 1.8rem;
  margin-top: .5rem;
}

.processo-aviso {
  font-family: var(--font-sans);
  font-size: .9rem;
  color: var(--charcoal);
  text-align: center;
  margin-top: 1.5rem;
  opacity: .65;
}

/* ── Lightbox ── */
.lb-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.lb-overlay.active {
  display: flex;
}

.lb-img-wrap {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lb-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
  animation: lbFadeIn .25s ease;
}

@keyframes lbFadeIn {
  from { opacity: 0; transform: scale(.96); }
  to   { opacity: 1; transform: scale(1); }
}

.lb-close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: rgba(255,255,255,.7);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color .2s;
  line-height: 1;
  padding: .3rem;
}
.lb-close:hover { color: #fff; }

.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background .2s;
}
.lb-nav:hover { background: rgba(255,255,255,.22); }
.lb-prev { left: 1.2rem; }
.lb-next { right: 1.2rem; }

/* ── Responsivo ── */
@media (max-width: 768px) {
  .ambiente-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 200px);
  }
  .ambiente-cards-5 .online-card-item {
    min-width: calc(50% - .75rem);
    flex: 0 0 calc(50% - .75rem);
  }
}

@media (max-width: 480px) {
  .ambiente-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .ambiente-foto-wrap { height: 220px; }
  .ambiente-cards-5 .online-card-item,
  #ambiente .online-card-item {
    min-width: 100%;
    flex: 0 0 100%;
  }
}

    /* ─── HERO BANNER ─── */
    #hero {
      position: relative;
      height: 100vh;
      min-height: 640px;
      overflow: hidden;
      background: #5b6a7a; /* fundo fixo tom azul-acinzentado como na referência */
    }

    /* Imagem PNG central — troca entre slides */
    .hero-png-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
    left: 100px;
    }
    .hero-png {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        height: auto;
        min-height: 1116px;
        width: 990px;
        max-width: 65vw;
        object-fit: contain;
        object-position: bottom center;
        opacity: 0;
        transition: opacity .9s ease;
    }
    .hero-png.active { opacity: 1; }

    /* Textos estáticos sobrepostos */
    .hero-static {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    pointer-events: none;
    top: -37px;
}
    .hero-static > .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
    }

    /* Bloco esquerdo */
    .hero-left {
    max-width: 400px;
    pointer-events: all;
    margin-top: -100px;
}
    .hero-left1 {
      max-width: 560px;
      pointer-events: all;
    }

    .hero-left1 h1 {
      color: var(--white);
      font-size: clamp(2.2rem, 4vw, 3rem);
      line-height: 1.1;
      font-weight: 300;
      margin-bottom: 1.4rem;
      margin-top: 0px;
    }

    .hero-left1 h4 {
      color: var(--white);
      font-size: clamp(1.2rem, 2vw, 1rem);
      line-height: 1.1;
      font-weight: 300;
      margin-bottom: 1.4rem;

    }

    .hero-left1 h1 strong { font-weight: 600; }
    .hero-left1 p {
      font-size: clamp(.85rem, 1.3vw, 1rem);
      color: rgba(255,255,255,.8);
      line-height: 1.75;
      margin-bottom: 2rem;
    }
    .hero-left1 p strong { color: var(--white); font-weight: 600; }


    .hero-left h1 {
      color: var(--white);
      font-size: clamp(2.2rem, 4vw, 3rem);
      line-height: 1.1;
      font-weight: 300;
      margin-bottom: 1.4rem;
    }
    .hero-left h1 strong { font-weight: 600; }
    .hero-left p {
      font-size: clamp(.85rem, 1.3vw, 1rem);
      color: rgba(255,255,255,.8);
      line-height: 1.75;
      margin-bottom: 2rem;
    }
    .hero-left p strong { color: var(--white); font-weight: 600; }

    /* Bloco direito — texto pequeno com borda esquerda */
    .hero-right {
      max-width: 200px;
      border-left: 2px solid rgba(255,255,255,.4);
      padding-left: 1.1rem;
      pointer-events: all;
    }
    .hero-right p {
      font-size: .82rem;
      color: rgba(255,255,255,.8);
      line-height: 1.7;
      margin: 0;
    }

    /* Navegação inferior direita: setas + contador */
    .hero-nav {
      position: absolute;
      bottom: 2.2rem;
      right: 2.5rem;
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .hero-nav-btn {
      background: none;
      border: none;
      color: rgba(255,255,255,.7);
      font-size: 1rem;
      cursor: pointer;
      padding: .2rem .4rem;
      transition: color .2s;
      line-height: 1;
    }
    .hero-nav-btn:hover { color: var(--white); }
    .hero-counter {
      font-family: var(--font-sans);
      font-size: .85rem;
      color: rgba(255,255,255,.85);
      letter-spacing: .06em;
      min-width: 42px;
      text-align: center;
    }
    .hero-counter .cur { color: var(--white); font-weight: 600; }
    .hero-counter .sep { color: rgba(255,255,255,.4); margin: 0 .2rem; }
    .hero-counter .tot { color: rgba(255,255,255,.45); }

    @media (max-width: 768px) {
      .hero-right { display: none; }
      .hero-png { max-width: 102vw; height: 84%; }
      .hero-left { max-width: 85vw; }
      .hero-left h1 { font-size: 2rem; }

      .hero-png-wrap {
    left: 0px;
}
    }

    /* ── Hero ── */
    .pp-hero {
      background: #354558;
      color: #fff;
      padding: 80px 24px 60px;
      text-align: center;
    }

    .pp-hero__label {
      display: inline-block;
      font-family: 'Outfit', sans-serif;
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: #b89c7a;
      margin-bottom: 16px;
    }

    .pp-hero__title {
      font-size: clamp(28px, 5vw, 48px);
      font-weight: 400;
      letter-spacing: 1px;
      line-height: 1.2;
    }

    .pp-hero__title em {
      font-style: italic;
      color: #b89c7a;
    }

    .pp-hero__date {
      margin-top: 20px;
      font-family: 'Arial', sans-serif;
      font-size: 13px;
      color: #888;
    }

    /* ── Layout ── */
    .pp-wrapper {
      max-width: 820px;
      margin: 0 auto;
      padding: 64px 24px 96px;
    }

    /* ── Intro ── */
    .pp-intro {
      font-size: 16px;
      color: #555;
      border-left: 3px solid #b89c7a;
      padding-left: 20px;
      margin-bottom: 56px;
    }

    /* ── Sections ── */
   .pp-section {
    margin-bottom: 0px;
    padding: 20px;
}

    .pp-section__number {
      font-family: 'Outfit', sans-serif;
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: #b89c7a;
      margin-bottom: 8px;
      display: block;
    }

    .pp-section__title {
      font-size: 20px;
      font-weight: 400;
      color: #1a1a1a;
      margin-bottom: 16px;
      padding-bottom: 12px;
      border-bottom: 1px solid #e0d8cc;
    }

    .pp-section p {
      font-size: 15px;
      color: #444;
      margin-bottom: 12px;
    }

    .pp-section p:last-child { margin-bottom: 0; }

    /* ── Subsection ── */
    .pp-subsection {
      margin: 20px 0 8px;
    }

    .pp-subsection__title {
      font-family: 'Outfit', sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: #2c2c2c;
      margin-bottom: 10px;
    }

    /* ── List ── */
    .pp-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .pp-list li {
      font-size: 15px;
      color: #444;
      padding: 8px 0 8px 20px;
      position: relative;
      border-bottom: 1px solid #f0ece5;
    }

    .pp-list li:last-child { border-bottom: none; }

    .pp-list li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #b89c7a;
    }

    /* ── Rights grid ── */
    .pp-rights {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 12px;
      margin-top: 16px;
    }

    .pp-rights__item {
      background: #fff;
      border: 1px solid #e0d8cc;
      border-radius: 4px;
      padding: 14px 16px;
      font-size: 14px;
      color: #444;
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }

    .pp-rights__item::before {
      content: '✓';
      color: #b89c7a;
      font-size: 13px;
      flex-shrink: 0;
      margin-top: 1px;
    }

    /* ── Contact box ── */
    .pp-contact {
      background: #354558;
      color: #fff;
      border-radius: 6px;
      padding: 36px 32px;
      margin-top: 56px;
      text-align: center;
    }

    .pp-contact__label {
      font-family: 'Outfit', sans-serif;
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: #b89c7a;
      margin-bottom: 12px;
      display: block;
    }

    .pp-contact__title {
      font-size: 22px;
      font-weight: 400;
      margin-bottom: 14px;
    }

    .pp-contact p {
      font-size: 14px;
      color: #aaa;
      line-height: 1.7;
    }

    /* ── Divider ── */
    .pp-divider {
      width: 40px;
      height: 2px;
      background: #b89c7a;
      margin: 0 auto 40px;
    }

    /* ── Hero ── */
    .tu-hero {
      background: #354558;
      color: #fff;
      padding: 80px 24px 60px;
      text-align: center;
    }

    .tu-hero__label {
      display: inline-block;
      font-family: 'Outfit', sans-serif;
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: #b89c7a;
      margin-bottom: 16px;
    }

    .tu-hero__title {
      font-size: clamp(28px, 5vw, 48px);
      font-weight: 400;
      letter-spacing: 1px;
      line-height: 1.2;
    }

    .tu-hero__title em {
      font-style: italic;
      color: #b89c7a;
    }

    .tu-hero__date {
      margin-top: 20px;
      font-family: 'Outfit', sans-serif;
      font-size: 13px;
      color: #a8b8c8;
    }

    /* ── Layout ── */
    .tu-wrapper {
      max-width: 820px;
      margin: 0 auto;
      padding: 64px 24px 96px;
    }

    /* ── Intro ── */
    .tu-intro {
      font-size: 16px;
      color: #555;
      border-left: 3px solid #b89c7a;
      padding-left: 20px;
      margin-bottom: 56px;
    }

    /* ── Sections ── */
    .tu-section {
      margin-bottom: 0px;
      padding:20px;
    }

    .tu-section__number {
      font-family: 'Outfit', sans-serif;
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: #b89c7a;
      margin-bottom: 8px;
      display: block;
    }

    .tu-section__title {
      font-size: 20px;
      font-weight: 500;
      color: #1a1a1a;
      margin-bottom: 16px;
      padding-bottom: 12px;
      border-bottom: 1px solid #e0d8cc;
    }

    .tu-section p {
      font-size: 15px;
      color: #444;
      margin-bottom: 12px;
    }

    .tu-section p:last-child { margin-bottom: 0; }

    /* ── List ── */
    .tu-list {
      list-style: none;
      padding: 0;
      margin: 10px 0 0;
    }

    .tu-list li {
      font-size: 15px;
      color: #444;
      padding: 8px 0 8px 20px;
      position: relative;
      border-bottom: 1px solid #f0ece5;
    }

    .tu-list li:last-child { border-bottom: none; }

    .tu-list li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #b89c7a;
    }

    /* ── Alert box ── */
    .tu-alert {
      background: #fff8f0;
      border: 1px solid #e0d0b0;
      border-left: 4px solid #b89c7a;
      border-radius: 4px;
      padding: 16px 20px;
      font-size: 14px;
      color: #6b5a3a;
      margin-top: 16px;
    }

    /* ── Contact box ── */
    .tu-contact {
      background: #354558;
      color: #fff;
      border-radius: 6px;
      padding: 36px 32px;
      margin-top: 56px;
      text-align: center;
    }

    .tu-contact__label {
      font-family: 'Outfit', sans-serif;
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: #b89c7a;
      margin-bottom: 12px;
      display: block;
    }

    .tu-contact__title {
      font-size: 22px;
      font-weight: 400;
      margin-bottom: 14px;
    }

    .tu-contact p {
      font-size: 14px;
      color: #a8b8c8;
      line-height: 1.7;
    }

    /* ── Divider ── */
    .tu-divider {
      width: 40px;
      height: 2px;
      background: #b89c7a;
      margin: 0 auto 40px;
    }

    /* ─── SECTION COMMON ─── */
    section { padding: 100px 0; }
    .section-label {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1rem;
    }
    .section-label::before {
      content: '';
      display: block;
      width: 32px;
      height: 1px;
      background: var(--gold);
    }
    .divider-gold {
      width: 48px; height: 2px;
      background: var(--gold);
      margin: 1.2rem 0 2rem;
    }

    /* ─── SECTION: IDENTIFICA ─── */
    #identifica {
      padding: 0;
      position: relative;
    }
    .identifica-slide {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
      display: flex;
      align-items: stretch;
    }
    /* Imagem de fundo cobre a metade esquerda */
    .identifica-img {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: left center;
      width: 100%;
      height: 100%;
    }
    /* Overlay gradiente: foto nítida à esquerda, escurece para direita */
    .identifica-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right,
        rgba(30,30,40,.15) 0%,
        rgba(90,105,120,.55) 38%,
        rgba(90,105,120,.88) 55%,
        rgba(80,95,112,.96) 100%
      );
    }
    /* Conteúdo: texto à direita + seta no canto direito */
    .identifica-content {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      padding: 0 10vw;
    }
    .identifica-text {
      max-width: 520px;
      margin-right: 3rem;
    }
    .identifica-titulo {
      font-family: var(--font-serif);
      font-size: clamp(1.8rem, 3.5vw, 3rem);
      font-weight: 300;
      color: var(--white);
      line-height: 1.2;
      letter-spacing: .02em;
      margin-bottom: 1.5rem;
    }
    .identifica-desc {
      font-family: var(--font-sans);
      font-size: clamp(.9rem, 1.4vw, 1.05rem);
      color: rgba(255,255,255,.82);
      line-height: 1.5;
      margin: 0;
    }

     .identifica-desc1 {
      font-family: var(--font-sans);
      font-size: clamp(1.3rem, 1.9vw, 1.54rem);
      color: rgba(255,255,255,.82);
      line-height: 1.3;
      margin: 0;
      margin-bottom: 10px;
    }
    /* Seta direita */
    .identifica-arrow {
      flex-shrink: 0;
      width: 54px;
      height: 54px;
      border-radius: 50%;
      border: 1.5px solid rgba(255,255,255,.55);
      background: transparent;
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      cursor: pointer;
      transition: all .3s;
      text-decoration: none;
      flex-shrink: 0;
    }
    .identifica-arrow:hover {
      background: rgba(255,255,255,.15);
      border-color: var(--white);
      color: var(--white);
    }
    @media (max-width: 768px) {
      .identifica-slide { height: 460px; }
      .identifica-img { background-position: 30% center; }
      .identifica-overlay {
        background: linear-gradient(to right,
          rgba(30,30,40,.3) 0%,
          rgba(80,95,112,.92) 45%,
          rgba(80,95,112,.97) 100%
        );
      }
      .identifica-text { margin-right: 1rem; max-width: 75vw; }
      .identifica-titulo { font-size: 1.5rem; }
    }
    @media (max-width: 480px) {
      .identifica-content { padding: 0 1.5rem; }
      .identifica-text { margin-right: .75rem; max-width: 100%; }
      .identifica-arrow { width: 42px; height: 42px; font-size: 1rem; }
    }

    /* ─── SECTION: COMO CUIDAMOS ─── */
    #como {
      padding: 0;
      overflow: hidden;
    }
    .como-wrap {
      display: flex;
      min-height: 640px;
    }
    /* Lado esquerdo — fundo branco */
    .como-left {
      flex: 0 0 46%;
      background: var(--white);
      padding: 80px 60px 80px 60px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .como-left h2 {
      font-size: clamp(2rem, 3vw, 2.8rem);
      color: #2d3a4a;
      font-weight: 700;
      font-family: var(--font-serif);
      line-height: 1.15;
      margin-bottom: 2.2rem;
    }
    /* Cards empilhados */
    .card-como {
      background: rgba(100,120,140,.13);
      border-radius: 14px;
      padding: 1.5rem 1.8rem;
      margin-bottom: 1rem;
      transition: background .3s;
    }
    .card-como:last-child { margin-bottom: 0; }
    .card-como:hover { background: rgba(100,120,140,.22); }
    .card-como h4 {
      font-family: var(--font-sans);
      font-size: 1rem;
      font-weight: 700;
      color: #2d3a4a;
      margin-bottom: .55rem;
    }
    .card-como p {
      font-size: .88rem;
      color: #4a5568;
      line-height: 1.7;
      margin: 0;
    }
    /* Lado direito — foto full */
    .como-right {
      flex: 0 0 54%;
      position: relative;
      overflow: hidden;
    }
    .como-right img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
    }


    /* Botão CTA sobre a foto, canto inferior direito */
    .como-cta {
      position: absolute;
      bottom: 2.2rem;
      right: 2.2rem;
    }
    .como-cta a {
      display: inline-block;
      font-family: var(--font-sans);
      font-size: .82rem;
      font-weight: 600;
      letter-spacing: .06em;
      color: #2d3a4a;
      background: rgba(180,195,210,.7);
      backdrop-filter: blur(8px);
      border-radius: 999px;
      padding: .75rem 1.8rem;
      text-decoration: none;
      transition: background .3s;
    }
    .como-cta a:hover { background: rgba(180,195,210,.95); }

    @media (max-width: 992px) {
      .como-wrap { flex-direction: column; }
      .como-left { flex: none; padding: 60px 30px; }
      .como-right { flex: none; height: 420px; }
      .como-cta { bottom: 1.5rem; right: 1.5rem; }
    }

    /* ─── SECTION: JORNADA ─── */
    #jornada { padding: 0; overflow: hidden; }
    .jornada-wrap {
      display: flex;
      min-height: 600px;
    }
    /* Lado esquerdo — foto */
    .jornada-img {
      flex: 0 0 40%;
      position: relative;
      overflow: hidden;
    }
    .jornada-img img {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }
    /* Lado direito — conteúdo */
    .jornada-content {
      flex: 0 0 60%;
      background: #f8f7f5;
      padding: 80px 70px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .jornada-content h2 {
      font-family: var(--font-serif);
      font-size: clamp(2rem, 3vw, 2.8rem);
      font-weight: 600;
      color: #2d3a4a;
      margin-bottom: 2.4rem;
    }
    /* Etapas — sem círculos, só bold label + texto */
    .step-item {
      padding: 0 0 1.8rem 0;
      border-bottom: none;
      margin-bottom: 0;
    }
    .step-item:last-child { padding-bottom: 0; }
    .step-body h4 {
      font-family: var(--font-sans);
      font-size: .95rem;
      font-weight: 700;
      color: #2d3a4a;
      margin-bottom: .45rem;
    }
    .step-body p {
      font-size: .9rem;
      color: #4a5568;
      line-height: 1.75;
      margin: 0;
    }
    .jornada-cta {
      margin-top: 2.4rem;
      text-align: left;
    }

    @media (max-width: 992px) {
      .jornada-wrap { flex-direction: column; }
      .jornada-img { flex: none; height: 340px; }
      .jornada-content { flex: none; padding: 50px 30px; }
      .jornada-cta { text-align: left; }
    }

    /* ─── SECTION: DEPOIMENTOS ─── */
    #depoimentos {
      position: relative;
      overflow: hidden;
      padding: 0;
    }
    .depo-bg {
      position: absolute;
      inset: 0;
      background-image: url('../img/depoimentos.jpg');
      background-size: cover;
      background-position: center;
    }
    .depo-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(20,25,35,.62);
    }
    .depo-inner {
      position: relative;
      z-index: 2;
      padding: 110px 0 90px;
      text-align: center;
    }
    #depoimentos h2 {
      font-family: var(--font-serif);
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 400;
      color: var(--white);
      line-height: 1.2;
      margin-bottom: 2.4rem;
    }
    /* Swiper testimonials */
    .testimonial-slide { padding: 0 2rem; }
    .testimonial-card {
      background: none;
      border: none;
      padding: 0;
      max-width: 640px;
      margin: 0 auto;
    }
    .testimonial-card p {
      font-family: var(--font-serif);
      font-size: clamp(1.1rem, 2vw, 1.35rem);
      font-style: italic;
      color: rgba(255,255,255,.92);
      line-height: 1.8;
      margin-bottom: 0;
    }
    /* Dots centralizados */
    .swiper-pagination-bullet {
      background: rgba(255,255,255,.45) !important;
      opacity: 1 !important;
      width: 10px !important;
      height: 10px !important;
    }
    .swiper-pagination-bullet-active {
      background: var(--white) !important;
      width: 10px !important;
      border-radius: 50% !important;
    }
    /* Selo — position absolute no canto superior direito */
    .depo-selo {
      position: absolute;
      top: 0rem;
      right: 7.5rem;
      z-index: 3;
      width: 110px;
      height: 110px;
      opacity: .92;
    }
    .depo-selo img { min-width: 180px;  }
    /* Fallback SVG selo quando não há PNG real */
    /*.depo-selo-svg {
      width: 110px;
      height: 110px;
    }*/

    /* ─── SECTION: CTA PRIMEIRO PASSO ─── */
    .cta-passo-wrap {
      background: #6b7f95;
      display: flex;
      align-items: center;
      gap: 6vw;
      padding: 72px 7vw;
    }
    .cta-passo-left {
      flex: 0 0 auto;
      max-width: 380px;
    }
    .cta-passo-left h2 {
      font-family: var(--font-sans);
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      font-weight: 800;
      text-transform: uppercase;
      color: var(--white);
      line-height: 1.15;
      margin: 0;
      letter-spacing: .01em;
    }
    .cta-passo-right {
      flex: 1;
    }
    .cta-passo-right p {
      font-size: clamp(.88rem, 1.2vw, 1rem);
      color: rgba(255,255,255,.88);
      line-height: 1.8;
      margin-bottom: 1.8rem;
    }
    .btn-cta-passo {
      display: inline-block;
      font-family: var(--font-sans);
      font-size: .85rem;
      font-weight: 600;
      letter-spacing: .05em;
      color: var(--white);
      border: 1.5px solid rgba(255,255,255,.65);
      border-radius: 999px;
      padding: .75rem 2rem;
      text-decoration: none;
      transition: all .3s;
    }
    .btn-cta-passo:hover {
      background: rgba(255,255,255,.15);
      border-color: var(--white);
      color: var(--white);
    }
    @media (max-width: 768px) {
      .cta-passo-wrap {
        flex-direction: column;
        gap: 2rem;
        padding: 60px 30px;
      }
      .cta-passo-left { max-width: 100%; }
    }

    #faq {
  padding: 5rem 0;
  background-color: #758497;
}

.faq-titulo {
  font-family: var(--font-sans);
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 3rem;
}

.faq-list {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.faq-item {
  text-align: center;
}

.faq-pergunta {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .4rem;
}

.faq-resposta {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  color: rgba(255,255,255,.78);
  line-height: 1.7;
}

    .lifting-bg {
      position: absolute;
      inset: 0;
      background-image: url('../img/lifting-1.jpg');
      background-size: cover;
      background-position: center;
      min-height: 70vh;
    }

     .abdominoplastia-bg {
      position: absolute;
      inset: 0;
      background-image: url('../img/abdominoplastia-1.jpg');
      background-size: cover;
      background-position: center;
      min-height: 70vh;
    }

      .abdominoplastia-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(80,100,125,.72);
    }

    .lifting-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(80,100,125,.72);
    }

    .lifting-text-right {
    position: absolute;
    right: 100px;
    bottom: 240px;
    min-width: 200px;
    width: 200px;
    }

     .lifting-text-right p{
      text-align: right;
      color: #fff;
      font-size: 1rem
    }

        /* Lado esquerdo */
    .lifting-left {
      flex: 0 0 auto;
      width: 560px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }
    .Lifting-left h2 {
    font-family: var(--font-sans);
    font-size: clamp(1.9rem, 3vw, 2.4rem);
    font-weight: 800;
    text-transform: initial;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.8rem;
    }

    .lifting-left p {
      font-family: var(--font-serif);
      font-size: clamp(1.5rem, 2.5vw, 2.2rem);
      color: var(--white);
      line-height: 1.45;
      text-align: right;
      margin: 0;
    }

    /* Lado direito — texto grande */
    .lifting-right {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: flex-end;
    }
    .lifting-right p {
      font-family: var(--font-serif);
      font-size: clamp(1.5rem, 2.5vw, 2.2rem);
      color: var(--white);
      line-height: 1.45;
      text-align: right;
      margin: 0;
    }

    #tecnicas,
#experiencia {
  padding: 4rem 0;
  background: #6b7f95;

}

  #experiencia {
     border-bottom: 1.5px dashed rgba(255,255,255,.18);
  }

/* Divisor tracejado entre as duas seções */
#tecnicas {
  border-bottom: 1.5px dashed rgba(255,255,255,.18);
}

.tecnicas-titulo {
  font-family: var(--font-sans);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 1rem;
}

.tecnicas-desc {
  font-family: var(--font-sans);
  font-size: .97rem;
  color: rgba(255,255,255,.75);
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

/* Cards de 5 — fonte menor para caber bem */
.tecnicas-cards-5 .online-card-item {
  font-size: .78rem;
  min-width: 140px;
}

.tecnicas-aviso {
  font-family: var(--font-sans);
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  text-align: right;
  margin-top: 1.5rem;
}

.experiencia-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* Responsivo — 5 cards: 2 colunas em tablet, 1 em mobile */
@media (max-width: 900px) {
  .tecnicas-cards-5 .online-card-item {
    min-width: calc(50% - .75rem);
    flex: 0 0 calc(50% - .75rem);
  }
}
@media (max-width: 560px) {
  .tecnicas-cards-5 .online-card-item,
  .online-card-item {
    min-width: 100%;
    flex: 0 0 100%;
  }
  .tecnicas-aviso {
    text-align: center;
  }
}

    /* ─── SECTION: FORM CONTATO ─── */
    #contato-form {
      position: relative;
      overflow: hidden;
      padding: 0;
    }
    .contato-bg {
      position: absolute;
      inset: 0;
      background-image: url('../img/contato.jpg');
      background-size: cover;
      background-position: center;
    }
    .contato-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(80,100,125,.72);
    }
    .contato-inner {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: stretch;
      min-height: 620px;
      padding: 80px 7vw;
      gap: 8vw;
    }
    /* Lado esquerdo */
    .contato-left {
      flex: 0 0 auto;
      width: 480px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }
    .contato-left h2 {
    font-family: var(--font-sans);
    font-size: clamp(1.9rem, 3vw, 2.4rem);
    font-weight: 800;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.8rem;
}
    /* Form sobre o fundo */
    .form-braga .form-control,
    .form-braga .form-select {
      border: none;
      border-bottom: 1.5px solid rgba(255,255,255,.45);
      border-radius: 0;
      background: transparent;
      padding: .85rem .1rem;
      font-size: .92rem;
      color: var(--white);
      transition: border-color .25s;
    }
    .form-braga .form-control:focus,
    .form-braga .form-select:focus {
      box-shadow: none;
      border-bottom-color: rgba(255,255,255,.9);
      background: transparent;
      color: var(--white);
    }
    .form-braga .form-control::placeholder { color: rgba(255,255,255,.65); }
    .form-braga .form-select option { color: var(--dark); background: var(--white); }
    .form-braga label {
      font-size: .8rem;
      letter-spacing: .04em;
      color: rgba(255,255,255,.7);
      margin-bottom: .2rem;
      font-weight: 400;
    }
    /* Botão + disclaimer inline */
    .form-bottom {
      display: flex;
      align-items: center;
      gap: 1.4rem;
      margin-top: .5rem;
      flex-wrap: wrap;
    }
    .btn-form-submit {
      flex-shrink: 0;
      font-family: var(--font-sans);
      font-size: .82rem;
      font-weight: 600;
      letter-spacing: .05em;
      color: var(--white);
      border: 1.5px solid rgba(255,255,255,.65);
      border-radius: 999px;
      padding: .7rem 1.8rem;
      background: transparent;
      cursor: pointer;
      transition: all .3s;
    }
    .btn-form-submit:hover {
      background: rgba(255,255,255,.15);
      border-color: var(--white);
    }
    .form-disclaimer {
      font-size: .75rem;
      color: rgba(255,255,255,.55);
      line-height: 1.5;
      margin: 0;
      max-width: 220px;
    }
    /* Lado direito — texto grande */
    .contato-right {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: flex-end;
    }
    .contato-right p {
      font-family: var(--font-serif);
      font-size: clamp(1.5rem, 2.5vw, 2.2rem);
      color: var(--white);
      line-height: 1.45;
      text-align: right;
      margin: 0;
    }
    @media (max-width: 992px) {
      .contato-inner { flex-direction: column; gap: 3rem; padding: 60px 30px; }
      .contato-left { width: 100%; }
      .contato-right p { text-align: left; font-size: 1.4rem; }
    }

    /* ─── SECTION: CONSULTA ONLINE ─── */
    #online { padding: 0; overflow: hidden; }
    .online-wrap {
      display: flex;
      min-height: 560px;
    }
    /* Lado esquerdo — foto full cover */
    .online-img {
      flex: 0 0 48%;
      position: relative;
      overflow: hidden;
    }
    .online-img img {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }
    /* Lado direito — conteúdo */
    .online-content {
      flex: 0 0 52%;
      background: #6b7f95;
      padding: 70px 60px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .online-content h2 {
      font-family: var(--font-serif);
      font-size: clamp(1.8rem, 2.8vw, 2.6rem);
      font-weight: 600;
      color: var(--white);
      margin-bottom: 1rem;
    }
    .online-subtitle {
      font-size: clamp(.95rem, 1.4vw, 1.1rem);
      font-weight: 600;
      color: var(--white);
      line-height: 1.4;
      margin-bottom: 1.2rem;
    }
    .online-desc {
      font-size: .9rem;
      color: rgba(255,255,255,.82);
      line-height: 1.75;
      margin-bottom: 1.8rem;
    }
    /* Label "Ideal para" */
    .online-label {
      font-family: var(--font-sans);
      font-size: .82rem;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 1rem;
    }
    /* Cards "Ideal para" — 3 em linha, sem setas, estáticos */
    .online-cards {
      display: flex;
      gap: .75rem;
      margin-bottom: 2rem;
      flex-wrap: wrap;
    }
    .online-card-item {
      flex: 1;
      min-width: 120px;
      background: transparent;);
      border: 1px solid #fff;
      border-radius: 10px;
      padding: 1rem .9rem;
      font-size: .82rem;
      color: var(--white);
      line-height: 1.5;
      text-align: center;
    }
    /* Botão */
    .btn-online {
      display: inline-block;
      font-family: var(--font-sans);
      font-size: .82rem;
      font-weight: 600;
      letter-spacing: .05em;
      color: var(--white);
      border: 1.5px solid rgba(255,255,255,.65);
      border-radius: 999px;
      padding: .7rem 1.8rem;
      text-decoration: none;
      transition: all .3s;
      align-self: flex-start;
    }
    .btn-online:hover {
      background: rgba(255,255,255,.15);
      border-color: var(--white);
      color: var(--white);
    }
    @media (max-width: 992px) {
      .online-wrap { flex-direction: column; }
      .online-img { flex: none; height: 320px; }
      .online-content { flex: none; padding: 50px 30px; }
     
    }



    /* ─── SECTION: ÁREAS DE ATUAÇÃO ─── */
    #areas { padding: 0; }
    .area-panel {
      position: relative;
      min-height: 600px;
      display: flex;
      align-items: center;
    }
    .area-panel .area-img {
      position: absolute;
      inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
    }
    .area-panel .area-overlay {
      position: absolute;
      inset: 0;
    }
    .area-panel .area-content {
      position: relative;
      z-index: 2;
      padding: 80px 0px;
    }
    /* Cirurgia: imagem à direita, texto à esquerda */
    .area-cirurgia .area-overlay { background: linear-gradient(to right, rgba(42,35,32,.62) 50%, transparent 100%); }
    /* Dermatologia: imagem à esquerda, texto à direita */
    .area-dermo .area-overlay { background: linear-gradient(to left, rgba(42,35,32,.62) 50%, transparent 100%); }

    .area-content h2 { color: var(--cream); }
    .btn-proc {
      display: block;
      padding: .55rem 1rem;
      font-size: .78rem;
      font-weight: 500;
      letter-spacing: .06em;
      color: #fff;
      border: 1px solid var(--gold);
      text-decoration: none;
      transition: all .25s;
      margin-bottom: .5rem;
      border-radius: 12px;

    }
    .btn-proc:hover {
      background: rgba(201,169,110,.15);
      border-color: var(--gold);
      color: var(--gold);
      padding-left: 1.4rem;
    }


   /* ─── SECTION: ESTRUTURA ─── */
/* Substitua a seção #estrutura atual por este código */

/* ─── SECTION: ESTRUTURA ─── */
#estrutura {
  position: relative;
  background-image: url('../img/estrutura.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* parallax suave — remova se preferir estático */
  min-height: 70vh; /* muda de height para min-height */
  padding: 80px 0; /* adiciona padding vertical */
}

/* Overlay escuro */
#estrutura::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.65);
  z-index: 0;
}

#estrutura > .container {
  position: relative;
  z-index: 1;
}

#estrutura h2,
#estrutura .label-tag {
  color: #fff;
}

.feature-grid { 
  display: grid; 
  grid-template-columns: repeat(2,1fr); 
  gap: 1.5rem; 
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: box-shadow .3s, background .3s;
  border-radius: 12px;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 4px 24px rgba(0,0,0,.25);
}

.feature-item .icon {
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: .15rem;
}

.feature-item h5 { 
  font-family: var(--font-sans); 
  font-size: .9rem; 
  font-weight: 600; 
  margin-bottom: .35rem; 
  color: #fff; 
}

.feature-item p { 
  font-size: .82rem; 
  color: rgba(255,255,255,.65); 
  line-height: 1.6; 
  margin: 0; 
}

@media (max-width: 768px) {
  #hero.hero-equipe {
    background-position: center center; /* ou 40%, 60%, etc */
  }
}

/* Media query para mobile */
@media (max-width: 768px) {
  #estrutura {
    min-height: auto; /* remove altura mínima */
    padding: 60px 0; /* padding consistente */
    background-attachment: scroll; /* melhor performance em mobile */
  }

  .feature-grid {
    grid-template-columns: 1fr; /* uma coluna em mobile */
    gap: 1rem;
    margin-top: 2rem;
  }

  .feature-item {
    padding: 1.2rem;
  }

  /* Ajuste no texto para mobile */
  #estrutura p {
    font-size: 0.88rem !important;
    margin-bottom: 1.5rem !important;
  }

  /* Botão mais adaptado */
  #estrutura .btn-form-submit {
    width: 100%;
    text-align: center;
    margin-bottom: 1rem;
  }

  .depo-selo {
    display: none;
}

.depo-selo img {
    min-width: 129px;
    width: 50px;
}

#depoimentos h2 {
    margin-bottom: 0px;
}

.ti-col-foto {
    height: 540px;
    order: -1;
}

.dr-edu-subtitulo {
    font-size: 1.3rem;
}

.hero-left1 h4 {
   
    font-size: clamp(.7rem, 2vw, 1rem);
    margin-bottom: 1.4rem;
    margin-top: 4.5rem;
}

.hero-left1 h1 {
    font-size: clamp(1.7rem, 4vw, 3rem);
}

.btn-online {
    font-size: 0.7rem;
}

#tecnicas, #experiencia {
    padding: 2rem 0;
}



}

@media (max-width: 1280px) {
  .hero-left1 h1 {
    font-size: 2.4rem;
  }
}

/* Ajuste para tablets */
@media (min-width: 769px) and (max-width: 992px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
    /* ─── SECTION: EQUIPE ─── */
    #equipe {
    background: #758497;
    padding: 80px 0 70px;
}
    #equipe .equipe-titulo {
      font-family: var(--font-serif);
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 600;
      color: var(--white);
      margin-bottom: .9rem;
    }
    #equipe .equipe-desc {
      font-size: clamp(.9rem, 1.3vw, 1rem);
      color: rgba(255,255,255,.82);
      line-height: 1.75;
      max-width: 700px;
      margin-bottom: 3.5rem;
    }
    /* Linha dos médicos */
    .equipe-row {
      display: flex;
      gap: 4vw;
      align-items: flex-start;
      flex-wrap: wrap;
    }
    /* Cada médico: foto circular + info */
    .dr-bloco {
      display: flex;
      gap: 2rem;
      flex: 1;
      min-width: 280px;
      align-items: flex-start;
    }
    .dr-foto-circle {
      flex-shrink: 0;
      width: 160px;
      height: 160px;
      border-radius: 50%;
      overflow: hidden;
      border: 3px solid rgba(255,255,255,.25);
    }
    .dr-foto-circle img {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: top center;
    }
    .dr-bloco-info { flex: 1; }
    .dr-bloco-info h3 {
      font-family: var(--font-sans);
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: .3rem;
    }
    .dr-bloco-info .dr-role {
      font-size: .82rem;
      color: rgba(255,255,255,.65);
      margin-bottom: 1rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid rgba(255,255,255,.2);
    }
    .dr-bloco-info ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .dr-bloco-info ul li {
      font-size: .85rem;
      color: rgba(255,255,255,.82);
      line-height: 1.55;
      padding: .3rem 0;
      display: flex;
      gap: .5rem;
    }
    .dr-bloco-info ul li::before {
      content: '›';
      color: rgba(255,255,255,.5);
      flex-shrink: 0;
      font-size: 1rem;
      line-height: 1.4;
    }
    /* Botão */
    .btn-equipe {
      display: inline-block;
      margin-top: 3rem;
      font-family: var(--font-sans);
      font-size: .82rem;
      font-weight: 600;
      letter-spacing: .05em;
      color: var(--white);
      border: 1.5px solid rgba(255,255,255,.6);
      border-radius: 999px;
      padding: .7rem 1.8rem;
      text-decoration: none;
      transition: all .3s;
    }
    .btn-equipe:hover {
      background: rgba(255,255,255,.15);
      border-color: var(--white);
      color: var(--white);
    }
    @media (max-width: 768px) {
      .dr-bloco { flex-direction: column; align-items: center; text-align: center; }
      .dr-bloco-info ul li { justify-content: center; }

      .feature-grid {
    display: grid;
    grid-template-columns: repeat(1,1fr);
    gap: 1.5rem;
    }
    .new-width{
  max-width: 100%
}

.como-cta {
    bottom: 1.5rem;
    /* right: 2.5rem; */
    margin-left: auto;
    margin-right: auto;
    /* margin: auto; */
    left: 50%;
    transform: translateX(-41%);
    width: 100%;
}

.identifica-desc1 {
    font-size: clamp(1rem, 1.9vw, 1.54rem);
    
}
    
    }

    /* ─── FOOTER ─── */
    footer {
      background: #6b7f95;
      color: rgba(255,255,255,.65);
    }

    /* Faixa topo: logo + credenciais + redes */
    .footer-top {
      border-bottom: 1px solid rgba(255,255,255,.15);
      padding: 2rem 0;
    }
    .footer-top-inner {
      display: flex;
      align-items: center;
      gap: 2.5rem;
      flex-wrap: wrap;
    }
    /* Logo SVG/img */
    .footer-logo img { height: 64px; width: auto; filter: brightness(0) invert(1); }
    .footer-logo-text {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }
    .footer-logo-text .instituto {
      font-family: var(--font-sans);
      font-size: .6rem;
      letter-spacing: .25em;
      text-transform: uppercase;
      color: rgba(255,255,255,.7);
    }
    .footer-logo-text .braga {
      font-family: var(--font-serif);
      font-size: 2rem;
      font-weight: 600;
      color: var(--white);
      line-height: 1;
    }
    .footer-logo-text .sub {
      font-size: .62rem;
      letter-spacing: .1em;
      color: rgba(255,255,255,.5);
      text-transform: uppercase;
    }
    /* Separador vertical */
    .footer-top-sep {
      width: 1px;
      height: 48px;
      background: rgba(255,255,255,.2);
      flex-shrink: 0;
    }
    /* Credenciais */
    .footer-credenciais { flex: 1; min-width: 200px; }
    .footer-credenciais strong {
      display: block;
      font-size: .75rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(255,255,255,.55);
      margin-bottom: .4rem;
    }
    .footer-credenciais p {
      font-size: .82rem;
      color: rgba(255,255,255,.82);
      line-height: 1.6;
      margin: 0;
    }
    /* Redes sociais */
    .footer-social {
      display: flex;
      gap: 1.2rem;
      margin-left: auto;
      flex-shrink: 0;
    }
    .footer-social a {
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,.75);
      font-size: 1.3rem;
      text-decoration: none;
      transition: color .2s;
    }
    .footer-social a:hover { color: var(--white); }

    /* Faixa links */
    .footer-links {
      padding: 3rem 0 2.5rem;
      border-bottom: 1px solid rgba(255,255,255,.12);
    }
    footer h6 {
      font-family: var(--font-sans);
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(255,255,255,.5);
      margin-bottom: 1.2rem;
    }
    footer .footer-link {
      display: block;
      font-size: .82rem;
      font-weight: 600;
      color: rgba(255,255,255,.85);
      text-decoration: none;
      margin-bottom: .55rem;
      letter-spacing: .02em;
      text-transform: uppercase;
      transition: color .2s;
    }
    footer .footer-link:hover { color: var(--white); }
    footer .footer-link-sm {
      display: block;
      font-size: .82rem;
      font-weight: 400;
      color: rgba(255,255,255,.75);
      text-decoration: none;
      margin-bottom: .45rem;
      transition: color .2s;
    }
    footer .footer-link-sm:hover { color: var(--white); }
    .footer-contact-info p {
      font-size: .82rem;
      color: rgba(255,255,255,.8);
      line-height: 1.6;
      margin-bottom: .4rem;
    }
    .footer-contact-info strong {
      color: rgba(255,255,255,.5);
      font-size: .7rem;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    /* Faixa "Fazemos parte" */
    .footer-parceiros {
      padding: 2.5rem 0;
      border-bottom: 1px solid rgba(255,255,255,.12);
    }
    .footer-parceiros h6 { margin-bottom: 1.8rem; }
    .parceiros-grid {
      display: flex;
      align-items: center;
      gap: 3rem;
      flex-wrap: wrap;
    }
    .parceiro-item {
      filter: brightness(0) invert(1);
      opacity: .65;
      transition: opacity .2s;
      height: 48px;
      display: flex;
      align-items: center;
    }
    .parceiro-item:hover { opacity: 1; }
    /* Placeholder texto para logos sem imagem real */
    .parceiro-item span {
      font-family: var(--font-sans);
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: rgba(255,255,255,.65);
      white-space: nowrap;
    }

    /* Aviso legal */
    .footer-aviso {
      margin: 2rem 0;
    }
    .footer-aviso-box {
      border: 1px solid rgba(255,255,255,.2);
      border-radius: 6px;
      padding: 1.1rem 1.8rem;
      font-size: .8rem;
      color: rgba(255,255,255,.6);
      line-height: 1.65;
    }

    /* Rodapé final copyright */
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.1);
      padding: 1.2rem 0;
      font-size: .76rem;
      color: rgba(255,255,255,.4);
    }
    .footer-bottom a { color: rgba(255,255,255,.55); text-decoration: none; }
    .footer-bottom a:hover { color: var(--white); }

    /* ─── WHATSAPP FLOAT ─── */
    .whatsapp-btn {
    position: fixed;
    bottom: 2.3rem;
    right: 2rem;
    z-index: 9999;
    width: 58px;
    height: 58px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37,211,102,.4);
    text-decoration: none;
    transition: transform .3s;
}
    .whatsapp-btn:hover { transform: scale(1.1); }
    .whatsapp-btn i { font-size: 1.6rem; color: #fff; }

    /* ─── UTILS ─── */
    .bg-dark-braga { background: var(--dark) !important; }
    .text-gold { color: var(--gold); }

    /* ─── OFFCANVAS CHEVRON ─── */
  .offcanvas .nav-link {
    font-family: var(--font-sans);
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(245,240,235,.75) !important;
    padding: .6rem 0 !important;
    border-bottom: 1px solid rgba(255,255,255,.05);
    border-radius: 100px;
}
    .offcanvas .nav-link:hover { color: var(--gold) !important; }
    .offcanvas .dropdown-item {
      font-size: .8rem;
      color: rgba(245,240,235,.6);
      padding: .45rem .75rem;
      letter-spacing: .04em;
    }
    .offcanvas .dropdown-item:hover {
      background: rgba(201,169,110,.1);
      color: var(--gold);
    }

    .offcanvas .nav-link:hover {
    color: #fff !important;
}
    .chevron-icon { transition: transform .3s ease; }
    .collapsed .chevron-icon { transform: rotate(0deg); }
    [aria-expanded="true"] .chevron-icon { transform: rotate(180deg); }

    /* ─── RESPONSIVE TWEAKS ─── */
    @media(max-width:768px) {
      section { padding: 70px 0; }

      .lifting-text-right {
    position: absolute;
    right: 40px;
    bottom: 20px;
    min-width: 200px;
    width: 280px;
}
      .area-panel {
    min-height: 520px;
    padding: 20px;
}

 .online-card-item {min-width: 100%;}

.hero-left {
    position: relative;
    top: -50px;
}
      .area-content { padding: 60px 30px; }
      .area-cirurgia .area-overlay { background: rgba(42,35,32,.85); }
      .area-dermo .area-overlay { background: rgba(42,35,32,.85); }
      .online-card { padding: 2.5rem 1.5rem; }
      .testimonial-card { padding: 2rem 1.5rem; }

      .btn-braga {
    font-size: .6rem;
    padding: 10px;
}

      .btn-nav-agendar {
    border: initial;
}
    }

    /* Adicione ao final da seção de estilos */
.offcanvas-body {
    overflow-y: auto;
    max-height: 100vh;
    padding-bottom: 80px; /* Espaço para os contatos */
}

.offcanvas .collapse {
    max-height: 300px; /* Altura máxima para os submenus */
    overflow-y: auto;  /* Scroll interno se necessário */
}

/* Estilizar a scrollbar (opcional) */
.offcanvas .collapse::-webkit-scrollbar {
    width: 4px;
}

.offcanvas .collapse::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
}

.offcanvas .collapse::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}