/* ========================================
   PYNA HOME — DESIGN SYSTEM
======================================== */

:root {
  /* Brand */
  --pyna-rosa: #EC2D6A;
  --pyna-rosa-soft: rgba(236, 45, 106, 0.08);
  --pyna-rosa-dark: #D6195A;
  --pyna-azul: #223778;
  --pyna-azul-soft: rgba(34, 55, 120, 0.08);

  /* Neutrals */
  --pyna-white: #FFFFFF;
  --pyna-cinza-100: #F4F5F6;
  --pyna-cinza-200: #E8EAEC;
  --pyna-cinza-300: #CBCFCE;
  --pyna-cinza-500: #767879;
  --pyna-cinza-800: #2A2830;
  --pyna-preto: #18161E;

  /* Semantic */
  --bg: var(--pyna-white);
  --bg-soft: #FAFAFB;
  --ink: var(--pyna-preto);
  --ink-soft: var(--pyna-cinza-500);
  --line: var(--pyna-cinza-200);
  --line-soft: rgba(24, 22, 30, 0.06);

  /* Type */
  --font-display: "JetBrains Mono", ui-monospace, monospace;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  /* Motion */
  --ease: cubic-bezier(.2, .8, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --t-fast: 180ms;
  --t-base: 280ms;
  --t-slow: 600ms;

  /* Layout */
  --max-w: 1280px;
  --gutter: 32px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 104px; }
@media (max-width: 1080px) { html { scroll-padding-top: 92px; } }
@media (max-width: 640px)  { html { scroll-padding-top: 80px; } }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
ul { list-style: none; }

/* ========================================
   COMMON
======================================== */

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.mono {
  font-family: var(--font-mono);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pyna-rosa);
  display: inline-block;
  flex-shrink: 0;
}
.dark .eyebrow { color: rgba(255,255,255,0.6); }
.dark .eyebrow .dot { background: var(--pyna-rosa); }

.h-display {
  font-family: var(--font-display);
  font-size: clamp(56px, 8.4vw, 116px);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.05em;
  color: var(--ink);
}
.h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.6vw, 64px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.h4 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.015em;
}
.lead {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 62ch;
}
.muted { color: var(--ink-soft); }

/* Cursor blink for the "_" character */
.cursor {
  display: inline-block;
  color: var(--pyna-rosa);
  animation: blink 1.1s steps(2) infinite;
}
@keyframes blink {
  0%, 50% { opacity: 1; }
  50.1%, 100% { opacity: 0; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
  white-space: nowrap;
  text-decoration: none;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-primary {
  background: var(--pyna-rosa);
  color: white;
  border-color: var(--pyna-rosa);
}
.btn-primary:hover {
  background: var(--pyna-rosa-dark);
  border-color: var(--pyna-rosa-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(236,45,106,0.3);
}
.btn-secondary {
  background: var(--pyna-preto);
  color: white;
  border-color: var(--pyna-preto);
}
.btn-secondary:hover {
  background: var(--pyna-azul);
  border-color: var(--pyna-azul);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--ink);
  background: var(--bg-soft);
}
.btn-sm { padding: 8px 14px; font-size: 13px; border-radius: 10px; }
.btn-lg { padding: 16px 26px; font-size: 15px; border-radius: 14px; }

/* ========================================
   NAVBAR
======================================== */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 88px;
  gap: 32px;
}
.nav-brand-logo {
  display: inline-flex;
  align-items: center;
  /* Adjust this width to scale the logo as needed */
  width: 180px;
}
.nav-brand-logo img {
  display: block;
  width: 100%;
  height: auto;
}
.nav-links {
  display: flex;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--ink);
  opacity: 0.7;
  white-space: nowrap;
  transition: opacity var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.nav-links a:hover { opacity: 1; background: var(--bg-soft); }
.nav-links a.active {
  opacity: 1;
  color: var(--pyna-rosa);
  background: var(--pyna-rosa-soft);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-login {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 8px 12px;
  color: var(--ink-soft);
  border-radius: 8px;
  transition: color var(--t-fast) var(--ease);
}
.nav-login:hover { color: var(--ink); }

.nav-hamburger {
  display: none;
  width: 40px; height: 40px;
  border-radius: 8px;
  position: relative;
  margin-left: auto;
}
.nav-hamburger::before, .nav-hamburger::after {
  content: "";
  position: absolute;
  left: 11px; right: 11px;
  height: 1.5px;
  background: var(--ink);
  transition: transform var(--t-fast) var(--ease);
}
.nav-hamburger::before { top: 15px; }
.nav-hamburger::after  { bottom: 15px; }

@media (max-width: 1080px) {
  .nav-links { display: none; }
  .nav-hamburger { display: block; margin-left: auto; }
  .nav-actions .nav-login { display: none; }
  .nav-brand-logo { width: 140px; }
  .nav-inner { height: 76px; }
}
@media (max-width: 640px) {
  .nav-brand-logo { width: 110px; }
  .nav-inner { height: 64px; }
}

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: 88px;
  left: 0;
  right: 0;
  background: var(--pyna-white);
  border-bottom: 1px solid var(--line);
  z-index: 99;
  padding: 16px 0;
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.nav-drawer.open { display: block; }
.nav-drawer ul { display: flex; flex-direction: column; }
.nav-drawer a {
  display: block;
  padding: 14px 32px;
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--ink);
  border-bottom: 1px solid var(--line-soft);
}
.nav-drawer .drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 32px 8px;
}

