/* ============================
   FONTS
============================ */
@font-face {
  font-family: 'EVHead';
  src: url('../fonts/EngelVoelkersHead_Rg.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'EVHead';
  src: url('../fonts/EngelVoelkersHead_Bd.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'EVText';
  src: url('../fonts/EngelVoelkersText_Lt.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'EVText';
  src: url('../fonts/EngelVoelkersText_Rg.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'EVText';
  src: url('../fonts/EngelVoelkersText_Bd.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ============================
   RESET & BASE
============================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}
body {
  font-family: var(--sans);
  font-weight: 300;
  color: #1a1a1a;
  background: #fff;
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 9999;
  padding: 8px 16px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  border-radius: var(--radius);
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

/* Focus styles */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ============================
   CSS VARIABLES
============================ */
:root {
  --dark: #0f0f0f;
  --dark2: #1a1a1a;
  --accent: #C41230;
  --accent2: #8f0d22;
  --light: #F7F5F0;
  --light2: #EEEBE3;
  --mid: #888880;
  --white: #ffffff;
  --border: rgba(0,0,0,0.09);
  --serif: 'EVHead', Georgia, serif;
  --sans: 'EVText', Arial, sans-serif;
  --section-pad: 100px 0;
  --container: 1160px;
  --radius: 4px;
  --radius-lg: 8px;
  --transition: 0.25s ease;
  --shadow-sm: 0 1px 3px rgba(15,15,15,0.08), 0 1px 2px rgba(15,15,15,0.04);
  --shadow-md: 0 4px 16px rgba(15,15,15,0.10), 0 2px 6px rgba(15,15,15,0.06);
  --shadow-accent: 0 8px 32px rgba(196,18,48,0.18);
  /* z-index scale */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-overlay: 300;
  --z-modal: 400;
  --z-toast: 500;
}

/* ============================
   TYPOGRAPHY
============================ */
h1, h2 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.15;
  text-wrap: balance;
}
h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.2;
  text-wrap: balance;
}
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.12;
  color: var(--dark);
}
.section-title.light { color: var(--dark); }

/* ============================
   LAYOUT
============================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}
section { padding: var(--section-pad); }

/* ============================
   BUTTONS
============================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: none;
  padding: 14px 32px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.btn-dark {
  background: var(--accent);
  color: var(--white);
}
.btn-dark:hover { background: var(--dark); color: var(--white); transform: translateY(-1px); }
.btn-outline {
  background: var(--accent);
  color: var(--white);
  border: 1px solid var(--accent);
}
.btn-outline:hover { background: var(--dark); color: var(--white); border-color: var(--dark); }
.btn-outline-light {
  background: var(--accent);
  color: var(--white);
  border: 1px solid var(--accent);
}
.btn-outline-light:hover { background: var(--dark); color: var(--white); border-color: var(--dark); }
.btn-accent { background: var(--accent); color: var(--white); }
.btn-accent:hover { background: var(--dark); color: var(--white); transform: translateY(-1px); }
.btn svg { width: 14px; height: 14px; transition: transform var(--transition); }
.btn:hover svg { transform: translateX(3px); }
.btn:active { transform: translateY(1px) scale(0.99); }
.btn-sm { padding: 10px 22px; font-size: 13px; }

/* ============================
   NAV
============================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-sticky);
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 1px 0 rgba(255,255,255,0.8) inset;
  transition: all var(--transition);
}
.nav.scrolled { height: 60px; box-shadow: var(--shadow-sm), 0 1px 0 rgba(255,255,255,0.8) inset; }
.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-decoration: none;
}
.nav-logo-img {
  height: 28px;
  width: auto;
  display: block;
}
.nav-logo-sub {
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  line-height: 1;
}
.footer-logo-img {
  height: 36px;
  width: auto;
  display: block;
  margin-bottom: 20px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  color: #444;
  letter-spacing: 0.02em;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--accent); }
.nav-cta { display: flex; align-items: center; gap: 12px; }

/* ============================
   HERO
============================ */
.hero {
  min-height: 100dvh;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/stgo.jpg');
  background-size: cover;
  background-position: center 35%;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  padding: 100px 40px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 28px;
  width: fit-content;
  animation: tagFadeIn 1s ease both;
}
.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.8);
  animation: pulse 2s infinite;
}
@keyframes tagFadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(38px, 4.5vw, 58px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  color: var(--white);
  font-weight: 700;
}
.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto 40px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-bottom: 64px; }
.hero-stats {
  display: flex;
  gap: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
  justify-content: center;
}
.hero-stat-num {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
  letter-spacing: 0.05em;
  text-align: center;
}

