/* ===========================================================
   Uzes Landing — styles.css
   Brand: Uzes App · "Tus cuentas en orden, tu mente en paz."
   Font: Plus Jakarta Sans
   Brand colors: #060D1B / #A29BFE / #FDF0D5
   =========================================================== */

/* ── Reset & base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cream: #FDF0D5;
  --cream-dark: #F0E0B8;
  --dark: #060D1B;
  --violet: #A29BFE;
  --violet-light: #C4C0FF;
  --mid: #4A5568;
  --success: #6BFFB8;
  --danger: #FF7B7B;
  --max-w: 1200px;
}

html {
  scroll-behavior: smooth;
}

@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;
  }
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--cream);
  color: var(--dark);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Accessibility: skip link & focus ── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--dark);
  color: var(--cream);
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  z-index: 999;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 16px;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--violet);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ── Logo ── */
.logo-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--dark);
}
.logo-mark svg { width: 36px; height: 36px; }
.logo-mark .logo-name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--dark);
}

/* ── Header ── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(253, 240, 213, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(6, 13, 27, 0.06);
  padding: 0 5vw;
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
nav { display: flex; gap: 36px; }
nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s, font-weight 0.2s;
}
nav a:hover,
nav a:focus-visible { opacity: 1; }
nav a[aria-current="true"] {
  opacity: 1;
  font-weight: 700;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s, box-shadow 0.18s, opacity 0.18s;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(162, 155, 254, 0.35);
}
.btn:active { transform: translateY(0); }

.btn-violet {
  background: var(--violet);
  color: var(--dark);
  border-radius: 40px;
  padding: 12px 24px;
  font-size: 15px;
}
.btn-violet-lg {
  background: var(--violet);
  color: var(--dark);
  border-radius: 50px;
  padding: 18px 40px;
  font-size: 18px;
}
.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
  border-radius: 40px;
  padding: 11px 24px;
  font-size: 15px;
}
.btn-outline:hover { box-shadow: 0 6px 20px rgba(6, 13, 27, 0.15); }
.btn-cream {
  background: var(--cream);
  color: var(--dark);
  border-radius: 50px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  width: 100%;
}
.btn-cream:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(253, 240, 213, 0.2);
}
.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

/* ── Sections ── */
section { padding: 100px 5vw; }
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--violet);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 60px;
}