/* ========================================
   HERO
======================================== */

.hero {
  position: relative;
  padding: 64px 0 96px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 70% at 8% 25%, rgba(236,45,106,0.07), transparent 60%),
    radial-gradient(ellipse 55% 60% at 95% 95%, rgba(34,55,120,0.06), transparent 60%),
    linear-gradient(180deg, #FAFAFB 0%, var(--pyna-white) 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(24,22,30,0.06) 1px, transparent 1.5px);
  background-size: 28px 28px;
  background-position: 0 0;
  opacity: 0.5;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 70% at 80% 40%, black 0%, transparent 65%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 80% 40%, black 0%, transparent 65%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: center;
  min-height: calc(80vh - 68px);
}
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding: 48px 0 64px; }
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.05em;
  color: var(--ink);
}
.hero-heading-mute { color: var(--ink-soft); font-weight: 400; }
.hero-heading-rosa { color: var(--pyna-rosa); }

.hero-lead {
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0;
}
.hero-lead b {
  color: var(--ink);
  font-weight: 600;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.hero-meta b { color: var(--ink); font-weight: 600; }

/* Hero right — floating card */
.hero-right {
  position: relative;
  display: grid;
  place-items: center;
}
.hero-card {
  background: var(--pyna-white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px;
  box-shadow:
    0 30px 60px rgba(24,22,30,0.06),
    0 1px 0 rgba(24,22,30,0.02);
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 440px;
  width: 100%;
}
.hero-card-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-card-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--pyna-rosa-soft);
  color: var(--pyna-rosa);
  flex-shrink: 0;
}
.hero-card-icon-circle.azul { background: var(--pyna-azul-soft); color: var(--pyna-azul); }
.hero-card-row-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-card-row-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.hero-card-row-value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1.1;
}
.hero-card-divider {
  height: 1px;
  background: var(--line);
}
.hero-card-foot {
  padding-top: 4px;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.hero-card-foot b { color: var(--ink); font-weight: 600; }
.hero-card-logo {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 64px;
  height: 64px;
  background: var(--pyna-azul);
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding: 14px;
  z-index: 2;
  box-shadow: 0 12px 28px rgba(34,55,120,0.28);
}
.hero-card-logo img { width: 100%; }

/* ========================================
   SECTIONS COMMON
======================================== */

section {
  padding: 96px 0;
}
section.soft {
  background: var(--bg-soft);
}
section.dark {
  background: var(--pyna-preto);
  color: var(--pyna-white);
}
section.dark .h2, section.dark .h3 { color: var(--pyna-white); }
section.dark .lead { color: rgba(255,255,255,0.7); }

.sec-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 56px;
  max-width: 720px;
}

/* ========================================
   QUEM SOMOS
======================================== */

#quem-somos { padding: 96px 0; }

.qs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 960px) {
  .qs-grid { grid-template-columns: 1fr; gap: 48px; }
}

.qs-left { display: flex; flex-direction: column; gap: 32px; }

.qs-statement {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink);
}
.qs-statement .rosa { color: var(--pyna-rosa); }

.qs-anti {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.qs-anti-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--pyna-white);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}
.qs-anti-item .x {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--pyna-rosa-soft);
  color: var(--pyna-rosa);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.qs-anti-item .x svg { width: 12px; height: 12px; }

.qs-affirm {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}
.qs-affirm-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
}
.qs-affirm-item:last-child { border-bottom: none; }
.qs-affirm-item .check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--pyna-azul);
  color: white;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.qs-affirm-item .check svg { width: 12px; height: 12px; }
.qs-affirm-text { font-size: 15px; line-height: 1.5; }
.qs-affirm-text b { font-weight: 600; }

/* ========================================
   COMO FUNCIONA — stepper
======================================== */