/* ============================
   MARQUEE STRIP
============================ */
.marquee-strip {
  background: var(--light);
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  overflow: hidden;
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 36px;
  font-family: 'EVText', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  white-space: nowrap;
}
.marquee-item::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ============================
   PAIN POINTS (strip)
============================ */
.pain-strip {
  background: var(--light);
  padding: 70px 0;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.pain-card {
  background: var(--white);
  padding: 36px 28px;
  transition: background var(--transition);
}
.pain-card:hover { background: var(--light); }
.pain-icon-wrap {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--light2);
  border-radius: var(--radius);
  margin-bottom: 18px;
  font-size: 20px;
  color: var(--dark);
}
.pain-icon-wrap svg { width: 20px; height: 20px; }
.pain-card h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.2;
}
.pain-card p {
  font-size: 16px;
  color: #666;
  line-height: 1.65;
}

/* ============================
   ABOUT / QUIÉNES SOMOS
============================ */
.about {
  background: var(--white);
  padding: 100px 0;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
}
.about-img-wrap {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  clip-path: inset(0 0 0 0);
}
.about-img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  position: absolute;
  inset: 0;
}
.about-img-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--dark);
  color: var(--white);
  padding: 28px 32px;
  border-radius: var(--radius);
  width: 180px;
  text-align: center;
}
.about-img-badge .big {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.about-img-badge small {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  display: block;
  margin-top: 4px;
  letter-spacing: 0.05em;
}
.about-content { padding-left: 20px; }
.about-content .section-title { margin-bottom: 20px; }
.about-content > p {
  font-size: 17px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 32px;
}
.about-items { display: flex; flex-direction: column; gap: 18px; margin-bottom: 36px; }
.about-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.about-item-icon {
  width: 36px; height: 36px;
  background: var(--light2);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  color: var(--dark);
}
.about-item-icon svg { width: 18px; height: 18px; }
.about-item h4 {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 3px;
}
.about-item p { font-size: 15px; color: #777; line-height: 1.5; }

/* ============================
   BENEFITS (dark section)
============================ */
.benefits {
  background: #dbdbdb;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.benefits .container { position: relative; z-index: 1; }
.benefits-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  gap: 40px;
}
.benefits-header .section-title { color: var(--dark); max-width: 400px; }
.benefits-header p {
  font-size: 17px;
  color: #555;
  max-width: 380px;
  line-height: 1.7;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.benefit-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.07);
  padding: 36px 30px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  border-color: rgba(204,0,0,0.18);
}
.benefit-num {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 700;
  color: rgba(0,0,0,0.18) !important;
  line-height: 1;
  margin-bottom: -10px;
  user-select: none;
  pointer-events: none;
}
.benefit-card h4 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.2;
}
.benefit-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.65;
}
.benefit-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(204,0,0,0.12);
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}

/* ============================
   PLAN ÚNICO
============================ */
.plan-section {
  background: var(--light);
  padding: 100px 0;
}
.plan-header-text {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}
.plan-header-text .section-title { margin-bottom: 12px; }
.plan-header-text p { font-size: 17px; color: #666; line-height: 1.7; }
.plan-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.07), 0 2px 8px rgba(0,0,0,0.04);
}
.plan-top {
  background: #dbdbdb;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 48px 56px;
}
.plan-top-label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.plan-top h2 {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.plan-top p {
  font-size: 16px;
  color: #555;
  max-width: 400px;
  line-height: 1.6;
}
.plan-price-wrap { text-align: right; flex-shrink: 0; }
.plan-price {
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}
.plan-price sup {
  font-size: 28px;
  vertical-align: super;
  font-weight: 400;
}
.plan-price-note {
  font-size: 12px;
  color: #666;
  margin-top: 6px;
  letter-spacing: 0.05em;
}
.plan-body { padding: 48px 56px; }
.plan-body-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 32px;
}
.plan-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
  margin-bottom: 40px;
}
.feat-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 24px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.feat-item:hover { background: var(--light); }
.feat-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(204,0,0,0.10);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 10px;
  color: var(--accent);
  font-weight: 700;
}
.feat-check svg { width: 12px; height: 12px; }
.feat-item span { font-size: 17px; color: #444; line-height: 1.5; }
.feat-item span strong { color: var(--dark); font-weight: 700; }
.plan-details-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 36px;
}
.plan-detail {
  background: var(--light);
  padding: 20px 22px;
}
.plan-detail-label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 5px;
}
.plan-detail-val {
  font-size: 17px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.3;
}
.plan-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.plan-cta-note {
  font-size: 13px;
  color: var(--mid);
}
.plan-cta-note a { color: var(--dark); font-weight: 400; border-bottom: 1px solid var(--border); }
.plan-cta-note a:hover { color: var(--accent); border-color: var(--accent); }

