/* ============================================================
   PROJETOS FARINACCI — Design System
   Cores: #060A27 · #FFBC00 · #FFFFFF
   Fontes: Evogria (display) · Montserrat (corpo)
   Versão: 1.1 | Fev 2026
   ============================================================ */

/* ── Fonte Evogria (arquivo local — colocar em /fonts/) ─────── */
/* Quando disponível, substitui Bebas Neue automaticamente      */
@font-face {
  font-family: 'Evogria';
  src: url('fonts/Evogria.woff2') format('woff2'),
       url('fonts/Evogria.woff')  format('woff'),
       url('fonts/Evogria.ttf')   format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ── Tokens ─────────────────────────────────────────────────── */
:root {
  /* ═══════════════════════════════════════════════════════════
     PALETA OFICIAL — PROJETOS FARINACCI
     Aprovada em 26/02/2026
  ═══════════════════════════════════════════════════════════ */

  /* PRIMÁRIA — Azul Noturno (fundo padrão da marca) */
  --primary:       #060A27;   /* ◼ Azul Noturno — COR BASE DA MARCA */
  --primary-light: #0D1340;   /* ◼ Azul Médio — cards / hover */
  --primary-mid:   #111950;   /* ◼ Azul Profundo — seções alternadas */
  --primary-border: rgba(255,255,255,.08); /* Bordas suaves sobre escuro */

  /* ACENTO — Amarelo Ouro */
  --accent:        #FFBC00;   /* ◈ Amarelo Ouro — acento principal */
  --accent-dark:   #D99E00;   /* ◈ Amarelo hover */
  --accent-light:  #FFD04D;   /* ◈ Amarelo claro */
  --accent-pale:   rgba(255,188,0,.10); /* Amarelo fundo suave */

  /* NEUTROS ESCUROS (dark-first) */
  --white:         #FFFFFF;
  --off-white:     #F0F0EE;
  --text-primary:  rgba(255,255,255,.92);  /* Texto principal */
  --text-secondary:rgba(255,255,255,.65);  /* Texto secundário */
  --text-muted:    rgba(255,255,255,.38);  /* Texto desabilitado */

  /* Legado — mantido para compatibilidade */
  --gray-900: #111111;
  --gray-800: #222222;
  --gray-700: #3D3D3D;
  --gray-600: rgba(255,255,255,.55);
  --gray-400: rgba(255,255,255,.40);

  /* Neutros */
  --gray-900: #111111;
  --gray-800: #222222;
  --gray-700: #3D3D3D;
  --gray-600: #5E5E5E;
  --gray-400: #9C9C9C;
  --gray-200: #D8D8D8;
  --gray-100: #EEEEEE;
  --gray-50:  #F5F5F5;

  /* Tipografia */
  --font-display: 'Evogria', 'Bebas Neue', 'Barlow Condensed', Impact, sans-serif;
  --font-body:    'Montserrat', system-ui, sans-serif;

  /* Espaçamento */
  --s1: 0.25rem; --s2: 0.5rem;  --s3: 0.75rem; --s4: 1rem;
  --s5: 1.25rem; --s6: 1.5rem;  --s8: 2rem;    --s10: 2.5rem;
  --s12: 3rem;   --s16: 4rem;   --s20: 5rem;   --s24: 6rem;

  /* Sombras */
  --shadow-sm:  0 1px 3px rgba(0,0,0,.10);
  --shadow-md:  0 4px 16px rgba(0,0,0,.14);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.20);
  --shadow-xl:  0 16px 64px rgba(0,0,0,.28);

  /* Border-radius — mais geométrico, alinhado com a fonte */
  --r-sm: 2px; --r-md: 4px; --r-lg: 8px; --r-xl: 12px; --r-full: 9999px;

  /* Transições */
  --t-fast: 150ms ease; --t-base: 250ms ease; --t-slow: 400ms ease;

  /* Aliases de compatibilidade (usados em inline styles do HTML) */
  --navy-600: #060A27;
  --navy-100: #131B54;
  --navy-400: rgba(255,255,255,0.2);
  --bronze:   #FFBC00;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--font-body); color: var(--text-primary); background: var(--primary); -webkit-font-smoothing: antialiased; }
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Skip link (acessibilidade) ─────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--accent);
  color: var(--primary);
  padding: 0.75rem 1.5rem;
  z-index: 10000;
  font-weight: 700;
  font-size: 0.875rem;
}
.skip-link:focus { top: 0; }

