/* =========================================================
   BORDA — Sistema de diseño v2
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&display=swap');

:root {
  /* Paleta */
  --forest:        #1F5132;
  --forest-mid:    #2F7A4D;
  --forest-deep:   #143924;
  --forest-light:  #E6EFE8;
  --forest-pale:   #F3F8F4;
  --slate:         #3D4A52;
  --slate-mid:     #5A6068;
  --slate-light:   #8A929A;
  --copper:        #B87333;
  --copper-light:  #DCA878;
  --copper-pale:   #F4E6D3;
  --stone:         #E8E4DC;
  --bone:          #F7F5F0;
  --bone-warm:     #FDFBF6;
  --charcoal:      #1A1A1A;
  --black-pure:    #0A0A0A;
  --white:         #FFFFFF;
  --gray-line:     #DCD8D2;
  --red:           #C14A3D;
  --amber:         #D97E1D;

  /* Tipografía */
  --font-sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif:   'Fraunces', Georgia, serif;

  /* Sombras */
  --shadow-sm:    0 1px 2px rgba(0,0,0,0.04);
  --shadow:       0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:    0 8px 24px rgba(0,0,0,0.08);
  --shadow-lg:    0 20px 48px rgba(0,0,0,0.10);
  --shadow-xl:    0 32px 80px rgba(0,0,0,0.14);

  /* Bordes */
  --r-sm:  6px;
  --r:     10px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;

  /* Espaciado */
  --c-narrow: 720px;
  --c:        1180px;
  --c-wide:   1320px;

  /* Transiciones */
  --t-fast:  0.15s ease;
  --t:       0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow:  0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

::selection { background: var(--copper); color: var(--white); }

/* =========================================================
   TIPOGRAFÍA
   ========================================================= */
h1, h2, h3, h4, h5 { line-height: 1.15; letter-spacing: -0.02em; font-weight: 700; color: var(--charcoal); }
h1 { font-size: clamp(40px, 6vw, 72px); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(30px, 4vw, 48px); font-weight: 700; }
h3 { font-size: clamp(22px, 2.5vw, 30px); font-weight: 700; }
h4 { font-size: 20px; font-weight: 600; }

p { color: var(--slate); }
.lead { font-size: 20px; line-height: 1.55; color: var(--slate); }

a { color: var(--forest); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--copper); }

.serif { font-family: var(--font-serif); font-style: italic; font-weight: 400; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--forest); padding: 6px 12px;
  background: var(--forest-light); border-radius: 999px;
}
.eyebrow.copper { color: var(--copper); background: var(--copper-pale); }
.eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: currentColor; display: inline-block;
}

