/* ═══════════════════════════════════════════════════════════════
   BRISA SITES — Sistema de Diseño Completo
   Editorial cálido latinoamericano · Mayo 2026
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* Paleta principal */
  --cream: #F7F2E9;
  --cream-dark: #EFE8DA;
  --cream-darker: #E5DCC9;
  --terracotta: #B85940;
  --terracotta-dark: #94422F;
  --terracotta-light: rgba(184, 89, 64, 0.1);
  --sage: #4A5D4A;
  --sage-dark: #3A4A3A;
  --sage-light: rgba(74, 93, 74, 0.1);
  --gold: #C9A961;
  --gold-light: rgba(201, 169, 97, 0.18);
  --charcoal: #2A2723;
  --charcoal-light: #4A4540;
  --warm-grey: #6B645C;
  --line: rgba(42, 39, 35, 0.12);
  --line-strong: rgba(42, 39, 35, 0.2);
  --white: #FFFFFF;

  /* Tipografía */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Espaciado */
  --section-pad: 100px;
  --container-max: 1280px;

  /* Sombras */
  --shadow-sm: 0 2px 8px rgba(42, 39, 35, 0.06);
  --shadow-md: 0 8px 24px rgba(42, 39, 35, 0.08);
  --shadow-lg: 0 16px 40px rgba(42, 39, 35, 0.1);
  --shadow-xl: 0 24px 60px rgba(42, 39, 35, 0.12);

  /* Transiciones */
  --t-fast: 0.2s ease;
  --t-base: 0.3s ease;
  --t-slow: 0.6s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  border: none;
  cursor: pointer;
  background: none;
}

/* ─── TIPOGRAFÍA ─────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--terracotta-light);
  color: var(--terracotta);
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--terracotta);
  border-radius: 50%;
}

.section-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 16px;
}

/* ─── CONTAINER ──────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-pad) 0;
  position: relative;
}

/* ─── BOTONES ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  padding: 11px 22px;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--t-base);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--terracotta-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(184, 89, 64, 0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--line-strong);
}
.btn-secondary:hover {
  background: var(--charcoal);
  color: var(--cream);
}

.btn-large {
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 600;
}

.btn-text {
  color: var(--charcoal);
  font-size: 15px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--t-fast);
}
.btn-text:hover {
  gap: 12px;
  color: var(--terracotta);
}

/* ─── NAVBAR ─────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 242, 233, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  max-width: var(--container-max);
  margin: 0 auto;
}
.logo {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo svg {
  width: 28px;
  height: 28px;
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links > a {
  color: var(--warm-grey);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--t-fast);
}
.nav-links > a:hover {
  color: var(--terracotta);
}
@media (max-width: 768px) {
  .nav-links > a:not(.btn) {
    display: none;
  }
}

/* ─── BACK LINK (sub-landings) ───────────────── */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--warm-grey);
  margin-bottom: 16px;
  transition: color var(--t-fast);
}
.back-link:hover {
  color: var(--terracotta);
}

/* ─── HERO ───────────────────────────────────── */
.hero {
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--gold-light) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -300px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--sage-light) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

h1.hero-title {
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 400;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 400;
}
.hero-title .underline {
  position: relative;
  white-space: nowrap;
}
.hero-title .underline::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--gold);
  opacity: 0.4;
  z-index: -1;
}
.hero-subtitle {
  font-size: 19px;
  color: var(--warm-grey);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.55;
}
.hero-cta {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--warm-grey);
}
.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-trust span::before {
  content: '✓';
  color: var(--sage);
  font-weight: 700;
}