/* ── Hero ── */
#hero {
  padding-top: 140px;
  padding-bottom: 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(162, 155, 254, 0.15);
  border: 1px solid rgba(162, 155, 254, 0.4);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 28px;
}
.hero-badge span { color: var(--violet); font-size: 16px; }
.hero-h1 {
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  color: var(--dark);
}
.hero-h1 em {
  font-style: normal;
  color: var(--violet);
}
.hero-sub {
  font-size: 18px;
  font-weight: 400;
  color: var(--dark);
  opacity: 0.65;
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-note {
  font-size: 13px;
  opacity: 0.5;
  margin-top: 16px;
}

/* ── iPhone mockup ── */
.iphone-mockup {
  position: relative;
  display: flex;
  justify-content: center;
}
.iphone-wrap {
  position: relative;
  width: 280px;
}
.iphone-frame {
  width: 280px;
  height: 560px;
  background: var(--dark);
  border-radius: 44px;
  padding: 14px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 40px 80px rgba(6, 13, 27, 0.35),
    0 20px 40px rgba(6, 13, 27, 0.2);
  position: relative;
}
.iphone-screen {
  width: 100%;
  height: 100%;
  border-radius: 34px;
  overflow: hidden;
  background: var(--dark);
  display: flex;
  flex-direction: column;
}
.iphone-notch {
  width: 90px;
  height: 26px;
  background: var(--dark);
  border-radius: 0 0 18px 18px;
  margin: 0 auto;
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

/* ── App Screen — Dashboard ── */
.app-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #0D1527 0%, #060D1B 60%);
  padding: 48px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.app-greeting {
  font-size: 12px;
  color: rgba(253, 240, 213, 0.5);
  font-weight: 500;
}
.app-name {
  font-size: 18px;
  color: var(--cream);
  font-weight: 700;
  margin-top: 2px;
}

/* Thermometer (Paz Mental) — matches PazMentalWidget design */
.thermometer-section {
  background: rgba(162, 155, 254, 0.1);
  border: 1px solid rgba(162, 155, 254, 0.2);
  border-radius: 20px;
  padding: 16px;
  position: relative;
  text-align: center;
}
.thermo-icon {
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 16px;
  opacity: 0.7;
}
.thermo-label {
  font-size: 9px;
  color: rgba(253, 240, 213, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  text-align: left;
}
.thermo-value {
  font-size: 36px;
  font-weight: 800;
  color: var(--violet-light);
  line-height: 1;
}
.thermo-unit {
  font-size: 10px;
  color: rgba(253, 240, 213, 0.5);
  margin-top: 4px;
}
.thermo-bar-wrap {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  height: 8px;
  margin-top: 12px;
  overflow: hidden;
}
.thermo-bar {
  width: 72%;
  height: 100%;
  background: linear-gradient(90deg, var(--violet), var(--violet-light));
  border-radius: 8px;
  position: relative;
}
.thermo-bar::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--violet-light);
  box-shadow: 0 0 0 3px rgba(162, 155, 254, 0.25);
}
.thermo-meta {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: rgba(253, 240, 213, 0.4);
  margin-top: 6px;
}

/* Stats */
.app-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.stat-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 12px;
}
.stat-label {
  font-size: 9px;
  color: rgba(253, 240, 213, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.stat-val {
  font-size: 18px;
  font-weight: 700;
  color: var(--cream);
  margin-top: 4px;
}
.stat-val.green { color: var(--success); }
.stat-val.red { color: var(--danger); }

/* Chart */
.app-chart {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 14px;
  padding: 12px;
}
.chart-label {
  font-size: 9px;
  color: rgba(253, 240, 213, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 60px;
}
.chart-bar {
  flex: 1;
  background: rgba(162, 155, 254, 0.3);
  border-radius: 4px 4px 0 0;
  transition: height 0.3s;
}
.chart-bar.active { background: var(--violet); }

/* Floating accents for hero mockup */
.hero-float-1,
.hero-float-2 {
  position: absolute;
  border-radius: 16px;
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  z-index: 3;
}
.hero-float-1 {
  background: #fff;
  color: var(--dark);
  right: -40px;
  top: 100px;
  white-space: nowrap;
}
.hero-float-2 {
  background: var(--violet);
  color: var(--dark);
  left: -40px;
  bottom: 120px;
  white-space: nowrap;
}
.float-sub {
  font-size: 10px;
  font-weight: 400;
  opacity: 0.6;
  margin-top: 2px;
}

/* ── Social Proof ── */
#social-proof {
  padding: 80px 5vw;
  background: var(--dark);
  color: var(--cream);
}
.social-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.social-tagline {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.5;
  margin-bottom: 48px;
}
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: rgba(253, 240, 213, 0.05);
  border: 1px solid rgba(253, 240, 213, 0.1);
  border-radius: 20px;
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.testimonial-card:hover {
  border-color: rgba(162, 155, 254, 0.4);
  transform: translateY(-4px);
}
.stars {
  color: var(--violet-light);
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(253, 240, 213, 0.85);
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(162, 155, 254, 0.2);
  border: 2px solid rgba(162, 155, 254, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  color: var(--violet-light);
}
.author-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--cream);
}
.author-role {
  font-size: 12px;
  color: rgba(253, 240, 213, 0.5);
  margin-top: 1px;
}
.testimonial-disclaimer {
  text-align: center;
  font-size: 11px;
  font-style: italic;
  color: rgba(253, 240, 213, 0.4);
  margin-top: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Beneficios ── */
#beneficios {
  background: var(--cream);
}
.benefit-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}
.benefit-block:last-child { margin-bottom: 0; }
.benefit-block.reverse { direction: rtl; }
.benefit-block.reverse > * { direction: ltr; }
.benefit-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(162, 155, 254, 0.12);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}
.benefit-h3 {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 16px;
}
.benefit-p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--dark);
  opacity: 0.7;
  max-width: 420px;
}

