﻿:root {
  --bg: #f3f7ff;
  --bg-soft: #f8fbff;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --surface-dark: #0f2a52;
  --line: rgba(15, 42, 82, 0.1);
  --line-strong: rgba(15, 42, 82, 0.16);
  --text: #142745;
  --text-soft: #5c7094;
  --text-inverse: #ecf4ff;
  --primary: #0d2244;
  --primary-2: #1a4f96;
  --accent: #ff7a24;
  --accent-2: #ffb16d;
  --success: #1da971;
  --shadow-soft: 0 18px 40px rgba(13, 34, 68, 0.08);
  --shadow-card: 0 22px 70px rgba(13, 34, 68, 0.12);
  --shadow-glow: 0 28px 90px rgba(26, 79, 150, 0.18);
  --radius-sm: 18px;
  --radius-md: 26px;
  --radius-lg: 34px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:target {
  scroll-margin-top: 120px;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 165, 103, 0.16), transparent 30%),
    radial-gradient(circle at 88% 0%, rgba(112, 171, 255, 0.25), transparent 28%),
    linear-gradient(180deg, #fcfdff 0%, #f4f8ff 35%, #eff5ff 100%);
  min-width: 320px;
}

img {
  display: block;
  max-width: 100%;
}

figure {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 50;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.hero .container {
  width: min(1260px, calc(100% - 2rem));
}

.section {
  padding: 5.5rem 0;
}

.section-soft {
  position: relative;
}

.section-soft::before {
  content: "";
  position: absolute;
  inset: 1rem 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.4)),
    radial-gradient(circle at top right, rgba(255, 173, 105, 0.14), transparent 32%);
  z-index: -1;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: #4e71a7;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", "Manrope", sans-serif;
  color: var(--primary);
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(2.85rem, 4.55vw, 4.45rem);
  line-height: 0.94;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.35rem);
  line-height: 1;
}

h3 {
  font-size: 1.16rem;
  line-height: 1.18;
}

p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 52px;
  padding: 0.9rem 1.25rem;
  border-radius: 16px;
  border: 1px solid transparent;
  font-size: 0.96rem;
  font-weight: 800;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn:focus-visible,
.nav-toggle:focus-visible,
.pricing-toggle-btn:focus-visible,
.site-nav a:focus-visible,
.brand:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(255, 122, 36, 0.28);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #ff9c47);
  color: #fff;
  box-shadow: 0 18px 34px rgba(255, 122, 36, 0.26);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 22px 42px rgba(255, 122, 36, 0.34);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary);
  border-color: var(--line);
  box-shadow: var(--shadow-soft);
}

.btn-block {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding-top: max(0.35rem, env(safe-area-inset-top));
  backdrop-filter: blur(16px);
  background: rgba(249, 251, 255, 0.72);
  border-bottom: 1px solid rgba(13, 34, 68, 0.08);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 1rem;
  min-height: 82px;
  padding: 0.9rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(229, 239, 255, 0.94));
  border: 1px solid rgba(26, 79, 150, 0.12);
  box-shadow: 0 16px 30px rgba(13, 34, 68, 0.12);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy {
  display: grid;
  gap: 0.15rem;
}