/* ─── HERO MOCKUPS ───────────────────────────── */
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 480px;
  margin-left: auto;
}
.mockup {
  position: absolute;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-xl), var(--shadow-sm);
  overflow: hidden;
}
.mockup-1 {
  top: 0;
  left: 0;
  width: 75%;
  height: 70%;
  z-index: 2;
  transform: rotate(-3deg);
  animation: float1 6s ease-in-out infinite;
}
.mockup-2 {
  bottom: 0;
  right: 0;
  width: 70%;
  height: 65%;
  z-index: 1;
  transform: rotate(4deg);
  animation: float2 7s ease-in-out infinite;
}
@keyframes float1 {
  0%, 100% { transform: rotate(-3deg) translateY(0); }
  50% { transform: rotate(-3deg) translateY(-10px); }
}
@keyframes float2 {
  0%, 100% { transform: rotate(4deg) translateY(0); }
  50% { transform: rotate(4deg) translateY(-8px); }
}
.mockup-bar {
  display: flex;
  gap: 6px;
  padding: 10px 12px;
  background: #F4F4F4;
  border-bottom: 1px solid #EEE;
}
.mockup-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #DDD;
}
.mockup-content {
  padding: 20px;
  height: calc(100% - 30px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mockup-1 .mockup-content {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
  color: var(--cream);
}
.mockup-2 .mockup-content {
  background: var(--cream);
  color: var(--charcoal);
}
.mockup-tag {
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 8px;
}
.mockup-2 .mockup-tag {
  color: var(--terracotta);
  opacity: 1;
}
.mockup-h {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.1;
  font-weight: 500;
}
.mockup-h em {
  color: var(--gold);
  font-style: italic;
}
.mockup-2 .mockup-h em {
  color: var(--terracotta);
}
.mockup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
}
.mockup-grid-3 {
  grid-template-columns: 1fr 1fr;
}
.mockup-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  height: 50px;
}
.mockup-2 .mockup-card {
  background: var(--terracotta-light);
}

