/* ============================================================
   OMEGA PRIME — style.css
   ============================================================ */

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

/* TOKENS */
:root {
  --red:        #C0272D;
  --red-2:      #D42D34;
  --red-pale:   #FDF0F0;
  --dark:       #0E0E0E;
  --dark-2:     #161616;
  --dark-3:     #1E1E1E;
  --ink:        #1C1A18;
  --ink-2:      #3D3A36;
  --ink-3:      #7A7570;
  --cream:      #F9F6F1;
  --warm-white: #FFFEFB;
  --border:     #E8E2D9;
  --white:      #FFFFFF;
  --gold:       #C9A84C;

  --font-head: 'Kufam', sans-serif;
  --font-body: 'Inter', sans-serif;

  --w:   1160px;
  --py:  96px;
  --r:   6px;
}

/* BASE */
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--warm-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--w);
  margin: 0 auto;
  padding: 0 36px;
}

em { font-style: italic; color: var(--red); }

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(.22,1,.36,1),
              transform 0.7s cubic-bezier(.22,1,.36,1);
}
.reveal.up { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.4s, padding 0.3s, box-shadow 0.3s;
}
.header.scrolled {
  background: rgba(14,14,14,0.96);
  backdrop-filter: blur(14px);
  padding: 13px 0;
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-img {
  height: 48px;
  width: auto;
  display: block;
  transition: opacity 0.2s;
}

.nav { display: none; gap: 28px; }
@media (min-width: 960px) { .nav { display: flex; } }
.nav a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.nav a:hover { color: var(--white); }

.btn-wpp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 10px 18px;
  border-radius: var(--r);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
}
.btn-wpp:hover { background: var(--red-2); transform: translateY(-1px); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 15px 28px;
  border-radius: var(--r);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: var(--red-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(192,39,45,0.4);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.65);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 15px 20px;
  border-radius: var(--r);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.18);
  transition: all 0.2s;
}
.btn-ghost:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.05);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  display: flex;
  min-height: 100vh;
  background: var(--dark);
}

.hero-left {
  flex: 0 0 55%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  z-index: 2;
}

.hero-left-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 120px;
  padding-bottom: 80px;
  width: 100%;
  /* Alinha pelo mesmo grid do .container (max-width: 1160px):
     55% de 1160px = 638px de largura útil,
     mais o padding lateral de 36px do container */
  max-width: calc(var(--w) * 0.55 + 36px);
  padding-left: clamp(20px, 3.1vw, 36px);
  padding-right: 48px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 3.8vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.hero-title em { color: var(--red-2); font-style: italic; }

.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.hero-proof-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 0 28px;
}
.hero-proof-item:first-child { padding-left: 0; }
.hero-proof-item strong {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  white-space: nowrap;
}
.proof-red { color: var(--red-2); }
.hero-proof-item small {
  font-size: 0.68rem;
  font-weight: 400;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.hero-proof-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

.hero-right {
  flex: 0 0 45%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1A1210 0%, #0C0A08 100%);
}

.hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  animation: heroImageZoom 8s ease-out forwards;
}

@keyframes heroImageZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.hero-right-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--dark) 0%, transparent 25%),
              radial-gradient(ellipse 80% 70% at 70% 45%, rgba(50,30,20,0.85) 0%, transparent 70%);
  z-index: 1;
}

.hero-right-grain {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
  z-index: 2;
}

.hero-story {
  position: absolute;
  bottom: 60px;
  left: 60px;
  z-index: 3;
}
.hero-story-incident {
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 14px;
}
.hero-story-resolve {
  display: block;
  font-style: italic;
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 300;
  margin-top: 6px;
}
.hero-story-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(192,39,45,0.15);
  border: 1px solid rgba(192,39,45,0.35);
  color: #FF9090;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
}
.hero-story-dot {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FF9090;
  animation: dotBlink 1.5s ease-in-out infinite;
}
@keyframes dotBlink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-vert-text {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(90deg);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.08);
  white-space: nowrap;
  z-index: 3;
}

/* ============================================================
   WHY SECTION
   ============================================================ */
