/*
 * paginas_estaticas.css — Gerlot
 * Atualizado com paleta oficial do Manual de Marca
 * Cores: #022e47 · #007172 · #3daea3 · #fbaf17 · #96a499
 */

/* ══════════════════════════════════════════════════════════
   VARIÁVEIS GLOBAIS
   ══════════════════════════════════════════════════════════ */

:root {
  --navy:      #022e47;
  --teal-dk:   #007172;
  --teal:      #3daea3;
  --yellow:    #fbaf17;
  --sage:      #96a499;

  /* Derivadas */
  --navy-l:    #034263;
  --teal-dk-l: #00908f;
  --teal-l:    #5dc4ba;
  --yellow-d:  #e09a00;
  --yellow-l:  #ffd166;

  /* Neutros */
  --white:     #ffffff;
  --bg:        #f2f8f7;
  --bg-warm:   #fffbf2;
  --border:    #d8e8e6;
  --text:      #173042;
  --muted:     #4e626d;
  --muted-l:   #96a499;

  /* Sombras padronizadas */
  --shadow-sm: 0 2px  8px rgba(2,46,71,.06);
  --shadow-md: 0 6px 20px rgba(2,46,71,.09);
  --shadow-lg: 0 14px 36px rgba(2,46,71,.11);
  --shadow-xl: 0 24px 52px rgba(2,46,71,.13);

  /* Raios padronizados */
  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
}

/* ══════════════════════════════════════════════════════════
   BASE
   ══════════════════════════════════════════════════════════ */
body.gh-public-layout {
  background:
    radial-gradient(circle at top left,  rgba(61,174,163,0.12), transparent 30%),
    radial-gradient(circle at top right, rgba(251,175,23,0.13),  transparent 26%),
    radial-gradient(circle at bottom left, rgba(0,113,114,0.07), transparent 35%),
    var(--bg);
  color: var(--text);
  font-family: 'Lato', Arial, sans-serif;
}

.gh-public-layout * { box-sizing: border-box; }

.gh-public-layout .gh-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.gh-public-layout .gh-main {
  flex: 1 0 auto;
  padding-top: 74px;
}

.gh-public-layout .gh-wrap {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ══════════════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════════════ */
.gh-public-layout .gh-navbar {
  border: 0;
  border-bottom: 1px solid rgba(2,46,71,0.10);
  background: rgba(255,255,255,0.97) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
  min-height: 74px;
  margin-bottom: 0 !important;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

/* Efeito ao rolar — adicione via JS: document.querySelector('.gh-navbar').classList.add('gh-navbar--scrolled') */
.gh-public-layout .gh-navbar--scrolled {
  box-shadow: var(--shadow-lg) !important;
}

.gh-public-layout .gh-navbar .container {
  width: auto;
  max-width: 1180px;
}

/* navbar-header: bootstrap mobile-first (float só no desktop) */
.gh-public-layout .navbar-header {
  height: 74px;
}

.gh-public-layout .navbar-brand {
  height: 74px;
  padding: 0 15px !important;
  display: flex;
  align-items: center;
  margin: 0 !important;
}

.gh-public-layout .gh-brand-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.gh-public-layout .navbar-brand img {
  height: 36px;
  width: auto;
  display: block;
}

.gh-public-layout .gh-brand-text {
  display: block;
  font-size: 13px;
  line-height: 1.2;
  color: var(--muted);
  font-weight: 800;
  max-width: 235px;
}

.gh-public-layout .navbar-toggle {
  /* Bootstrap mostra/esconde via JS — não mexer no display */
  margin-top: 18px;
  margin-right: 15px;
  border-color: rgba(2,46,71,0.18);
  background: var(--white);
}

.gh-public-layout .navbar-toggle:hover,
.gh-public-layout .navbar-toggle:focus {
  background: var(--bg);
}

.gh-public-layout .navbar-toggle .icon-bar {
  background: var(--navy);
}
/* Esconder hamburguer no desktop — Bootstrap às vezes perde isso com CSS customizado */
@media (min-width: 768px) {
  .gh-public-layout .navbar-toggle { display: none !important; }
  .gh-public-layout .navbar-collapse { display: block !important; height: auto !important; }
}
@media (max-width: 767px) {
  .gh-public-layout .navbar-toggle { display: block !important; }
}


/* Navbar collapse — NÃO definir height aqui, Bootstrap controla */
.gh-public-layout .gh-navbar .navbar-collapse {
  padding-left: 0;
  padding-right: 0;
  border-top: 0 !important;
  box-shadow: none !important;
}

/* Links — estilos base mobile-first */
.gh-public-layout .gh-navbar .navbar-nav > li > a {
  padding: 12px 16px !important;
  color: var(--muted) !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  background: transparent !important;
  transition: color .2s ease, background-color .2s ease;
  position: relative;
}

.gh-public-layout .gh-navbar .navbar-nav > li > a:hover,
.gh-public-layout .gh-navbar .navbar-nav > li > a:focus {
  color: var(--navy) !important;
  background-color: rgba(251,175,23,0.08) !important;
  border-radius: 8px;
}

.gh-public-layout .gh-navbar .navbar-nav > li.active > a {
  color: var(--navy) !important;
  background-color: transparent !important;
}

.gh-public-layout .gh-navbar .gh-login-link > a {
  padding: 12px 16px !important;
  color: var(--navy) !important;
}

.gh-public-layout .gh-navbar .gh-nav-cta {
  display: flex;
  align-items: center;
}

/* ── Desktop >= 992px: altura fixa 74px ── */
@media (min-width: 768px) {
  /* Desktop: navbar-header flutua à esquerda, collapse flutua à direita */
  .gh-public-layout .navbar-header { float: left; }

  .gh-public-layout .gh-navbar .navbar-collapse {
    background: transparent;
    /* Bootstrap gerencia height — não forçar aqui */
  }

  .gh-public-layout .gh-navbar .navbar-nav {
    float: right !important;
    margin: 0 !important;
  }

  .gh-public-layout .gh-navbar .navbar-nav > li {
    float: left;
    position: relative; /* necessário para dropdown funcionar */
  }

  .gh-public-layout .gh-navbar .navbar-nav > li > a {
    height: 74px !important;
    line-height: 74px !important;
    padding: 0 16px !important;
    margin: 0 !important;
    display: block !important;
    box-sizing: border-box !important;
  }

  /* Underline animado */
  .gh-public-layout .gh-navbar .navbar-nav > li > a::after {
    content: '';
    position: absolute;
    bottom: 14px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--yellow);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform .22s ease;
  }

  .gh-public-layout .gh-navbar .navbar-nav > li > a:hover::after,
  .gh-public-layout .gh-navbar .navbar-nav > li.active > a::after {
    transform: scaleX(1);
  }

  .gh-public-layout .gh-navbar .navbar-nav > li > a:hover,
  .gh-public-layout .gh-navbar .navbar-nav > li > a:focus {
    background-color: transparent !important;
    border-radius: 0;
  }

  .gh-public-layout .gh-navbar .gh-login-link > a {
    height: 74px !important;
    line-height: 74px !important;
    padding: 0 16px !important;
  }

  .gh-public-layout .gh-navbar .gh-nav-cta {
    height: 74px;
    display: flex;
    align-items: center;
  }
}

/* Botão WhatsApp */
.gh-public-layout .gh-navbar .gh-whatsapp-btn {
  margin-left: 12px !important;
  padding: 9px 16px !important;
  border-radius: 999px;
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #25d366, #1ebe5d) !important;
  color: #ffffff !important;
  font-weight: 900 !important;
  font-size: 13px !important;
  box-shadow: 0 10px 28px rgba(37,211,102,.35);
  transition: all .2s ease;
  position: relative;
}

.gh-public-layout .gh-whatsapp-btn i { font-size: 15px; }

.gh-public-layout .gh-whatsapp-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 34px rgba(37,211,102,.45);
  background: linear-gradient(135deg, #2ee676, #1ebe5d) !important;
}

.gh-public-layout .gh-whatsapp-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  animation: ghPulse 2.2s infinite;
}

