/* =============================================
   Polifortt LP — style.css
   Tokens em :root espelhados do DESIGN.md
   Mobile-first, industrial moderno
   ============================================= */

:root {
  /* Cores — paleta da marca Polifortt
     Brand azul/violeta (logo principal) e vermelho (acento do logo) */
  --brand-navy:        #1B1D52;  /* hero / CTA dark */
  --brand-navy-2:      #25286A;  /* faixa de prova */
  --brand-navy-3:      #3D3F8E;  /* tom intermediário (logo) */
  --brand-navy-light:  #E8E8F2;  /* tint claro */

  --brand-red:         #C82127;  /* CTA primário */
  --brand-red-dark:    #A31A1F;  /* hover */
  --brand-red-light:   #FCE8E9;  /* tint */

  --steel-50:  #F4F6F8;
  --steel-100: #E9EDF1;
  --steel-200: #D9DEE3;
  --steel-400: #8C97A3;
  --steel-600: #5C6772;
  --ink:       #101820;

  --white:    #FFFFFF;
  --green-wa: #25D366;
  --star:     #F5B800;

  /* Aliases semânticos */
  --color-primary:      var(--brand-red);
  --color-primary-dark: var(--brand-red-dark);
  --color-bg:           var(--white);
  --color-surface:      var(--steel-50);
  --color-text:         var(--ink);
  --color-text-muted:   var(--steel-600);
  --color-border:       var(--steel-200);

  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Manrope', 'Inter', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  --shadow-sm: 0 2px 8px rgba(27, 29, 82, .08);
  --shadow-md: 0 12px 32px rgba(27, 29, 82, .12);
  --shadow-lg: 0 24px 56px rgba(27, 29, 82, .18);

  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);

  --header-h: 76px;
}

/* ----- RESET ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img, svg, iframe { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }

/* ----- CONTAINER ----- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 480px)  { .container { padding: 0 24px; } }
@media (min-width: 768px)  { .container { padding: 0 32px; } }
@media (min-width: 1024px) { .container { padding: 0 48px; } }

.container--narrow { max-width: 720px; }

/* ----- TIPOGRAFIA ----- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

h1 { font-size: 2rem; }
@media (min-width: 480px)  { h1 { font-size: 2.375rem; } }
@media (min-width: 768px)  { h1 { font-size: 2.75rem; } }
@media (min-width: 1024px) { h1 { font-size: 3rem; letter-spacing: -0.035em; } }
@media (min-width: 1280px) { h1 { font-size: 3.25rem; } }

.hero__title-line3 {
  white-space: nowrap;
  display: inline-block;
}

h2 { font-size: 1.75rem; }
@media (min-width: 480px)  { h2 { font-size: 2rem; } }
@media (min-width: 768px)  { h2 { font-size: 2.5rem; } }
@media (min-width: 1024px) { h2 { font-size: 2.875rem; } }

h3 { font-size: 1.125rem; font-weight: 700; }
@media (min-width: 768px)  { h3 { font-size: 1.375rem; } }

p { color: var(--color-text-muted); }

/* ----- EYEBROW ----- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel-600);
  margin-bottom: 16px;
}
.eyebrow--accent { color: var(--brand-red); }
.eyebrow--small  { font-size: 0.65rem; margin-bottom: 8px; }

.text-accent { color: var(--brand-red); }

/* ----- BOTÕES ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
  text-align: center;
  min-height: 48px;
  line-height: 1;
}

.btn--sm  { padding: 10px 18px; font-size: 0.875rem; min-height: 40px; }
.btn--md  { padding: 14px 24px; font-size: 0.95rem; }
.btn--lg  { padding: 16px 28px; font-size: 1rem; }
.btn--xl  { padding: 18px 32px; font-size: 1.05rem; }

.btn__icon { width: 20px; height: 20px; flex-shrink: 0; }

.btn--primary {
  background: var(--brand-red);
  color: var(--white);
  border-color: var(--brand-red);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--brand-red-dark);
  border-color: var(--brand-red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--outline {
  background: var(--white);
  color: var(--ink);
  border-color: var(--steel-200);
}
.btn--outline:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}

.cta-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  margin-top: 32px;
}
.cta-block .btn { width: 100%; }
/* Em mobile largo / tablet (hero ainda 1-col) os 2 botões cabem em row */
@media (min-width: 480px) and (max-width: 1023px) {
  .cta-block { flex-direction: row; align-items: center; flex-wrap: wrap; }
  .cta-block .btn { width: auto; }
}
/* Em desktop (hero vira 2-col) a coluna esquerda fica apertada — empilha os CTAs */

