/* =============================================
   CSS CUSTOM PROPERTIES — IMOBIP BRAND TOKENS
   ============================================= */
:root {
  --navy: #0b2e57;
  --navy-700: #0b4881;
  --navy-800: #092440;
  --cyan: #2aa3e0;
  --cyan-light: #5bbce8;
  --cyan-pale: #e8f6fd;
  --orange: #f0531f;
  --orange-light: #f8825a;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-900: #0f172a;

  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Hanken Grotesk', system-ui, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 3px rgba(11,46,87,.07), 0 1px 2px rgba(11,46,87,.05);
  --shadow-md: 0 4px 16px rgba(11,46,87,.10), 0 2px 6px rgba(11,46,87,.06);
  --shadow-lg: 0 12px 40px rgba(11,46,87,.14), 0 4px 12px rgba(11,46,87,.08);
  --shadow-glow: 0 0 30px rgba(42,163,224,.22);

  --transition: 200ms cubic-bezier(.4,0,.2,1);
  --section-gap: clamp(64px, 10vw, 120px);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

/* =============================================
   REDUCED MOTION GUARD
   ============================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* =============================================
   STAGGERED PAGE-LOAD REVEAL
   ============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes floatPhone {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes pulseOrb {
  0%, 100% { opacity: .18; transform: scale(1); }
  50%       { opacity: .28; transform: scale(1.06); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* =============================================
   TYPOGRAPHY UTILITIES
   ============================================= */
.display { font-family: var(--font-display); font-weight: 800; }
.heading { font-family: var(--font-display); font-weight: 700; }
.subheading { font-family: var(--font-display); font-weight: 600; }

.text-navy { color: var(--navy); }
.text-cyan { color: var(--cyan); }
.text-orange { color: var(--orange); }
.text-muted { color: var(--gray-400); }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  min-height: 48px;
  white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; }

.btn-primary {
  background: var(--cyan);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(42,163,224,.30);
}
.btn-primary:hover {
  background: var(--navy-700);
  box-shadow: 0 6px 24px rgba(11,72,129,.35);
  transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy-700);
}
.btn-ghost:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}

/* =============================================
   WORDMARK / LOGO
   ============================================= */
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1;
  user-select: none;
}
.wordmark .imo { color: var(--navy); }
.wordmark .bip-wrap {
  position: relative;
  color: var(--cyan);
}
.wordmark .bip-wrap .dot {
  position: absolute;
  top: -4px;
  left: 2px;
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
}
/* footer / inverted variant */
.wordmark.inverted .imo { color: var(--white); }
.wordmark.inverted .bip-wrap { color: var(--cyan-light); }

.tagline-strip {
  font-family: var(--font-display);
  font-size: .55rem;
  font-weight: 600;
  letter-spacing: .18em;
  color: var(--gray-400);
  text-transform: uppercase;
}