.cf-manifesto {
  background: var(--pyna-white);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 64px;
  box-shadow: 0 24px 48px rgba(24,22,30,0.04);
}
.cf-manifesto-pattern {
  height: 96px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' width='48' height='48'><path d='M0 24 A 24 24 0 0 1 48 24' fill='none' stroke='%23EC2D6A' stroke-width='3'/><path d='M0 48 A 24 24 0 0 0 48 48' fill='none' stroke='%23223778' stroke-width='3'/><path d='M0 0 A 24 24 0 0 0 48 0' fill='none' stroke='%23223778' stroke-width='3'/></svg>");
  background-repeat: repeat;
  background-size: 64px 64px;
  background-position: center;
}
.cf-manifesto-body {
  padding: 32px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cf-manifesto-body .h3 {
  max-width: 28ch;
}
.cf-manifesto-body p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 64ch;
}
@media (max-width: 720px) {
  .cf-manifesto-pattern { height: 72px; }
  .cf-manifesto-body { padding: 24px 24px 32px; }
}

.cf-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.cf-step {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  cursor: default;
  transition: background var(--t-base) var(--ease);
}
.cf-step:hover { background: rgba(236,45,106,0.02); }
.cf-step:last-child { border-bottom: none; }

/* connector arrow between steps */
.cf-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 39px;
  top: 118px;
  bottom: -10px;
  width: 2px;
  background-image: linear-gradient(to bottom, var(--pyna-rosa) 50%, transparent 0);
  background-size: 2px 8px;
  background-repeat: repeat-y;
  pointer-events: none;
  z-index: 1;
}
.cf-step:nth-child(even):not(:last-child)::after {
  background-image: linear-gradient(to bottom, var(--pyna-azul) 50%, transparent 0);
}
.cf-step:not(:last-child) .cf-step-num::after {
  content: "";
  position: absolute;
  left: 30px;
  bottom: -14px;
  width: 20px;
  height: 12px;
  background: var(--pyna-rosa);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  z-index: 2;
}
.cf-step:nth-child(even):not(:last-child) .cf-step-num::after {
  background: var(--pyna-azul);
}
.cf-step-num { position: relative; }
.cf-step-icon { grid-column: 3; }
.cf-step-content { grid-column: 2; }
.cf-step-num {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--pyna-rosa);
}
.cf-step:nth-child(even) .cf-step-num { color: var(--pyna-azul); }
.cf-step-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 8px;
  max-width: 64ch;
}
.cf-step-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.cf-step-desc {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.cf-step-icon {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border-radius: 22px;
  background: var(--bg-soft);
  color: var(--pyna-rosa);
  margin-top: 6px;
  align-self: start;
}
.cf-step:nth-child(even) .cf-step-icon { color: var(--pyna-azul); }
.cf-step-icon svg { width: 40px; height: 40px; }
.cf-step:nth-child(even) .cf-step-icon { color: var(--pyna-azul); }
.cf-step-icon svg { width: 22px; height: 22px; }

@media (max-width: 720px) {
  .cf-step { grid-template-columns: auto 1fr; gap: 16px; }
  .cf-step-num { font-size: 48px; }
  .cf-step-icon { display: none; }
  .cf-step:not(:last-child)::after,
  .cf-step:not(:last-child) .cf-step-num::after { display: none; }
}

.cf-footer-cta {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

.cf-badges {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  background: var(--line);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.cf-badge {
  background: var(--pyna-white);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.cf-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--pyna-rosa-soft);
  color: var(--pyna-rosa);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.cf-badge-icon svg { width: 18px; height: 18px; }
.cf-badge-text { display: flex; flex-direction: column; gap: 2px; }
.cf-badge-text strong { font-size: 14px; font-weight: 600; }
.cf-badge-text span { font-size: 12px; color: var(--ink-soft); }
@media (max-width: 720px) {
  .cf-badges { grid-template-columns: 1fr; }
}

/* Removed cf-diagram styles */

.vantagens-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 880px) { .vantagens-grid { grid-template-columns: 1fr; } }

.pillar {
  background: var(--pyna-white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--t-base) var(--ease), border-color var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.pillar:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(24,22,30,0.06);
}
.pillar-rosa,
.pillar-azul,
.pillar-preto { background: var(--pyna-preto); color: white; border-color: var(--pyna-preto); }

.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.pillar-icon svg { width: 22px; height: 22px; color: white; }
.pillar-role {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
}
.pillar-title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: white;
}
.pillar-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.pillar-items li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.92);
}
.pillar-items .check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: grid; place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.pillar-items .check svg { width: 10px; height: 10px; color: white; }