/* ─── PROOF STRIP ────────────────────────────── */
.proof-strip {
  background: var(--charcoal);
  color: var(--cream);
  padding: 28px 0;
  overflow: hidden;
}
.proof-track {
  display: flex;
  gap: 64px;
  animation: scroll 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.proof-track span {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  opacity: 0.8;
  display: inline-flex;
  align-items: center;
  gap: 64px;
}
.proof-track span::after {
  content: '✦';
  color: var(--gold);
  font-size: 14px;
  font-style: normal;
}
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* ─── SECCIONES (TÍTULOS Y INTRO) ─────────────── */
.section-title {
  font-size: clamp(32px, 4.5vw, 52px);
  margin-bottom: 24px;
  max-width: 720px;
}
.section-title em {
  color: var(--terracotta);
  font-style: italic;
}
.section-intro {
  font-size: 18px;
  color: var(--warm-grey);
  max-width: 640px;
  margin-bottom: 56px;
  line-height: 1.6;
}

/* ─── PROBLEMA (3 CARDS) ──────────────────────── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
@media (max-width: 800px) {
  .problem-grid { grid-template-columns: 1fr; }
}
.problem-card {
  background: var(--cream-dark);
  padding: 36px 32px;
  border-radius: 16px;
  position: relative;
  transition: all var(--t-base);
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.problem-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 56px;
  color: var(--terracotta);
  opacity: 0.2;
  position: absolute;
  top: 20px;
  right: 24px;
  line-height: 1;
}
.problem-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}
.problem-card p {
  color: var(--warm-grey);
  font-size: 15px;
  line-height: 1.6;
}

/* ─── CÓMO FUNCIONA (4 PASOS) ─────────────────── */
.how-section {
  background: var(--charcoal);
  color: var(--cream);
}
.how-section .section-eyebrow {
  color: var(--gold);
}
.how-section .section-intro {
  color: rgba(247, 242, 233, 0.7);
}
.how-section .section-title {
  color: var(--cream);
}
.how-section .section-title em {
  color: var(--gold);
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
@media (max-width: 800px) {
  .how-steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .how-steps { grid-template-columns: 1fr; }
}
.step {
  position: relative;
  padding: 32px 24px;
  border: 1px solid rgba(247, 242, 233, 0.1);
  border-radius: 16px;
  transition: all var(--t-base);
}
.step:hover {
  border-color: var(--gold);
  background: rgba(201, 169, 97, 0.05);
}
.step-num {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}
.step h3 {
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 500;
}
.step p {
  color: rgba(247, 242, 233, 0.6);
  font-size: 14px;
  line-height: 1.6;
}

/* ─── PRICING ────────────────────────────────── */
.pricing-section {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}
.price-card {
  background: white;
  border-radius: 24px;
  padding: 40px 32px;
  position: relative;
  transition: all var(--t-base);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.price-card.featured {
  background: var(--charcoal);
  color: var(--cream);
  transform: scale(1.04);
}
.price-card.featured:hover {
  transform: scale(1.04) translateY(-6px);
}
.price-card.featured h3 {
  color: var(--cream);
}
.price-card.featured .price-num {
  color: var(--gold);
}
.price-card.featured .price-period,
.price-card.featured .price-annual {
  color: rgba(247, 242, 233, 0.7);
}
.price-card.featured .price-features li {
  color: rgba(247, 242, 233, 0.85);
}
.price-card.featured .btn-card {
  background: var(--gold);
  color: var(--charcoal);
}
.price-card.featured .btn-card:hover {
  background: #DBB770;
}
.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--terracotta);
  color: var(--cream);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.price-name {
  font-family: var(--font-body);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--terracotta);
  margin-bottom: 12px;
}
.price-card.featured .price-name {
  color: var(--gold);
}
.price-card h3 {
  font-size: 32px;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-weight: 500;
}
.price-tagline {
  font-size: 14px;
  color: var(--warm-grey);
  margin-bottom: 28px;
  min-height: 40px;
}
.price-card.featured .price-tagline {
  color: rgba(247, 242, 233, 0.6);
}
.price-display {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
}
.price-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1;
}
.price-currency {
  font-size: 22px;
  color: var(--warm-grey);
}
.price-period {
  font-size: 14px;
  color: var(--warm-grey);
}
.price-annual {
  font-size: 13px;
  color: var(--warm-grey);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.price-annual + .price-early-adopter {
  border-bottom: 1px solid var(--line);
}
.price-annual:has(+ .price-early-adopter) {
  border-bottom: none;
  margin-bottom: 8px;
  padding-bottom: 0;
}
.price-card.featured .price-annual {
  border-color: rgba(247, 242, 233, 0.15);
}
.price-features {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1;
}
.price-features li {
  font-size: 14px;
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--charcoal);
}
.price-features li::before {
  content: '';
  width: 16px;
  height: 16px;
  background: var(--sage);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='currentColor' d='M6 11.5L2.5 8l1-1L6 9.5l6.5-6.5 1 1z'/></svg>") no-repeat center;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='currentColor' d='M6 11.5L2.5 8l1-1L6 9.5l6.5-6.5 1 1z'/></svg>") no-repeat center;
  flex-shrink: 0;
  margin-top: 4px;
}
.price-card.featured .price-features li::before {
  background: var(--gold);
}
.btn-card {
  display: block;
  text-align: center;
  background: var(--charcoal);
  color: var(--cream);
  padding: 14px 24px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  transition: all var(--t-fast);
}
.btn-card:hover {
  background: var(--terracotta);
}