/* ----- SEÇÕES ----- */
.section {
  padding: 56px 0;
}
@media (min-width: 768px)  { .section { padding: 80px 0; } }
@media (min-width: 1024px) { .section { padding: 96px 0; } }

.section--alt { background: var(--color-surface); }

.section-header {
  text-align: center;
  margin-bottom: 48px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) { .section-header { margin-bottom: 64px; } }

.section-title { color: var(--ink); margin-bottom: 12px; }
.section-sub {
  font-size: 1rem;
  color: var(--color-text-muted);
}
@media (min-width: 768px) { .section-sub { font-size: 1.0625rem; } }

/* ----- SCROLL REVEAL ----- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===========================================
   HEADER
   =========================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-sm); }

.header__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  height: var(--header-h);
}

.header__logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  height: 100%;
}

.header__logo-img {
  height: 44px;
  width: auto;
  display: block;
}
@media (min-width: 768px)  { .header__logo-img { height: 52px; } }
@media (min-width: 1024px) { .header__logo-img { height: 56px; } }

.nav {
  display: none;
  gap: 4px;
  margin-left: 24px;
}
@media (min-width: 1024px) { .nav { display: flex; } }

.nav__link {
  padding: 8px 12px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--steel-600);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav__link:hover { color: var(--ink); background: var(--steel-50); }

.header__phone {
  display: none;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
}
.header__phone:hover { color: var(--brand-red); }
@media (min-width: 768px) { .header__phone { display: inline-flex; } }

.header__cta {
  display: none;
  flex-shrink: 0;
}
@media (min-width: 480px) { .header__cta { display: inline-flex; margin-left: auto; } }
@media (min-width: 768px) { .header__cta { margin-left: 0; } }

/* hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
  flex-shrink: 0;
}
@media (min-width: 1024px) { .hamburger { display: none; } }

.hamburger span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--color-border);
  padding: 16px 24px 24px;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
@media (min-width: 1024px) { .mobile-menu, .mobile-menu.open { display: none; } }

.mobile-menu__link {
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--color-border);
}
.mobile-menu__cta { margin-top: 16px; width: 100%; }

/* ===========================================
   HERO
   =========================================== */
.hero {
  background: var(--brand-navy);
  color: var(--white);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px)  { .hero { padding: 96px 0 80px; } }
@media (min-width: 1024px) { .hero { padding: 128px 0 96px; } }

/* malha sutil de fundo */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}

.hero__inner {
  display: grid;
  gap: 40px;
  position: relative;
}
@media (min-width: 1024px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    align-items: center;
    gap: 72px;
  }
}

.hero__content { max-width: 640px; }

.hero__title {
  color: var(--white);
  margin-bottom: 20px;
}

.hero__sub {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
  max-width: 560px;
}
@media (min-width: 768px) { .hero__sub { font-size: 1.125rem; } }

.hero__micro {
  margin-top: 16px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.hero__visual {
  position: relative;
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3 / 4;
  margin-top: 8px;
}
@media (min-width: 1024px) {
  .hero__visual { aspect-ratio: 4 / 5; margin-top: 0; }
}

.hero__picture, .hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(1.04);
}
.hero__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(27, 29, 82, 0) 45%, rgba(27, 29, 82, 0.65) 100%);
  pointer-events: none;
}

.hero__badge {
  position: absolute;
  top: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 22px;
  background: var(--brand-red);
  color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 5;
  transform: rotate(-2deg);
}

.hero__badge-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.0625rem;
  letter-spacing: -0.01em;
}

.hero__badge-text {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.9);
}

.hero__caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--white);
}

.hero__caption-line {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.125rem;
  letter-spacing: -0.01em;
}

.hero__caption-meta {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.85);
}

@media (min-width: 1024px) {
  .hero__badge-num { font-size: 1.1875rem; }
  .hero__caption-line { font-size: 1.25rem; }
}

/* ===========================================
   FAIXA DE PROVA
   =========================================== */
.proof-bar {
  background: var(--brand-navy-2);
  color: var(--white);
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.proof-bar__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (min-width: 768px)  { .proof-bar__list { grid-template-columns: repeat(4, 1fr); gap: 0; } }

.proof-bar__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
  position: relative;
}
@media (min-width: 768px) {
  .proof-bar__item {
    text-align: left;
    padding: 4px 28px;
  }
  .proof-bar__item:first-child { padding-left: 0; }
  .proof-bar__item:not(:first-child)::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: rgba(255, 255, 255, 0.12);
  }
}