.gradient-text {
  background: linear-gradient(135deg, var(--forest) 0%, var(--copper) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* =========================================================
   LAYOUT
   ========================================================= */
.container { max-width: var(--c); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--c-narrow); margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: var(--c-wide); margin: 0 auto; padding: 0 24px; }

section { padding: 100px 0; position: relative; }
section.tight { padding: 70px 0; }
section.loose { padding: 130px 0; }

@media (max-width: 768px) {
  section { padding: 70px 0; }
  section.loose { padding: 90px 0; }
}

.bg-bone { background: var(--bone); }
.bg-warm { background: var(--bone-warm); }
.bg-pale { background: var(--forest-pale); }
.bg-stone { background: var(--stone); }
.bg-forest { background: var(--forest); color: var(--white); }
.bg-forest h1, .bg-forest h2, .bg-forest h3, .bg-forest h4 { color: var(--white); }
.bg-forest p { color: rgba(255,255,255,0.85); }
.bg-dark { background: var(--charcoal); color: var(--white); }
.bg-dark h1, .bg-dark h2, .bg-dark h3 { color: var(--white); }
.bg-dark p { color: rgba(255,255,255,0.7); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.section-head h2 { margin-bottom: 16px; }
.section-head .eyebrow { margin-bottom: 20px; }

/* =========================================================
   TOP CONTACT BAR
   ========================================================= */
.top-bar {
  background: var(--charcoal);
  color: rgba(255,255,255,0.85);
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.top-bar-inner {
  max-width: var(--c-wide);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.top-bar-left {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.75);
}
.top-bar-left svg { width: 14px; height: 14px; }
.top-bar-emails {
  display: flex; align-items: center; gap: 18px;
}
.top-bar-emails a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.15s ease;
}
.top-bar-emails a:hover { color: var(--copper); }
.top-bar-emails a svg { width: 14px; height: 14px; opacity: 0.7; }
.top-bar-emails .sep {
  width: 1px; height: 14px;
  background: rgba(255,255,255,0.15);
}

@media (max-width: 768px) {
  .top-bar { font-size: 12px; padding: 6px 0; }
  .top-bar-left { display: none; }
  .top-bar-emails { gap: 12px; width: 100%; justify-content: center; }
  .top-bar-emails .sep { display: none; }
  .top-bar-emails a span { display: none; }
}

.nav.with-topbar { top: 35px; }
body.with-topbar { padding-top: 35px; }
@media (max-width: 768px) {
  .nav.with-topbar { top: 30px; }
  body.with-topbar { padding-top: 30px; }
}

/* =========================================================
   NAVEGACIÓN
   ========================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 14px 0;
  background: rgba(247, 245, 240, 0.85);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: all var(--t);
}
.nav.scrolled {
  border-bottom-color: var(--gray-line);
  background: rgba(247, 245, 240, 0.95);
}
.nav-inner {
  max-width: var(--c-wide); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 19px; letter-spacing: -0.01em;
  color: var(--forest);
}
.logo-mark { width: 30px; height: 30px; flex-shrink: 0; }
.logo:hover { color: var(--forest); }

.nav-menu {
  display: flex; gap: 4px; align-items: center;
}
.nav-menu a {
  padding: 8px 14px; border-radius: var(--r);
  font-size: 14.5px; font-weight: 500;
  color: var(--slate);
  transition: all var(--t-fast);
}
.nav-menu a:hover { background: var(--forest-light); color: var(--forest); }
.nav-menu a.active { color: var(--forest); font-weight: 600; }

.nav-cta { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: 8px; color: var(--charcoal);
}

@media (max-width: 900px) {
  .nav-menu, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: block; }
  .nav-menu.mobile-open {
    display: flex; flex-direction: column; gap: 4px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--gray-line);
    padding: 12px 16px 24px; box-shadow: var(--shadow-md);
  }
  .nav-menu.mobile-open a { padding: 14px 16px; }
}

/* =========================================================
   BOTONES
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px;
  font-family: var(--font-sans); font-size: 15px; font-weight: 600;
  border: none; border-radius: var(--r);
  cursor: pointer; transition: all var(--t);
  text-decoration: none; white-space: nowrap;
}
.btn-primary {
  background: var(--charcoal); color: var(--white);
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.btn-primary:hover {
  background: var(--forest); color: var(--white);
  transform: translateY(-1px); box-shadow: 0 8px 24px rgba(31, 81, 50, 0.3);
}
.btn-copper {
  background: var(--copper); color: var(--white);
  box-shadow: 0 4px 14px rgba(184, 115, 51, 0.25);
}
.btn-copper:hover {
  background: var(--forest); color: var(--white);
  transform: translateY(-1px); box-shadow: 0 8px 24px rgba(31, 81, 50, 0.25);
}
.btn-ghost {
  background: transparent; color: var(--charcoal);
  border: 1.5px solid var(--gray-line);
}
.btn-ghost:hover { background: var(--white); border-color: var(--forest); color: var(--forest); }
.btn-link {
  background: none; padding: 8px 0; color: var(--forest);
  border-radius: 0;
}
.btn-link:hover { color: var(--copper); gap: 12px; }
.btn-link::after { content: '→'; transition: transform var(--t); }
.btn-link:hover::after { transform: translateX(4px); }

.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-sm { padding: 8px 14px; font-size: 13.5px; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  padding: 140px 0 100px;
  position: relative; overflow: hidden;
  background: var(--bone);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(184, 115, 51, 0.08), transparent 60%),
    radial-gradient(ellipse 50% 60% at 20% 100%, rgba(31, 81, 50, 0.10), transparent 60%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; text-align: center; }
.hero h1 {
  margin: 24px auto 24px;
  max-width: 18ch;
}
.hero .lead { max-width: 60ch; margin: 0 auto 40px; }
.hero-ctas {
  display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center;
}
.hero-meta {
  margin-top: 40px;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 28px;
  font-size: 13.5px; color: var(--slate-mid);
}
.hero-meta-item {
  display: inline-flex; align-items: center; gap: 6px;
}
.hero-meta-item svg { width: 16px; height: 16px; color: var(--forest); }

.hero-visual {
  margin-top: 80px;
  position: relative;
}

.scene {
  position: relative;
  height: 380px;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(180deg, #BDD3E0 0%, #8DAFC1 40%, #5C8A9F 100%);
  box-shadow: var(--shadow-xl);
}
.scene-mountains {
  position: absolute; bottom: 0; left: 0; right: 0; height: 70%;
}
.scene-satellite {
  position: absolute; top: 28px; right: 50px;
  width: 50px; height: 50px;
  animation: float 4s ease-in-out infinite;
}
.scene-signal {
  position: absolute; top: 40px; right: 60px;
  width: 80px; height: 80px;
  border: 2px dashed var(--copper);
  border-radius: 50%; opacity: 0.5;
  animation: pulse 3s ease-out infinite;
}
.scene-borda {
  position: absolute; bottom: 90px; left: 50%; transform: translateX(-50%);
  width: 70px; height: 70px;
}
.scene-dots {
  position: absolute; bottom: 50px; width: 100%;
}
.scene-dots .dot {
  position: absolute; width: 10px; height: 10px;
  background: var(--charcoal); border-radius: 50%;
  border: 2px solid var(--white);
  animation: bob 3s ease-in-out infinite;
}

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes pulse { 0% { transform: scale(0.9); opacity: 0.5; } 100% { transform: scale(1.6); opacity: 0; } }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }

/* =========================================================
   STATS
   ========================================================= */
.stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 60px 0;
  border-top: 1px solid var(--gray-line);
  border-bottom: 1px solid var(--gray-line);
}
.stat-item { text-align: center; }
.stat-num {
  font-size: clamp(40px, 5vw, 60px); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1;
  background: linear-gradient(135deg, var(--forest) 0%, var(--copper) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}
.stat-label { font-size: 14.5px; color: var(--slate); line-height: 1.5; }
@media (max-width: 768px) {
  .stats { grid-template-columns: 1fr; gap: 24px; padding: 40px 0; }
}

/* =========================================================
   CARDS
   ========================================================= */
.card {
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: var(--r-md);
  padding: 32px;
  transition: all var(--t);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--forest-light);
}
.card-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--forest-light); color: var(--forest);
  border-radius: var(--r); margin-bottom: 20px;
}
.card-icon svg { width: 24px; height: 24px; }
.card h3 { font-size: 21px; margin-bottom: 10px; }
.card p { font-size: 15.5px; }