/* ============================
   PROCESO
============================ */
.proceso {
  background: var(--white);
  padding: 100px 0;
}
.proceso-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}
.proceso-left .section-title { margin-bottom: 18px; }
.proceso-left > p { font-size: 17px; color: #666; line-height: 1.7; margin-bottom: 32px; }
.steps { display: flex; flex-direction: column; }
.step-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
  transition: all var(--transition);
  cursor: default;
}
.step-item:first-child { border-top: 1px solid var(--border); }
.step-item:hover .step-num-wrap { background: var(--dark); color: var(--white); }
.step-num-wrap {
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  transition: all var(--transition);
  flex-shrink: 0;
}
.step-content h4 {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 6px;
}
.step-content p { font-size: 15px; color: #777; line-height: 1.6; }

/* ============================
   EQUIPO
============================ */
.equipo {
  background: var(--light);
  padding: 96px 0;
}
.equipo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .equipo-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .equipo-grid { grid-template-columns: 1fr; }
}
.equipo-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.07);
  padding: 36px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.equipo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  border-color: rgba(204,0,0,0.18);
}
.equipo-avatar-wrap {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 8px;
  background: #e8e8e8;
  flex-shrink: 0;
}
.equipo-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.equipo-name {
  font-family: 'EVHead', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--dark);
}
.equipo-role {
  font-size: 12px;
  color: #888;
  line-height: 1.4;
}
.equipo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-top: 4px;
}
.equipo-tag {
  font-family: 'EVText', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.equipo-tag + .equipo-tag::before {
  content: '·';
  margin-right: 6px;
  color: var(--accent);
}

/* ============================
   TRUST / E&V
============================ */
.trust {
  background: var(--light);
  background-image: url('../patron.svg');
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% auto;
  padding: 100px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.trust-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.trust-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.trust-card-icon {
  width: 52px; height: 52px;
  background: var(--dark);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 22px;
  color: var(--white);
}
.trust-card-icon svg { width: 22px; height: 22px; }
.trust-card h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.2;
}
.trust-card > p { font-size: 16px; color: #666; line-height: 1.7; margin-bottom: 22px; }
.trust-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.trust-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 16px;
  color: #555;
}
.trust-list li::before {
  content: '✓';
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ============================
   FAQ
============================ */
.faq-section {
  background: var(--white);
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 860px) {
  .faq-inner { grid-template-columns: 1fr; gap: 48px; }
}
.faq-left .section-title { margin-bottom: 16px; }
.faq-left > p { font-size: 16px; color: #666; line-height: 1.7; }
.faq-link { color: var(--accent); border-bottom: 1px solid rgba(204,0,0,0.3); transition: border-color var(--transition); }
.faq-link:hover { border-color: var(--accent); }

.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.faq-num {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 400;
  color: #bbb;
  min-width: 24px;
  transition: color var(--transition);
}
.faq-question {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--dark);
  flex: 1;
  line-height: 1.3;
}
.faq-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #999;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.faq-icon svg { transition: transform 0.3s ease; }
.faq-body {
  overflow: hidden;
  height: 0;
}
.faq-body p {
  font-size: 16px;
  color: #666;
  line-height: 1.75;
  padding-bottom: 22px;
  padding-left: 44px;
}

/* active state */
.faq-item.is-open .faq-num { color: var(--accent); }
.faq-item.is-open .faq-question { font-weight: 700; }
.faq-item.is-open .faq-icon {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.faq-item.is-open .faq-icon svg { transform: rotate(45deg); }

/* ============================
   FINAL CTA
============================ */
.final-cta {
  background: #dbdbdb;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.final-cta .container { position: relative; z-index: 1; }
.final-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.final-cta-left .section-title { color: var(--dark); margin-bottom: 18px; }
.final-cta-left > p { font-size: 17px; color: #555; line-height: 1.7; }
.final-cta-right { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  transition: background var(--transition);
}
.contact-item:hover { background: rgba(255,255,255,0.07); }
.contact-item-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-item-label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.contact-item-val {
  font-size: 15px;
  color: var(--white);
  font-weight: 400;
}
.cta-btns { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }

/* ============================
   FOOTER
============================ */
.footer {
  background: #ffffff;
  padding: 60px 0 30px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  margin-bottom: 30px;
}
.footer-brand p { font-size: 15px; color: #666; line-height: 1.7; max-width: 280px; margin-bottom: 24px; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  color: #555;
  transition: all var(--transition);
}
.social-link:hover { border-color: var(--accent); color: var(--accent); }
.footer-col h4 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 15px; color: #333; transition: color var(--transition); }
.footer-links a:hover { color: var(--accent); }
.footer-casa {
  display: block;
  height: 80px;
  width: auto;
  opacity: 0.35;
  margin-top: 28px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 12px; color: #888; }

/* ============================
   ANIMATIONS
============================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(0); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up, .fade-up-2, .fade-up-3, .fade-up-4 { opacity: 1; }

/* ============================
   DIVIDER ACCENT LINE
============================ */
.accent-line {
  display: inline-block;
  width: 40px; height: 2px;
  background: var(--accent);
  margin-right: 12px;
  vertical-align: middle;
}

/* ============================
   CONTACT LIST (CTA left)
============================ */
.cta-contact-list { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.cta-contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.cta-contact-icon { font-size: 16px; flex-shrink: 0; margin-top: 2px; color: var(--accent); }
.cta-contact-icon svg { width: 22px; height: 22px; }
.cta-contact-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 3px;
}
.cta-contact-val {
  font-size: 17px;
  color: var(--dark);
  transition: color var(--transition);
}
a.cta-contact-val:hover { color: var(--accent); }

/* ============================
   CONTACT FORM BOX
============================ */
.contact-form-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
}
.form-title {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 28px;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 13px;
  font-weight: 400;
  color: var(--dark);
}
.req { color: var(--accent); }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--dark);
  background: var(--white);
  border: 1px solid #ddd;
  border-radius: var(--radius);
  padding: 11px 14px;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(204,0,0,0.08);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 24px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  margin-top: 4px;
}
.form-submit:hover { background: var(--dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(15,15,15,0.25); }
.form-submit:active { transform: translateY(0) scale(0.99); }
.form-success {
  display: none;
  text-align: center;
  padding: 32px 0 8px;
}
.form-success.visible { display: block; }
.form-success-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(204,0,0,0.1);
  color: var(--accent);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.form-success-icon svg { width: 22px; height: 22px; }
.form-success p { font-size: 14px; color: #555; line-height: 1.6; }

/* ============================
   WHATSAPP FLOTANTE
============================ */
.back-top {
  position: fixed;
  bottom: 92px;
  left: 28px;
  z-index: var(--z-toast);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--dark);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
}
.back-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-top:hover { background: var(--accent); }

.wsp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: var(--z-toast);
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: wspPop 0.5s 1.5s ease both;
}
.wsp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}
@keyframes wspPop {
  from { opacity: 0; transform: scale(0.5); }
  to   { opacity: 1; transform: scale(1); }
}
.wsp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: wspPulse 2.5s 2s infinite;
  z-index: -1;
}
@keyframes wspPulse {
  0%   { transform: scale(1); opacity: 0.6; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .about-inner, .proceso-inner, .final-cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .pain-grid { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .plan-features { grid-template-columns: 1fr; }
  .plan-top { grid-template-columns: 1fr; }
  .plan-price-wrap { text-align: left; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .about-img-badge { right: 0; }
}

/* ============================
   HAMBURGER + MOBILE NAV
============================ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: calc(var(--z-sticky) + 10);
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  top: 72px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: calc(var(--z-sticky) - 1);
  padding: 32px 24px 40px;
  overflow-y: auto;
}
.nav-mobile-overlay.open { display: block; }
.nav-mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nav-mobile-links li {
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.nav-mobile-links li a {
  display: block;
  padding: 18px 4px;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 400;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color var(--transition);
}
.nav-mobile-links li a:hover,
.nav-mobile-links li a:active { color: var(--accent); }
.nav-mobile-cta {
  border-bottom: none !important;
  margin-top: 28px;
}
.nav-mobile-cta a {
  display: inline-block !important;
  padding: 14px 28px !important;
  width: 100%;
  text-align: center;
  font-size: 15px !important;
  background: var(--accent) !important;
  color: #fff !important;
  border-color: var(--accent) !important;
}

@media (max-width: 768px) {
  :root { --section-pad: 70px 0; }
  .container { padding: 0 20px; }
  .nav { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero-content { padding: 140px 20px 80px; }
  .hero-stats { gap: 28px; flex-wrap: wrap; }
  .pain-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .plan-details-row { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .plan-top { padding: 32px; }
  .plan-body { padding: 32px; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .final-cta-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-box { padding: 28px 20px; }
}