/* Solution strip */
.solucao-strip {
  margin-top: 48px;
  background: linear-gradient(135deg, var(--pyna-rosa), var(--pyna-azul));
  border-radius: 20px;
  padding: 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  color: white;
}
@media (max-width: 880px) {
  .solucao-strip { grid-template-columns: 1fr; gap: 20px; }
}
.solucao-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: rgba(255,255,255,0.18);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.solucao-icon svg { width: 28px; height: 28px; color: white; }
.solucao-text { display: flex; flex-direction: column; gap: 8px; }
.solucao-text h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: white;
}
.solucao-text p {
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
}

/* Bottom CTA */
.bottom-cta {
  margin-top: 64px;
  background: var(--pyna-preto);
  border-radius: 24px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  color: white;
}
@media (max-width: 720px) {
  .bottom-cta { grid-template-columns: 1fr; gap: 20px; padding: 32px; }
}
.bottom-cta h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: white;
  margin-bottom: 8px;
}
.bottom-cta p {
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255,255,255,0.7);
  max-width: 60ch;
}

/* ========================================
   FAQ
======================================== */

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media (max-width: 880px) { .faq-grid { grid-template-columns: 1fr; gap: 32px; } }

.faq-group { display: flex; flex-direction: column; gap: 8px; }
.faq-group-full { grid-column: span 2; }
@media (max-width: 880px) { .faq-group-full { grid-column: span 1; } }

.faq-group-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pyna-rosa);
  margin-bottom: 8px;
}
.faq-group-label svg { width: 14px; height: 14px; }
.faq-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
@media (max-width: 720px) { .faq-cols { grid-template-columns: 1fr; } }

.faq-item {
  background: var(--pyna-white);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color var(--t-fast) var(--ease);
}
.faq-item:hover { border-color: var(--pyna-cinza-300); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 500;
  text-align: left;
  color: var(--ink);
  cursor: pointer;
}
.faq-chevron {
  width: 16px;
  height: 16px;
  color: var(--pyna-rosa);
  flex-shrink: 0;
  transition: transform var(--t-base) var(--ease);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-base) var(--ease), padding var(--t-base) var(--ease);
  padding: 0 20px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 20px 20px;
}

.faq-bottom {
  margin-top: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 32px;
  background: var(--pyna-white);
  border: 1px solid var(--line);
  border-radius: 16px;
  flex-wrap: wrap;
}
.faq-bottom p {
  font-size: 15px;
  color: var(--ink);
}

/* ========================================
   FOOTER
======================================== */

.site-footer {
  background: var(--pyna-preto);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
}
@media (max-width: 960px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 540px) {
  .footer-top { grid-template-columns: 1fr; }
}
.footer-brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  padding: 0;
}
.footer-brand-logo img.footer-logo {
  display: block;
  width: 100%;
  height: auto;
}
.footer-tagline {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  max-width: 36ch;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}
.footer-social a {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--pyna-white);
  transition: all var(--t-fast) var(--ease);
  position: relative;
  overflow: hidden;
}
.footer-social a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--pyna-rosa), var(--pyna-azul));
  opacity: 0;
  transition: opacity var(--t-fast) var(--ease);
  z-index: 0;
}
.footer-social a:hover::before { opacity: 1; }
.footer-social a:hover {
  border-color: transparent;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(236,45,106,0.35);
}
.footer-social svg {
  width: 20px; height: 20px;
  position: relative;
  z-index: 1;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-col ul li {
  margin-bottom: 12px;
}
.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color var(--t-fast) var(--ease);
}
.footer-col ul a:hover { color: white; }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer-contact-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: grid; place-items: center;
  color: var(--pyna-rosa);
  flex-shrink: 0;
}
.footer-contact-icon svg { width: 16px; height: 16px; }
.footer-contact-text strong {
  display: block;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-mono);
  font-weight: 500;
}
.footer-contact-text a {
  font-size: 14px;
  color: white;
  font-weight: 500;
}
.footer-whatsapp {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: #25D366;
  color: white;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  margin-top: 8px;
}
.footer-whatsapp svg { width: 18px; height: 18px; flex-shrink: 0; }

.footer-bottom {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a:hover { color: white; }

/* ============ footer location strip ============ */
.footer-location {
  margin-top: 56px;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.10);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: center;
}
@media (max-width: 720px) {
  .footer-location { grid-template-columns: 1fr; gap: 18px; }
}
.footer-location-k {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
}
.footer-location-v {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.015em;
  line-height: 1.35;
  margin-bottom: 14px;
}
.footer-location-v small {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0;
  margin-top: 4px;
}
.footer-location-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pyna-rosa);
  transition: color var(--t-fast) var(--ease);
}
.footer-location-link:hover { color: #fff; }
.footer-location-link svg { width: 12px; height: 12px; }
.footer-location-map {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  height: 180px;
  background: var(--pyna-cinza-800);
}
.footer-location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.55) contrast(1.05);
}
.footer-location-map::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 60%, rgba(24,22,30,0.20));
}