/* iPhone mockup small variant */
.iphone-sm { width: 220px; }
.iphone-sm .iphone-frame { width: 220px; height: 440px; border-radius: 38px; }
.iphone-sm .iphone-screen { border-radius: 28px; }
.mockup-centered {
  display: flex;
  justify-content: center;
}

/* Freelancer screen */
.screen-freelancer {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #0D1527, #060D1B);
  padding: 44px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.income-header {
  font-size: 11px;
  color: rgba(253, 240, 213, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.income-total {
  font-size: 28px;
  font-weight: 800;
  color: var(--cream);
}
.income-sub {
  font-size: 11px;
  color: rgba(253, 240, 213, 0.4);
}
.income-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.income-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 10px 12px;
}
.income-item-name {
  font-size: 12px;
  color: rgba(253, 240, 213, 0.75);
}
.income-item-val {
  font-size: 13px;
  font-weight: 700;
}
.income-item-val.pos { color: var(--success); }
.income-item-val.neg { color: var(--danger); }
.income-base-label {
  font-size: 10px;
  color: rgba(253, 240, 213, 0.35);
  margin-top: 8px;
  letter-spacing: 0.8px;
}
.base-zero-bar {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bz-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.bz-label {
  font-size: 10px;
  color: rgba(253, 240, 213, 0.5);
  width: 60px;
}
.bz-track {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
}
.bz-fill {
  height: 100%;
  border-radius: 4px;
}

/* Deudas screen */
.screen-deudas {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #0D1527, #060D1B);
  padding: 44px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.debt-header {
  font-size: 11px;
  color: rgba(253, 240, 213, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.debt-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--cream);
}
.method-chips {
  display: flex;
  gap: 6px;
  margin-top: 4px;
}
.chip {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(162, 155, 254, 0.3);
  color: rgba(253, 240, 213, 0.55);
}
.chip.active {
  background: var(--violet);
  color: var(--dark);
  border-color: var(--violet);
}
.debt-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.debt-item {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 10px 12px;
}
.debt-item-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}
.debt-item-name {
  font-size: 11px;
  color: rgba(253, 240, 213, 0.75);
}
.debt-item-val {
  font-size: 12px;
  font-weight: 700;
  color: var(--cream);
}
.debt-progress {
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
}
.debt-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--violet), var(--violet-light));
}
.debt-celebration {
  background: rgba(107, 255, 184, 0.08);
  border: 1px solid rgba(107, 255, 184, 0.2);
  border-radius: 12px;
  padding: 10px 12px;
  text-align: center;
}
.debt-cel-ico { font-size: 18px; }
.debt-cel-text {
  font-size: 11px;
  color: var(--success);
  font-weight: 600;
  margin-top: 2px;
}

/* ── Pricing ── */
#precios {
  background: var(--dark);
  color: var(--cream);
}
#precios .section-label { color: var(--violet-light); }
#precios .section-title {
  color: var(--cream);
  text-align: center;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}
.price-card {
  background: rgba(253, 240, 213, 0.04);
  border: 1px solid rgba(253, 240, 213, 0.1);
  border-radius: 28px;
  padding: 36px 32px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.price-card:hover { transform: translateY(-4px); }
.price-card.featured {
  background: rgba(162, 155, 254, 0.1);
  border-color: rgba(162, 155, 254, 0.4);
}
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--violet);
  color: var(--dark);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}