.why {
  background: var(--cream);
  padding: var(--py) 0;
}
.why-inner {
  display: grid;
  gap: 72px;
  align-items: start;
}
@media (min-width: 860px) { .why-inner { grid-template-columns: 1fr 1fr; } }

.why-text p {
  font-size: 0.975rem;
  font-weight: 300;
  color: var(--ink-2);
  line-height: 1.8;
  margin-bottom: 16px;
}

.timeline { display: flex; flex-direction: column; margin-top: 24px; }
.tl-item { display: flex; gap: 16px; align-items: flex-start; }
.tl-left { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.tl-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tl-line {
  width: 1px;
  flex: 1;
  min-height: 28px;
  background: linear-gradient(to bottom, rgba(192,39,45,0.5), rgba(192,39,45,0.08));
  margin: 4px 0;
}
.tl-content { padding: 8px 0 28px; }
.tl-label { font-weight: 600; font-size: 0.92rem; color: var(--ink); margin-bottom: 3px; }
.tl-desc { font-size: 0.82rem; color: var(--ink-3); line-height: 1.6; font-weight: 300; }

/* ============================================================
   DIFERENCIAIS
   ============================================================ */
.difs {
  background: var(--dark);
  padding: var(--py) 0;
}
.difs-header {
  display: grid;
  gap: 20px;
  margin-bottom: 52px;
}
@media (min-width: 860px) { .difs-header { grid-template-columns: 1fr 1fr; align-items: end; } }
.difs-lead {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.75;
  font-weight: 300;
}

.difs-grid {
  display: grid;
  gap: 2px;
}
@media (min-width: 640px) { .difs-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .difs-grid { grid-template-columns: repeat(4, 1fr); } }

.dif-card {
  background: var(--dark-2);
  padding: 36px 28px;
  border: 1px solid rgba(255,255,255,0.04);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
}
.dif-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(.22,1,.36,1);
}
.dif-card:hover { background: #1C1916; }
.dif-card:hover::before { transform: scaleX(1); }

.dif-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  position: absolute;
  top: 20px; right: 20px;
}
.dif-icon {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(192,39,45,0.3);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-2);
}
.dif-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  line-height: 1.25;
}
.dif-card p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.7;
  font-weight: 300;
}

/* ============================================================
   EVIDENCE
   ============================================================ */
.evidence {
  background: var(--cream);
  padding: var(--py) 0;
}
.evidence-inner {
  display: grid;
  gap: 72px;
  align-items: center;
}
@media (min-width: 860px) { .evidence-inner { grid-template-columns: 1fr 1fr; } }

.evidence-lead {
  font-size: 0.975rem;
  color: var(--ink-2);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 36px;
}

.cases-grid {
  display: grid;
  gap: 14px;
}
@media (min-width: 520px) { .cases-grid { grid-template-columns: 1fr 1fr; } }

.case-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px;
}
.case-tag {
  display: inline-block;
  background: var(--red-pale);
  color: var(--red);
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 9px;
  border-radius: 2px;
  margin-bottom: 12px;
}
.case-card h4 {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.3;
}
.case-items { display: flex; flex-direction: column; gap: 7px; }
.case-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--ink-2);
  font-weight: 300;
}
.case-item::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
  font-size: 0.72rem;
  margin-top: 1px;
  flex-shrink: 0;
}