/* =============================================
   NAV
   ============================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}

.nav-logo { display: flex; flex-direction: column; gap: 1px; }

.nav-logo-img { height: 40px; width: auto; display: block; max-height: 40px; }

.footer-logo-img { height: 48px; width: auto; display: block; border-radius: 6px; max-height: 48px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .88rem;
  color: var(--gray-600);
  transition: color var(--transition), background var(--transition);
  min-height: 44px;
  display: flex;
  align-items: center;
}
.nav-links a:hover { color: var(--navy); background: var(--gray-100); }
.nav-links a:focus-visible { outline: 3px solid var(--cyan); outline-offset: 2px; }

.nav-actions { display: flex; align-items: center; gap: 8px; }
.nav-actions .btn-ghost { padding: 10px 20px; font-size: .88rem; min-height: 40px; }
.nav-actions .btn-primary { padding: 10px 20px; font-size: .88rem; min-height: 40px; }

/* Hamburger (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: transparent;
  border: none;
  align-items: center;
}
.nav-toggle:focus-visible { outline: 3px solid var(--cyan); outline-offset: 2px; }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}

/* Mobile nav drawer */
.nav-drawer {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 0 20px;
  border-top: 1px solid var(--gray-200);
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  padding: 12px 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  min-height: 48px;
  display: flex;
  align-items: center;
}
.nav-drawer a:hover { color: var(--navy); background: var(--gray-100); }
.nav-drawer .drawer-ctas {
  display: flex;
  gap: 10px;
  padding: 12px 16px 0;
}
.nav-drawer .drawer-ctas .btn { flex: 1; font-size: .9rem; }

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: flex; }
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(28px, 3.5vw, 56px);
  padding-bottom: clamp(48px, 8vw, 96px);
  background: linear-gradient(145deg, #f0f7ff 0%, #ffffff 55%, #e8f6fd 100%);
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero::before {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(42,163,224,.14) 0%, transparent 70%);
  top: -120px; right: -140px;
  animation: pulseOrb 6s ease-in-out infinite;
}
.hero::after {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(11,46,87,.07) 0%, transparent 70%);
  bottom: -80px; left: -80px;
  animation: pulseOrb 8s ease-in-out infinite reverse;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(11,72,129,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,72,129,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(42,163,224,.1);
  border: 1px solid rgba(42,163,224,.3);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 600;
  color: var(--navy-700);
  letter-spacing: .04em;
  margin-bottom: 24px;
  animation: fadeIn .6s ease both;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 4.5vw, 3.1rem);
  line-height: 1.12;
  text-wrap: balance;
  color: var(--navy);
  margin-bottom: 20px;
  animation: fadeUp .7s .1s ease both;
}
.hero-h1 em {
  font-style: normal;
  color: var(--cyan);
}

.hero-sub {
  font-size: clamp(.95rem, 1.8vw, 1.1rem);
  color: var(--gray-600);
  max-width: 520px;
  margin-bottom: 36px;
  animation: fadeUp .7s .2s ease both;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  animation: fadeUp .7s .3s ease both;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeUp .8s .25s ease both;
}
.phone-frame {
  width: clamp(200px, 30vw, 280px);
  aspect-ratio: 9/19;
  background: var(--navy);
  border-radius: 36px;
  padding: 12px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(42,163,224,.25), var(--shadow-glow);
  position: relative;
  animation: floatPhone 5s ease-in-out infinite;
}
.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 26px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  background: linear-gradient(160deg, #1a3a5c 0%, #0b2e57 60%, #092440 100%);
}

.story-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px 6px;
}
.story-logo-small {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .72rem;
  color: var(--white);
}
.story-logo-small span { color: var(--cyan-light); }
.story-time {
  font-size: .6rem;
  color: rgba(255,255,255,.5);
  font-family: var(--font-display);
}

.story-img-placeholder {
  flex: 1;
  background: linear-gradient(135deg, #1e4976 0%, #2a6a9e 40%, #1a3f66 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
}
.house-icon {
  color: rgba(255,255,255,.2);
}

.story-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-size: .58rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: .06em;
}

.story-price {
  position: absolute;
  bottom: 14px; left: 12px; right: 12px;
}
.story-price-num {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
}
.story-price-label {
  font-size: .58rem;
  color: rgba(255,255,255,.6);
  font-family: var(--font-display);
  margin-top: 1px;
}

.story-caption {
  padding: 10px 12px;
  background: rgba(255,255,255,.04);
  border-top: 1px solid rgba(255,255,255,.08);
}
.story-caption-title {
  font-family: var(--font-display);
  font-size: .64rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}
.story-caption-text {
  font-size: .55rem;
  color: rgba(255,255,255,.55);
  line-height: 1.4;
}

.story-ai-badge {
  position: absolute;
  top: 10px; right: 10px;
  background: rgba(42,163,224,.9);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-family: var(--font-display);
  font-size: .52rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 3px;
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-text { order: 1; text-align: center; }
  .hero-visual { order: 2; }
  .hero-sub { margin-inline: auto; }
  .hero-ctas { justify-content: center; }
}

/* =============================================
   TRUST STRIP
   ============================================= */