.brand-copy strong {
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.brand-copy small {
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 700;
}

.site-nav {
  display: none;
  grid-column: 1 / -1;
  gap: 0.2rem;
  padding: 0.75rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.site-nav[data-open="true"] {
  display: grid;
}

.site-nav a {
  padding: 0.9rem 1rem;
  border-radius: 14px;
  color: #36537f;
  font-weight: 800;
}

.site-nav a:hover {
  background: rgba(235, 243, 255, 0.9);
  color: var(--primary);
}

.nav-toggle {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
}

.nav-cta {
  display: none;
}

.hero {
  padding: 2rem 0 4.4rem;
}

.hero-grid {
  display: grid;
  gap: 2.2rem;
  align-items: start;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.hero-badges span,
.trust-items span,
.comparison-label,
.plan-label,
.showcase-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.78rem;
  border-radius: 999px;
  border: 1px solid rgba(13, 34, 68, 0.1);
  background: rgba(255, 255, 255, 0.8);
  color: #31517d;
  font-size: 0.8rem;
  font-weight: 800;
}

.hero-lead {
  margin-top: 1rem;
  max-width: 54ch;
  font-size: 1rem;
}

.hero-list,
.list-check,
.plan-list {
  list-style: none;
  margin: 1.1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.hero-list li,
.list-check li,
.plan-list li {
  position: relative;
  padding-left: 1.6rem;
  color: #32517b;
  font-weight: 700;
  line-height: 1.55;
}

.hero-list li::before,
.list-check li::before,
.plan-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #ffb16d);
  box-shadow: 0 0 0 5px rgba(255, 122, 36, 0.16);
}

.list-check-muted li::before {
  background: linear-gradient(135deg, #8fa5c8, #c5d5ef);
  box-shadow: 0 0 0 5px rgba(143, 165, 200, 0.18);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.2rem;
}

.hero-metrics {
  display: grid;
  gap: 0.9rem;
  margin: 0.35rem 0 0;
}

.hero-metrics div {
  padding: 1rem 1rem 1.05rem;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft);
}

.hero-metrics dt {
  margin-bottom: 0.32rem;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 0.96rem;
  color: var(--primary);
  font-weight: 700;
}

.hero-metrics dd {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.55;
}

.hero-visual {
  position: relative;
  min-height: 0;
  display: grid;
  align-items: end;
  width: 100%;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(28px);
}

.hero-glow-a {
  inset: 7% auto auto 8%;
  width: 180px;
  height: 180px;
  background: rgba(255, 175, 110, 0.32);
}

.hero-glow-b {
  inset: auto 4% 12% auto;
  width: 220px;
  height: 220px;
  background: rgba(87, 144, 229, 0.22);
}

.visual-card,
.comparison-card,
.comparison-media,
.feature-card,
.segment-card,
.step-card,
.plan-card,
.pricing-aside,
.benefit-card,
.showcase-card,
.faq-item,
.cta-panel,
.panel-stage-main,
.panel-stage-note,
.trust-band-inner {
  position: relative;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.visual-card {
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.visual-card-main {
  z-index: 2;
  margin-left: 0;
  padding: 1rem;
}

.visual-card-float {
  position: absolute;
  right: 0;
  bottom: 1.8rem;
  width: min(52%, 270px);
  padding: 0.85rem;
  z-index: 3;
}

.visual-card-bar {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  color: #d9e8ff;
  font-size: 0.78rem;
  font-weight: 800;
}

.visual-card-main .visual-card-bar,
.panel-stage-main .visual-card-bar {
  padding: 0.95rem 1rem 0;
  color: var(--text-soft);
}

.device-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #10284d 0%, #153866 100%);
  box-shadow: var(--shadow-glow);
}

.device-frame::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.device-frame img {
  width: 100%;
  height: auto;
}

.device-frame-compact {
  border-radius: 24px;
}

.device-frame-tall {
  max-width: 360px;
  margin-inline: auto;
}

.hero-note {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 260px;
  padding: 1rem 1rem 1.05rem;
  border-radius: 20px;
  background: rgba(13, 34, 68, 0.92);
  color: var(--text-inverse);
  box-shadow: var(--shadow-card);
  z-index: 4;
}

.hero-note-title {
  margin-bottom: 0.35rem;
  color: #fff;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-note p:last-child,
.panel-stage-note p,
.cta-panel-note {
  color: rgba(236, 244, 255, 0.78);
}

.trust-band {
  padding-bottom: 1rem;
}

.trust-band-inner {
  display: grid;
  gap: 1.2rem;
  padding: 1.25rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(240, 246, 255, 0.88));
}

.trust-band-inner p {
  font-size: 1rem;
  color: #2f4e79;
  font-weight: 700;
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.section-heading {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 2rem;
  max-width: 760px;
}

.section-heading-row {
  align-items: end;
}

.section-heading-tight {
  max-width: 580px;
}

.comparison-grid,
.section-split,
.showcase-split {
  display: grid;
  gap: 1rem;
}

.comparison-grid {
  align-items: start;
}

.comparison-card,
.comparison-media {
  padding: 1.35rem;
}

.comparison-card {
  align-self: start;
}

.comparison-card h3,
.comparison-media h3 {
  margin-top: 0.7rem;
  font-size: 1.32rem;
}

.comparison-media {
  overflow: hidden;
  display: grid;
  gap: 1rem;
  background:
    linear-gradient(145deg, rgba(10, 35, 68, 0.95), rgba(25, 65, 121, 0.92));
}

.comparison-media-copy h3,
.comparison-media-copy p,
.comparison-media .comparison-label {
  color: #edf4ff;
}

.comparison-media .comparison-label {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
}

.media-panel {
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.media-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.feature-grid,
.segment-grid,
.steps-grid,
.benefit-grid,
.faq-list,
.showcase-grid {
  display: grid;
  gap: 1rem;
}

.feature-card,
.segment-card,
.step-card,
.benefit-card,
.showcase-card {
  padding: 1.35rem;
}

.feature-card,
.benefit-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.feature-card-visual,
.benefit-card-visual,
.segment-visual-card {
  background:
    radial-gradient(circle at top right, rgba(255, 173, 105, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 247, 255, 0.92));
}

.feature-art,
.benefit-art {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 150px;
  margin-top: auto;
  padding-top: 1rem;
}

.feature-art img,
.benefit-art img {
  width: min(100%, 240px);
  max-height: 190px;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(27, 65, 120, 0.16));
}

.feature-art-crop {
  min-height: 176px;
  padding: 1rem 0 0;
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(223, 236, 255, 0.78), rgba(245, 249, 255, 0));
}

.feature-art-crop img {
  width: 100%;
  max-width: none;
  height: 214px;
  max-height: none;
  object-fit: cover;
}

.feature-art-fiados img {
  object-position: 34% center;
  transform: scale(1.05);
}

.feature-art-clientes img {
  object-position: 76% center;
  transform: scale(1.08);
}

.feature-index,
.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
  padding-inline: 0.8rem;
  border-radius: 999px;
  background: rgba(236, 243, 255, 0.95);
  color: #29548e;
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(41, 84, 142, 0.1);
}

.feature-card p,
.segment-card p,
.step-card p,
.benefit-card p,
.showcase-card p,
.plan-copy,
.pricing-aside p {
  margin-top: 0.65rem;
}

.segment-grid {
  align-content: start;
}

.segment-intro {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

.segment-visual-card {
  position: relative;
  display: grid;
  gap: 1rem;
  align-items: end;
  justify-items: center;
  padding: 1.25rem;
  overflow: hidden;
}

.segment-visual-card::before,
.cta-panel-visual::before {
  content: "";
  position: absolute;
  inset: auto auto -18% -10%;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(69, 134, 224, 0.18), transparent 68%);
  pointer-events: none;
}

.segment-visual-card img {
  width: min(100%, 280px);
  max-height: 320px;
  margin-inline: auto;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 22px 36px rgba(27, 65, 120, 0.12));
}

.segment-visual-copy {
  position: relative;
  z-index: 1;
  max-width: 34ch;
}

.segment-visual-copy h3 {
  margin-top: 0.8rem;
}

.segment-visual-copy p {
  margin-top: 0.55rem;
}

.steps-grid {
  counter-reset: steps;
}

.step-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 249, 255, 0.9));
}