/* ── Layout ─────────────────────────────────────────────────── */
.container         { max-width: 1280px; margin: 0 auto; padding: 0 var(--s6); }
.container--narrow { max-width: 900px;  margin: 0 auto; padding: 0 var(--s6); }
.section           { padding: var(--s20) 0; }
.section--line     { border-top: 1px solid var(--primary-border); }
.section--dark     { background: var(--primary);       color: var(--white); }
.section--gray     { background: var(--primary-light); }
.section--accent   { background: var(--accent); color: var(--primary); }

/* ── Tipografia ─────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.1; letter-spacing: 0.03em; text-transform: uppercase; }
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem,   4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p  { line-height: 1.75; color: var(--text-secondary); font-size: 0.975rem; }

.label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.label--dark { color: var(--primary); }

/* ── Botões ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  padding: var(--s3) var(--s6);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--t-base);
  cursor: pointer;
}
.btn--primary {
  background: var(--accent);
  color: var(--primary);
  border: 2px solid var(--accent);
}
.btn--primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); }

.btn--dark {
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
}
.btn--dark:hover { background: var(--primary-light); border-color: var(--primary-light); }

.btn--bronze {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn--bronze:hover { background: var(--accent); color: var(--primary); }

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn--outline-light:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.btn--outline-dark {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn--outline-dark:hover { background: var(--primary); color: var(--white); }

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--primary);
  border-bottom: 2px solid var(--accent);
  transition: all var(--t-base);
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(6,10,39,0.5); }
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--s6);
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: var(--s3);
  text-decoration: none;
}
.navbar__logo svg {
  flex-shrink: 0;
  border-radius: 4px;
}
.navbar__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-family: var(--font-display);
  text-transform: uppercase;
  color: var(--white);
}
.navbar__logo-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-bottom: 2px;
}
.navbar__logo-name {
  font-size: 1.45rem;
  letter-spacing: 0.1em;
  color: var(--white);
}
.navbar__nav {
  display: flex;
  align-items: center;
  gap: var(--s8);
}
.navbar__nav a {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color var(--t-fast);
}
.navbar__nav a:hover { color: var(--accent); }
.navbar__cta { margin-left: var(--s4); }

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--s2);
  cursor: pointer;
}
.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--t-base);
}

@media (max-width: 768px) {
  .navbar__toggle { display: flex; }
  .navbar__nav {
    display: none;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: var(--primary);
    flex-direction: column;
    align-items: flex-start;
    padding: var(--s6);
    gap: var(--s5);
    border-bottom: 2px solid var(--accent);
  }
  .navbar__nav.open { display: flex; }
  .navbar__cta { width: 100%; }
  .navbar__cta .btn { width: 100%; justify-content: center; }
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--primary) url('assets/img/hero-bg.jpg') center/cover no-repeat;
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding-top: 70px;
}
/* Linha decorativa — referência blueprint */
.hero::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255,188,0,0.08);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(6,10,39,0.72) 0%, rgba(6,10,39,0.58) 100%);
  pointer-events: none;
}
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--s16);
  align-items: center;
  padding: var(--s20) 0;
}
.hero__label { margin-bottom: var(--s4); }
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1.0;
  color: var(--white);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: var(--s6);
}
.hero__title span { color: var(--accent); }
.hero__title em { white-space: nowrap; }
.hero__desc {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--s8);
  max-width: 100%;
  font-weight: 400;
}
.hero__actions {
  display: flex;
  gap: var(--s4);
  flex-wrap: wrap;
}
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__logo-display {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--s5);
  width: 100%;
  padding: var(--s8) 0;
  animation: heroLogoIn 0.9s cubic-bezier(.22,1,.36,1) both;
}
/* 1 — Ícone da marca (head1) */
.hero__logo-icon {
  width: min(180px, 55%);
  height: auto;
  border-radius: 14px;
  filter: drop-shadow(0 6px 32px rgba(255,188,0,.30));
}
/* 2 — Logotipo texto (head2) */
.hero__logo-text {
  width: min(340px, 92%);
  height: auto;
  border-radius: 8px;
  filter: drop-shadow(0 4px 20px rgba(255,188,0,.18));
}
/* mantém compatibilidade com referência via data-cms */
.hero__logo-svg {
  width: min(360px, 90%);
  height: auto;
  border-radius: 12px;
}
/* ── Máquina de escrever (hero title) ────────────────────────── */
.tw-cursor {
  display: inline;
  color: var(--accent);
  font-style: normal;
  animation: tw-blink .7s step-end infinite;
  transition: opacity .3s ease;
}
.tw-excl {
  display: inline;
  color: var(--accent);
  font-style: normal;
  opacity: 0;
  transition: opacity .3s ease;
}
@keyframes tw-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: var(--s8);
    padding: var(--s12) 0;
  }
  .hero__content { text-align: center; }
  .hero__actions { justify-content: center; }
  .hero__visual { order: -1; }
  .hero__logo-icon { width: min(140px, 40%); }
  .hero__logo-display { padding: var(--s4) 0; }
  .hero__title { font-size: clamp(2rem, 7vw, 3rem); }
  .hero__title em { white-space: normal; }
  .hero__desc { font-size: 0.9rem; }
}