.trust-strip {
  background: var(--gray-50);
  border-block: 1px solid var(--gray-200);
  padding-block: 20px;
}
.trust-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px 32px;
}
.trust-label {
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.trust-chip {
  padding: 6px 14px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: .77rem;
  font-weight: 600;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-sm);
}
.trust-chip .chip-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
}
.trust-chip .chip-dot.green { background: #22c55e; }

/* =============================================
   SECTIONS — SHARED
   ============================================= */
section {
  padding-block: var(--section-gap);
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  color: var(--navy);
  line-height: 1.18;
  margin-bottom: 16px;
}

.section-sub {
  font-size: clamp(.9rem, 1.6vw, 1.05rem);
  color: var(--gray-600);
  max-width: 560px;
  line-height: 1.65;
}

.section-header { margin-bottom: clamp(36px, 6vw, 60px); }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin-inline: auto; }

/* =============================================
   HOW IT WORKS
   ============================================= */
#como-funciona { background: var(--white); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: calc(33.33% - 8px);
  right: calc(33.33% - 8px);
  height: 2px;
  background: linear-gradient(90deg, var(--cyan) 0%, var(--cyan) 100%);
  opacity: .25;
  pointer-events: none;
}

.step-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  box-shadow: var(--shadow-sm);
}
.step-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--cyan);
}

.step-number {
  width: 44px; height: 44px;
  background: var(--navy);
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(11,46,87,.25);
}
.step-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--cyan-pale), #d0ecf9);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.step-text { font-size: .92rem; color: var(--gray-600); line-height: 1.65; }

@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
}

/* =============================================
   FOR WHOM
   ============================================= */
.for-whom { background: var(--gray-50); }

.persona-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.persona-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.persona-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.persona-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--navy), var(--navy-700));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.persona-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.persona-text { font-size: .9rem; color: var(--gray-600); line-height: 1.6; }

@media (max-width: 768px) {
  .persona-grid { grid-template-columns: 1fr; }
}

/* =============================================
   FEATURES / RECURSOS
   ============================================= */
#recursos { background: var(--white); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .features-grid { grid-template-columns: 1fr; }
}

.feature-card {
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  background: var(--gray-50);
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.feature-card:hover {
  border-color: var(--cyan);
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.feature-icon-wrap {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--cyan-pale), #c8e9f6);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.feature-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.feature-desc { font-size: .82rem; color: var(--gray-600); line-height: 1.55; }

/* =============================================
   SOCIAL PROOF
   ============================================= */
.social-proof { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-700) 100%); color: var(--white); }

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: clamp(40px, 6vw, 64px);
}

.stat-card {
  text-align: center;
  padding: 28px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--cyan-light);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: .85rem; color: rgba(255,255,255,.6); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: background var(--transition);
}
.testimonial-card:hover { background: rgba(255,255,255,.1); }

.testimonial-stars {
  color: var(--orange);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.testimonial-text {
  font-size: .92rem;
  color: rgba(255,255,255,.8);
  line-height: 1.65;
  margin-bottom: 18px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--cyan), var(--navy-700));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .85rem;
  color: var(--white);
  flex-shrink: 0;
}
.author-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .88rem;
  color: var(--white);
  line-height: 1.2;
}
.author-role { font-size: .78rem; color: rgba(255,255,255,.45); }

.illustrative-note {
  text-align: center;
  margin-top: 24px;
  font-size: .76rem;
  color: rgba(255,255,255,.3);
  font-style: italic;
}

@media (max-width: 768px) {
  .stats-row { grid-template-columns: 1fr; gap: 14px; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* =============================================
   PRICING (teaser on homepage + full page)
   ============================================= */
#precos { background: var(--gray-50); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.price-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.price-card.featured {
  border-color: var(--cyan);
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 8px 32px rgba(11,46,87,.25), 0 0 0 2px var(--cyan);
  transform: scale(1.02);
}
.price-card.featured:hover { transform: scale(1.02) translateY(-4px); }

.price-badge {
  display: inline-block;
  padding: 3px 12px;
  background: var(--cyan);
  color: var(--white);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.price-plan-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.price-card.featured .price-plan-name { color: var(--white); }
.price-plan-sub { font-size: .82rem; color: var(--gray-400); margin-bottom: 20px; }
.price-card.featured .price-plan-sub { color: rgba(255,255,255,.5); }

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 22px;
}
.price-currency { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--gray-600); }
.price-num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; color: var(--navy); line-height: 1; }
.price-period { font-size: .82rem; color: var(--gray-400); }
.price-card.featured .price-currency,
.price-card.featured .price-num { color: var(--white); }
.price-card.featured .price-period { color: rgba(255,255,255,.45); }

