/* ===================== */
/* RESET & VARIÁVEIS     */
/* ===================== */

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { font-family:'Nunito', sans-serif; background:#f5f5f5; color:#11212D; }

:root{
  --brand-navy:#11212D;
  --brand-blue:#184B7A;
}

/* ===================== */
/* TIPOGRAFIA GLOBAL     */
/* ===================== */

h1, h2, h3 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  letter-spacing: .01em;
}
button, input, select, textarea { font-family: inherit; }

/* ===================== */
/* CONTAINERS            */
/* ===================== */

.container { 
  width:90%; 
  max-width:1140px; 
  margin:0 auto; 
  padding:2rem 1rem; 
}

/* ===================== */
/* HEADER (sticky + logo maior sem crescer header) */
/* ===================== */

/* altura fixa do header (ajuste se quiser; não muda visual final) */
:root{
  --header-h: 72px;
}

/* cola no topo ao rolar */
.site-header{
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #0f1f2b; /* mantém a cor atual do seu header */
}

/* mantém a mesma altura total do header */
.header-container{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:2rem;
  height: var(--header-h);     /* fixa a altura */
  padding: 0 1.25rem;          /* zera o padding vertical para “ganhar” espaço p/ a logo */
}

/* logo maior, mas limitada pela altura do header */
.logo-link{ display:flex; align-items:center; min-width:0; }
.logo-img{
  display:block;
  height: 56px;                           /* ↑ maior que antes (48px) */
  max-height: calc(var(--header-h) - 12px); /* não passa da altura útil do header */
  width:auto;
  object-fit: contain;                     /* garante que não deforme */
}