@keyframes heroLogoIn {
  from { opacity: 0; transform: translateY(24px) scale(.95); }
  to   { opacity: 1; transform: translateY(0)   scale(1); }
}
.hero__badge {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  border: 1px solid rgba(255,188,0,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s4);
  background: rgba(255,188,0,0.03);
  position: relative;
}
.hero__badge::before,
.hero__badge::after {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  border-color: var(--accent);
  border-style: solid;
  opacity: 0.5;
}
.hero__badge::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.hero__badge::after  { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }
.hero__badge-num {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--accent);
  line-height: 1;
}
.hero__badge-text {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-align: center;
}

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { display: flex; }
  .hero__logo-icon { width: min(130px, 50%); }
  .hero__logo-text { width: min(260px, 88%); }
  .hero__logo-svg  { width: min(260px, 80%); }
}

/* ── STATS ──────────────────────────────────────────────────── */
.stats {
  background: var(--accent);
  padding: var(--s10) 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s4);
  text-align: center;
}
.stat__number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--primary);
  display: block;
  line-height: 1;
}
.stat__label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(6,10,39,0.65);
  margin-top: var(--s2);
  display: block;
}
@media (max-width: 768px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── SERVIÇOS — ROAD MAP ────────────────────────────────────── */
.services { padding: var(--s24) 0; background: var(--primary-mid); }
.services__header { text-align: center; margin-bottom: var(--s16); }
.services__header h2 { color: var(--white); margin-bottom: var(--s3); }

.roadmap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.roadmap::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 22px; bottom: 22px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent) 0%, rgba(255,255,255,0.08) 100%);
}
.roadmap__item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--s5);
  margin-bottom: var(--s6);
  position: relative;
}
.roadmap__step { display: flex; align-items: flex-start; justify-content: center; position: relative; z-index: 1; padding-top: 10px; }
.roadmap__number {
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--accent);
  border-radius: 0;   /* geométrico — sem border-radius */
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  border: 2px solid var(--accent);
  transition: all var(--t-base);
  flex-shrink: 0;
}
.roadmap__item:hover .roadmap__number {
  background: var(--accent);
  color: var(--primary);
}
.roadmap__card {
  background: var(--primary-light);
  border: 1px solid var(--primary-border);
  border-left: 3px solid transparent;
  padding: var(--s5) var(--s6);
  transition: all var(--t-base);
  box-shadow: var(--shadow-sm);
}
.roadmap__card:hover {
  border-left-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.roadmap__icon {
  width: 36px; height: 36px;
  background: var(--accent-pale);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--s3);
  color: var(--accent);
}
.roadmap__card h3 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: var(--s2);
  letter-spacing: 0.05em;
}
.roadmap__card p { font-size: 0.9rem; }
.roadmap__tag {
  display: inline-block;
  margin-top: var(--s3);
  padding: 3px 10px;
  background: var(--primary);
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .roadmap::before { display: none; }
  .roadmap__item { grid-template-columns: 1fr; }
  .roadmap__step { flex-direction: row; justify-content: flex-start; padding-top: 0; margin-bottom: var(--s3); }
}