.price-features {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 26px;
}
.price-feat {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .88rem;
  color: var(--gray-600);
}
.price-card.featured .price-feat { color: rgba(255,255,255,.75); }
.feat-check {
  width: 16px; height: 16px;
  background: rgba(42,163,224,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.price-card.featured .feat-check { background: rgba(255,255,255,.12); }

.price-cta { width: 100%; }
.price-card.featured .btn-primary { background: var(--cyan); }

.pricing-note {
  text-align: center;
  margin-top: 20px;
  font-size: .82rem;
  color: var(--gray-400);
}
.pricing-note a { color: var(--cyan); font-weight: 600; }
.pricing-note a:hover { color: var(--navy); }

/* Full pricing page — 6-column grid on wide screens */
.pricing-grid-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
@media (min-width: 1100px) {
  .pricing-grid-full { grid-template-columns: repeat(3, 1fr); }
}

.pricing-guarantee {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  color: var(--gray-400);
  margin-top: 10px;
  justify-content: center;
}

@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-grid-full { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-4px); }
}

/* =============================================
   COMPARISON TABLE
   ============================================= */
.comparison-section { margin-top: clamp(48px, 8vw, 80px); }
.comparison-section h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  color: var(--navy);
  margin-bottom: 24px;
  text-align: center;
}

.comparison-wrap { overflow-x: auto; }
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}
.comparison-table th, .comparison-table td {
  padding: 12px 16px;
  text-align: center;
  border-bottom: 1px solid var(--gray-200);
}
.comparison-table th { font-family: var(--font-display); font-weight: 700; color: var(--navy); background: var(--gray-50); }
.comparison-table td:first-child { text-align: left; font-weight: 500; color: var(--gray-700); }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table .col-featured { background: rgba(42,163,224,.05); }
.check-yes { color: #22c55e; font-size: 1.1rem; }
.check-no { color: var(--gray-400); }

/* =============================================
   FAQ
   ============================================= */
#faq { background: var(--white); }

.faq-list {
  max-width: 740px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item:hover { border-color: var(--cyan); }
.faq-item[open] { border-color: var(--cyan); box-shadow: var(--shadow-sm); }

.faq-item summary {
  padding: 18px 22px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
  min-height: 48px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:focus-visible { outline: 3px solid var(--cyan); outline-offset: -3px; }

.faq-chevron {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}
.faq-item[open] .faq-chevron {
  background: var(--cyan);
  transform: rotate(180deg);
}
.faq-chevron svg { width: 12px; height: 12px; }
.faq-item[open] .faq-chevron svg { color: var(--white); }

.faq-answer {
  padding: 0 22px 18px;
  font-size: .92rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* =============================================
   CTA FINAL BAND
   ============================================= */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 60%, #0d5a9e 100%);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(42,163,224,.15) 0%, transparent 65%);
  top: -200px; right: -150px;
  pointer-events: none;
}
.cta-band-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-block: clamp(60px, 10vw, 100px);
}
.cta-band-eyebrow {
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cyan-light);
  margin-bottom: 16px;
}
.cta-band-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.18;
}
.cta-band-sub {
  font-size: clamp(.9rem, 1.6vw, 1.05rem);
  color: rgba(255,255,255,.65);
  margin-bottom: 36px;
  max-width: 500px;
  margin-inline: auto;
}
.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.cta-band-note {
  margin-top: 18px;
  font-size: .78rem;
  color: rgba(255,255,255,.35);
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--gray-900);
  color: rgba(255,255,255,.55);
  padding-block: 48px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-brand .tagline-strip { color: rgba(255,255,255,.3); }
.footer-desc { font-size: .85rem; line-height: 1.6; max-width: 260px; color: rgba(255,255,255,.4); }

