/* CRB Facas — landing (rich) */
:root {
  --bg: #eef1f6;
  --bg-alt: #f8fafc;
  --bg-card: #ffffff;
  --ink: #0c1222;
  --ink-muted: #4a5568;
  --brand: #152a45;
  --brand-mid: #1e3a5f;
  --brand-light: #3d6a9e;
  --accent: #c41e3a;
  --accent-soft: rgba(196, 30, 58, 0.12);
  --accent-hover: #9e1830;
  --line: #d8dee9;
  --line-soft: #e8ecf2;
  --radius: 16px;
  --radius-sm: 12px;
  --shadow: 0 4px 20px rgba(12, 18, 34, 0.06);
  --shadow-md: 0 12px 40px rgba(12, 18, 34, 0.08);
  --shadow-lg: 0 24px 60px rgba(12, 18, 34, 0.12);
  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --font-display: var(--font);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--brand-light);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img,
iframe {
  max-width: 100%;
  border: 0;
}

.container {
  width: min(1140px, 100% - 2.5rem);
  margin-inline: auto;
}

/* Textura sutil */
.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0.035;
  mix-blend-mode: multiply;
  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");
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid var(--line-soft);
}

.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem 0;
  width: min(1140px, 100% - 2.5rem);
  margin-inline: auto;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.logo-link:hover {
  text-decoration: none;
}

.logo-mark {
  flex-shrink: 0;
  filter: drop-shadow(0 2px 10px rgba(12, 21, 38, 0.14));
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-text strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--brand-mid);
}

.logo-text span {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--ink-muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.nav a {
  padding: 0.5rem 0.75rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-muted);
  text-decoration: none;
  border-radius: 10px;
  transition: color 0.2s, background 0.2s;
}

.nav a:hover {
  color: var(--brand-mid);
  background: rgba(30, 58, 95, 0.07);
  text-decoration: none;
}

.nav .btn-nav {
  background: linear-gradient(135deg, var(--accent) 0%, #a01830 100%);
  color: #fff !important;
  margin-left: 0.4rem;
  box-shadow: 0 4px 16px rgba(196, 30, 58, 0.35);
}

.nav .btn-nav:hover {
  filter: brightness(1.06);
  color: #fff !important;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: 0 0 auto 0;
    top: 64px;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.25rem;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line-soft);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 0.9rem 1rem;
  }

  .nav .btn-nav {
    margin-left: 0;
    text-align: center;
  }
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(3.5rem, 9vw, 5.5rem);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}

.hero-orb--1 {
  width: min(70vw, 520px);
  height: min(70vw, 520px);
  background: radial-gradient(circle, rgba(61, 106, 158, 0.45) 0%, transparent 70%);
  top: -15%;
  right: -10%;
}

.hero-orb--2 {
  width: min(50vw, 380px);
  height: min(50vw, 380px);
  background: radial-gradient(circle, rgba(196, 30, 58, 0.2) 0%, transparent 70%);
  bottom: -5%;
  left: -8%;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30, 58, 95, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 58, 95, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 100%);
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

@media (max-width: 960px) {
  .hero {
    overflow-x: hidden;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy .hero-metrics {
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-art {
    order: -1;
    max-width: min(360px, 100%);
    width: 100%;
    margin-inline: auto;
    padding-inline: clamp(0.35rem, 3vw, 0.75rem);
  }

  .hero-stack {
    max-width: 100%;
  }

  .hero-float-card--a {
    top: 2%;
    right: 0;
    left: auto;
  }

  .hero-float-card--b {
    bottom: 3%;
    left: 0;
    right: auto;
  }

  .hero-float-card {
    max-width: min(11.25rem, 47%);
  }

  .hero-panel--mid {
    transform: rotate(0deg);
    padding: 0.7rem;
  }

  .hero-panel--back {
    transform: rotate(-4deg);
  }
}

.hero-badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-mid);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line);
  border-radius: 100px;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow);
}

.hero h1 {
  margin: 0 0 1.1rem;
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 5vw, 3.15rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: var(--brand);
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
  position: relative;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.06em;
  height: 0.28em;
  background: var(--accent-soft);
  z-index: -1;
  border-radius: 4px;
}

.hero .lead {
  margin: 0 0 1.85rem;
  font-size: 1.08rem;
  color: var(--ink-muted);
  max-width: 38ch;
}

@media (max-width: 960px) {
  .hero .lead {
    max-width: none;
    margin-inline: auto;
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.88rem;
  color: var(--ink-muted);
}

.hero-metrics strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--brand-mid);
  margin-bottom: 0.15rem;
}

/* Hero arte */
.hero-stack {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  margin-inline: auto;
}

.hero-panel {
  position: absolute;
  border-radius: 28px;
  border: 1px solid var(--line);
}