.card-feature {
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: var(--r-md);
  padding: 28px;
  transition: all var(--t);
  position: relative;
}
.card-feature .check {
  width: 28px; height: 28px;
  background: var(--forest); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px;
  margin-bottom: 18px;
}

/* Grid Layouts */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-2-asym { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .grid-3, .grid-2, .grid-2-asym { grid-template-columns: 1fr; gap: 20px; }
  .grid-4 { grid-template-columns: 1fr; }
}

/* =========================================================
   DEVICE CARDS (3 dispositivos)
   ========================================================= */
.devices {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
@media (max-width: 900px) { .devices { grid-template-columns: 1fr; } }

.device {
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--t);
  position: relative;
  display: flex; flex-direction: column;
}
.device:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.device.featured { border-color: var(--copper); position: relative; }
.device.featured::before {
  content: 'Más popular'; position: absolute; top: 16px; right: 16px;
  background: var(--copper); color: var(--white);
  font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: 0.05em;
  z-index: 2;
}

.device-visual {
  background: linear-gradient(135deg, var(--forest-pale) 0%, var(--forest-light) 100%);
  height: 220px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.device-visual::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(184, 115, 51, 0.1), transparent 60%);
}
.device-shape {
  position: relative; z-index: 1;
  font-size: 96px; line-height: 1;
}