.proof-bar__num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
@media (min-width: 768px) { .proof-bar__num { font-size: 2.25rem; } }

.proof-bar__unit {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-red);
}
@media (min-width: 768px) { .proof-bar__unit { font-size: 0.78rem; } }

.proof-bar__label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
}

/* ===========================================
   DIFERENCIAIS
   =========================================== */
.diff-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px)  { .diff-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }
@media (min-width: 1024px) { .diff-grid { grid-template-columns: 1fr 1fr; gap: 32px; max-width: 1000px; margin-left: auto; margin-right: auto; } }

.diff-card {
  padding: 28px 24px 24px;
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
}
.diff-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--brand-red);
  transform: scaleX(0.25);
  transform-origin: left;
  transition: transform var(--transition);
}
.diff-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-red);
}
.diff-card:hover::before { transform: scaleX(1); }

.diff-card__icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-red-light);
  color: var(--brand-red);
  border-radius: var(--radius-sm);
  margin-bottom: 4px;
}
.diff-card__icon svg {
  width: 26px;
  height: 26px;
}

.diff-card__title {
  color: var(--ink);
  font-family: var(--font-display);
}

.diff-card p {
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ===========================================
   PRODUTOS
   =========================================== */
.products {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .products {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

.product {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}
.product:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-red);
}

.product__body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.product__title {
  color: var(--ink);
  font-family: var(--font-display);
  margin-bottom: 2px;
}

.product__body p {
  font-size: 0.9375rem;
  line-height: 1.55;
}

.product strong { color: var(--ink); font-weight: 600; }

/* feature card mantém o mesmo layout — só herda */
.product--feature .product__body { padding: 24px; }

.product__thumb {
  aspect-ratio: 16 / 9;
  background: var(--brand-navy-3);
  position: relative;
  overflow: hidden;
}

/* thumb com foto real */
.product__thumb--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product__thumb--policarb {
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.10) 0px,
      rgba(255, 255, 255, 0.10) 1px,
      transparent 1px,
      transparent 12px
    ),
    linear-gradient(135deg, #4A6B8A 0%, var(--brand-navy-3) 100%);
}
.product__thumb--policarb::after {
  content: 'POLICARBONATO';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.28);
  letter-spacing: 0.04em;
}

.product__thumb--label {
  background: linear-gradient(135deg, var(--brand-navy-3) 0%, var(--brand-navy) 100%);
}
.product__thumb--label::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(200, 33, 39, 0.18) 0, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0, transparent 40%);
}
.product__thumb--label::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: -0.01em;
}

.product__cta {
  margin-top: auto;
  padding-top: 12px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--brand-red);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color var(--transition);
}
.product__cta:hover { color: var(--brand-red-dark); }

/* ===========================================
   PRA QUEM (ICP)
   =========================================== */
.icp-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px)  { .icp-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }
@media (min-width: 1024px) { .icp-grid { grid-template-columns: 1fr 1fr; gap: 32px; max-width: 1000px; margin-left: auto; margin-right: auto; } }

.icp {
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--brand-red);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.icp:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.icp__icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-navy);
  color: var(--white);
  border-radius: var(--radius-sm);
}
.icp__icon svg { width: 22px; height: 22px; }

.icp__title {
  color: var(--ink);
  font-family: var(--font-display);
}

.icp p {
  font-size: 0.9375rem;
  line-height: 1.55;
}

.icp__bonus {
  margin-top: 4px;
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.85rem !important;
}
.icp__bonus strong { color: var(--brand-red); }

/* ===========================================
   PROVA SOCIAL
   =========================================== */
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 48px;
  text-align: center;
}
@media (min-width: 768px) {
  .proof-grid {
    gap: 32px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 56px;
  }
}

.proof-stat {
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.proof-stat__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
}
@media (min-width: 768px) { .proof-stat__num { font-size: 2.75rem; } }

.proof-stat__star { color: var(--star); }

.proof-stat__label {
  font-size: 0.8rem;
  color: var(--steel-600);
  line-height: 1.4;
}

.testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 40px;
}
@media (min-width: 600px)  { .testimonials { grid-template-columns: 1fr 1fr; gap: 20px; } }
@media (min-width: 1024px) { .testimonials { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.testimonial {
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.testimonial__stars {
  color: var(--star);
  font-size: 1rem;
  letter-spacing: 2px;
  line-height: 1;
}

.testimonial__quote {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink);
  font-style: normal;
  font-weight: 500;
  margin: 0;
}

.testimonial__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--color-border);
}

.testimonial__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--ink);
}

.testimonial__source {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--steel-600);
}