.footer-col-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 14px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
  min-height: 36px;
  display: flex;
  align-items: center;
}
.footer-links a:hover { color: var(--white); }
.footer-links a:focus-visible { outline: 2px solid var(--cyan); outline-offset: 2px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: .8rem; color: rgba(255,255,255,.25); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: .8rem; color: rgba(255,255,255,.25); transition: color var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,.55); }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* =============================================
   STICKY MOBILE CTA
   ============================================= */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--gray-200);
  padding: 12px 20px;
}
.mobile-sticky-cta .btn { width: 100%; font-size: 1rem; }

@media (max-width: 768px) {
  .mobile-sticky-cta { display: block; }
  footer { padding-bottom: 80px; }
}

/* =============================================
   LARVON BRAND LINK
   ============================================= */
.larvon-link {
  color: var(--cyan, #2aa3e0);
  text-decoration: none;
  font-weight: inherit;
  border-bottom: 1px solid transparent;
  transition: border-bottom-color var(--transition);
}
.larvon-link:hover { border-bottom-color: currentColor; }

/* =============================================
   INLINE SVG ICONS
   ============================================= */
.icon { display: inline-block; line-height: 0; }

/* =============================================
   LEGAL PAGES
   ============================================= */
.legal-shell {
  padding-block: clamp(48px, 8vw, 80px);
}

.legal-doc {
  max-width: 820px;
  margin-inline: auto;
}
.legal-doc h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.18;
}
.legal-doc h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
  margin-top: 36px;
  margin-bottom: 12px;
}
.legal-doc h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy-700);
  margin-top: 24px;
  margin-bottom: 10px;
}
.legal-doc p { margin-bottom: 14px; font-size: .95rem; line-height: 1.75; }
.legal-doc ul, .legal-doc ol {
  margin-bottom: 14px;
  padding-left: 1.5rem;
  font-size: .95rem;
  line-height: 1.75;
}
.legal-doc ul { list-style: disc; }
.legal-doc ol { list-style: decimal; }
.legal-doc li { margin-bottom: 6px; }
.legal-doc a { color: var(--cyan); }
.legal-doc a:hover { color: var(--navy); }
.legal-doc code {
  font-family: monospace;
  background: var(--gray-100);
  padding: 1px 5px;
  border-radius: 4px;
  font-size: .88em;
}

.legal-meta {
  font-size: .84rem;
  color: var(--gray-400);
  margin-bottom: 28px;
}

.legal-controller-info {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  font-size: .88rem;
  line-height: 1.7;
  margin-bottom: 28px;
  color: var(--gray-700);
}

.legal-summary {
  background: rgba(42,163,224,.07);
  border-left: 3px solid var(--cyan);
  padding: 14px 18px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 28px;
  font-size: .9rem;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  font-size: .88rem;
}
.legal-table th {
  background: var(--navy);
  color: var(--white);
  padding: 10px 14px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
}
.legal-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--gray-200);
  vertical-align: top;
  line-height: 1.55;
}
.legal-table tr:nth-child(even) td { background: var(--gray-50); }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-shell {
  padding-block: clamp(48px, 8vw, 80px);
}

.contact-shell h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 12px;
}
.contact-lead {
  font-size: 1.05rem;
  color: var(--gray-600);
  margin-bottom: 36px;
  max-width: 520px;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--cyan);
  transform: translateY(-2px);
}
.contact-card-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--cyan-pale), #c8e9f6);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.contact-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  color: var(--navy);
}
.contact-card p { font-size: .88rem; color: var(--gray-600); }

.contact-tips {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.contact-tips h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 16px;
}
.contact-tips ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-tips li {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.55;
  padding-left: 1.2rem;
  position: relative;
}
.contact-tips li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 700;
}
.contact-tips a { color: var(--cyan); font-weight: 600; }
.contact-tips a:hover { color: var(--navy); }

@media (max-width: 640px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* =============================================
   PAGE HERO (precos/contato/legal sub-pages)
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 100%);
  padding-block: clamp(40px, 6vw, 70px);
  color: var(--white);
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.18;
}
.page-hero p {
  font-size: clamp(.9rem, 1.6vw, 1.05rem);
  color: rgba(255,255,255,.7);
  max-width: 560px;
  margin-inline: auto;
}
.page-hero .eyebrow {
  font-family: var(--font-display);
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cyan-light);
  margin-bottom: 12px;
}
.page-hero .trust-items {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}
.page-hero .trust-item {
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  padding: 5px 14px;
  border-radius: 100px;
}