.device-body { padding: 30px; flex: 1; display: flex; flex-direction: column; }
.device-name {
  font-size: 24px; font-weight: 700; margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.device-tagline {
  color: var(--slate-mid); font-size: 14.5px;
  margin-bottom: 24px;
}
.device-features {
  list-style: none; margin: 0 0 28px; padding: 0;
}
.device-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14.5px; color: var(--slate);
  padding: 8px 0; border-top: 1px solid var(--gray-line);
}
.device-features li:first-child { border-top: none; }
.device-features svg {
  width: 16px; height: 16px; color: var(--forest);
  flex-shrink: 0; margin-top: 3px;
}
.device-foot { margin-top: auto; padding-top: 8px; }

/* =========================================================
   HOW IT WORKS — Steps
   ========================================================= */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  position: relative;
}
.steps::before {
  content: ''; position: absolute;
  top: 30px; left: 12%; right: 12%; height: 1px;
  background: repeating-linear-gradient(90deg, var(--gray-line) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.step { position: relative; text-align: center; z-index: 1; }
.step-num {
  width: 60px; height: 60px; margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--white); border: 2px solid var(--forest);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 26px; font-weight: 600;
  color: var(--forest);
  position: relative; z-index: 2;
}
.step h3 { font-size: 20px; margin-bottom: 10px; }
.step p { font-size: 15px; color: var(--slate); }

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

/* =========================================================
   APP MOCKUP (visual del móvil)
   ========================================================= */
.phone-mockup {
  margin: 0 auto;
  width: 280px; aspect-ratio: 9/19;
  background: var(--charcoal);
  border-radius: 38px;
  padding: 10px;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,0.06);
  position: relative;
}
.phone-screen {
  background: var(--bone);
  border-radius: 28px;
  height: 100%; width: 100%;
  overflow: hidden;
  position: relative;
}
.phone-status {
  height: 28px;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 20px; padding-top: 6px;
  font-size: 11px; font-weight: 700;
  color: var(--charcoal);
}
.phone-header {
  padding: 14px 18px 12px;
  border-bottom: 1px solid var(--gray-line);
  display: flex; justify-content: space-between; align-items: center;
}
.phone-title { font-weight: 700; font-size: 15px; }
.phone-map {
  height: 220px; position: relative; overflow: hidden;
  background:
    linear-gradient(135deg, #C5D9C8 0%, #B0CCB5 100%);
}
.phone-map::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(0,0,0,0.05) 0%, transparent 60%),
    radial-gradient(circle at 70% 60%, rgba(0,0,0,0.05) 0%, transparent 60%);
}
.phone-dot {
  position: absolute; width: 14px; height: 14px; border-radius: 50%;
  border: 2.5px solid var(--white);
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.phone-dot.green { background: var(--forest); }
.phone-dot.amber { background: var(--amber); }
.phone-dot.red { background: var(--red); }

.phone-list { padding: 14px 16px; }
.phone-list-item {
  display: flex; gap: 10px; align-items: center;
  padding: 10px 0;
  font-size: 12px; color: var(--charcoal);
  border-bottom: 1px solid var(--gray-line);
}
.phone-list-item:last-child { border-bottom: none; }
.phone-list-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--forest-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--forest); font-size: 13px;
}

/* =========================================================
   USE CASES
   ========================================================= */