/* ── COMO FUNCIONA ──────────────────────────────────────────── */
.process { padding: var(--s24) 0; background: var(--primary); color: var(--white); }
.process__header { text-align: center; margin-bottom: var(--s16); }
.process__header h2 { color: var(--white); margin-bottom: var(--s3); }
.process__header p { color: rgba(255,255,255,0.6); }
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s6);
  position: relative;
}
.process__steps::before {
  content: '';
  position: absolute;
  top: 22px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: var(--accent);
  opacity: 0.3;
}
.process__step { text-align: center; position: relative; }
.process__step-num {
  width: 44px; height: 44px;
  background: var(--accent);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin: 0 auto var(--s4);
  border-radius: 0;
}
.process__step h4 { color: var(--accent); margin-bottom: var(--s2); font-size: 1rem; }
.process__step p  { color: rgba(255,255,255,0.6); font-size: 0.85rem; }

@media (max-width: 768px) {
  .process__steps { grid-template-columns: repeat(2, 1fr); }
  .process__steps::before { display: none; }
}

/* ── POR QUE FARINACCI ──────────────────────────────────────── */
.why { padding: var(--s24) 0; }
.why__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s16); align-items: center; }
.why__list { display: flex; flex-direction: column; gap: var(--s6); }
.why__item { display: flex; gap: var(--s4); align-items: flex-start; }
.why__item-icon {
  width: 48px; height: 48px; min-width: 48px;
  background: var(--primary-light);
  border: 1px solid var(--primary-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.why__item-icon svg { width: 22px; height: 22px; }
.why__item h4 { font-size: 1rem; color: var(--text-primary); margin-bottom: var(--s1); }
.why__visual {
  background: var(--primary);
  padding: var(--s10);
  color: var(--white);
  position: relative;
}
.why__visual::before {
  content: '';
  position: absolute;
  top: var(--s3); left: var(--s3); right: -var(--s3); bottom: -var(--s3);
  border: 1px solid var(--accent);
  opacity: 0.2;
  pointer-events: none;
}
.why__quote {
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 1.2;
  color: var(--accent);
  margin-bottom: var(--s6);
  letter-spacing: 0.02em;
}
.why__quote-author { font-size: 0.8rem; color: rgba(255,255,255,0.5); letter-spacing: 0.1em; text-transform: uppercase; }

@media (max-width: 768px) {
  .why__grid { grid-template-columns: 1fr; }
  .why__visual { order: -1; }
}

/* ── DEPOIMENTOS ────────────────────────────────────────────── */
.testimonials { background: var(--primary-light); padding: var(--s24) 0; }
.testimonials__header { text-align: center; margin-bottom: var(--s12); }
.testimonials__header h2 { color: var(--white); }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s6); }
.testimonial-card {
  background: var(--primary-mid);
  border: 1px solid var(--primary-border);
  border-top: 3px solid var(--accent);
  padding: var(--s6);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t-base);
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); }
.testimonial-card__quote { font-size: 0.925rem; line-height: 1.75; color: var(--text-secondary); margin-bottom: var(--s4); }
.testimonial-card__author { display: flex; align-items: center; gap: var(--s3); }
.testimonial-card__avatar {
  width: 40px; height: 40px;
  background: var(--primary);
  border: 1px solid var(--primary-border);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.testimonial-card__name { font-weight: 700; font-size: 0.875rem; color: var(--text-primary); }
.testimonial-card__role { font-size: 0.75rem; color: var(--text-muted); }
@media (max-width: 768px) { .testimonials__grid { grid-template-columns: 1fr; } }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq { padding: var(--s24) 0; }
.faq__header { text-align: center; margin-bottom: var(--s12); }
.faq__header h2 { color: var(--white); }
.faq__list { max-width: 800px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--primary-border); overflow: hidden; }
.faq__question {
  display: flex; justify-content: space-between; align-items: center;
  padding: var(--s5) 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: color var(--t-fast);
}
.faq__question:hover { color: var(--accent); }
.faq__question-icon {
  width: 28px; height: 28px; min-width: 28px;
  background: var(--primary-light);
  border: 1px solid var(--primary-border);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  font-weight: 300;
  transition: transform var(--t-base);
}
.faq__item.open .faq__question-icon { transform: rotate(45deg); background: var(--accent); color: var(--primary); border-color: var(--accent); }
.faq__answer { max-height: 0; overflow: hidden; transition: max-height var(--t-slow); }
.faq__answer-inner { padding-bottom: var(--s5); font-size: 0.9rem; line-height: 1.8; color: var(--text-secondary); }
.faq__item.open .faq__answer { max-height: 400px; }