/* ─── VERTICALES (PARA QUIÉN) ────────────────── */
.verticals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
@media (max-width: 800px) {
  .verticals-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .verticals-grid { grid-template-columns: 1fr; }
}
.vertical-card {
  padding: 28px 24px;
  background: white;
  border-radius: 16px;
  border: 1px solid var(--line);
  transition: all var(--t-base);
  display: block;
}
.vertical-card:hover {
  border-color: var(--terracotta);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.vertical-icon {
  width: 48px;
  height: 48px;
  background: var(--terracotta-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}
.vertical-card h4 {
  font-size: 19px;
  margin-bottom: 8px;
  font-weight: 500;
}
.vertical-card p {
  font-size: 13px;
  color: var(--warm-grey);
  line-height: 1.55;
}
.vertical-card .vertical-cta {
  margin-top: 12px;
  font-size: 13px;
  color: var(--terracotta);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--t-fast);
}
.vertical-card:hover .vertical-cta {
  gap: 8px;
}

/* ─── COMPARATIVA ────────────────────────────── */
.comparison-section {
  background: var(--cream-dark);
}
.comparison-table {
  background: white;
  border-radius: 24px;
  padding: 8px;
  overflow: hidden;
  margin-top: 48px;
  box-shadow: var(--shadow-md);
  overflow-x: auto;
}
.comp-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
  align-items: center;
  font-size: 14px;
}
.comp-row:last-child { border: none; }
.comp-row.header {
  background: var(--charcoal);
  color: var(--cream);
  border-radius: 16px;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.comp-row.header > div:first-child {
  color: var(--gold);
}
.comp-row .brisa-col {
  background: var(--terracotta-light);
  position: relative;
}
.comp-row.header .brisa-col {
  background: var(--terracotta);
  border-radius: 12px;
  padding: 12px;
  margin: -12px -8px;
}
.comp-feature {
  font-weight: 500;
}
.check {
  color: var(--sage);
  font-weight: 700;
}
.cross {
  color: #C76C5C;
  opacity: 0.7;
}
@media (max-width: 700px) {
  .comp-row {
    grid-template-columns: 2fr 1fr 1fr;
    font-size: 12px;
    padding: 14px 16px;
  }
  .comp-row > div:nth-child(2) { display: none; }
}

/* ─── EJEMPLOS (PLACEHOLDER MOCKUPS) ─────────── */
.examples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
@media (max-width: 900px) {
  .examples-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .examples-grid { grid-template-columns: 1fr; }
}
.example-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--t-base);
}
.example-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.example-mockup {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--cream-dark), var(--cream-darker));
  position: relative;
  overflow: hidden;
}
.example-mockup-bar {
  display: flex;
  gap: 6px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.example-mockup-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
}
.example-mockup-body {
  padding: 24px;
  height: calc(100% - 30px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.example-mockup-body h5 {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 8px;
  font-style: italic;
  color: var(--charcoal);
}
.example-mockup-body .lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 16px;
}
.example-mockup-body .lines div {
  height: 6px;
  background: rgba(42, 39, 35, 0.1);
  border-radius: 3px;
}
.example-mockup-body .lines div:nth-child(1) { width: 80%; margin: 0 auto; }
.example-mockup-body .lines div:nth-child(2) { width: 60%; margin: 0 auto; }
.example-mockup-body .lines div:nth-child(3) { width: 70%; margin: 0 auto; }
.example-info {
  padding: 20px 24px;
}
.example-info h4 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}
.example-info p {
  font-size: 13px;
  color: var(--warm-grey);
}
.example-tag {
  display: inline-block;
  font-size: 11px;
  background: var(--terracotta-light);
  color: var(--terracotta);
  padding: 3px 10px;
  border-radius: 100px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 8px;
}

/* ─── ABOUT (SOBRE JOSE) ─────────────────────── */
.about-section {
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 800px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.about-photo {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--terracotta), var(--gold));
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 120px;
  color: var(--cream);
  font-style: italic;
}
.about-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.2), transparent 60%);
}
.about-content h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 24px;
  line-height: 1.15;
}
.about-content h2 em {
  color: var(--terracotta);
  font-style: italic;
}
.about-content p {
  font-size: 17px;
  color: var(--warm-grey);
  margin-bottom: 16px;
  line-height: 1.7;
}
.about-content p strong {
  color: var(--charcoal);
}
.about-signature {
  margin-top: 32px;
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--terracotta);
  font-style: italic;
}

/* ─── FAQ ────────────────────────────────────── */
.faq-list {
  margin-top: 48px;
  max-width: 820px;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  cursor: pointer;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--charcoal);
  gap: 16px;
}
.faq-q::after {
  content: '+';
  font-size: 28px;
  color: var(--terracotta);
  font-family: var(--font-body);
  transition: transform var(--t-base);
  font-weight: 300;
  flex-shrink: 0;
}
.faq-item.open .faq-q::after {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow), padding var(--t-base);
  color: var(--warm-grey);
  font-size: 15px;
  line-height: 1.7;
}
.faq-item.open .faq-a {
  max-height: 500px;
  padding-top: 16px;
}