.use-cases {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.use-case {
  position: relative; overflow: hidden;
  border-radius: var(--r-md);
  background: var(--white); border: 1px solid var(--gray-line);
  padding: 28px 24px; text-align: left;
  transition: all var(--t);
}
.use-case:hover {
  transform: translateY(-4px);
  border-color: var(--forest);
  box-shadow: var(--shadow-md);
}
.use-case-emoji {
  font-size: 36px; line-height: 1; margin-bottom: 14px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.06));
}
.use-case h4 { font-size: 17px; margin-bottom: 6px; }
.use-case p { font-size: 13.5px; color: var(--slate-mid); line-height: 1.55; }

@media (max-width: 900px) { .use-cases { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .use-cases { grid-template-columns: 1fr; } }

/* =========================================================
   COMPARISON TABLE (sin nombres)
   ========================================================= */
.compare-wrap {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--gray-line);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.compare-table {
  width: 100%; border-collapse: collapse;
  font-size: 15px;
}
.compare-table th, .compare-table td {
  padding: 18px 22px; text-align: left;
  border-bottom: 1px solid var(--gray-line);
}
.compare-table thead th {
  background: var(--bone);
  font-weight: 700; color: var(--slate); font-size: 14px;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.compare-table thead th.featured {
  background: var(--forest); color: var(--white);
}
.compare-table tbody td:first-child { font-weight: 600; color: var(--charcoal); width: 38%; }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table .yes { color: var(--forest); font-weight: 700; }
.compare-table .no  { color: var(--red); font-weight: 600; }
.compare-table .mid { color: var(--amber); font-weight: 600; }
.compare-table td.featured { background: var(--forest-pale); }
.compare-table .badge {
  display: inline-block; padding: 3px 9px; border-radius: 999px;
  font-size: 12px; font-weight: 600;
}
.badge-yes { background: var(--forest-light); color: var(--forest); }
.badge-no  { background: rgba(193, 74, 61, 0.1); color: var(--red); }
.badge-mid { background: rgba(217, 126, 29, 0.1); color: var(--amber); }

@media (max-width: 700px) {
  .compare-table { font-size: 13px; }
  .compare-table th, .compare-table td { padding: 12px 14px; }
}

/* =========================================================
   QUOTE / MANIFIESTO
   ========================================================= */
.quote {
  text-align: center; max-width: 800px; margin: 0 auto;
}
.quote-text {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.25; font-weight: 400;
  color: var(--white);
  font-style: italic;
}
.quote-text::before, .quote-text::after { color: var(--copper); }
.quote-meta { margin-top: 24px; font-size: 14px; color: rgba(255,255,255,0.7); }

/* =========================================================
   PRICE TIERS / Pre-reserva
   ========================================================= */
.prices {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.price {
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  transition: all var(--t);
  position: relative;
}
.price:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.price.featured {
  background: var(--charcoal); color: var(--white);
  border-color: var(--charcoal);
}
.price.featured h3, .price.featured .price-num, .price.featured .price-per { color: var(--white); }
.price.featured p, .price.featured ul li { color: rgba(255,255,255,0.78); }
.price.featured ul li svg { color: var(--copper); }
.price.featured::before {
  content: 'Recomendado';
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--copper); color: var(--white);
  padding: 6px 16px; border-radius: 999px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase;
}
.price h3 { font-size: 22px; margin-bottom: 6px; }
.price-desc { font-size: 14px; margin-bottom: 24px; color: var(--slate-mid); }
.price-num {
  font-size: 50px; font-weight: 800; letter-spacing: -0.03em; line-height: 1;
}
.price-per { font-size: 14px; color: var(--slate-mid); }
.price-period { margin: 8px 0 24px; font-size: 13px; color: var(--slate-mid); }
.price ul {
  list-style: none; margin: 24px 0;
}
.price ul li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0; font-size: 14.5px;
}
.price ul li svg {
  width: 18px; height: 18px; color: var(--forest);
  flex-shrink: 0; margin-top: 2px;
}
.price .btn { width: 100%; margin-top: 12px; }

@media (max-width: 900px) { .prices { grid-template-columns: 1fr; gap: 28px; } }

/* =========================================================
   FAQ (acordeón)
   ========================================================= */
.faq {
  max-width: 760px; margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--gray-line);
}
.faq-question {
  width: 100%; text-align: left;
  padding: 22px 0;
  background: none; border: none;
  font-family: var(--font-sans); font-size: 17px; font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  transition: color var(--t-fast);
}
.faq-question:hover { color: var(--forest); }
.faq-question::after {
  content: '+'; font-size: 22px; font-weight: 400;
  color: var(--forest);
  transition: transform var(--t);
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height var(--t), padding var(--t);
}
.faq-item.open .faq-answer {
  max-height: 400px; padding: 0 0 24px;
}
.faq-answer p { font-size: 15.5px; line-height: 1.7; }