@keyframes ghPulse {
  0%   { box-shadow: 0 0 0 0   rgba(37,211,102,.35); }
  70%  { box-shadow: 0 0 0 10px rgba(37,211,102,.0);  }
  100% { box-shadow: 0 0 0 0   rgba(37,211,102,.0);   }
}

.gh-public-layout .dropdown-menu {
  border-radius: var(--radius);
  border: 1px solid rgba(2,46,71,0.10);
  box-shadow: var(--shadow-xl);
}

/* ══════════════════════════════════════════════════════════
   SEÇÕES
   ══════════════════════════════════════════════════════════ */
.gh-public-layout .gh-section         { padding: 80px 0; }
.gh-public-layout .gh-section-compact { padding: 48px 0; }

.gh-public-layout .gh-section-soft {
  background: linear-gradient(180deg,
    rgba(61,174,163,0.06) 0%,
    rgba(255,255,255,0.95) 40%,
    rgba(251,175,23,0.04) 100%
  );
}

.gh-public-layout .gh-section-dark {
  background: linear-gradient(135deg, #0f3348 0%, var(--navy) 60%, #013228 100%);
  color: var(--white);
}

/* ══════════════════════════════════════════════════════════
   TIPOGRAFIA / EYEBROW / TÍTULO
   ══════════════════════════════════════════════════════════ */
.gh-public-layout .gh-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow-d);
  margin-bottom: 10px;
  padding: 4px 12px;
  background: rgba(251,175,23,0.13);
  border-radius: 999px;
  border: 1px solid rgba(251,175,23,0.28);
}

.gh-public-layout .gh-title-block {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.gh-public-layout .gh-title-block.gh-left {
  max-width: none;
  margin: 0 0 30px;
  text-align: left;
}

.gh-public-layout .gh-title-block h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.06;
  letter-spacing: -0.8px;
  color: var(--navy);
  font-weight: 900;
}

.gh-public-layout .gh-title-block p {
  margin: 16px 0 0;
  font-size: 18px;
  line-height: 1.68;
  color: var(--muted);
}

.gh-public-layout .gh-section-dark .gh-title-block h2,
.gh-public-layout .gh-section-dark .gh-title-block p {
  color: var(--white);
}

/* ══════════════════════════════════════════════════════════
   BADGE
   ══════════════════════════════════════════════════════════ */
.gh-public-layout .gh-badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(251,175,23,0.16);
  border: 1px solid rgba(251,175,23,0.38);
  color: #8c6200;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}

/* ══════════════════════════════════════════════════════════
   BOTÕES
   ══════════════════════════════════════════════════════════ */
.gh-public-layout .gh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: var(--radius);
  padding: 13px 22px;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none !important;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
  text-align: center;
  cursor: pointer;
  letter-spacing: .01em;
}

.gh-public-layout .gh-btn:hover   { transform: translateY(-2px); }
.gh-public-layout .gh-btn:active  { transform: translateY(0); }

/* Focus acessível */
.gh-public-layout .gh-btn:focus-visible,
.gh-public-layout .gh-form-submit:focus-visible {
  outline: 3px solid rgba(251,175,23,.65);
  outline-offset: 3px;
}