.pricing-toggle {
  display: inline-flex;
  gap: 0.3rem;
  padding: 0.3rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.pricing-toggle-btn {
  min-height: 44px;
  padding: 0.7rem 1rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 800;
}

.pricing-toggle-btn.is-active {
  background: linear-gradient(135deg, #edf4ff, #dbe9ff);
  color: var(--primary);
  box-shadow: inset 0 0 0 1px rgba(34, 88, 157, 0.12);
}

.pricing-panels {
  margin-top: 2rem;
}

.pricing-grid {
  display: grid;
  gap: 1rem;
}

.plan-card {
  padding: 1.35rem;
}

.plan-card-featured {
  background:
    linear-gradient(180deg, rgba(16, 47, 91, 0.98), rgba(22, 71, 129, 0.96));
  border-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-6px);
}

.plan-card-featured h3,
.plan-card-featured .plan-price,
.plan-card-featured .plan-copy,
.plan-card-featured .plan-list li {
  color: #fff;
}

.plan-card-featured .plan-list li::before {
  background: linear-gradient(135deg, #ffe0cb, #fff3e7);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.12);
}

.plan-card-muted {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(246, 248, 252, 0.78));
}

.plan-label-strong {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
}

.plan-card:not(.plan-card-featured) .plan-label-strong {
  background: #edf4ff;
  color: var(--primary);
  border-color: rgba(38, 88, 151, 0.12);
}

.plan-price {
  margin-top: 0.9rem;
  color: var(--primary);
  font-family: "Sora", "Manrope", sans-serif;
  font-size: clamp(2rem, 5vw, 3.1rem);
  font-weight: 800;
  line-height: 0.95;
}

.plan-price span {
  margin-left: 0.35rem;
  color: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  opacity: 0.78;
}

.plan-soon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.4rem;
  padding: 0.72rem 1rem;
  border-radius: 14px;
  background: rgba(13, 34, 68, 0.06);
  color: #40597f;
  font-size: 0.9rem;
  font-weight: 800;
}

.pricing-aside {
  padding: 1.35rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(238, 244, 255, 0.88));
}

.pricing-aside-copy {
  margin-bottom: 1.2rem;
}

.panel-stage {
  position: relative;
  display: grid;
  gap: 1rem;
  align-content: start;
}

.panel-stage-main {
  padding: 0 1rem 1rem;
  overflow: hidden;
}

.panel-stage-note {
  padding: 1rem;
  background: rgba(13, 34, 68, 0.95);
}

.panel-stage-note strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #fff;
  font-family: "Sora", "Manrope", sans-serif;
}

.benefit-card-visual {
  background:
    radial-gradient(circle at top right, rgba(255, 177, 109, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 246, 255, 0.92));
}