.price-plan {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.5;
  margin-bottom: 12px;
}
.price-amount {
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}
.price-amount sup {
  font-size: 24px;
  vertical-align: top;
  margin-top: 10px;
  display: inline-block;
}
.price-period {
  font-size: 13px;
  opacity: 0.5;
  margin-bottom: 28px;
}
.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
}
.price-features li::before {
  content: '';
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  background-color: var(--violet);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath d='M4 9l3.5 3.5L14 6' stroke='%23060D1B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.price-note {
  font-size: 12px;
  opacity: 0.4;
  margin-top: -16px;
  margin-bottom: 24px;
}

/* ── Recursos ── */
#recursos {
  background: var(--cream);
}
.recursos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.video-placeholder {
  background: var(--dark);
  border-radius: 20px;
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  cursor: not-allowed;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s;
}
.video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(162, 155, 254, 0.15) 0%, transparent 60%);
}
.play-btn {
  width: 64px;
  height: 64px;
  background: var(--violet);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 12px rgba(162, 155, 254, 0.15);
  position: relative;
}
.play-btn::after {
  content: '';
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 20px solid var(--dark);
  margin-left: 4px;
}
.video-label {
  font-size: 14px;
  color: rgba(253, 240, 213, 0.6);
  font-weight: 500;
  z-index: 1;
}
.video-thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}
.video-thumb {
  background: rgba(6, 13, 27, 0.06);
  border-radius: 12px;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: rgba(6, 13, 27, 0.4);
  cursor: not-allowed;
  transition: background 0.2s;
}
.tips-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.tip-card {
  background: rgba(6, 13, 27, 0.04);
  border: 1px solid rgba(6, 13, 27, 0.06);
  border-radius: 20px;
  padding: 24px;
  transition: border-color 0.2s, transform 0.2s;
}
.tip-card:hover {
  border-color: rgba(162, 155, 254, 0.4);
  transform: translateY(-2px);
}
.tip-number {
  font-size: 12px;
  font-weight: 800;
  color: var(--violet);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}
.tip-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}
.tip-desc {
  font-size: 14px;
  color: var(--dark);
  opacity: 0.65;
  line-height: 1.6;
}

/* ── CTA Final ── */
#cta-final {
  background: var(--dark);
  color: var(--cream);
  text-align: center;
  padding: 120px 5vw;
}
.cta-eyebrow {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--violet-light);
  margin-bottom: 20px;
}
.cta-title {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.cta-sub {
  font-size: 18px;
  opacity: 0.6;
  max-width: 480px;
  margin: 0 auto 44px;
  line-height: 1.6;
}
.cta-note {
  font-size: 13px;
  opacity: 0.4;
  margin-top: 20px;
}

/* ── Footer ── */
footer {
  background: #020810;
  color: rgba(253, 240, 213, 0.4);
  padding: 48px 5vw;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo .logo-name {
  color: rgba(253, 240, 213, 0.6);
  font-size: 18px;
}
.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 13px;
  color: rgba(253, 240, 213, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--cream);
}
.footer-copy { font-size: 12px; }
.footer-social {
  display: flex;
  gap: 16px;
}
.social-icon {
  width: 36px;
  height: 36px;
  background: rgba(253, 240, 213, 0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  cursor: pointer;
  text-decoration: none;
}
.social-icon:hover {
  background: rgba(162, 155, 254, 0.2);
}
.social-icon svg {
  width: 16px;
  height: 16px;
  fill: rgba(253, 240, 213, 0.55);
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .iphone-mockup { display: none; }
  .testimonials { grid-template-columns: 1fr; }
  .benefit-block {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .benefit-block.reverse { direction: ltr; }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  .recursos-grid { grid-template-columns: 1fr; }
  nav { display: none; }
  section { padding: 80px 5vw; }
  #hero { padding-top: 120px; }
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 500px) {
  .hero-h1 { letter-spacing: -1px; }
  .hero-sub { font-size: 16px; }
  .btn-violet-lg {
    padding: 16px 28px;
    font-size: 16px;
  }
  .benefit-p { font-size: 15px; }
}