.gh-public-layout .gh-btn-primary {
  background: linear-gradient(135deg, var(--yellow), #ff8c00);
  color: #1a1a1a !important;
  box-shadow: 0 10px 26px rgba(251,175,23,.36);
}

.gh-public-layout .gh-btn-primary:hover {
  box-shadow: 0 14px 32px rgba(251,175,23,.48);
}

.gh-public-layout .gh-btn-secondary {
  background: linear-gradient(135deg, #ff9c26, #ff7a00);
  color: var(--white) !important;
  box-shadow: 0 10px 26px rgba(255,122,0,.28);
}

.gh-public-layout .gh-btn-teal {
  background: linear-gradient(135deg, var(--teal), var(--teal-dk));
  color: var(--white) !important;
  box-shadow: 0 10px 26px rgba(61,174,163,.30);
}

.gh-public-layout .gh-btn-teal:hover {
  box-shadow: 0 14px 32px rgba(61,174,163,.42);
}

.gh-public-layout .gh-btn-light {
  background: rgba(255,255,255,0.94);
  color: var(--navy) !important;
  border: 1px solid rgba(2,46,71,0.12);
  box-shadow: var(--shadow-sm);
}

.gh-public-layout .gh-btn-light:hover {
  background: var(--white);
  border-color: rgba(251,175,23,0.50);
  box-shadow: var(--shadow-md);
}

/* ══════════════════════════════════════════════════════════
   CARDS
   ══════════════════════════════════════════════════════════ */
.gh-public-layout .gh-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-lg);
  height: 100%;
  transition: transform .22s ease, box-shadow .22s ease;
}

.gh-public-layout .gh-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.gh-public-layout .gh-card-soft {
  background: linear-gradient(160deg,
    rgba(255,255,255,1) 0%,
    rgba(242,248,247,0.95) 50%,
    rgba(255,248,232,0.95) 100%
  );
}

/* Card com sotaque colorido no topo */
.gh-public-layout .gh-card-accent-teal  { border-top: 3px solid var(--teal);    }
.gh-public-layout .gh-card-accent-navy  { border-top: 3px solid var(--navy);    }
.gh-public-layout .gh-card-accent-yellow{ border-top: 3px solid var(--yellow);  }

.gh-public-layout .gh-card-dark {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.14);
  box-shadow: none;
}

.gh-public-layout .gh-card-dark h3,
.gh-public-layout .gh-card-dark p {
  color: var(--white);
}

.gh-public-layout .gh-card h3 {
  color: var(--navy);
  font-weight: 900;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 22px;
}

.gh-public-layout .gh-card p {
  color: var(--muted);
  line-height: 1.68;
}

/* ══════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════ */
.gh-public-layout .gh-hero {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border-bottom: 1px solid rgba(2,46,71,0.08);
}

/* Decoração geométrica inspirada nas bolas de loteria do manual */
.gh-public-layout .gh-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 340px; height: 340px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(61,174,163,0.18) 0%, transparent 70%);
}

.gh-public-layout .gh-hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 260px; height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(251,175,23,0.15) 0%, transparent 70%);
}

.gh-public-layout .gh-hero-banner { display: none; } /* removido — blob substitui */

.gh-public-layout .gh-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 24px;
  padding-bottom: 40px;
}

.gh-public-layout .gh-hero-cell { display: block; vertical-align: top; }

.gh-public-layout .gh-hero-copy {
  max-width: 650px;
  padding: 12px 0 24px;
}

.gh-public-layout .gh-hero-title {
  margin: 0;
  color: var(--navy);
  font-weight: 900;
  font-size: 54px;
  line-height: 1.02;
  letter-spacing: -1.2px;
}

/* Destaque colorido em parte do título */
.gh-public-layout .gh-hero-title .gh-title-accent {
  color: var(--teal-dk);
}