/* navegação mantém o alinhamento lateral da sua versão desktop */
.main-nav{ margin-left: 1rem; }
.main-nav ul{ list-style:none; display:flex; gap:3rem; }
.main-nav a{ color:#fff; text-decoration:none; font-weight:600; font-size:1.15rem; padding:.25rem 0; }
.main-nav a:hover{ color:#dbe0e6; }

/* mobile: preserva o comportamento atual */
@media (max-width: 900px){
  .header-container{ justify-content: space-between; }
  .logo-img{
    height: 52px;                           /* levemente menor no mobile */
    max-height: calc(var(--header-h) - 12px);
  }
}


/* ===================== */
/* NAV HAMBÚRGUER        */
/* ===================== */

.nav-toggle {
  display:none;
  width:44px; height:44px;
  border:0; border-radius:10px;
  background: var(--brand-navy); color:#fff;
  align-items:center; justify-content:center;
  cursor:pointer;
  margin-left:auto; margin-right:4px; /* só atua no mobile */
}
.nav-toggle-bar {
  position:relative; width:20px; height:2px; background:#fff; display:block;
}
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content:""; position:absolute; left:0; width:20px; height:2px; background:#fff;
}
.nav-toggle-bar::before { top:-6px; }
.nav-toggle-bar::after  { top: 6px; }

@media (max-width: 900px){
  .header-container { justify-content: space-between; }
  .nav-toggle{ display:flex; }

  .main-nav{
    position: fixed;
    top:0; right:-100%;
    width:min(82vw, 320px);
    height:100dvh;
    background:#0f1f2b;
    box-shadow: -8px 0 24px rgba(0,0,0,.25);
    transition: right .25s ease;
    z-index: 9998;
    padding: 80px 24px 24px;
    margin-left:0;
  }
  .main-nav .nav-list{ flex-direction: column; gap: 18px; }
  .main-nav a{ font-size:1.05rem; }

  .nav-overlay{
    position: fixed; inset:0;
    background: rgba(0,0,0,.35);
    z-index: 9997;
    display:none;
  }

  .site-header.nav-open .main-nav{ right:0; }
  .site-header.nav-open .nav-overlay{ display:block; }

  .site-header.nav-open .nav-toggle-bar{ background:transparent; }
  .site-header.nav-open .nav-toggle-bar::before{ top:0; transform:rotate(45deg); }
  .site-header.nav-open .nav-toggle-bar::after { top:0; transform:rotate(-45deg); }

  html.nav-lock, body.nav-lock{ overflow:hidden; }
}

/* ===================== */
/* HERO                  */
/* ===================== */

.hero{
  position: relative;
  background: url('../images/Background/Maobg.jpg') no-repeat center/cover;
  color:#fff;
  overflow:hidden;
  min-height: clamp(520px, 70vh, 760px);
  padding: 0 1rem;
}

.hero::before{ content:none; }                         /* remove marca d’água antiga */
.hero::after{
  content:"";
  position:absolute; inset:0;
  background: rgba(17,33,45,0.45);                    /* overlay p/ legibilidade */
  z-index:0;
}
.hero .container{
  position:relative; z-index:1;
  height:100%; min-height: inherit;
  display:flex; flex-direction:column;
  align-items:center; justify-content:center;
  text-align:center; gap:1rem;
}
.hero h1{
  color:#fff;
  font: 700 clamp(1.9rem, 3.8vw, 2.8rem)/1.25 "Merriweather", serif;
  text-shadow: 0 2px 10px rgba(0,0,0,.25);
  margin:0;
}
.hero p{
  color:#E6ECF0;
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  margin:0;
}
@media (min-width: 900px){
  .hero .container{ padding-top: 1rem; padding-bottom: 2rem; }
}

/* ===================== */
/* BOTÕES (base + hero)  */
/* ===================== */

.btn, .btn-outline{
  display:inline-block;
  padding:.85rem 1.5rem;
  border-radius:12px;
  min-width: 190px;
  text-align:center;
  text-decoration:none;
  font-weight:800;
  font-family:'Nunito', sans-serif;
  transition: transform .15s ease, filter .15s ease, background .15s ease, color .15s ease;
  border:2px solid transparent;
}
.btn:hover, .btn-outline:hover{ transform: translateY(-1px); }

/* padrão (fora da hero) */
.btn{ background:var(--brand-navy); color:#fff; border-color:var(--brand-navy); }
.btn-outline{ background:transparent; color:var(--brand-navy); border-color:var(--brand-navy); }
.btn:hover{ filter: brightness(.95); }
.btn-outline:hover{ background:var(--brand-navy); color:#fff; }

/* dentro da hero */
.hero .btn{ background:#fff; color:var(--brand-navy); border-color:rgba(255,255,255,.6); }
.hero .btn-outline{ background:transparent; color:#fff; border-color:#fff; }
.hero .btn-outline:hover{ background:rgba(255,255,255,.12); }

/* ===================== */
/* SOBRE A CLÍNICA       */
/* ===================== */

.sobre-bloco{ background:#f6f8fa; padding:56px 0; }
.sobre-grid{ display:grid; grid-template-columns:1fr 1.2fr; gap:32px; align-items:center; }
.sobre-foto img{ width:100%; height:auto; display:block; border-radius:12px; object-fit:cover; }
.sobre-texto h2{ font:700 1.8rem/1.2 "Merriweather", serif; margin-bottom:16px; }
.sobre-item{ margin-bottom:12px; }
.sobre-item h3{ font:700 1.1rem/1.2 'Nunito', sans-serif; margin-bottom:6px; }
@media (max-width:900px){ .sobre-grid{ grid-template-columns:1fr; } }
/* Botão mais evidente para o link da trajetória */
.sdp-link { margin-top: 4px; }
.sdp-link .sdp-btn {
  background: var(--brand-navy);   /* mais escuro */
  border-color: var(--brand-navy);
  color: #fff;
}

.sdp-link .sdp-btn:hover {
  filter: brightness(.95);
  box-shadow: 0 10px 28px rgba(0,0,0,.12);
  color: #fff;
}

/* Assinatura alinhada na linha (vale para as duas sessões) */
.sdp-assinatura{
  display:inline-flex;          /* fica na mesma linha do conteúdo */
  align-items:center;           /* centraliza verticalmente com a linha */
  gap:12px;
  margin: 14px 0 8px;
}

/* aumenta a assinatura sem quebrar layout */
.sdp-assinatura img{
  height: 90px !important;      /* ajuste 80–110px conforme o gosto */
  width:auto;
  object-fit:contain;
  display:block;
  opacity:.96;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,.08));
}

/* cria a LINHA ao lado da assinatura */
.sdp-assinatura::after{
  content:"";
  flex:1;
  height:1px;
  background: rgba(17,33,45,.25);
}

/* se existir uma “linha” antiga embaixo, esconda */
.sdp-assinatura + .sdp-assinatura-linha{ display:none !important; }

/* responsivo: diminui um pouco no mobile */
@media (max-width: 560px){
  .sdp-assinatura img{ height: 72px !important; }
}

/* PREVIEW - SOBRE O DR. (ajustes após remover o título) */
.sdp-texto{ padding-top: 6px; } /* dá um respiro no topo sem o <h2> */
.sdp-lead--big{ font-size: clamp(1.18rem, 1.9vw, 1.35rem); } /* ligeiramente maior */


/* ===================== */
/* DIFERENCIAIS          */
/* ===================== */

.diferenciais { background:#fff; padding:48px 0; }
.dif-title {
  font-family: 'Merriweather', serif;
  font-weight:700; font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  color:#11212D; text-align:center; margin-bottom:28px;
}
.dif-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.dif-card {
  background:#f6f8fa;
  border:1px solid rgba(17,33,45,0.06);
  border-radius:12px;
  padding:18px 16px;
  text-align:left;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.dif-card:hover { transform: translateY(-2px); box-shadow:0 6px 16px rgba(0,0,0,.06); border-color:rgba(17,33,45,0.12); }
.dif-icon {
  width:44px; height:44px; border-radius:12px; background:#11212D;
  display:grid; place-items:center; margin-bottom:10px; color:#fff;
}
.dif-icon svg { width:24px; height:24px; }
.dif-card h3 { font-family:'Nunito', sans-serif; font-weight:800; font-size:1.05rem; color:#11212D; margin-bottom:6px; }
.dif-card p { font-size:.98rem; line-height:1.5; color:#3a5163; }
@media (max-width:1024px){ .dif-grid { grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .dif-grid { grid-template-columns:1fr; } }

/* ===================== */
/* COMO CHEGAR           */
/* ===================== */

.como-chegar{ padding:60px 20px; background:#fff; }

.container-como-chegar{
  max-width:1200px; margin:0 auto; display:flex; flex-wrap:wrap;
  gap:40px; align-items:center; justify-content:space-between;
}

.texto-como-chegar{
  flex:1; min-width:300px;
}

/* >>> AUMENTO DE DESTAQUE AQUI <<< */
.texto-como-chegar h2{
  font-family: "Merriweather", serif;
  font-weight: 800;
  font-size: clamp(1.9rem, 3vw, 2.4rem);   /* maior que antes */
  line-height: 1.2;
  margin: 0 0 12px 0;
  color:#11212D;
}

.texto-como-chegar p{
  color:#3a5163;
  font-size: clamp(1.02rem, 1.6vw, 1.15rem); /* corpo mais evidente */
  line-height: 1.65;
}

/* endereço opcional (mantido) */
.endereco{ margin-top:10px; font-style:normal; color:#11212D; }

.mapa-como-chegar{
  flex:1; min-width:300px; height:360px;
  border-radius:12px; overflow:hidden;
  box-shadow:0 4px 12px rgba(0,0,0,.1);
}

.mapa-como-chegar iframe{ width:100%; height:100%; border:0; }

/* COMO CHEGAR – adição do espaçamento do botão */
.texto-como-chegar .btn{ margin-top:12px; }

/* ===================== */
/* FAB – ÍCONES CIRCULARES*/
/* ===================== */

.fab{
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  display: grid;
  gap: 12px;                /* espaçamento entre os botões */
  justify-items: end;
}

/* botão circular padrão */
.fab-icon{
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #11212D;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(0,0,0,.16);
  border: 1px solid rgba(17,33,45,.08);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease, background .15s ease, color .15s ease;
}
.fab-icon:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0,0,0,.20);
}

/* WhatsApp dominante em verde */
.fab-whatsapp{
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}
.fab-whatsapp:hover{ filter: brightness(.95); }

/* Instagram claro (mantém contraste AA sobre fundo escuro) */
.fab-instagram{
  background: #fff;
  color: #11212D;
}

/* Ligar escuro (destaque diferente e fica por último) */
.fab-call{
  background: #0f1f2b;
  color: #fff;
  border-color: transparent;
}

/* ajuste para não cobrir elementos */
@media (min-width: 992px){
  .fab{ bottom: 28px; right: 24px; }
}
@media (max-width: 360px){
  .fab{ right: 14px; bottom: 14px; gap: 10px; }
  .fab-icon{ width: 52px; height: 52px; }
}

/* ===== FOOTER ===== */
.site-footer {
  background-color:#11212D;
  color:#fff;
  /* zera padding lateral para a faixa inferior poder ir full-bleed */
  padding:3rem 0 0;                /* antes era 3rem 1rem 1rem */
}

.footer-top {
  display:flex; flex-wrap:wrap; justify-content:space-between; align-items:flex-start;
  gap:2rem; margin-bottom:2rem;
  /* o container limita a largura do conteúdo superior */
}
.footer-brand { flex:1 1 250px; }

/* >>> logo maior (responsivo) <<< */
:root{ --footer-logo-h: clamp(56px, 8vw, 88px); }  /* ajuste fino aqui se quiser */
.footer-logo img {
  height: var(--footer-logo-h);
  width:auto;
  display:block;
  margin-bottom:1rem;
}

.footer-claim { font-size:.95rem; color:#9BA8AB; max-width:280px; line-height:1.4; }

.footer-nav { flex:1 1 200px; }
.footer-links { list-style:none; padding:0; margin:0; }
.footer-links li { margin-bottom:.5rem; }
.footer-links a { color:#fff; text-decoration:none; font-weight:600; transition:color .3s ease; }
.footer-links a:hover { color:#9BA8AB; }

.footer-contact { flex:1 1 250px; font-style:normal; font-size:.95rem; line-height:1.6; }
.footer-contact a { color:#9BA8AB; text-decoration:none; display:inline-block; margin-top:.25rem; }
.footer-contact a:hover { color:#fff; }

/* Faixa inferior FULL-BLEED */
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.15); /* linha de ponta a ponta */
  padding:14px 0;
  /* hack full-bleed quando o pai tem padding: “estica” até as bordas da viewport */
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.footer-bottom-inner{
  width:90%;
  max-width:1140px;
  margin:0 auto;
  text-align:center;
  font-size:.85rem;
  color:#9BA8AB;
}
.footer-crm{ color:#9BA8AB; }

/* se houver esta variação embaixo no arquivo, mantenha-a coerente */
@media (max-width:768px){
  .footer-top { flex-direction:column; align-items:flex-start; }
}

}

/* ============ AJUSTES FINOS / POLIMENTO ============ */

/* 0) Variáveis utilitárias */
:root{
  --section-y: 64px;          /* respiro vertical entre blocos */
  --radius-lg: 16px;          /* cantos arredondados padrão */
  --shadow-md: 0 8px 24px rgba(0,0,0,.08);
}

/* 1) Hierarquia tipográfica consistente */
h1{ font-size: clamp(2.2rem, 4.2vw, 3.2rem); line-height: 1.25; }
h2{ font-size: clamp(1.6rem, 2.6vw, 2.1rem); line-height: 1.25; }
h3{ font-size: clamp(1.15rem, 1.8vw, 1.35rem); line-height: 1.3; }

/* 2) Espaçamento vertical entre seções */
section{ padding-top: var(--section-y); padding-bottom: var(--section-y); }
.sobre-clinica{ padding-top: calc(var(--section-y) * .7); }

/* 3) HERO mais imponente e equilibrada */
.hero{
  min-height: clamp(560px, 72vh, 800px);              /* um pouco mais alta */
}
.hero::after{
  background: linear-gradient(
      to bottom, rgba(17,33,45,.55), rgba(17,33,45,.35) 35%, rgba(17,33,45,.55)
  );                                                  /* overlay mais “premium” */
}
.hero .cta-buttons a{
  box-shadow: var(--shadow-md);
}
@media (max-width: 560px){
  .hero .cta-buttons a{ min-width: 100%; }
}

/* 4) Menu desktop – refininho no hover */
.main-nav a{
  position: relative;
}
.main-nav a::after{
  content:""; position:absolute; left:0; bottom:-6px;
  width:0; height:2px; background:#dbe0e6; transition: width .2s ease;
}
.main-nav a:hover::after{ width:100%; }

/* 5) Cards de diferenciais: mais respiro e “lift” suave */
.dif-card{
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 0 rgba(17,33,45,0.03);
}
.dif-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,.08);
}

/* 6) “Como Chegar”: respiro e mapa mais integrado */
.como-chegar{ padding-top: calc(var(--section-y) * .7); }
.mapa-como-chegar{
  height: 360px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* 7) FAB: não cobrir o mapa no desktop */
@media (min-width: 992px){
  .fab{ bottom: 28px; right: 24px; }
}

/* 8) Footer: pequeno ajuste de contraste e respiro */
.site-footer{ padding-top: calc(var(--section-y) * .9); }
.footer-bottom{ color: #aab6bb; }

/* 9) Botões – feedback de clique/hover mais “gostoso” */
.btn, .btn-outline{
  will-change: transform, box-shadow;
}
.btn:hover, .btn-outline:hover{
  box-shadow: 0 10px 28px rgba(0,0,0,.12);
}
.btn:active, .btn-outline:active{
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(0,0,0,.08);
}

/* 10) Mobile menu: fundo com leve blur (mais premium) */
@media (max-width: 900px){
  .main-nav{
    backdrop-filter: blur(6px);
    background: rgba(15,31,43,.92);                 /* em vez de 100% opaco */
  }
}

/* ===================== */
/* PREVIEW - SOBRE O DR. */
/* ===================== */

.sobre-dr-preview{
  background:#f7f9fb;
  padding-top: 56px;
  padding-bottom: 56px;
}

.sdp-grid{
  display:grid;
  grid-template-columns: 1.05fr 1.4fr; /* foto | texto */
  gap:36px;
  align-items:center;
}

.sdp-foto img{
  width:100%;
  height:auto;
  display:block;
  object-fit:cover;
  border-radius:16px;
  box-shadow:0 16px 42px rgba(17,33,45,.12);
}

.sdp-texto .sdp-title{
  font-family:"Merriweather", serif;
  font-weight:700;
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  color:#11212D;
  margin:0 0 8px 0;
}

.sdp-lead{
  color:#334a57;
  line-height:1.65;
  margin:0 0 16px 0;
}

/* assinatura (igual conceito da página Sobre) */
.sdp-assinatura{
  margin: 10px 0 8px;
  display:grid;
  gap:8px;
  justify-items:start;
}
.sdp-assinatura img{
  height:56px;
  width:auto;
  object-fit:contain;
  opacity:.96;
  filter: drop-shadow(0 8px 22px rgba(0,0,0,.06));
}
.sdp-assinatura-linha{
  width:220px;
  height:1px;
  background:rgba(17,33,45,.25);
}
.sdp-assinatura-info{
  color:#5a6a76;
  font-size:.95rem;
}

/* link discreto (no lugar dos botões) */
.sdp-link a{
  display:inline-block;
  margin-top:8px;
  color:#184B7A;
  font-weight:800;
  text-decoration:none;
}
.sdp-link a:hover{ text-decoration:underline; }

/* responsivo */
@media (max-width: 980px){
  .sdp-grid{
    grid-template-columns: 1fr;
    gap:20px;
  }
  .sdp-foto{ order:-1; } /* foto sobe no mobile */
}

/* ===================== */
/* AGENDAMENTOS (CTA)    */
/* ===================== */

.agendamentos{
  background:#f7f9fb;
  padding-top: 60px;
  padding-bottom: 60px;
}

.ag-wrap{
  display:grid;
  grid-template-columns: 1.2fr 1fr;   /* CTA | cards info */
  gap:34px;
  align-items:start;
}

.ag-cta{
  background:#fff;
  border:1px solid rgba(17,33,45,.08);
  border-radius:16px;
  padding:24px 22px;
  box-shadow:0 10px 28px rgba(0,0,0,.06);
}
.ag-cta h2{
  font-family:"Merriweather", serif;
  font-weight:700;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  color:#11212D;
  margin:0 0 6px 0;
}
.ag-lead{
  color:#3a5163;
  margin-bottom:16px;
}

.ag-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.ag-btn{
  display:inline-grid;
  grid-auto-flow:column;
  align-items:center;
  gap:10px;
  padding:12px 16px;
  border-radius:12px;
  text-decoration:none;
  font-weight:800;
  border:2px solid transparent;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.ag-btn svg{ display:block; }
.ag-btn:hover{ transform:translateY(-1px); box-shadow:0 10px 28px rgba(0,0,0,.12); }
.ag-btn:active{ transform:translateY(0); box-shadow:0 6px 16px rgba(0,0,0,.08); }

.ag-btn-whats{
  background:#25D366;
  color:#fff;
  border-color:#25D366;
}
.ag-btn-outline{
  background:transparent;
  color:#11212D;
  border-color:#11212D;
}
.ag-btn-outline:hover{
  background:#11212D;
  color:#fff;
}

.ag-note{
  margin-top:10px;
  color:#5a6a76;
  font-size:.95rem;
}

/* Cards de info (direita) */
.ag-info{
  display:grid;
  gap:12px;
}
.ag-card{
  display:grid;
  grid-template-columns: 44px 1fr;
  gap:12px;
  align-items:start;
  background:#fff;
  border:1px solid rgba(17,33,45,.08);
  border-radius:14px;
  padding:14px 16px;
  color:#11212D;
  text-decoration:none;
  box-shadow:0 8px 22px rgba(0,0,0,.05);
  transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease, background .15s ease;
}
.ag-card:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 30px rgba(0,0,0,.08);
  border-color: rgba(17,33,45,.16);
  background:#fdfefe;
}

.ag-ico{
  width:44px; height:44px;
  border-radius:12px;
  background:#11212D;
  color:#fff;
  display:grid; place-items:center;
}

.ag-content strong{
  display:block;
  font-weight:800;
  margin-top:2px;
}
.ag-content span{
  display:block;
  color:#3a5163;
}
.ag-content em{
  display:block;
  margin-top:4px;
  color:#184B7A;
  font-style:normal;
  font-weight:800;
  font-size:.92rem;
}

/* responsivo */
@media (max-width: 980px){
  .ag-wrap{
    grid-template-columns: 1fr;
    gap:20px;
  }
}

/* ===== Tema institucional p/ DIFERENCIAIS ===== */
.diferenciais{
  /* faixa escura com leve degradê “premium” */
  background:
    radial-gradient(1200px 300px at 20% -50%, rgba(255,255,255,.06), transparent 60%),
    linear-gradient(180deg, #11212D 0%, #0f1f2b 100%);
  padding-top: 64px;                     /* um pouco mais de respiro */
  padding-bottom: 64px;
}

/* título claro sobre o navy */
.dif-title{
  color:#fff;
  text-shadow:0 2px 10px rgba(0,0,0,.25);
}

/* cards: “glass” claro sobre fundo escuro */
.dif-card{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.14);
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
  backdrop-filter: blur(3px);
}
.dif-card:hover{
  border-color: rgba(255,255,255,.22);
  box-shadow: 0 16px 36px rgba(0,0,0,.22);
  transform: translateY(-3px);
}

/* ícone: pastilha clara com navy dentro (contraste AA) */
.dif-icon{
  background:#fff;
  color:#11212D;
}

/* texto nos cards: mais contraste sobre o escuro */
.dif-card h3{ color:#fff; }
.dif-card p{ color: #dbe0e6; }           /* pode usar #9BA8AB da paleta se quiser um tom mais frio */

/* responsivo: mantém a leitura no mobile */
@media (max-width:1024px){
  .diferenciais{ padding-top:48px; padding-bottom:48px; }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.ag-whats-link {
  display:block;
  margin-top:4px;
  color:#184B7A;
  font-weight:800;
  text-decoration:none;
}
.ag-whats-link:hover {
  text-decoration:underline;
}
/* Espaço extra entre botões da hero no mobile */
@media (max-width: 560px){
  .hero .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 14px; /* aumenta o espaço entre os botões */
  }
}