.proof-cta { text-align: center; }

/* ===========================================
   LOCALIZAÇÃO
   =========================================== */
.location {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .location {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 48px;
    align-items: stretch;
  }
}

.location__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.location__block { display: flex; flex-direction: column; gap: 6px; }

.location__label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-red);
}

.location__info p {
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.6;
}

.location__link { color: var(--ink); border-bottom: 1px dotted var(--steel-400); }
.location__link:hover { color: var(--brand-red); border-color: var(--brand-red); }

.location__map {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  min-height: 320px;
  background: var(--steel-50);
}
.location__map iframe { height: 100%; width: 100%; min-height: 320px; }

/* ===========================================
   FORMULÁRIO
   =========================================== */
.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--white);
  padding: 28px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--brand-red);
  box-shadow: var(--shadow-sm);
}
@media (min-width: 768px) { .form { padding: 40px 36px; } }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
}

.form-input,
.form-select,
.form-textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  transition: border-color var(--transition);
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.form-textarea { resize: vertical; min-height: 100px; font-family: var(--font-body); }
.form-select {
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2212%22%20height%3D%228%22%20viewBox%3D%220%200%2012%208%22%3E%3Cpath%20fill%3D%22%235C6772%22%20d%3D%22M6%208L0%200h12z%22/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--brand-red);
  box-shadow: 0 0 0 3px rgba(200, 33, 39, 0.15);
}

.form-checkbox { display: flex; align-items: flex-start; gap: 10px; }
.form-checkbox input { width: 18px; height: 18px; margin-top: 3px; flex-shrink: 0; cursor: pointer; accent-color: var(--brand-red); }
.form-checkbox label { font-size: 0.85rem; color: var(--steel-600); line-height: 1.5; cursor: pointer; }

.form button[type="submit"] { margin-top: 8px; width: 100%; }

.form-micro {
  text-align: center;
  font-size: 0.8rem;
  color: var(--steel-600);
  margin-top: -4px;
}

.form-success,
.form-error {
  display: none;
  padding: 24px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
}
.form-success {
  background: #E8F4EC;
  color: #1B5E2A;
  border: 1px solid #B6DCBF;
}
.form-error {
  background: #FCE8E6;
  color: #8A1F12;
  border: 1px solid #F1B5AC;
}
.form-success p, .form-error p { margin-top: 6px; color: inherit; }
.form-error a { font-weight: 700; text-decoration: underline; }

/* ===========================================
   CTA FINAL
   =========================================== */
.cta-final {
  background:
    linear-gradient(rgba(11, 13, 40, 0.84), rgba(11, 13, 40, 0.92)),
    url('../assets/cta-fundo-galpao.jpg') center / cover no-repeat;
  color: var(--white);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px)  { .cta-final { padding: 96px 0; } }

.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 33, 39, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 33, 39, 0.07) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 0%, rgba(0,0,0,0.3) 70%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 0%, rgba(0,0,0,0.3) 70%, transparent 100%);
}
.cta-final::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(200, 33, 39, 0.18) 0, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(61, 63, 142, 0.4) 0, transparent 50%);
  pointer-events: none;
}

.cta-final__title {
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
}

.cta-final__sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-final .btn { position: relative; }

/* ===========================================
   FOOTER
   =========================================== */
.footer {
  padding: 56px 0 24px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.62);
}
@media (min-width: 768px) { .footer { padding: 72px 0 28px; } }

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px 32px;
  margin-bottom: 40px;
}
@media (min-width: 600px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: 48px;
  }
}

.footer__col { display: flex; flex-direction: column; gap: 14px; }
.footer__col--brand { gap: 16px; }

.footer__logo-img {
  height: 40px;
  width: auto;
  max-width: 220px;
  display: block;
}

.footer__tagline {
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
  max-width: 320px;
}

.footer__heading {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-red);
  margin-bottom: 4px;
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
}

.footer__link {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
}
.footer__link:hover { color: var(--brand-red); }

.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer__copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer__link--small { font-size: 0.78rem; }

/* ===========================================
   WHATSAPP FLOAT
   =========================================== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green-wa);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
}
.whatsapp-float svg { width: 28px; height: 28px; fill: var(--white); }

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50%      { box-shadow: 0 4px 32px rgba(37, 211, 102, 0.7); }
}
.whatsapp-float { animation: whatsapp-pulse 2.5s ease-in-out infinite; }

@media (min-width: 768px) {
  .whatsapp-float { bottom: 24px; right: 24px; width: 60px; height: 60px; }
  .whatsapp-float svg { width: 30px; height: 30px; }
}