.gh-public-layout .gh-hero-text {
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.gh-public-layout .gh-hero-actions { margin-top: 28px; }
.gh-public-layout .gh-hero-actions .gh-btn {
  margin-right: 10px;
  margin-bottom: 10px;
}

.gh-public-layout .gh-hero-points {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.gh-public-layout .gh-hero-points li {
  display: inline-block;
  margin-right: 16px;
  margin-bottom: 8px;
  color: var(--teal-dk);
  font-weight: 700;
}

/* ══════════════════════════════════════════════════════════
   PAINEL (mini dashboard no hero)
   ══════════════════════════════════════════════════════════ */
.gh-public-layout .gh-panel {
  background: rgba(255,255,255,0.88);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 22px;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
  margin-top: 40px;
}

.gh-public-layout .gh-panel::before {
  content: "";
  position: absolute;
  top: -100px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 999px;
  background: rgba(251,175,23,0.16);
}

.gh-public-layout .gh-panel::after {
  content: "";
  position: absolute;
  bottom: -110px; left: -60px;
  width: 220px; height: 220px;
  border-radius: 999px;
  background: rgba(61,174,163,0.14);
}

.gh-public-layout .gh-panel-in { position: relative; z-index: 1; }

.gh-public-layout .gh-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  color: var(--navy);
  font-weight: 800;
}

.gh-public-layout .gh-status {
  font-size: 13px;
  color: var(--teal-dk);
  background: rgba(61,174,163,0.14);
  border-radius: 999px;
  padding: 5px 12px;
  font-weight: 700;
}

.gh-public-layout .gh-mini-box {
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 12px;
}

.gh-public-layout .gh-mini-box small {
  display: block;
  color: var(--muted);
  margin-bottom: 6px;
  font-size: 13px;
}

.gh-public-layout .gh-mini-box strong {
  display: block;
  font-size: 30px;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}

.gh-public-layout .gh-summary-title {
  margin: 0 0 12px;
  font-size: 17px;
  color: var(--navy);
  font-weight: 800;
}

/* Summary boxes com cores do manual */
.gh-public-layout .gh-summary-box {
  padding: 11px 12px;
  text-align: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  transition: border-color .18s, background .18s;
}

.gh-public-layout .gh-summary-box:hover {
  border-color: var(--teal);
  background: rgba(61,174,163,0.06);
}

/* ══════════════════════════════════════════════════════════
   CARDS DE ESTATÍSTICA
   ══════════════════════════════════════════════════════════ */
.gh-public-layout .gh-stat-card {
  background: linear-gradient(160deg,
    rgba(61,184,176,0.12) 0%,
    rgba(255,255,255,0.98) 60%
  );
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 18px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  height: 100%;
  transition: transform .22s ease, box-shadow .22s ease;
}

.gh-public-layout .gh-stat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.gh-public-layout .gh-stat-card strong {
  display: block;
  color: var(--navy);
  font-size: 36px;
  line-height: 1;
  margin-bottom: 10px;
}

.gh-public-layout .gh-stat-card p {
  color: var(--muted);
  margin: 0;
}

/* ══════════════════════════════════════════════════════════
   FEATURE BOXES
   ══════════════════════════════════════════════════════════ */

/* Row com alturas iguais para todos os cards (alinhamento uniforme
   mesmo com textos de tamanhos diferentes) */
.gh-public-layout .gh-feature-row {
  display: flex;
  flex-wrap: wrap;
}
.gh-public-layout .gh-feature-row > [class*="col-"] {
  display: flex;
}
.gh-public-layout .gh-feature-row .gh-card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.gh-public-layout .gh-feature-box {
  text-align: center;
  border-top: 3px solid transparent;
  background-clip: padding-box;
}

.gh-public-layout .gh-feature-box .gh-card {
  text-align: center;
  border-top: 3px solid transparent;
  background-clip: padding-box;
}

/* Ícones alternando cores da paleta via nth-child */
.gh-public-layout .gh-feature-box:nth-child(1) .gh-card { border-top-color: var(--teal); }
.gh-public-layout .gh-feature-box:nth-child(2) .gh-card { border-top-color: var(--yellow); }
.gh-public-layout .gh-feature-box:nth-child(3) .gh-card { border-top-color: var(--teal-dk); }
.gh-public-layout .gh-feature-box:nth-child(4) .gh-card { border-top-color: var(--navy); }
.gh-public-layout .gh-feature-box:nth-child(5) .gh-card { border-top-color: var(--teal); }
.gh-public-layout .gh-feature-box:nth-child(6) .gh-card { border-top-color: var(--yellow); }

.gh-public-layout .gh-feature-icon {
  font-size: 60px;
  color: var(--yellow);
  margin-bottom: 14px;
}

/* Alterna cor dos ícones também */
.gh-public-layout .gh-feature-box:nth-child(2) .gh-feature-icon { color: var(--teal); }
.gh-public-layout .gh-feature-box:nth-child(3) .gh-feature-icon { color: var(--teal-dk); }
.gh-public-layout .gh-feature-box:nth-child(4) .gh-feature-icon { color: var(--navy); }
.gh-public-layout .gh-feature-box:nth-child(5) .gh-feature-icon { color: var(--teal); }
.gh-public-layout .gh-feature-box:nth-child(6) .gh-feature-icon { color: var(--yellow-d); }

/* ══════════════════════════════════════════════════════════
   VÍDEOS
   ══════════════════════════════════════════════════════════ */
.gh-public-layout .gh-video-box .gh-card { text-align: center; }

.gh-public-layout .gh-video-preview {
  border-radius: var(--radius);
  overflow: hidden;
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(2,46,71,.96), rgba(0,113,114,.86));
}

.gh-public-layout .gh-video-preview.yellow {
  background: linear-gradient(135deg, rgba(251,175,23,.95), rgba(2,46,71,.90));
}

.gh-public-layout .gh-video-preview.teal {
  background: linear-gradient(135deg, rgba(61,174,163,.96), rgba(0,113,114,.88));
}

.gh-public-layout .gh-play {
  width: 72px; height: 72px;
  line-height: 72px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  border: 2px solid rgba(255,255,255,0.35);
  display: inline-block;
  font-size: 28px;
  margin-bottom: 10px;
  transition: background .2s, transform .2s;
}

.gh-public-layout .gh-play:hover {
  background: rgba(255,255,255,0.28);
  transform: scale(1.08);
}

.gh-public-layout .gh-video-label { font-weight: 700; font-size: 14px; }

/* ══════════════════════════════════════════════════════════
   FORMULÁRIO
   ══════════════════════════════════════════════════════════ */
.gh-public-layout .gh-form-card .form-control,
.gh-public-layout .gh-form-card input[type="text"],
.gh-public-layout .gh-form-card input[type="email"],
.gh-public-layout .gh-form-card input[type="tel"],
.gh-public-layout .gh-form-card input[type="number"],
.gh-public-layout .gh-form-card select {
  width: 100%;
  height: 52px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(2,46,71,0.16);
  box-shadow: none;
  text-align: center;
  font-size: 17px;
  font-family: 'Lato', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
}

.gh-public-layout .gh-form-card .form-control:focus,
.gh-public-layout .gh-form-card input:focus,
.gh-public-layout .gh-form-card select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(61,174,163,.18);
}