/* ─── CTA FINAL ──────────────────────────────── */
.cta-final {
  background: var(--charcoal);
  color: var(--cream);
  text-align: center;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-final h2 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 400;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}
.cta-final h2 em {
  color: var(--gold);
  font-style: italic;
}
.cta-final p {
  font-size: 19px;
  color: rgba(247, 242, 233, 0.7);
  max-width: 560px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 2;
}
.cta-final-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cta-final .btn-large {
  background: var(--gold);
  color: var(--charcoal);
}
.cta-final .btn-large:hover {
  background: #DBB770;
}
.cta-final .btn-secondary {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(247, 242, 233, 0.3);
}
.cta-final .btn-secondary:hover {
  background: var(--cream);
  color: var(--charcoal);
}

/* ─── FOOTER ─────────────────────────────────── */
.footer {
  background: #1A1816;
  color: rgba(247, 242, 233, 0.6);
  padding: 56px 0 32px;
  font-size: 13px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 700px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--cream);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-tagline {
  margin-bottom: 24px;
  max-width: 320px;
  line-height: 1.6;
}
.footer h4 {
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 16px;
}
.footer ul {
  list-style: none;
}
.footer li {
  padding: 4px 0;
}
.footer a {
  color: rgba(247, 242, 233, 0.6);
  transition: color var(--t-fast);
}
.footer a:hover {
  color: var(--gold);
}
.footer-bottom {
  border-top: 1px solid rgba(247, 242, 233, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
}

/* ─── WHATSAPP FLOAT BUTTON ──────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25D366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: transform var(--t-fast);
}
.whatsapp-float:hover {
  transform: scale(1.1);
}
.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: white;
}

/* ─── ANIMACIONES SCROLL ─────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── UTILITIES ──────────────────────────────── */
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
.mb-16 { margin-bottom: 16px; }

/* ─── LANGUAGE TOGGLE ─────────────────────────── */
/* Default: show ES, hide EN */
[lang="es"] .lang-en { display: none !important; }
[lang="en"] .lang-es { display: none !important; }

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  transition: all var(--t-fast);
  background: transparent;
  letter-spacing: 0.05em;
}
.lang-toggle:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
}
.lang-toggle svg {
  width: 14px;
  height: 14px;
}

/* ─── REGION TOGGLE ──────────────────────────── */
body[data-region="usa"] .region-co { display: none !important; }
body[data-region="co"] .region-usa { display: none !important; }

.region-toggle {
  display: inline-flex;
  gap: 0;
  background: var(--cream-dark);
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  padding: 4px;
  margin-bottom: 20px;
}
.region-btn {
  padding: 10px 28px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all var(--t-base);
  background: transparent;
  color: var(--charcoal);
  border: none;
  font-family: var(--font-body);
}
.region-btn[aria-checked="true"] {
  background: var(--terracotta);
  color: var(--cream);
  box-shadow: 0 2px 8px rgba(184, 89, 64, 0.3);
}
.region-btn[aria-checked="false"]:hover {
  color: var(--terracotta);
}
@media (max-width: 500px) {
  .region-toggle {
    display: flex;
    width: 100%;
  }
  .region-btn {
    flex: 1;
    text-align: center;
  }
}

/* ─── NAV BACK LINK ──────────────────────────── */
.nav-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-back-link {
  font-size: 13px;
  color: var(--warm-grey);
  transition: color var(--t-fast);
  white-space: nowrap;
}
.nav-back-link:hover {
  color: var(--terracotta);
}
@media (max-width: 768px) {
  .nav-back-link {
    display: none;
  }
}

/* ─── EARLY ADOPTER PRICE LINE ───────────────── */
.price-early-adopter {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  margin-top: -20px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.price-card.featured .price-early-adopter {
  border-color: rgba(247, 242, 233, 0.15);
}