.hero-panel--back {
  inset: 8% 6% auto 14%;
  height: 78%;
  background: linear-gradient(160deg, #dce4ee 0%, #c5d0e0 100%);
  box-shadow: var(--shadow-md);
  transform: rotate(-6deg);
}

.hero-panel--mid {
  inset: 4% 8% 8% 4%;
  background: linear-gradient(180deg, #fff 0%, #f1f5f9 100%);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  transform: rotate(2deg);
}

.hero-die {
  width: 100%;
  height: auto;
  max-height: 100%;
}

.die-path {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: die-draw 2s ease forwards 0.35s;
}

@keyframes die-draw {
  to {
    stroke-dashoffset: 0;
  }
}

.die-pulse {
  animation: die-glow 3s ease-in-out infinite;
}

@keyframes die-glow {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.45;
  }
}

.hero-float-card {
  position: absolute;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  font-size: 0.8rem;
  z-index: 2;
}

.hero-float-card span {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
}

.hero-float-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--brand-mid);
  margin-top: 0.2rem;
}

.hero-float-card small {
  display: block;
  margin-top: 0.15rem;
  color: var(--ink-muted);
  font-size: 0.7rem;
}

.hero-float-card--a {
  top: 6%;
  right: -4%;
  animation: float-y 5s ease-in-out infinite;
}

.hero-float-card--b {
  bottom: 10%;
  left: -6%;
  animation: float-y 5s ease-in-out infinite 1s;
}

@keyframes float-y {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 520px) {
  .hero-float-card {
    padding: 0.5rem 0.55rem;
    max-width: min(10.25rem, 50%);
    animation: none;
  }

  .hero-float-card strong {
    font-size: 0.8rem;
    line-height: 1.2;
  }

  .hero-float-card small {
    font-size: 0.6rem;
    line-height: 1.25;
  }

  .hero-float-card span {
    font-size: 0.55rem;
    letter-spacing: 0.08em;
  }

  .hero-die text.hero-die-title {
    display: none;
  }

  .hero-die .hero-die-legend {
    font-size: 9px;
  }
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.45rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s, filter 0.2s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #9e1830 100%);
  color: #fff;
  box-shadow: 0 6px 24px rgba(196, 30, 58, 0.38);
}

.btn-primary:hover {
  color: #fff;
  text-decoration: none;
  filter: brightness(1.05);
  box-shadow: 0 8px 28px rgba(196, 30, 58, 0.45);
}

.btn-ghost {
  background: #fff;
  color: var(--brand-mid);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.btn-ghost:hover {
  border-color: var(--brand-light);
  color: var(--brand);
  text-decoration: none;
}

.btn-on-dark {
  background: #fff;
  color: var(--brand);
  flex-shrink: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.btn-on-dark:hover {
  text-decoration: none;
  filter: brightness(1.05);
}

/* Strip */
.strip {
  padding: 1.35rem 0;
  background: var(--brand-mid);
  color: rgba(255, 255, 255, 0.92);
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 2.5rem;
}

.strip-label {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.65);
  flex-shrink: 0;
}

.strip-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.strip-list li {
  position: relative;
  padding-left: 1rem;
}

.strip-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

/* Sections genéricas */
.section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.section-alt {
  background: var(--bg-alt);
  border-block: 1px solid var(--line-soft);
}

.section-head {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.section-head.section-head--light .section-title {
  color: #fecaca;
}

.section-head.section-head--light h2 {
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.section-title {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
}

.section-head h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.5vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--brand);
  line-height: 1.15;
}

.section-lead {
  margin: 0;
  font-size: 1.05rem;
  color: var(--ink-muted);
  line-height: 1.6;
}

/* Bento serviços */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.1rem;
}

.bento-card {
  grid-column: span 4;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.65rem 1.4rem;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s;
}

.bento-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(61, 106, 158, 0.25);
}

.bento-card--lg {
  grid-column: span 8;
}

.bento-card--accent {
  grid-column: span 4;
  background: linear-gradient(145deg, #2a4a73 0%, #1e3a5f 55%, #152a45 100%);
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.95);
}

/* Contraste: genéricos .bento-card h3/p abaixo sobrescreviam estes — usar dupla classe */
.bento-card.bento-card--accent h3 {
  color: #ffffff;
}

.bento-card.bento-card--accent p {
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.65;
}

.bento-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(30, 58, 95, 0.08);
  color: var(--brand-mid);
  margin-bottom: 1rem;
}

.bento-card--accent .bento-icon {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.bento-card h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--brand);
}

.bento-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-muted);
  line-height: 1.6;
}

.bento-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
}

.bento-tags li {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.65rem;
  border-radius: 100px;
  background: var(--line-soft);
  color: var(--brand-mid);
}

.bento-cta {
  display: inline-block;
  margin-top: 1.15rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff !important;
  text-decoration: none;
}

.bento-cta:hover {
  text-decoration: underline;
}

@media (max-width: 960px) {
  .bento-card,
  .bento-card--lg,
  .bento-card--accent {
    grid-column: span 12;
  }
}

/* Processo */
.process {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (max-width: 720px) {
  .process {
    grid-template-columns: 1fr;
  }
}

.process-step {
  display: flex;
  gap: 1.15rem;
  padding: 1.5rem 1.35rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 0;
}

.process-step > div {
  min-width: 0;
}

.process-num {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
  color: var(--accent);
  opacity: 0.9;
}

.process-step h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--brand-mid);
}