.wpp-mock {
  background: #ECE5DD;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.14);
}
.wpp-header {
  background: #128C7E;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.wpp-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 700; font-size: 0.8rem; color: var(--white);
}
.wpp-contact-name {
  display: block; font-weight: 600; color: var(--white); font-size: 0.9rem;
}
.wpp-contact-status { font-size: 0.7rem; color: rgba(255,255,255,0.7); }
.wpp-messages { padding: 18px 14px; display: flex; flex-direction: column; gap: 10px; }
.wpp-msg {
  max-width: 80%;
  padding: 9px 13px;
  border-radius: 7px;
  font-size: 0.85rem;
  line-height: 1.5;
  color: #333;
}
.wpp-msg-time { font-size: 0.62rem; color: rgba(0,0,0,0.35); text-align: right; margin-top: 3px; }
.wpp-in  { background: var(--white); align-self: flex-start; border-radius: 0 7px 7px 7px; }
.wpp-out { background: #DCF8C6;      align-self: flex-end;   border-radius: 7px 0 7px 7px; }
.wpp-blur { filter: blur(4px); user-select: none; }
.wpp-disclaimer {
  font-size: 0.7rem;
  color: var(--ink-3);
  font-style: italic;
  text-align: center;
  margin-top: 10px;
}

/* ============================================================
   PRODUTOS
   ============================================================ */
.produtos {
  background: var(--warm-white);
  padding: var(--py) 0;
  border-top: 1px solid var(--border);
}
.produtos-header { text-align: center; margin-bottom: 48px; }

.produtos-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
@media (min-width: 640px) { .produtos-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .produtos-grid { grid-template-columns: repeat(4, 1fr); } }

.produto {
  background: var(--warm-white);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.2s;
}
.produto:hover { background: var(--cream); }

.produto--destaque { background: var(--dark); }
.produto--destaque:hover { background: var(--dark-2); }
.produto--destaque h3 { color: var(--white); }
.produto--destaque p { color: #ffffff !important; }
.produto--destaque .produto-link { color: #FF9090; }

.produto-icon {
  width: 50px; height: 50px;
  border-radius: var(--r);
  background: var(--red-pale);
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
}
.produto--destaque .produto-icon { background: rgba(255,255,255,0.08); color: var(--red-2); }

.produto-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.64rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 9px;
  border-radius: 2px;
  width: fit-content;
}

.produto h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
  line-height: 1.2;
}
.produto p {
  font-size: 0.85rem;
  color: var(--ink-2);
  line-height: 1.7;
  flex: 1;
  font-weight: 300;
}
.produto-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--red);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.2s;
}
.produto-link:hover { gap: 9px; }

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.deps {
  background: var(--dark);
  padding: var(--py) 0;
}
.deps-header {
  display: grid;
  gap: 20px;
  margin-bottom: 48px;
  align-items: end;
}
@media (min-width: 860px) { .deps-header { grid-template-columns: 1fr auto; } }

.deps-grid {
  display: grid;
  gap: 18px;
}
@media (min-width: 640px) { .deps-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .deps-grid { grid-template-columns: 1fr 1fr 1fr; } }

.dep {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: background 0.25s, border-color 0.25s;
}
.dep:hover { background: rgba(255,255,255,0.06); border-color: rgba(192,39,45,0.2); }
.dep--featured {
  background: rgba(192,39,45,0.07);
  border-color: rgba(192,39,45,0.22);
}

.dep-quote {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--red-2);
  line-height: 1;
  opacity: 0.5;
}
.dep-text {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  flex: 1;
  font-style: italic;
  font-weight: 300;
}
.dep-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 18px;
}
.dep-initials {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(192,39,45,0.18);
  border: 1px solid rgba(192,39,45,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 700; font-size: 0.75rem; color: var(--red-2);
  flex-shrink: 0;
}
.dep-name { font-weight: 600; font-size: 0.85rem; color: var(--white); display: block; line-height: 1.3; }
.dep-location { font-size: 0.7rem; color: rgba(255,255,255,0.28); display: block; font-weight: 300; }
.dep-stars { font-size: 0.78rem; color: var(--gold); letter-spacing: 1px; margin-left: auto; }

/* ============================================================
   PARCEIRAS
   ============================================================ */
.parceiras {
  background: var(--cream);
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}
.parceiras-header { text-align: center; margin-bottom: 40px; }
.parceiras-header .section-title { margin-bottom: 12px; }
.parceiras-note {
  font-size: 0.85rem;
  color: var(--ink-3);
  font-style: italic;
}
.parceiras-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.parceira {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 11px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: 0.02em;
  transition: all 0.2s;
  cursor: default;
}
.parceira:hover {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
  transform: translateY(-2px);
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final {
  background: var(--dark);
  padding: calc(var(--py) * 1.3) 0;
  position: relative;
  overflow: hidden;
}
.cta-bg-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(192,39,45,0.14) 0%, transparent 65%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 60px;
  align-items: center;
}
@media (min-width: 860px) { .cta-inner { grid-template-columns: 1fr auto; } }

.cta-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.cta-title em { color: var(--red-2); font-style: italic; }
.cta-sub {
  font-size: 0.975rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.75;
  font-weight: 300;
  max-width: 500px;
}
.cta-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 270px;
}