.gh-public-layout .gh-form-submit {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--yellow), #ff8c00);
  color: #1a1a1a;
  font-size: 19px;
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(251,175,23,.36);
  cursor: pointer;
  font-family: 'Lato', Arial, sans-serif;
  transition: transform .18s ease, box-shadow .18s ease;
  letter-spacing: .02em;
}

.gh-public-layout .gh-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(251,175,23,.48);
}

/* ══════════════════════════════════════════════════════════
   PREÇOS
   ══════════════════════════════════════════════════════════ */
.gh-public-layout .gh-price-main {
  font-size: 54px;
  color: var(--yellow-d);
  font-weight: 900;
  line-height: 1;
}

.gh-public-layout .gh-price-alt {
  font-size: 42px;
  color: var(--teal-dk);
  font-weight: 900;
  line-height: 1;
}

.gh-public-layout .gh-price-selector-card { overflow: hidden; }

/* Row interna do seletor de precos — usar flex para igualar alturas das colunas
   (evita que o box "Valor mensal total" sobreponha "Monte seu plano" com fontes maiores) */
.gh-public-layout .gh-price-selector-card > .row {
  display: flex;
  flex-wrap: wrap;
}
.gh-public-layout .gh-price-selector-card > .row > [class*="col-"] {
  display: flex;
  flex-direction: column;
}
.gh-public-layout .gh-price-selector-card .gh-price-highlight {
  width: 100%;
}

.gh-public-layout .gh-tfl-label {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.gh-public-layout .gh-tfl-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}

.gh-public-layout .gh-tfl-btn {
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--navy);
  border-radius: var(--radius-sm);
  padding: 11px 16px;
  font-weight: 800;
  font-size: 15px;
  transition: all .2s ease;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.gh-public-layout .gh-tfl-btn:hover {
  transform: translateY(-1px);
  border-color: var(--teal);
  color: var(--teal-dk);
  box-shadow: var(--shadow-md);
}

.gh-public-layout .gh-tfl-btn.active {
  background: linear-gradient(135deg, var(--yellow), #ff8c00);
  color: #1a1a1a;
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(251,175,23,.30);
}

/* Foco visível para acessibilidade por teclado */
.gh-public-layout .gh-tfl-btn:focus-visible,
.gh-public-layout .gh-btn:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
}

.gh-public-layout .gh-price-breakdown {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: 8px;
}

.gh-public-layout .gh-price-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 15px;
}

.gh-public-layout .gh-price-line strong {
  color: var(--navy);
  font-weight: 900;
}

.gh-public-layout .gh-price-highlight {
  background: linear-gradient(160deg,
    rgba(255,255,255,1) 0%,
    rgba(255,248,228,0.98) 100%
  );
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  height: 100%;
  box-shadow: var(--shadow-lg);
}

.gh-public-layout .gh-price-highlight-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--yellow-d);
  margin-bottom: 10px;
}

.gh-public-layout .gh-price-highlight-text {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}

/* ══════════════════════════════════════════════════════════
   DEPOIMENTOS
   ══════════════════════════════════════════════════════════ */
.gh-public-layout .gh-testimonial-card-light {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-lg);
  height: 100%;
  transition: transform .22s ease, box-shadow .22s ease;
  position: relative;
  overflow: hidden;
}

/* Barra de cor única por card */
.gh-public-layout .gh-testimonial-card-light:nth-child(1) { border-top: 3px solid var(--teal); }
.gh-public-layout .gh-testimonial-card-light:nth-child(2) { border-top: 3px solid var(--yellow); }
.gh-public-layout .gh-testimonial-card-light:nth-child(3) { border-top: 3px solid var(--teal-dk); }

.gh-public-layout .gh-testimonial-card-light:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.gh-public-layout .gh-testimonial-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.gh-public-layout .gh-testimonial-avatar {
  width: 60px; height: 60px;
  border-radius: 999px;
  overflow: hidden;
  flex: 0 0 60px;
  border: 3px solid rgba(61,174,163,0.45);
  background: var(--white);
}

.gh-public-layout .gh-testimonial-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.gh-public-layout .gh-testimonial-name {
  margin: 0 0 3px;
  font-size: 19px;
  color: var(--navy);
  font-weight: 900;
}

.gh-public-layout .gh-testimonial-place {
  margin: 0;
  color: var(--teal-dk);
  font-size: 13px;
  font-weight: 700;
}

.gh-public-layout .gh-testimonial-quote-icon {
  font-size: 48px;
  line-height: 1;
  color: var(--teal);
  margin-bottom: 6px;
  font-weight: 900;
  opacity: .65;
}

.gh-public-layout .gh-testimonial-text-light {
  margin: 0;
  color: #4f6673;
  line-height: 1.78;
  font-size: 15px;
  text-align: left;
}

/* ══════════════════════════════════════════════════════════
   SEÇÕES COLORIDAS
   ══════════════════════════════════════════════════════════ */
