/* ===================================================================
   OTEK — Estilo principal
   Paleta: grafite + laranja da logo (#FC9800)

   O fundo é ÚNICO e contínuo em todas as páginas: fica preso ao body
   (fixed) e as seções são transparentes, para não formar faixas.
   =================================================================== */

:root {
  /* ---- Tokens da paleta ---- */
  --bg-deep:     #0B0B0D;   /* fundo base — o mesmo no site inteiro */
  --bg-surface:  #131316;   /* cards */
  --bg-elev:     #1C1C21;   /* bordas, hover, divisores */
  --gold:        #FC9800;   /* laranja da marca (nome antigo, mantido) */
  --gold-deep:   #E07E00;   /* hover / fim do gradiente */
  --text:        #FFFFFF;
  --text-mute:   #A5A5AD;   /* subtítulos */

  /* ---- Aliases usados pelo restante do CSS ---- */
  --brand:       var(--gold);
  --brand-deep:  var(--gold-deep);
  --gold-bright: var(--gold);
  --gold-soft:   #FFC470;
  --blue:        var(--bg-elev);
  --blue-light:  #2A2A31;
  --blue-deep:   var(--bg-deep);

  --bg:          var(--bg-deep);
  --bg-2:        var(--bg-surface);
  /* Cards quase opacos: deixam adivinhar o fundo sem prejudicar a leitura */
  --surface:     rgba(19, 19, 22, 0.92);
  --surface-2:   var(--bg-elev);
  --tint:        rgba(19, 19, 22, 0.88);
  --navy-dark:   #070708;
  --border:      rgba(252, 152, 0, 0.22);
  --border-soft: rgba(255, 255, 255, 0.08);

  --text-muted:  var(--text-mute);
  --text-dim:    #85858F;

  --grad:        linear-gradient(90deg, var(--gold) 0%, var(--gold-deep) 100%);
  --grad-gold:   linear-gradient(90deg, var(--gold) 0%, var(--gold-deep) 100%);
  --grad-text:   linear-gradient(90deg, #FC9800 0%, #E07E00 100%);
  --grad-blue:   linear-gradient(135deg, var(--bg-elev) 0%, var(--bg-deep) 100%);

  --radius:      18px;
  --radius-sm:   12px;
  --maxw:        1180px;
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
  --shadow:      0 24px 60px -28px rgba(0, 0, 0, 0.6);
  --shadow-sm:   0 12px 30px -18px rgba(0, 0, 0, 0.5);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ===================================================================
   FUNDO ÚNICO — duas camadas presas à tela (fixed).
   Como não pertencem a nenhuma seção, não existe emenda entre elas:
   o site inteiro, em todas as páginas, mostra o mesmo fundo.
   =================================================================== */

/* Camada 1: luz laranja e profundidade */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(760px 520px at 8% -6%,  rgba(252, 152, 0, 0.10), transparent 62%),
    radial-gradient(680px 480px at 98% 4%,  rgba(252, 152, 0, 0.05), transparent 60%),
    radial-gradient(900px 620px at 50% 108%, rgba(252, 152, 0, 0.06), transparent 64%);
  z-index: -2;
  pointer-events: none;
}

/* Camada 2: grade técnica + símbolos do que a Otek entrega */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    url("../assets/fundo-servicos.svg"),
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 620px 620px, 84px 84px, 84px 84px;
  background-repeat: repeat;
  opacity: .17;
  z-index: -1;
  pointer-events: none;
  /* apaga o padrão nas bordas, para o olho não achar o fim do desenho */
  -webkit-mask-image: radial-gradient(120% 100% at 50% 32%, #000 42%, transparent 88%);
          mask-image: radial-gradient(120% 100% at 50% 32%, #000 42%, transparent 88%);
}

/* Em telas pequenas o padrão fica menor e mais discreto */
@media (max-width: 700px) {
  body::after { background-size: 380px 380px, 58px 58px, 58px 58px; opacity: .13; }
}

h1, h2, h3, h4 { font-family: 'Sora', sans-serif; font-weight: 700; line-height: 1.15; color: #F7F7F8; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 820px; }

.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ===================== HEADER ===================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  transition: padding .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header {
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  background: transparent;
}
.site-header.scrolled {
  padding: 12px 0;
  background: rgba(11, 11, 13, 0.72);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 10px 34px -22px rgba(0,0,0,0.9);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { width: 46px; height: 46px; object-fit: contain; }
.brand-name {
  font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.35rem; letter-spacing: 4px;
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.nav { display: flex; align-items: center; gap: 30px; }
.nav a { color: var(--text-muted); font-size: .95rem; font-weight: 500; transition: color .25s; }
.nav a:hover { color: #fff; }
.nav-cta {
  padding: 10px 20px; border-radius: 999px; border: 1px solid var(--border);
  color: #fff !important; background: rgba(252, 152, 0,0.10); transition: all .25s var(--ease);
}
.nav-cta:hover { background: rgba(252, 152, 0,0.20); border-color: var(--gold); transform: translateY(-1px); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 26px; height: 2px; background: #fff; border-radius: 2px; transition: .3s var(--ease); }

/* ===================== BOTÕES ===================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 30px; border-radius: 999px;
  font-weight: 600; font-size: .98rem; font-family: 'Sora', sans-serif;
  cursor: pointer; transition: all .3s var(--ease); border: 1px solid transparent;
}
.btn-lg { padding: 17px 40px; font-size: 1.05rem; }
.btn-primary {
  background: #FC9800; color: #0B0B0D;
  box-shadow: 0 4px 20px rgba(252, 152, 0,.25);
}
.btn-primary:hover { background: #E07E00; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(252, 152, 0,.32); }
.btn-ghost {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  color: #FFFFFF;
}
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.3); transform: translateY(-2px); }

/* ===================== HERO ===================== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: 120px 0 80px; overflow: hidden;
  background: transparent;   /* o fundo do body atravessa aqui também */
}
/* Textura de grão para evitar banding do gradiente */
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-glow {
  position: absolute; top: 30%; left: 50%; width: 900px; height: 720px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(252, 152, 0,0.10) 0%, transparent 62%);
  filter: blur(30px); z-index: 0;
}
.hero-inner { position: relative; z-index: 2; text-align: center; max-width: 900px; margin: 0 auto; }
.hero-eyebrow { text-transform: uppercase; letter-spacing: 3px; font-size: .82rem; color: var(--gold); font-weight: 700; margin-bottom: 24px; }
.hero-title { font-size: clamp(2.4rem, 6vw, 4.4rem); font-weight: 800; margin-bottom: 26px; color: #FFFFFF; }
/* Destaque do título: dourado puro, sem virar cinza/azul */
.hero-title .grad-text {
  background: linear-gradient(90deg, #FC9800, #E07E00);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: #FC9800;
}
.hero-sub { font-size: clamp(1.05rem, 2vw, 1.28rem); color: #A5A5AD; max-width: 640px; margin: 0 auto 40px; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.hero-badges { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-badges span {
  font-size: .85rem; color: var(--text-muted); font-weight: 500;
  padding: 8px 18px; border-radius: 999px; border: 1px solid var(--border-soft);
  background: rgba(255,255,255,0.04);
}

/* ===================== CARROSSEL DE FRASES ===================== */
.marquee-section {
  background: rgba(0, 0, 0, .28);
  padding: 20px 0; overflow: hidden; position: relative;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.marquee { display: flex; width: 100%; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.marquee-track { display: flex; align-items: center; gap: 28px; white-space: nowrap; animation: marquee 20s linear infinite; will-change: transform; }
.marquee-item { font-family: 'Sora', sans-serif; font-weight: 600; font-size: clamp(1rem, 1.6vw, 1.25rem); color: #fff; letter-spacing: .3px; }
.marquee-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex-shrink: 0; box-shadow: 0 0 12px rgba(252, 152, 0,0.9); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===================== SEÇÕES ===================== */
.section { padding: 110px 0; position: relative; }
/* Sem fundo por seção: o fundo do body atravessa o site inteiro */
.section-eyebrow { text-transform: uppercase; letter-spacing: 3px; font-size: .8rem; color: var(--gold); font-weight: 700; margin-bottom: 16px; }
.section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 20px; }
.section-text { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 16px; }
.section-text.center { text-align: center; max-width: 640px; margin-left: auto; margin-right: auto; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

/* ===================== SOBRE / STATS ===================== */
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stat-card { padding: 32px 24px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border-soft); text-align: center; transition: transform .35s var(--ease), border-color .35s, box-shadow .35s; box-shadow: var(--shadow-sm); }
.stat-card:hover { transform: translateY(-4px); border-color: var(--border); box-shadow: var(--shadow); }
.stat-num { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 2.6rem; line-height: 1; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 8px; }
.stat-label { color: var(--text-muted); font-size: .92rem; }

/* ===================== CARDS GRID ===================== */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cards-grid.three { grid-template-columns: repeat(3, 1fr); }
.service-card, .feature-card {
  padding: 34px 28px; border-radius: var(--radius); background: var(--surface);
  border: 1px solid var(--border-soft); position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), border-color .4s, box-shadow .4s;
}
.service-card::before, .feature-card::before { content: ""; position: absolute; left: 0; top: 0; right: 0; height: 3px; background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.service-card:hover, .feature-card:hover { transform: translateY(-6px); border-color: var(--border); box-shadow: var(--shadow); }
.service-card:hover::before, .feature-card:hover::before { transform: scaleX(1); }
.service-card h3, .feature-card h3 { font-size: 1.2rem; margin-bottom: 12px; position: relative; }
.service-card p, .feature-card p { color: var(--text-muted); font-size: .96rem; position: relative; }
.service-icon { width: 54px; height: 54px; border-radius: 14px; background: linear-gradient(160deg, rgba(252, 152, 0,0.20), rgba(42, 42, 49,0.16)); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; position: relative; }
.service-icon::after { content: ""; width: 26px; height: 26px; background: var(--grad-gold); border-radius: 6px; -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; -webkit-mask-position: center; mask-position: center; -webkit-mask-size: contain; mask-size: contain; }
.service-icon[data-icon="site"]::after      { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='3' y='4' width='18' height='16' rx='2'/%3E%3Cpath d='M3 9h18'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='3' y='4' width='18' height='16' rx='2'/%3E%3Cpath d='M3 9h18'/%3E%3C/svg%3E"); }
.service-icon[data-icon="sistema"]::after   { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='3' y='3' width='8' height='8' rx='1'/%3E%3Crect x='13' y='3' width='8' height='8' rx='1'/%3E%3Crect x='3' y='13' width='8' height='8' rx='1'/%3E%3Crect x='13' y='13' width='8' height='8' rx='1'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='3' y='3' width='8' height='8' rx='1'/%3E%3Crect x='13' y='3' width='8' height='8' rx='1'/%3E%3Crect x='3' y='13' width='8' height='8' rx='1'/%3E%3Crect x='13' y='13' width='8' height='8' rx='1'/%3E%3C/svg%3E"); }
.service-icon[data-icon="whatsapp"]::after  { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M21 11.5a8.38 8.38 0 0 1-8.5 8.5 8.5 8.5 0 0 1-4-1L3 20l1-4.5a8.5 8.5 0 1 1 17-4z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M21 11.5a8.38 8.38 0 0 1-8.5 8.5 8.5 8.5 0 0 1-4-1L3 20l1-4.5a8.5 8.5 0 1 1 17-4z'/%3E%3C/svg%3E"); }
.service-icon[data-icon="meta"]::after      { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 3v18M3 12h18'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 3v18M3 12h18'/%3E%3C/svg%3E"); }
.service-icon[data-icon="google"]::after    { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M21 21l-4.3-4.3'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M21 21l-4.3-4.3'/%3E%3C/svg%3E"); }
.service-icon[data-icon="social"]::after    { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='3' y='3' width='18' height='18' rx='5'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Ccircle cx='17' cy='7' r='1'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='3' y='3' width='18' height='18' rx='5'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Ccircle cx='17' cy='7' r='1'/%3E%3C/svg%3E"); }
.service-icon[data-icon="branding"]::after  { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M12 2l3 7h7l-5.5 4 2 7-6.5-4.5L5.5 27l2-7L2 9h7z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M12 2l3 7h7l-5.5 4 2 7-6.5-4.5L5.5 27l2-7L2 9h7z'/%3E%3C/svg%3E"); }
.service-icon[data-icon="seo"]::after       { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M3 20V10M9 20V4M15 20v-7M21 20V8'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M3 20V10M9 20V4M15 20v-7M21 20V8'/%3E%3C/svg%3E"); }
.service-icon[data-icon="ia"]::after        { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='5' y='7' width='14' height='12' rx='3'/%3E%3Cpath d='M12 7V3M9 12h.01M15 12h.01'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='5' y='7' width='14' height='12' rx='3'/%3E%3Cpath d='M12 7V3M9 12h.01M15 12h.01'/%3E%3C/svg%3E"); }
.service-icon[data-icon="crm"]::after       { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='9' cy='8' r='3'/%3E%3Cpath d='M3 20c0-3 3-5 6-5s6 2 6 5'/%3E%3Ccircle cx='18' cy='9' r='2'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='9' cy='8' r='3'/%3E%3Cpath d='M3 20c0-3 3-5 6-5s6 2 6 5'/%3E%3Ccircle cx='18' cy='9' r='2'/%3E%3C/svg%3E"); }
.service-icon[data-icon="email"]::after     { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='M3 7l9 6 9-6'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='M3 7l9 6 9-6'/%3E%3C/svg%3E"); }
.service-icon[data-icon="consultoria"]::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M9 18h6M10 21h4M12 3a6 6 0 0 1 4 10c-1 1-1 2-1 3H9c0-1 0-2-1-3a6 6 0 0 1 4-10z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M9 18h6M10 21h4M12 3a6 6 0 0 1 4 10c-1 1-1 2-1 3H9c0-1 0-2-1-3a6 6 0 0 1 4-10z'/%3E%3C/svg%3E"); }

/* ===================== PROCESSO ===================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { padding: 32px 26px; border-radius: var(--radius); background: var(--tint); border: 1px solid var(--border-soft); position: relative; transition: transform .35s var(--ease), border-color .35s, box-shadow .35s; }
.step:hover { transform: translateY(-5px); border-color: var(--border); box-shadow: var(--shadow); }
.step-num { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 2.4rem; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 14px; }
.step h3 { font-size: 1.15rem; margin-bottom: 10px; }
.step p { color: var(--text-muted); font-size: .94rem; }

/* ===================== FERRAMENTAS EXCLUSIVAS ===================== */

.tools-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tool-card {
  display: flex; flex-direction: column;
  border-radius: 20px; overflow: hidden; position: relative;
  background: var(--surface); border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), border-color .4s, box-shadow .4s;
}
.tool-card:hover { transform: translateY(-6px); border-color: var(--border); box-shadow: var(--shadow); }
/* flex:1 faz o topo esticar até o fim do espaço livre, então a linha
   divisória e o rodapé ficam na mesma altura nos três cards */
.tool-top { flex: 1 1 auto; padding: 34px 28px 26px; background: linear-gradient(160deg, rgba(252, 152, 0,0.10), rgba(42, 42, 49,0.06)); border-bottom: 1px solid var(--border-soft); }
.tool-badge { display: inline-block; font-family: 'Sora', sans-serif; font-size: .72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); border: 1px solid var(--border); border-radius: 999px; padding: 5px 12px; margin-bottom: 18px; }
.tool-badge.paid { color: #7EE0A8; border-color: rgba(126,224,168,0.4); }
.tool-icon { width: 56px; height: 56px; border-radius: 14px; background: var(--grad-gold); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.tool-icon svg { width: 30px; height: 30px; color: #0B0B0D; }
/* reserva a altura de duas linhas: os títulos curtos não sobem sozinhos
   e os parágrafos começam todos na mesma altura */
.tool-top h3 { font-size: 1.3rem; margin-bottom: 8px; min-height: 2.3em; }
.tool-top p { color: var(--text-muted); font-size: .95rem; }
.tool-foot { margin-top: auto; padding: 22px 28px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.tool-price { font-family: 'Sora', sans-serif; font-weight: 700; color: var(--gold); font-size: 1.05rem; }
.tool-price small { color: var(--text-dim); font-weight: 400; font-size: .8rem; }
.tool-link { font-family: 'Sora', sans-serif; font-weight: 600; font-size: .92rem; color: #0B0B0D; background: var(--grad-gold); padding: 11px 22px; border-radius: 999px; transition: transform .25s var(--ease), box-shadow .25s; }
.tool-link:hover { transform: translateY(-2px); box-shadow: 0 12px 26px -10px rgba(252, 152, 0,0.6); }

/* ===================== BLOG (home preview) ===================== */

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-card { display: flex; flex-direction: column; border-radius: 18px; overflow: hidden; background: var(--surface); border: 1px solid var(--border-soft); box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), border-color .4s, box-shadow .4s; }
.post-card:hover { transform: translateY(-6px); border-color: var(--border); box-shadow: var(--shadow); }
.post-cover { height: 150px; position: relative; overflow: hidden; }
.post-cover span { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.05rem; color: rgba(255,255,255,0.92); text-align: center; padding: 20px; }
.post-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.post-tag { font-size: .72rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 12px; }
.post-body h3 { font-size: 1.12rem; margin-bottom: 10px; line-height: 1.3; }
.post-body p { color: var(--text-muted); font-size: .92rem; margin-bottom: 18px; }
.post-more { margin-top: auto; font-family: 'Sora', sans-serif; font-weight: 600; font-size: .9rem; color: var(--gold); display: inline-flex; align-items: center; gap: 6px; }
.post-more::after { content: "\2192"; transition: transform .25s var(--ease); }
.post-card:hover .post-more::after { transform: translateX(4px); }
.section-cta-row { text-align: center; margin-top: 48px; }

/* ===================== CTA ===================== */

.cta-box { text-align: center; padding: 72px 40px; border-radius: 28px; background: var(--grad-blue); border: 1px solid var(--border); position: relative; overflow: hidden; box-shadow: var(--shadow); }
.cta-box::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 300px at 50% 0%, rgba(252, 152, 0,0.26), transparent 70%); pointer-events: none; }
.cta-box .section-eyebrow { color: var(--gold-soft); position: relative; }
.cta-box .section-title, .cta-box .section-text { position: relative; }
.cta-box .section-text { color: rgba(255,255,255,0.85); }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 36px; position: relative; }

/* ===================== FAQ ===================== */
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item { border: 1px solid var(--border-soft); border-radius: var(--radius-sm); background: var(--surface); overflow: hidden; box-shadow: var(--shadow-sm); transition: border-color .3s, box-shadow .3s; }
.faq-item.open { border-color: var(--border); box-shadow: var(--shadow); }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; color: #F7F7F8; font-family: 'Sora', sans-serif; font-weight: 600; font-size: 1.05rem; padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq-icon { position: relative; width: 16px; height: 16px; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: var(--gold); border-radius: 2px; top: 50%; left: 50%; transform: translate(-50%, -50%); transition: transform .3s var(--ease); }
.faq-icon::before { width: 16px; height: 2px; }
.faq-icon::after  { width: 2px; height: 16px; }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a p { padding: 0 24px 22px; color: var(--text-muted); font-size: .98rem; }

/* ===================== FOOTER ===================== */
.site-footer { border-top: 1px solid var(--border-soft); padding: 70px 0 30px; background: rgba(0, 0, 0, .34); }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand { max-width: 320px; }
.footer-logo { width: 50px; height: 50px; margin-bottom: 18px; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: .95rem; }
.footer-col h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: 2px; color: var(--gold-soft); margin-bottom: 18px; }
.footer-col a, .footer-site { display: block; color: rgba(255,255,255,0.62); font-size: .94rem; margin-bottom: 12px; transition: color .25s; }
.footer-col a:hover { color: #fff; }
.footer-site { color: rgba(255,255,255,0.4); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.45); font-size: .86rem; }

/* ===================== WHATSAPP FLUTUANTE ===================== */
.whatsapp-float { position: fixed; bottom: 26px; right: 26px; z-index: 90; width: 58px; height: 58px; border-radius: 50%; background: linear-gradient(135deg, #25D366, #128C7E); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 30px -8px rgba(37,211,102,0.6); transition: transform .3s var(--ease); }
.whatsapp-float::after { content: ""; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid rgba(37,211,102,0.4); animation: pulseRing 2s ease-out infinite; }
.whatsapp-float:hover { transform: scale(1.08); }
@keyframes pulseRing { 0% { transform: scale(.9); opacity: .8; } 100% { transform: scale(1.4); opacity: 0; } }

/* ===================== REVEAL ===================== */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.cards-grid .reveal.visible, .steps .reveal.visible, .stat-grid .reveal.visible, .tools-grid .reveal.visible, .blog-grid .reveal.visible { transition-delay: var(--d, 0s); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .whatsapp-float::after, .marquee-track { animation: none; }
}

/* ===================== RESPONSIVO ===================== */
@media (max-width: 960px) {
  .cards-grid, .cards-grid.three, .tools-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav { position: fixed; top: 0; right: 0; height: 100vh; width: 78%; max-width: 320px; flex-direction: column; align-items: flex-start; justify-content: center; gap: 26px; background: rgba(24, 24, 28,0.98); backdrop-filter: blur(16px); padding: 40px; transform: translateX(100%); transition: transform .4s var(--ease); z-index: 99; box-shadow: -20px 0 50px -30px rgba(0,0,0,0.8); }
  .nav.open { transform: translateX(0); }
  .nav a { font-size: 1.15rem; }
  .nav-toggle { display: flex; z-index: 100; }
  .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .section { padding: 80px 0; }
  .cards-grid, .cards-grid.three, .steps, .stat-grid, .tools-grid, .blog-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .cta-box { padding: 48px 24px; }
}

/* ===================== DESTAQUES DO HERO ===================== */
.hero-destaques {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  max-width: 860px; margin: 0 auto 40px; text-align: left;
}
.hd-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px 18px; border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  transition: border-color .3s var(--ease), background .3s var(--ease), transform .3s var(--ease);
}
.hd-item:hover { border-color: rgba(252, 152, 0,.4); background: rgba(252, 152, 0,.06); transform: translateY(-3px); }
.hd-item b { display: block; font-family: 'Sora', sans-serif; font-size: .95rem; color: #fff; margin-bottom: 3px; line-height: 1.3; }
.hd-item span:last-child { font-size: .83rem; color: var(--text-muted); line-height: 1.45; display: block; }
.hd-ico {
  width: 34px; height: 34px; flex-shrink: 0; border-radius: 10px;
  background: rgba(252, 152, 0,.14); border: 1px solid rgba(252, 152, 0,.3);
  display: flex; align-items: center; justify-content: center; position: relative;
}
.hd-ico::after {
  content: ""; width: 17px; height: 17px; background: var(--gold);
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center; mask-position: center;
  -webkit-mask-size: contain; mask-size: contain;
}
.hd-ico[data-i="preco"]::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M12 2v20M17 6H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M12 2v20M17 6H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6'/%3E%3C/svg%3E"); }
.hd-ico[data-i="retorno"]::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 17l6-6 4 4 8-8'/%3E%3Cpath d='M21 7v5h-5'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 17l6-6 4 4 8-8'/%3E%3Cpath d='M21 7v5h-5'/%3E%3C/svg%3E"); }
.hd-ico[data-i="prazo"]::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E"); }

@media (max-width: 860px) {
  .hero-destaques { grid-template-columns: 1fr; max-width: 420px; gap: 10px; }
  .hd-item { padding: 13px 15px; }
}

/* ===================== TEMAS SAZONAIS (controlados pelo dashboard) ===================== */
.tema-banner {
  position: relative; z-index: 101;
  background: var(--tema-banner-bg, var(--grad-gold));
  color: var(--tema-banner-cor, #0B0B0D);
  text-align: center; padding: 9px 16px;
  font-family: 'Sora', sans-serif; font-weight: 600; font-size: .88rem;
}
body.tem-banner .site-header { top: var(--altura-banner, 38px); }
body.tem-banner .hero { padding-top: calc(120px + var(--altura-banner, 38px)); }

/* ===================================================================
   BOTÃO DE WHATSAPP COM LUZ PULSANTE
   O halo respira devagar (2,8s) para chamar o olho sem incomodar.
   =================================================================== */
.btn-whats {
  position: relative; z-index: 0;
  background: linear-gradient(135deg, #2BE070 0%, #1EBF5C 55%, #128C7E 100%);
  color: #05130B;
  border: none;
  animation: whatsPulso 2.8s ease-in-out infinite;
}
.btn-whats:hover {
  background: linear-gradient(135deg, #3BF07E 0%, #22CE66 55%, #14A08E 100%);
  transform: translateY(-2px);
}
/* halo difuso: vaza para fora das bordas do botão */
.btn-whats::before {
  content: ""; position: absolute; inset: -10px; border-radius: 999px; z-index: -1;
  background: radial-gradient(closest-side, rgba(43, 224, 112, .75), transparent 76%);
  filter: blur(16px);
  animation: whatsHalo 2.8s ease-in-out infinite;
}
/* ícone do WhatsApp antes do texto */
.btn-whats::after {
  content: ""; order: -1; width: 21px; height: 21px; margin-right: 11px; flex-shrink: 0;
  background: currentColor;
  -webkit-mask: var(--ico-whats) center/contain no-repeat;
          mask: var(--ico-whats) center/contain no-repeat;
}
:root {
  --ico-whats: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12.04 2A9.9 9.9 0 0 0 2.1 11.9c0 1.75.46 3.46 1.34 4.97L2 22l5.28-1.38a9.9 9.9 0 0 0 4.76 1.21h.01A9.9 9.9 0 0 0 22 11.9 9.9 9.9 0 0 0 12.04 2Zm5.8 14.05c-.24.68-1.42 1.32-1.96 1.36-.5.04-.98.22-3.3-.69-2.78-1.1-4.54-3.94-4.68-4.13-.14-.18-1.12-1.49-1.12-2.84s.71-2.02.96-2.29c.25-.27.55-.34.73-.34h.52c.17 0 .4-.06.62.48.24.57.8 1.97.87 2.11.07.14.12.31.02.5-.1.18-.15.3-.29.46-.14.16-.3.36-.43.48-.14.14-.29.29-.13.57.17.27.74 1.22 1.59 1.98 1.09.97 2.01 1.27 2.29 1.41.27.14.44.12.6-.07.17-.2.7-.81.88-1.09.19-.27.37-.23.63-.14.25.09 1.63.77 1.9.91.28.14.47.2.54.32.06.11.06.68-.18 1.36Z'/></svg>");
}
@keyframes whatsPulso {
  0%, 100% { box-shadow: 0 0 0 0 rgba(43, 224, 112, .45), 0 8px 26px -6px rgba(43, 224, 112, .45); }
  50%      { box-shadow: 0 0 0 14px rgba(43, 224, 112, 0), 0 12px 34px -6px rgba(43, 224, 112, .70); }
}
@keyframes whatsHalo {
  0%, 100% { opacity: .40; transform: scale(.97); }
  50%      { opacity: .95; transform: scale(1.05); }
}

/* Botão flutuante: mesmo respiro */
.whatsapp-float {
  animation: whatsPulso 2.8s ease-in-out infinite;
}
.whatsapp-float::before {
  content: ""; position: absolute; inset: -12px; border-radius: 50%; z-index: -1;
  background: radial-gradient(closest-side, rgba(43, 224, 112, .8), transparent 74%);
  filter: blur(14px);
  animation: whatsHalo 2.8s ease-in-out infinite;
}

/* Quem pediu menos animação no sistema não vê o pulso */
@media (prefers-reduced-motion: reduce) {
  .btn-whats, .btn-whats::before,
  .whatsapp-float, .whatsapp-float::before { animation: none; }
  .btn-whats { box-shadow: 0 8px 26px -6px rgba(43, 224, 112, .5); }
}

/* Logo horizontal completa no topo (substitui logo + texto separados) */
.brand-full { height: 40px; width: auto; object-fit: contain; }
.site-header.scrolled .brand-full { height: 34px; }
.brand-full, .site-header.scrolled .brand-full { transition: height .3s var(--ease); }
@media (max-width: 700px) { .brand-full { height: 32px; } }

/* ===================================================================
   FAIXAS DE CHAMADA AO LONGO DA PÁGINA
   Quem se convence no meio do site não deveria ter que rolar até o fim.
   =================================================================== */
.cta-faixa {
  margin-top: 58px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 26px; flex-wrap: wrap;
  padding: 30px 36px; border-radius: 20px;
  background: rgba(19, 19, 22, .72);
  border: 1px solid var(--border-soft);
  position: relative; overflow: hidden;
}
.cta-faixa::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(560px 200px at 0% 50%, rgba(252, 152, 0, .10), transparent 70%);
}
.cta-faixa > * { position: relative; z-index: 1; }
/* o texto ocupa a sobra; os botões nunca são espremidos nem jogados para baixo */
.cta-faixa > div:first-child { flex: 1 1 300px; min-width: 0; }
.cta-faixa b {
  display: block; font-family: 'Sora', sans-serif; font-weight: 700;
  font-size: 1.2rem; color: #fff; margin-bottom: 6px;
}
.cta-faixa span { display: block; color: var(--text-muted); font-size: .96rem; line-height: 1.55; }
.cta-faixa .btn { flex-shrink: 0; }

/* A do meio é a mais forte: é onde a pessoa já está convencida */
.cta-faixa.destaque {
  background: linear-gradient(115deg, rgba(252, 152, 0, .13) 0%, rgba(19, 19, 22, .8) 58%);
  border-color: rgba(252, 152, 0, .38);
}
.cta-faixa-botoes { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

@media (max-width: 780px) {
  .cta-faixa { flex-direction: column; align-items: stretch; padding: 26px 22px; text-align: left; }
  /* empilhado, o texto não deve esticar e abrir um vão até os botões */
  .cta-faixa > div:first-child { flex: 0 0 auto; }
  .cta-faixa .btn { width: 100%; }
  .cta-faixa-botoes { width: 100%; flex-direction: column; }
  .cta-faixa-botoes .btn { flex: 0 0 auto; width: 100%; }
}

/* ===================================================================
   CELULAR — layout compacto
   Tudo em duas colunas (ferramentas em três) para o site não ficar
   comprido demais. Fontes e espaçamentos reduzidos para caber.
   =================================================================== */
@media (max-width: 720px) {

  /* --- Grades: duas colunas em vez de uma ---
     grid-auto-rows: 1fr faz TODAS as fileiras terem a mesma altura.
     Sem isso, cada fileira se ajusta ao próprio conteúdo e uns cards
     ficam bem maiores que os outros. --- */
  .cards-grid, .cards-grid.three,
  .steps, .stat-grid, .blog-grid {
    grid-template-columns: repeat(2, 1fr); gap: 12px; grid-auto-rows: 1fr;
  }
  .tools-grid { grid-template-columns: repeat(3, 1fr); gap: 9px; grid-auto-rows: 1fr; }

  /* --- Tarjas do topo: o hero já diz tudo, elas só alongavam a página --- */
  .hero-badges { display: none; }

  /* --- Quem somos --- */
  .stat-card { padding: 20px 12px; }
  .stat-num { font-size: 1.95rem; }
  .stat-label { font-size: .78rem; line-height: 1.35; }

  /* --- Serviços: tudo centrado, com ar entre os blocos --- */
  .service-card {
    padding: 26px 16px 24px; text-align: center;
    display: flex; flex-direction: column; align-items: center;
  }
  .service-icon { width: 46px; height: 46px; border-radius: 13px; margin: 0 auto 16px; }
  .service-icon svg { width: 23px; height: 23px; }
  .service-card h3 { font-size: .98rem; line-height: 1.3; margin-bottom: 10px; }
  .service-card p { font-size: .81rem; line-height: 1.62; }

  /* --- Como funciona --- */
  .step { padding: 26px 16px 24px; text-align: center; }
  .step-num { font-size: 2rem; margin-bottom: 10px; }
  .step h3 { font-size: .98rem; line-height: 1.3; margin-bottom: 10px; }
  .step p { font-size: .81rem; line-height: 1.62; }

  /* --- Por que a Otek --- */
  .feature-card { padding: 24px 16px; text-align: center; }
  .feature-card h3 { font-size: .96rem; line-height: 1.3; margin-bottom: 9px; }
  .feature-card p { font-size: .81rem; line-height: 1.62; }

  /* --- Ferramentas: as três lado a lado ---
     Em ~110px de largura a descrição não caberia; fica só o essencial. */
  .tool-top {
    padding: 20px 10px 18px; text-align: center;
    display: flex; flex-direction: column; align-items: center;
  }
  .tool-icon { width: 42px; height: 42px; border-radius: 12px; margin: 0 auto 14px; }
  .tool-icon svg { width: 22px; height: 22px; }
  .tool-top h3 { font-size: .81rem; margin-bottom: 0; line-height: 1.35; }
  .tool-top p { display: none; }
  .tool-badge { font-size: .55rem; letter-spacing: 1px; padding: 3px 9px; margin-bottom: 14px; }
  .tool-foot { padding: 12px 9px; justify-content: center; }
  .tool-price { display: none; }
  .tool-link { width: 100%; text-align: center; font-size: .73rem; padding: 9px 4px; }

  /* --- Blog --- */
  .post-cover { height: 92px; }
  .post-cover span { font-size: .74rem; padding: 10px; }
  .post-body { padding: 14px 13px 16px; }
  .post-tag { font-size: .62rem; }
  .post-body h3 { font-size: .9rem; line-height: 1.3; }
  .post-body p { display: none; }
  .post-more { font-size: .78rem; }

  /* --- Rodapé mais curto, Serviços e Contato lado a lado --- */
  .site-footer { padding: 44px 0 22px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 26px 18px; margin-bottom: 28px; }
  .footer-brand { grid-column: 1 / -1; max-width: none; }
  .footer-logo { width: 38px; height: 38px; margin-bottom: 12px; }
  .footer-brand p { font-size: .87rem; }
  .footer-col h4 { font-size: .72rem; margin-bottom: 12px; }
  .footer-col a, .footer-site { font-size: .84rem; margin-bottom: 9px; }
  /* o endereço já aparece na coluna Contato — repetir aqui só ocupava espaço
     e ainda ficava atrás do botão do WhatsApp */
  .footer-bottom { padding-top: 18px; font-size: .76rem; justify-content: flex-start; }
  .footer-bottom span:last-child { display: none; }
}

/* Telas bem estreitas: só o indispensável encolhe mais */
@media (max-width: 380px) {
  .tools-grid { gap: 7px; }
  .tool-top h3 { font-size: .74rem; }
  .tool-link { font-size: .68rem; }
  .service-card p, .step p, .feature-card p { font-size: .76rem; }
}