.btn-cta-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 18px 28px;
  border-radius: var(--r);
  text-decoration: none;
  text-align: center;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  animation: ctaPulse 2.5s ease-in-out infinite;
}
.btn-cta-main:hover {
  background: var(--red-2);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(192,39,45,0.45);
  animation: none;
}
@keyframes ctaPulse {
  0%,100%{ box-shadow: 0 0 0 0 rgba(192,39,45,0.4); }
  50%    { box-shadow: 0 0 0 14px rgba(192,39,45,0); }
}

.cta-contact { display: flex; flex-direction: column; gap: 10px; }
.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
}
.cta-contact-item svg { opacity: 0.4; flex-shrink: 0; }
.susep {
  font-size: 0.66rem;
  color: rgba(255,255,255,0.14);
  letter-spacing: 0.03em;
  line-height: 1.6;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #080808;
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
@media (min-width: 720px) {
  .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.footer-links a {
  color: rgba(255,255,255,0.28);
  font-size: 0.8rem;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.65); }
.footer-copy { font-size: 0.7rem; color: rgba(255,255,255,0.16); line-height: 1.6; }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.wpp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 200;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.3s;
}
.wpp-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.5); }
.wpp-float-pulse {
  position: absolute;
  inset: 0; border-radius: 50%;
  background: rgba(37,211,102,0.4);
  animation: wppPulse 2s ease-out infinite;
}
@keyframes wppPulse { 0%{transform:scale(1);opacity:0.8} 100%{transform:scale(1.65);opacity:0} }

/* ============================================================
   EYEBROW & SECTION TITLE (globais)
   ============================================================ */
.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 14px;
}
.eyebrow--light { color: rgba(255,255,255,0.3); }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.section-title--light { color: var(--white); }
.section-title em { color: var(--red-2); font-style: italic; }

.section-rule {
  width: 32px;
  height: 2px;
  background: var(--red);
  margin-bottom: 20px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 899px) {
  .hero {
    flex-direction: column;
    min-height: auto;
  }
  .hero-left {
    flex: none;
    width: 100%;
    justify-content: flex-start;
  }
  .hero-left-inner {
    padding-top: 96px;
    padding-bottom: 56px;
    padding-left: 36px;
    padding-right: 36px;
    max-width: 100%;
  }
  .hero-right {
    display: flex;
    min-height: 400px;
    width: 100%;
    flex: none;
  }
  .hero-image-container {
    position: relative;
    height: 400px;
  }
  .hero-image {
    object-position: center 40%;
  }
  .hero-story {
    bottom: 20px;
    left: 20px;
  }
  .hero-vert-text {
    display: none;
  }
}

@media (max-width: 599px) {
  :root { --py: 64px; }
  .container { padding: 0 20px; }
  .hero-left-inner {
    padding-top: 88px;
    padding-bottom: 52px;
    padding-left: 20px;
    padding-right: 20px;
    max-width: 100%;
  }
  .hero-proof {
    gap: 0;
    width: 100%;
  }
  .hero-proof-item {
    flex: 1;
    padding: 0;
    align-items: center;
    text-align: center;
  }
  .hero-proof-item strong { font-size: 1.35rem; }
  .hero-proof-item small { font-size: 0.6rem; }
  .hero-proof-divider {
    display: block;
    width: 1px;
    height: 28px;
    align-self: center;
  }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { justify-content: center; width: 100%; }
  .btn-wpp { font-size: 0; gap: 0; padding: 10px 12px; }
  .btn-wpp svg { width: 20px; height: 20px; }
  .hero-right {
    min-height: 320px;
  }
  .hero-image-container {
    height: 320px;
  }
  .hero-story-incident {
    font-size: 1.2rem;
  }
  .hero-story-resolve {
    font-size: 0.85rem;
  }
  .wpp-float { bottom: 20px; right: 16px; width: 52px; height: 52px; }
}