/* =========================================================
   CTA BANNER
   ========================================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--forest-deep) 0%, var(--forest) 100%);
  border-radius: var(--r-xl);
  padding: 64px 48px;
  text-align: center;
  color: var(--white);
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--copper) 0%, transparent 70%);
  opacity: 0.3;
}
.cta-banner h2 { color: var(--white); margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 18px; max-width: 540px; margin: 0 auto 28px; }
.cta-banner .btn { background: var(--white); color: var(--charcoal); }
.cta-banner .btn:hover { background: var(--copper); color: var(--white); }

@media (max-width: 600px) { .cta-banner { padding: 48px 24px; } }

/* =========================================================
   FORMULARIO
   ========================================================= */
.form-wrap {
  max-width: 600px; margin: 0 auto;
  background: var(--white);
  padding: 40px;
  border-radius: var(--r-lg);
  border: 1px solid var(--gray-line);
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 14px; font-weight: 600;
  color: var(--charcoal); margin-bottom: 6px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 14px;
  font-family: var(--font-sans); font-size: 15px;
  border: 1.5px solid var(--gray-line); border-radius: var(--r);
  background: var(--white); color: var(--charcoal);
  transition: border-color var(--t-fast);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--forest);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-check { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--slate); }
.form-check input { width: 18px; height: 18px; accent-color: var(--forest); flex-shrink: 0; margin-top: 2px; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--charcoal); color: rgba(255,255,255,0.8);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-brand .logo { color: var(--white); margin-bottom: 14px; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.6; max-width: 320px; }
.footer h5 {
  color: var(--white); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 18px;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a {
  color: rgba(255,255,255,0.65); font-size: 14px;
  transition: color var(--t-fast);
}
.footer ul li a:hover { color: var(--copper); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-size: 13px; color: rgba(255,255,255,0.5);
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all var(--t-fast);
}
.footer-social a:hover { background: var(--copper); color: var(--white); }
.footer-social svg { width: 16px; height: 16px; }

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =========================================================
   COOKIE BANNER
   ========================================================= */
.cookie-banner {
  position: fixed; bottom: 20px; left: 20px; right: 20px;
  max-width: 480px;
  background: var(--white); color: var(--charcoal);
  padding: 20px 22px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-line);
  z-index: 9999;
  display: none;
}
.cookie-banner.show { display: block; animation: slideUp 0.4s ease; }
.cookie-banner h4 { font-size: 16px; margin-bottom: 6px; }
.cookie-banner p { font-size: 13.5px; line-height: 1.5; margin-bottom: 14px; }
.cookie-banner .cookie-actions { display: flex; gap: 10px; }
.cookie-banner .btn { padding: 9px 16px; font-size: 13.5px; }
@keyframes slideUp { from { transform: translateY(40px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* =========================================================
   UTILS
   ========================================================= */
.text-center { text-align: center; }
.text-mute { color: var(--slate-mid); }
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; } .mb-4 { margin-bottom: 32px; }
.gap-1 { gap: 8px; } .gap-2 { gap: 16px; } .gap-3 { gap: 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-wrap { flex-wrap: wrap; }
.relative { position: relative; }
.hidden-mobile { display: block; }
@media (max-width: 768px) { .hidden-mobile { display: none; } }
.only-mobile { display: none; }
@media (max-width: 768px) { .only-mobile { display: block; } }