.gh-public-layout .gh-yellow-section {
  background: linear-gradient(135deg, var(--yellow), #ff8c00);
  text-align: center;
}

.gh-public-layout .gh-teal-section {
  background: linear-gradient(135deg, var(--teal), var(--teal-dk));
  text-align: center;
  color: var(--white);
}

.gh-public-layout .gh-blue-section {
  background: linear-gradient(135deg, var(--navy), #013a5c);
  text-align: center;
}

/* ══════════════════════════════════════════════════════════
   DIVIDER COM COR
   ══════════════════════════════════════════════════════════ */
.gh-public-layout .gh-divider {
  height: 4px;
  border: none;
  background: linear-gradient(90deg,
    var(--teal)    0%,
    var(--yellow)  40%,
    var(--teal-dk) 100%
  );
  border-radius: 999px;
  margin: 8px 0 32px;
  width: 72px;
}

.gh-public-layout .gh-divider.center { margin: 8px auto 32px; }

/* ══════════════════════════════════════════════════════════
   CARDS SIMULADOR (gh-sim-*)
   ══════════════════════════════════════════════════════════ */
.gh-public-layout .gh-sim-card {
  background: rgba(255,255,255,0.20);
  border-radius: var(--radius);
  padding: 20px 14px;
  height: 100%;
}

.gh-public-layout .gh-sim-card-white {
  background: rgba(255,255,255,0.96);
  border-radius: var(--radius);
  padding: 20px 14px;
  height: 100%;
}

.gh-public-layout .gh-sim-card h2,
.gh-public-layout .gh-sim-card h3,
.gh-public-layout .gh-sim-card h4,
.gh-public-layout .gh-sim-card-white h2,
.gh-public-layout .gh-sim-card-white h3,
.gh-public-layout .gh-sim-card-white h4 { font-weight: 900; }

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.gh-public-layout .gh-footer {
  flex-shrink: 0;
  border-top: 2px solid rgba(2,46,71,0.10);
  background: rgba(255,255,255,0.92);
  padding: 40px 0 24px;
  color: var(--muted);
}

/* Barra de gradiente no topo do footer */
.gh-public-layout .gh-footer::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--yellow), var(--teal-dk));
  margin-bottom: 36px;
}

.gh-public-layout .gh-footer .container {
  width: auto;
  max-width: 1180px;
}

.gh-public-layout .gh-footer h4 {
  margin-top: 0;
  margin-bottom: 14px;
  color: var(--navy);
  font-weight: 900;
}

.gh-public-layout .gh-footer p,
.gh-public-layout .gh-footer a,
.gh-public-layout .gh-footer li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.gh-public-layout .gh-footer .gh-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 999px;
  margin-right: 8px;
  border: 1px solid rgba(2,46,71,0.14);
  background: var(--white);
  color: var(--navy);
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}

.gh-public-layout .gh-footer .gh-social a:hover {
  background: var(--yellow);
  color: #1a1a1a;
  border-color: var(--yellow);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════════════
   MODAL VÍDEO
   ══════════════════════════════════════════════════════════ */
.gh-public-layout .gh-modal-video {
  display: none;
  width: 60%; height: 80%;
  padding: 20px 5px;
  background-color: var(--navy);
  border-radius: var(--radius-lg);
}

/* ══════════════════════════════════════════════════════════
   SCROLL & ANCHOR
   ══════════════════════════════════════════════════════════ */
html { scroll-behavior: smooth; }
section { scroll-margin-top: 90px; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVO
   ══════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
  .gh-public-layout .gh-main { padding-top: 68px; }
  .gh-public-layout .gh-navbar { min-height: 68px; }
  .gh-public-layout .gh-navbar .container { height: auto; min-height: 68px; }
  .gh-public-layout .navbar-header { float: none !important; height: 68px; }
  .gh-public-layout .navbar-brand  { height: 68px; padding: 0 15px !important; }
  .gh-public-layout .navbar-brand img { height: 32px; }
  .gh-public-layout .gh-brand-text { font-size: 13px; max-width: 180px; line-height: 1.25; }

  /* Collapse mobile: deixar Bootstrap controlar height/overflow para animar corretamente */
  .gh-public-layout .gh-navbar .navbar-collapse.in,
  .gh-public-layout .gh-navbar .navbar-collapse.collapsing {
    background: rgba(255,255,255,.97) !important;
    border-top: 1px solid #edf2f3 !important;
    box-shadow: 0 12px 24px rgba(2,46,71,0.08) !important;
    padding: 8px 15px 14px;
  }

  .gh-public-layout .gh-navbar .navbar-nav { height: auto; margin: 0 !important; float: none !important; }
  .gh-public-layout .gh-navbar .navbar-nav > li { height: auto; float: none; overflow: visible !important; }

  .gh-public-layout .gh-navbar .navbar-nav > li > a,
  .gh-public-layout .gh-navbar .gh-login-link > a {
    height: auto !important;
    line-height: 20px !important;
    padding: 12px 12px !important;
    margin: 0 !important;
    display: block !important;
    border-radius: var(--radius-sm);
  }

  .gh-public-layout .gh-navbar .navbar-nav > li > a::after { display: none; }

  .gh-public-layout .gh-navbar .gh-nav-cta {
    height: auto; display: block; margin-top: 8px;
  }

  .gh-public-layout .gh-navbar .gh-nav-cta > a,
  .gh-public-layout .gh-navbar .gh-whatsapp-btn {
    margin: 0 !important;
    height: auto !important;
    line-height: 20px !important;
    min-height: 0 !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 10px 14px !important;
    font-size: 13px !important;
    box-shadow: 0 8px 20px rgba(37,211,102,.28) !important;
  }

  .gh-public-layout .gh-hero-inner { padding-top: 24px; padding-bottom: 32px; }
  .gh-public-layout .gh-hero-title,
  .gh-public-layout .gh-title-block h2 { font-size: 36px; }
  .gh-public-layout .gh-hero-copy { max-width: none; padding-top: 8px; padding-bottom: 18px; }
  .gh-public-layout .gh-modal-video { width: 92%; height: 65%; }
}

@media (max-width: 767px) {
  .gh-public-layout .gh-wrap { padding: 0 16px; }
  /* brand-text some apenas em telas muito pequenas (< 480px) */
  .gh-public-layout .gh-brand-text { font-size: 13px; line-height: 1.25; }
  .gh-public-layout .gh-hero-title { font-size: 30px; }
  .gh-public-layout .gh-feature-icon { font-size: 50px; }
  .gh-public-layout .gh-price-main { font-size: 42px; }
  .gh-public-layout .gh-price-alt  { font-size: 34px; }
  .gh-public-layout .gh-modal-video { width: 96%; height: 52%; }
  .gh-public-layout .gh-tfl-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .gh-public-layout .gh-tfl-btn {
    text-align: center;
  }
  .gh-public-layout .gh-price-line { font-size: 14px; }
  .gh-public-layout .gh-section { padding: 56px 0; }
  .gh-public-layout .gh-card { border-radius: var(--radius); }

  /* Hero actions: botões do par ficam empilhados em telas < 400px */
  .gh-public-layout .gh-hero-actions > div {
    flex-direction: column;
  }
}

/* ══════════════════════════════════════════════════════════
   TOPBAR + NAVBAR POSICIONAMENTO
   ══════════════════════════════════════════════════════════ */
#gh-topbar {
  background: #022e47;
  height: 34px;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1035;
  padding: 0 24px;
  justify-content: center;
  gap: 28px;
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,.70);
}