.process-step p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-muted);
  line-height: 1.55;
  text-wrap: pretty;
}

/* Diferenciais dark */
.section-dark {
  background: linear-gradient(165deg, #1a2d44 0%, #243a56 42%, #2d4a6a 100%);
  color: rgba(255, 255, 255, 0.92);
  position: relative;
  overflow: hidden;
}

.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 85% 55% at 100% 0%, rgba(196, 30, 58, 0.12), transparent 55%);
  pointer-events: none;
}

.section-dark .container {
  position: relative;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

@media (max-width: 960px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .features {
    grid-template-columns: 1fr;
  }
}

.feature {
  padding: 1.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  transition: background 0.2s, border-color 0.2s;
}

.feature:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.feature-icon {
  display: block;
  font-size: 1.25rem;
  color: #fecaca;
  margin-bottom: 0.75rem;
}

.feature h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
}

.feature p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.58;
}

/* Sobre */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.85fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

@media (max-width: 860px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

.about-main h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--brand);
}

.about-text {
  margin: 0;
  font-size: 1.06rem;
  color: var(--ink-muted);
  line-height: 1.7;
}

.quote-card {
  margin: 0 0 1.25rem;
  padding: 1.5rem 1.35rem;
  background: linear-gradient(135deg, #fff 0%, #f0f4fa 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow);
}

.quote-card p {
  margin: 0;
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 500;
  color: var(--brand-mid);
  line-height: 1.55;
}

.quote-card footer {
  margin-top: 0.85rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink-muted);
}

.about-card {
  padding: 1.35rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-card h3 {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
}

.about-card p {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
}

.about-card a {
  font-weight: 700;
  font-size: 0.9rem;
}

/* CTA band */
.cta-band {
  margin: 0;
  padding: 0;
  border: none;
}

.cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(2rem, 5vw, 2.75rem) 0;
  margin-inline: auto;
  width: min(1140px, 100% - 2.5rem);
  border-radius: var(--radius);
  background: linear-gradient(120deg, var(--accent) 0%, #8b1530 50%, var(--brand-mid) 100%);
  padding-inline: clamp(1.5rem, 4vw, 2.75rem);
  margin-block: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--shadow-lg);
}

.cta-inner h2 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  color: #fff;
}

.cta-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.98rem;
  max-width: 46ch;
}

/* Contato */
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  min-height: 320px;
  background: var(--line-soft);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.25rem;
  box-shadow: var(--shadow);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-card:hover {
  border-color: rgba(61, 106, 158, 0.22);
  box-shadow: var(--shadow-md);
}

.contact-card h3 {
  margin: 0 0 0.6rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-muted);
}

.contact-strong {
  margin: 0;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--brand);
}

.contact-muted {
  margin: 0.15rem 0 0;
  font-size: 0.88rem;
  color: var(--ink-muted);
}

.contact-address {
  margin: 0.85rem 0 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--ink);
}

.contact-hint {
  margin: 0.5rem 0 0;
  font-size: 0.82rem;
  color: var(--ink-muted);
}

.contact-card .phone {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--brand-mid);
  text-decoration: none;
  line-height: 1.35;
  width: fit-content;
  max-width: 100%;
}

.contact-card .phone:hover {
  color: var(--accent);
}

.contact-card--wa {
  border-color: rgba(37, 211, 102, 0.35);
  background: linear-gradient(180deg, #fff 0%, #f0fdf4 100%);
}

/* Número em cima, WhatsApp embaixo */
.contact-wa-stack {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 0.75rem;
  width: 100%;
}

.contact-wa-stack .phone {
  display: block;
  width: auto;
  max-width: 100%;
  margin: 0;
  flex: 0 0 auto;
}

.contact-card .wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0;
  padding: 0.55rem 1rem;
  background: #25d366;
  color: #fff !important;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
}

.contact-wa-stack .wa {
  width: auto;
  max-width: 100%;
  flex: 0 0 auto;
  box-sizing: border-box;
}

@media (max-width: 900px) {
  .contact-wa-stack {
    align-items: stretch;
  }

  .contact-wa-stack .phone {
    width: 100%;
  }

  .contact-wa-stack .wa {
    width: 100%;
    display: flex;
    padding: 0.7rem 1.1rem;
    font-size: 0.9rem;
  }
}

.contact-card .wa:hover {
  background: #1fb855;
  text-decoration: none;
}

.map-link {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.9rem;
  font-weight: 700;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

/* Footer */
.site-footer {
  background: var(--brand);
  color: rgba(255, 255, 255, 0.85);
  padding: 2.5rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr auto;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 800px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-brand strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #fff;
}

.footer-brand span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.55);
}

.footer-col h3 {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.5);
}

.footer-col p {
  margin: 0 0 0.35rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.92);
}

.footer-col a:hover {
  color: #fff;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-nav a {
  font-weight: 600;
  font-size: 0.9rem;
}

.footer-bottom {
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom p {
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .die-path {
    animation: none;
    stroke-dashoffset: 0;
  }

  .die-pulse,
  .hero-float-card--a,
  .hero-float-card--b {
    animation: none;
  }
}