/* ── BLOG ───────────────────────────────────────────────────── */
.blog { background: var(--primary-mid); padding: var(--s24) 0; }
.blog__header { text-align: center; margin-bottom: var(--s12); }
.blog__header h2 { color: var(--white); }
.blog__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s6); }
.blog-card {
  background: var(--primary-light);
  border: 1px solid var(--primary-border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--t-base);
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: rgba(255,188,0,0.2); }
.blog-card__img {
  height: 180px;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.2);
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  overflow: hidden;
}
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card__body { padding: var(--s5); }
.blog-card__cat { display: inline-block; background: var(--accent); color: var(--primary); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 2px 8px; margin-bottom: var(--s3); }
.blog-card h3 { font-size: 1rem; color: var(--text-primary); margin-bottom: var(--s3); line-height: 1.3; }
.blog-card__link { font-size: 0.8rem; font-weight: 700; color: var(--accent); letter-spacing: 0.08em; text-transform: uppercase; border-bottom: 2px solid var(--accent); padding-bottom: 1px; }
@media (max-width: 768px) { .blog__grid { grid-template-columns: 1fr; } }

/* ── CONTATO / CTA ──────────────────────────────────────────── */
.cta-section { background: var(--primary); color: var(--white); padding: var(--s24) 0; }
.cta-section h2 { color: var(--white); margin-bottom: var(--s3); text-align: center; }
.cta-section > .container > p { color: rgba(255,255,255,0.65); max-width: 560px; margin: 0 auto var(--s8); text-align: center; }
.contact-form {
  max-width: 640px; margin: var(--s10) auto 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 3px solid var(--accent);
  padding: var(--s8);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s4); }
.form-group { display: flex; flex-direction: column; gap: var(--s2); margin-bottom: var(--s4); }
.form-group label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; color: var(--accent); text-transform: uppercase; }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-bottom: 2px solid rgba(255,255,255,0.2);
  padding: var(--s3) var(--s4);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--t-fast);
  outline: none;
  border-radius: 0;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-bottom-color: var(--accent); }
.form-group select option { background: var(--primary-light); }
.form-group textarea { resize: vertical; min-height: 110px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.contact-channels {
  display: flex; gap: var(--s8); justify-content: center;
  margin-top: var(--s10); flex-wrap: wrap;
}
.contact-channels a {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  display: flex; align-items: center; gap: var(--s2);
  transition: color var(--t-fast);
}
.contact-channels a:hover { color: var(--accent); }

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer { background: #060A27; color: rgba(255,255,255,0.5); padding: var(--s12) 0 var(--s6); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: var(--s12); margin-bottom: var(--s10); }
.footer__brand { font-family: var(--font-display); font-size: 1.4rem; color: var(--white); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: var(--s3); }
.footer__brand span { color: var(--accent); }
.footer__desc { font-size: 0.85rem; line-height: 1.7; }
.footer__col h4 { font-family: var(--font-body); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); margin-bottom: var(--s4); }
.footer__col ul { display: flex; flex-direction: column; gap: var(--s2); }
.footer__col ul li a { font-size: 0.85rem; transition: color var(--t-fast); }
.footer__col ul li a:hover { color: var(--accent); }
.footer__divider { border: none; border-top: 1px solid rgba(255,255,255,0.06); margin-bottom: var(--s6); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--s4); font-size: 0.78rem; }
.footer__bottom a:hover { color: var(--accent); }
@media (max-width: 768px) { .footer__grid { grid-template-columns: 1fr; } }