#gh-topbar span {
  display: flex;
  align-items: center;
  gap: 6px;
}

#gh-topbar .fa-phone    { color: #3daea3; font-size: 11px; }
#gh-topbar .fa-envelope { color: #fbaf17; font-size: 11px; }
#gh-topbar .fa-clock-o  { color: #3daea3; font-size: 11px; }

/* Navbar fica logo abaixo da topbar */
.gh-public-layout .gh-navbar.navbar-fixed-top { top: 34px !important; }
.gh-public-layout .gh-main { padding-top: 108px !important; }

/* Footer CTA */
.gh-footer-cta {
  background: linear-gradient(135deg, #022e47, #034e72);
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.gh-footer-cta-label {
  color: rgba(255,255,255,.5);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.gh-footer-cta-title {
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}

.gh-footer-cta-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.gh-footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 900;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .18s, box-shadow .18s;
}

.gh-footer-cta-btn:hover { transform: translateY(-1px); text-decoration: none; }

.gh-footer-cta-btn--yellow {
  background: linear-gradient(135deg, #fbaf17, #ff8c00);
  color: #1a1a1a !important;
  box-shadow: 0 6px 18px rgba(251,175,23,.32);
}

.gh-footer-cta-btn--green {
  background: linear-gradient(135deg, #25d366, #1ebe5d);
  color: #fff !important;
  box-shadow: 0 6px 18px rgba(37,211,102,.25);
}

/* Footer TeamViewer link */
.gh-footer-teamviewer {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  padding: 9px 16px;
  border-radius: 10px;
  background: #f2f8f7;
  border: 1px solid #d8e8e6;
  color: #022e47;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: background .2s;
}

.gh-footer-teamviewer:hover {
  background: #e4f2ef;
  color: #022e47;
  text-decoration: none;
}

/* Footer bottom bar */
.gh-footer-bottom {
  border-top: 1px solid rgba(2,46,71,.10);
  padding-top: 16px;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: #96a499;
}

.gh-footer-bottom a {
  color: #96a499;
  text-decoration: none;
  margin-left: 16px;
  font-size: 12px;
}

.gh-footer-bottom a:hover { color: #022e47; }

/* Mobile: some topbar, navbar volta ao topo */
@media (max-width: 767px) {
  #gh-topbar { display: none !important; }
  .gh-public-layout .gh-navbar.navbar-fixed-top { top: 0 !important; }
  .gh-public-layout .gh-main { padding-top: 74px !important; }
  .gh-footer-cta { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 420px) {
  .gh-public-layout .gh-brand-text { display: none; }
}

/* ══════════════════════════════════════════════════════════
   VALIDACAO INLINE — formulario de contato
   ══════════════════════════════════════════════════════════ */
.gh-public-layout .form-control.gh-invalido,
.gh-public-layout input.gh-invalido,
.gh-public-layout select.gh-invalido {
  border-color: #d9534f !important;
  background-color: #fff8f7;
}
.gh-public-layout .gh-erro-inline {
  color: #d9534f;
  font-size: 13px;
  font-weight: 600;
  margin-top: 4px;
  margin-left: 2px;
  line-height: 1.4;
}

/* ══════════════════════════════════════════════════════════
   PROVA SOCIAL (hero)
   ══════════════════════════════════════════════════════════ */
.gh-public-layout .gh-prova-social {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  margin-bottom: 16px;
  background: rgba(61, 174, 163, 0.10);
  border: 1px solid rgba(61, 174, 163, 0.28);
  border-radius: 999px;
  font-size: 14px;
  color: var(--navy);
  font-weight: 600;
}
.gh-public-layout .gh-prova-social strong {
  color: var(--teal-dk);
  font-weight: 900;
}

/* ══════════════════════════════════════════════════════════
   WHATSAPP FLUTUANTE (sempre visivel)
   ══════════════════════════════════════════════════════════ */
.gh-wpp-flutuante {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 9999;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}
.gh-wpp-flutuante:hover,
.gh-wpp-flutuante:focus {
  color: #fff;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.55);
  text-decoration: none;
}

/* ══════════════════════════════════════════════════════════
   BOTAO "VOLTAR AO TOPO"
   ══════════════════════════════════════════════════════════ */
.gh-topo-btn {
  position: fixed;
  bottom: 90px;
  right: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #022e47;
  color: #fff;
  font-size: 18px;
  border: 0;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(2, 46, 71, 0.35);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.gh-topo-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.gh-topo-btn:hover,
.gh-topo-btn:focus {
  background: #007172;
  outline: none;
}

/* ══════════════════════════════════════════════════════════
   DEPOIMENTOS — carrossel horizontal no mobile
   ══════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
  .gh-public-layout .gh-testimonials-row {
    display: flex !important;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-padding: 16px;
    gap: 12px;
    padding-bottom: 10px;
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .gh-public-layout .gh-testimonials-row > [class*="col-"] {
    flex: 0 0 85%;
    max-width: 85%;
    scroll-snap-align: start;
  }

  /* Ajustes dos botoes flutuantes em mobile */
  .gh-wpp-flutuante {
    width: 54px;
    height: 54px;
    font-size: 28px;
    bottom: 16px;
    right: 16px;
  }
  .gh-topo-btn {
    width: 40px;
    height: 40px;
    bottom: 80px;
    right: 18px;
  }
}

/* ══════════════════════════════════════════════════════════
   ACESSIBILIDADE — tipografia base para leitura confortavel
   em desktop (aplicadas sempre, mobile sobrescreve depois)
   ══════════════════════════════════════════════════════════ */

/* Corpo dos cards em geral */
.gh-public-layout .gh-card p {
  font-size: 16px !important;
  line-height: 1.65;
  letter-spacing: 0.01em;
}

/* Depoimentos */
.gh-public-layout .gh-testimonial-text-light {
  font-size: 17px;
  line-height: 1.75;
  letter-spacing: 0.01em;
}
.gh-public-layout .gh-testimonial-name {
  font-size: 20px;
}
.gh-public-layout .gh-testimonial-place {
  font-size: 14px;
}

/* Pilares e features — sobrescreve inline de 13/14px onde aplicavel */
.gh-public-layout p[style*="font-size:13px"],
.gh-public-layout p[style*="font-size:14px"] {
  font-size: 16px !important;
  line-height: 1.65 !important;
}

/* "Feature box" (Gerenciamento online, Conciliacao, etc.) */
.gh-public-layout .gh-feature-box p {
  font-size: 16px !important;
  line-height: 1.65 !important;
}

/* Inputs do simulador / formulario — minimo 16px evita zoom iOS */
.gh-public-layout input.form-control,
.gh-public-layout select.form-control {
  font-size: 16px !important;
}

/* Labels de formulario que estavam em 12px inline */
.gh-public-layout label[style*="font-size:12px"] {
  font-size: 13px !important;
  letter-spacing: 0.03em;
}

/* Grid dos 4 pilares (Segurança / Organização / Confiança / Suporte) */
.gh-pilares-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 18px;
}

.gh-pilares-grid > div p {
  font-size: 16px !important;
  line-height: 1.65;
}

.gh-pilares-grid > div > div:first-child {
  font-size: 18px !important;
}

/* Mobile: fontes acessiveis para idosos (WCAG — minimo 18px texto corrido) */
@media (max-width: 767px) {
  .gh-pilares-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .gh-pilares-grid > div p {
    font-size: 18px;
    line-height: 1.6;
  }
  .gh-pilares-grid > div > div:first-child {
    font-size: 20px;
  }

  /* Texto geral dos cards — garante leitura confortável sem zoom */
  .gh-public-layout .gh-card p {
    font-size: 18px !important;
    line-height: 1.6;
    letter-spacing: 0.01em;
  }
  .gh-public-layout .gh-card h3 {
    font-size: 24px;
  }
  .gh-public-layout .gh-eyebrow {
    font-size: 13px;
  }

  /* Labels "utilizam o Gerlot", "fechados na plataforma" etc. */
  .gh-public-layout .gh-card span[style*="font-size:13px"],
  .gh-public-layout .gh-card span[style*="font-size:12px"] {
    font-size: 15px !important;
  }

  /* Inputs de formulário/simulador — acima de 16px evita zoom no iOS */
  .gh-public-layout input.form-control,
  .gh-public-layout select.form-control {
    font-size: 17px !important;
  }
  .gh-public-layout label[style*="font-size:12px"] {
    font-size: 14px !important;
  }

  /* Badges/categorias de features no grid inferior (gh-feature-box) */
  .gh-public-layout .gh-feature-box p {
    font-size: 17px !important;
    line-height: 1.6 !important;
  }
  .gh-public-layout .gh-feature-box h3 {
    font-size: 20px !important;
  }

  /* Cards pequenos tipo "2x2 com icone e texto" na parte inferior da pagina */
  .gh-public-layout div[style*="font-size:16px"][style*="font-weight:900"] {
    font-size: 20px !important;
  }
  .gh-public-layout p[style*="font-size:13px"],
  .gh-public-layout p[style*="font-size:14px"] {
    font-size: 17px !important;
    line-height: 1.6 !important;
  }

  /* Depoimentos — fonte maior para leitura no celular */
  .gh-public-layout .gh-testimonial-name {
    font-size: 22px;
  }
  .gh-public-layout .gh-testimonial-place {
    font-size: 15px;
  }
  .gh-public-layout .gh-testimonial-text-light {
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: 0.01em;
  }

  /* Box "Solicite uma apresentacao" inteiro — ocultar em mobile,
     deixando apenas o formulario de contato visivel */
  .gh-public-layout .gh-solicite-apresentacao {
    display: none !important;
  }

  /* Titulo "Planos e solucoes / Uma solucao completa..." — ocultar em mobile */
  .gh-public-layout .gh-precos-titulo {
    display: none !important;
  }

  /* Breakdown "Base da loterica / TFLs selecionados" — ocultar em mobile,
     pois a informacao ja esta consolidada no Valor mensal total */
  .gh-public-layout .gh-price-breakdown {
    display: none !important;
  }
}