/* =============================================
   PRICING PAGE NOTE
   ============================================= */
.precos-note {
  text-align: center;
  margin-top: 20px;
  font-size: .85rem;
  color: var(--gray-600);
  max-width: 680px;
  margin-inline: auto;
  line-height: 1.65;
}

/* =============================================
   404 PAGE
   ============================================= */
.not-found {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-block: clamp(60px, 10vw, 100px);
}
.not-found-code {
  font-family: var(--font-display);
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 800;
  color: var(--gray-200);
  line-height: 1;
  margin-bottom: 0;
}
.not-found h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--navy);
  margin-bottom: 16px;
}
.not-found p {
  font-size: 1rem;
  color: var(--gray-600);
  max-width: 400px;
  margin-bottom: 32px;
}

/* =============================================
   PRICING v4 — promo / anchor / credits / banner
   ============================================= */
.price-promo { display:flex; align-items:center; gap:8px; margin-bottom:6px; }
.price-old { font-size:.95rem; color:var(--gray-400); text-decoration:line-through; font-weight:600; }
.price-off {
  font-family:var(--font-display); font-size:.72rem; font-weight:800;
  color:#fff; background:linear-gradient(135deg,#ef4444,#dc2626);
  padding:2px 8px; border-radius:100px; line-height:1.5;
}
.price-card.featured .price-old { color:rgba(255,255,255,.5); }
.price-anchor { font-size:.8rem; color:var(--gray-600); margin:-14px 0 16px; }
.price-anchor strong { color:var(--cyan); font-weight:700; }
.price-card.featured .price-anchor { color:rgba(255,255,255,.7); }
.price-card.featured .price-anchor strong { color:var(--cyan-light); }
.price-credits {
  display:flex; align-items:center; gap:7px; font-size:.82rem; color:#6d28d9;
  background:linear-gradient(135deg, rgba(124,58,237,.10), rgba(59,130,246,.06));
  border:1px solid rgba(124,58,237,.22); border-radius:10px;
  padding:8px 12px; margin-bottom:20px;
}
.price-credits svg { color:#7c3aed; flex-shrink:0; }
.price-credits strong { font-weight:700; }
.price-credits--off { color:#6b7280; background:transparent; border:1px dashed #d1d5db; }
.price-credits--off svg { color:var(--gray-400); }
.price-card.featured .price-credits { color:#fff; background:rgba(255,255,255,.12); border-color:rgba(255,255,255,.25); }
.price-card.featured .price-credits svg { color:var(--cyan-light); }
.promo-banner-wrap { background:var(--gray-50); padding-top:28px; }
.promo-banner {
  display:flex; align-items:center; justify-content:center; gap:10px;
  max-width:760px; margin-inline:auto;
  background:linear-gradient(135deg, rgba(42,163,224,.10), rgba(11,46,87,.05));
  border:1px solid rgba(42,163,224,.30); border-radius:14px;
  padding:12px 20px; font-size:.9rem; color:var(--navy); text-align:center;
}
.promo-banner svg { color:var(--cyan); flex-shrink:0; }
.promo-banner strong { color:var(--navy); font-weight:700; }
.page-hero .trust-item { display:inline-flex; align-items:center; gap:6px; }
.page-hero .trust-item svg { width:13px; height:13px; opacity:.85; flex-shrink:0; }
.comparison-table thead .cmp-name { font-family:var(--font-display); font-weight:800; color:var(--navy); font-size:.95rem; }
.comparison-table thead .cmp-price { font-size:.78rem; font-weight:600; color:var(--cyan); margin-top:2px; }
.comparison-table thead .cmp-price small { color:var(--gray-400); font-weight:500; }
.comparison-table .col-featured .cmp-name, .comparison-table .col-featured .cmp-price { color:var(--cyan); }
.comparison-table tbody tr:nth-child(even) td { background:rgba(0,0,0,.015); }
.comparison-table tbody tr:nth-child(even) td.col-featured { background:rgba(42,163,224,.09); }
.comparison-table tbody tr:hover td { background:rgba(42,163,224,.05); }