/* ── WhatsApp flutuante ─────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: var(--s6);
  right: var(--s6);
  z-index: 999;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.55); }
.whatsapp-float svg { width: 30px; height: 30px; fill: var(--white); }

/* ── FAIXA DE AUTORIDADE ─────────────────────────────────────── */
.authority {
  background: var(--primary-mid);
  border-top: 1px solid var(--primary-border);
  border-bottom: 1px solid var(--primary-border);
  padding: var(--s16) 0;
}
.authority__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--s6);
}
.authority__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--s4);
  padding: var(--s5) var(--s4);
  border: 1px solid var(--primary-border);
  background: var(--primary-light);
  transition: border-color var(--t-base), transform var(--t-base);
}
.authority__item:hover {
  border-color: rgba(255,188,0,0.3);
  transform: translateY(-3px);
}
.authority__icon {
  width: 48px; height: 48px;
  background: var(--accent-pale);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.authority__item p {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--text-secondary);
  font-weight: 500;
}
@media (max-width: 900px) {
  .authority__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .authority__grid { grid-template-columns: 1fr; }
  .authority__item { flex-direction: row; text-align: left; }
}

/* ── GALERIA DE PROJETOS — Carrossel ──────────────────────────── */
.gallery {
  padding: var(--s24) 0;
  background: var(--primary);
  overflow: hidden;
}
.gallery__header {
  text-align: center;
  margin-bottom: var(--s10);
}
.gallery__header h2 {
  color: var(--white);
  margin-bottom: var(--s3);
}
.gallery__wrapper {
  position: relative;
}
.gallery__track {
  display: flex;
  gap: var(--s5);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: var(--s2) 0 var(--s6);
}
.gallery__track::-webkit-scrollbar { display: none; }

.gallery__card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: var(--primary-light);
  border: 1px solid var(--primary-border);
  overflow: hidden;
  transition: all var(--t-base);
  position: relative;
}
.gallery__card:hover {
  border-color: rgba(255,188,0,.3);
  box-shadow: 0 8px 32px rgba(0,0,0,.35);
  transform: translateY(-4px);
}
.gallery__card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform var(--t-slow);
}
.gallery__card:hover .gallery__card-img {
  transform: scale(1.05);
}
.gallery__card-body {
  padding: var(--s4) var(--s5);
}
.gallery__card-tag {
  display: inline-block;
  padding: 3px 10px;
  background: var(--accent-pale);
  color: var(--accent);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--s2);
}
.gallery__card-title {
  font-size: 1rem;
  color: var(--white);
  font-weight: 600;
  line-height: 1.4;
}
.gallery__card-overflow {
  overflow: hidden;
}

/* Controles do carrossel */
.gallery__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--s4);
  margin-top: var(--s6);
}
.gallery__btn {
  width: 44px;
  height: 44px;
  background: var(--primary-light);
  border: 1px solid var(--primary-border);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--t-fast);
}
.gallery__btn:hover {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}
.gallery__dots {
  display: flex;
  gap: 8px;
}
.gallery__dot {
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,.2);
  border-radius: 0;
  cursor: pointer;
  transition: all var(--t-fast);
  border: none;
  padding: 0;
}
.gallery__dot.active {
  background: var(--accent);
  width: 24px;
}

@media (max-width: 768px) {
  .gallery__card { flex: 0 0 280px; }
  .gallery__card-img { height: 180px; }
}

/* ── Imagens nos cards de serviço (roadmap) ───────────────────── */
.roadmap__card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  margin-bottom: var(--s4);
  border: 1px solid var(--primary-border);
  opacity: .9;
  transition: opacity var(--t-base);
}
.roadmap__card:hover .roadmap__card-img {
  opacity: 1;
}

/* ── Utilitários ─────────────────────────────────────────────── */
.text-accent  { color: var(--accent); }
.text-primary { color: var(--primary); }
.text-center  { text-align: center; }
.mt-2 { margin-top: var(--s2); } .mt-4 { margin-top: var(--s4); }
.mt-6 { margin-top: var(--s6); } .mt-8 { margin-top: var(--s8); }
.mb-2 { margin-bottom: var(--s2); } .mb-4 { margin-bottom: var(--s4); }
.mb-6 { margin-bottom: var(--s6); } .mb-8 { margin-bottom: var(--s8); }