.showcase-grid {
  align-items: stretch;
}

.showcase-card {
  display: grid;
  gap: 1rem;
  overflow: hidden;
}

.showcase-card-large {
  background:
    radial-gradient(circle at top right, rgba(255, 177, 109, 0.15), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 249, 255, 0.92));
}

.showcase-copy h3 {
  margin-top: 0.55rem;
}

.faq-shell {
  display: grid;
  gap: 1.2rem;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  padding: 1.2rem 1.25rem;
  color: var(--primary);
  font-weight: 800;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: #5e7bab;
  font-size: 1.2rem;
  font-weight: 700;
}

.faq-item p {
  padding: 0 1.25rem 1.25rem;
}

.faq-item[open] summary::after {
  content: "-";
}

.cta-panel {
  padding: clamp(1.5rem, 3vw, 2.4rem);
  background:
    radial-gradient(circle at top right, rgba(255, 174, 106, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(11, 31, 60, 0.98), rgba(18, 64, 118, 0.96));
  overflow: hidden;
  display: grid;
  gap: 1.2rem;
  align-items: center;
}

.cta-panel h2,
.cta-panel p,
.cta-panel .eyebrow {
  color: #eef5ff;
}

.cta-panel-main {
  display: grid;
  gap: 0.85rem;
}

.cta-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.cta-panel-visual {
  position: relative;
  display: grid;
  justify-items: center;
  align-items: center;
  min-height: 220px;
  padding: 1.2rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.cta-panel-kicker {
  position: relative;
  z-index: 1;
  margin-bottom: 0.35rem;
  color: #dce9ff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cta-panel-visual img {
  position: relative;
  z-index: 1;
  width: min(100%, 250px);
  max-height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(8, 25, 50, 0.26));
}

.site-footer {
  padding: 1rem 0 calc(1.8rem + env(safe-area-inset-bottom));
}

.footer-shell {
  display: grid;
  gap: 1rem;
  align-items: center;
  padding-top: 0.5rem;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.footer-meta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  color: #48678f;
  font-size: 0.84rem;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 720px) {
  .nav-shell {
    grid-template-columns: auto 1fr auto auto;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: flex;
    grid-column: auto;
    justify-self: center;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .site-nav a {
    padding: 0.75rem 0.9rem;
  }

  .nav-cta {
    display: inline-flex;
  }

  .hero {
    padding-top: 2.4rem;
  }

  .hero-grid,
  .section-split,
  .showcase-split,
  .faq-shell {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  }

  .hero-metrics {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .comparison-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 0.92fr) minmax(0, 1.16fr);
    align-items: start;
  }

  .feature-grid,
  .segment-grid,
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .segment-intro {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
  }

  .segment-visual-card {
    grid-template-columns: minmax(0, 0.88fr) minmax(220px, 0.92fr);
    justify-items: stretch;
    padding: 1.5rem;
  }

  .segment-visual-card img {
    width: min(100%, 330px);
    max-height: 400px;
    justify-self: end;
    align-self: end;
  }

  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }

  .pricing-grid-argentina {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pricing-aside {
    grid-column: span 1;
  }

  .showcase-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .showcase-card-large {
    grid-row: span 2;
  }

  .footer-shell {
    grid-template-columns: auto 1fr;
  }

  .footer-meta {
    justify-content: flex-end;
  }

  .cta-panel {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  }
}

@media (min-width: 980px) {
  .section {
    padding: 6.5rem 0;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.22fr) minmax(0, 0.78fr);
    gap: 2rem;
  }

  .hero-copy {
    padding-top: 0.35rem;
  }

  .hero-visual {
    max-width: 540px;
    justify-self: end;
  }

  .comparison-media .media-panel {
    max-height: 520px;
  }

  .section-heading-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
  }

  .feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .feature-grid .feature-card-wide {
    grid-column: span 2;
  }

  .segment-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .steps-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .plan-card,
  .pricing-aside {
    padding: 1.6rem;
  }

  .panel-stage-note {
    position: absolute;
    right: -1.5rem;
    bottom: 2rem;
    width: min(280px, 46%);
  }
}

@media (min-width: 980px) and (max-height: 820px) {
  .hero {
    padding-top: 1.3rem;
    padding-bottom: 3.4rem;
  }

  .hero-grid {
    gap: 1.7rem;
  }

  .hero-badges {
    margin-bottom: 0.65rem;
  }

  .hero-visual {
    padding-top: 0.25rem;
  }
}

@media (max-width: 719px) {
  .hero-note {
    left: auto;
    right: 0.4rem;
    bottom: -1.2rem;
    max-width: 220px;
  }

  .visual-card-float {
    right: 0.4rem;
    bottom: 3.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

