/* ===========================
   PRINEK — Estilos principales
   Azul marino: #1C2366 | Dorado: #E8A733
   =========================== */

:root {
  --primary:        #1C2366;
  --primary-dark:   #161c55;
  --primary-light:  #2a3488;
  --accent:         #E8A733;
  --accent-dark:    #d4932a;
  --accent-light:   #f0b83d;
  --white:          #ffffff;
  --gray-50:        #f8f9fa;
  --gray-100:       #f1f3f5;
  --gray-200:       #e9ecef;
  --gray-300:       #dee2e6;
  --gray-500:       #adb5bd;
  --gray-600:       #6c757d;
  --gray-700:       #495057;
  --gray-800:       #343a40;
  --gray-900:       #212529;
  --text:           #212529;
  --text-muted:     #6c757d;

  --font:           'Inter', sans-serif;
  --radius:         8px;
  --radius-lg:      16px;
  --shadow:         0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:      0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg:      0 8px 32px rgba(0,0,0,0.16);
  --transition:     0.2s ease;
  --max-width:      1200px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--font); }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}
.navbar__logo img { height: 72px; width: auto; max-width: 160px; }
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.navbar__link {
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.navbar__link:hover { color: var(--primary); background: var(--gray-50); }
.navbar__link--active { color: var(--primary); font-weight: 600; }

/* Dropdown */
.navbar__dropdown { position: relative; }
.navbar__dropdown-btn {
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: color var(--transition), background var(--transition);
  cursor: pointer;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
}
.navbar__dropdown-btn:hover { color: var(--primary); background: var(--gray-50); }
.navbar__dropdown-btn i { font-size: 0.65rem; transition: transform var(--transition); }
.navbar__dropdown:hover .navbar__dropdown-btn i { transform: rotate(180deg); }
.navbar__dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
}
.navbar__dropdown:hover .navbar__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.navbar__dropdown-menu a {
  display: block;
  padding: 0.625rem 0.875rem;
  border-radius: 6px;
  font-size: 0.875rem;
  color: var(--gray-700);
  transition: background var(--transition), color var(--transition);
}
.navbar__dropdown-menu a:hover { background: var(--gray-50); color: var(--primary); }
.navbar__cta {
  margin-left: 0.75rem;
  padding: 0.5rem 1.25rem;
  background: var(--accent);
  color: var(--white) !important;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.875rem;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.navbar__cta:hover { background: var(--accent-dark); transform: translateY(-1px); }
.navbar__toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
  border: none;
  background: none;
  gap: 5px;
}
.navbar__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-700);
  transition: var(--transition);
  transform-origin: center;
}

/* ===== BOTONES ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius);
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-align: center;
  line-height: 1;
}
.btn--primary { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn--primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn--outline:hover { background: var(--white); color: var(--primary); border-color: var(--white); }
.btn--outline-dark { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn--outline-dark:hover { background: var(--primary); color: var(--white); }
.btn--lg { padding: 1rem 2rem; font-size: 1rem; }

/* ===== HERO (inicio) ===== */
.hero {
  background: var(--primary);
  color: var(--white);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -5%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(232,167,51,0.12);
  color: var(--accent);
  padding: 0.375rem 0.875rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(232,167,51,0.25);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero__title {
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero__title em { color: var(--accent); font-style: normal; }
.hero__subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 2rem;
  line-height: 1.65;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.5rem; }
.hero__badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.82);
}
.hero__badge-check {
  width: 18px;
  height: 18px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: var(--white);
  flex-shrink: 0;
}
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(232,167,51,0.1);
  border: 1px solid rgba(232,167,51,0.2);
  color: var(--accent-light);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
}
.hero__visual {
  position: relative;
}
.hero__img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__img-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* CAROUSEL */
.hero__img-wrap { position: relative; }
.carousel {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
}
.carousel__slide {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}
.carousel__slide--active { opacity: 1; pointer-events: auto; }
.carousel__slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.carousel__dots {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: -webkit-flex;
  display: flex;
  gap: 0.4rem;
  z-index: 2;
}
.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  /* Área táctil ampliada para móvil */
  padding: 10px;
  margin: -10px;
  box-sizing: content-box;
}
.carousel__dot--active { background: #fff; }
.hero__img-placeholder {
  text-align: center;
  color: rgba(255,255,255,0.25);
  padding: 2rem;
}
.hero__img-placeholder i { font-size: 3rem; margin-bottom: 1rem; display: block; }
.hero__img-placeholder p { font-size: 0.85rem; line-height: 1.5; }

/* ===== STATS ===== */
.stats {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 3rem 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stats__divider {
  width: 1px;
  background: var(--gray-200);
  align-self: stretch;
  display: none;
}
.stats__number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stats__number span { color: var(--accent); }
.stats__label { font-size: 0.875rem; color: var(--text-muted); font-weight: 500; }

/* ===== SECCIONES ===== */
.section { padding: 5rem 0; }
.section--gray { background: var(--gray-50); }
.section--primary { background: var(--primary); color: var(--white); }
.section__header { text-align: center; margin-bottom: 3.5rem; }
.section__eyebrow {
  display: inline-block;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.section__title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section--primary .section__title { color: var(--white); }
.section__subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.65;
}
.section--primary .section__subtitle { color: rgba(255,255,255,0.72); }

/* ===== TARJETAS DE SERVICIOS ===== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.card__icon {
  width: 52px;
  height: 52px;
  background: rgba(28,35,102,0.07);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 1.25rem;
}
.card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.card__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.25rem;
}
.card__list { margin-bottom: 1.5rem; }
.card__list li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.3rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.card__list li i { color: var(--accent); flex-shrink: 0; margin-top: 0.2rem; }
.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
  margin-top: auto;
  transition: color var(--transition), gap var(--transition);
}
.card__link:hover { color: var(--accent); gap: 0.6rem; }

/* ===== PARTNER BANNER ===== */
.partner {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  padding: 3rem 0;
}
.partner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.partner__text { text-align: center; }
.partner__text h3 { font-size: 1.1rem; font-weight: 700; color: var(--primary); margin-bottom: 0.25rem; }
.partner__text p { font-size: 0.875rem; color: var(--text-muted); }
.partner__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.25rem 2rem;
  box-shadow: var(--shadow);
}
.partner__badge-logo { height: 48px; width: auto; display: block; }
.partner__badge-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-dark);
  text-transform: uppercase;
}

/* ===== CTA SECTION ===== */
.cta-band {
  background: var(--primary);
  color: var(--white);
  padding: 5rem 0;
  text-align: center;
}
.cta-band__title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 1rem;
}
.cta-band__subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta-band__actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ===== PAGE HERO (páginas internas) ===== */
.page-hero {
  background: var(--primary);
  color: var(--white);
  padding: 4rem 0;
}
.page-hero__eyebrow {
  display: inline-block;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.875rem;
}
.page-hero__title {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.15;
}
.page-hero__subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 620px;
  line-height: 1.65;
}

/* ===== CONTENIDO PÁGINAS INTERNAS ===== */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.content-grid--reverse { direction: rtl; }
.content-grid--reverse > * { direction: ltr; }
.content-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.content-img img { width: 100%; height: 100%; object-fit: cover; }
.img-placeholder {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--gray-500);
  padding: 3rem;
  aspect-ratio: 4/3;
  border: 2px dashed var(--gray-300);
  text-align: center;
}
.img-placeholder i { font-size: 2.5rem; color: var(--gray-300); }
.img-placeholder span { font-size: 0.85rem; line-height: 1.5; }
.section__img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}
.section__img--sm {
  width: auto;
  max-width: 100%;
  max-height: 480px;
  object-fit: unset;
  margin: 0 auto;
}
.content-body h2 {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.content-body p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}
.content-body .btn { margin-top: 1rem; }

/* ===== LISTA DE CARACTERÍSTICAS ===== */
.feature-list { }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--gray-100);
}
.feature-list li:last-child { border-bottom: none; }
.feature-check {
  width: 24px;
  height: 24px;
  background: rgba(232,167,51,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.65rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.feature-list li strong { display: block; font-weight: 600; color: var(--primary); font-size: 0.9rem; }
.feature-list li span { font-size: 0.875rem; color: var(--text-muted); }

/* ===== PASOS DE PROCESO ===== */
.steps { display: flex; flex-direction: column; gap: 1.75rem; }
.step { display: flex; gap: 1.25rem; align-items: flex-start; }
.step__num {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.step__title { font-weight: 700; color: var(--primary); margin-bottom: 0.2rem; font-size: 0.95rem; }
.step__text { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* ===== ABOUT PILLARS ===== */
.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1.25rem;
  background: var(--gray-50);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
}
.pillar__icon {
  width: 38px;
  height: 38px;
  background: rgba(232,167,51,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  font-size: 1rem;
}
.pillar__title { font-weight: 700; font-size: 0.875rem; color: var(--primary); margin-bottom: 0.2rem; }
.pillar__text { font-size: 0.8rem; color: var(--text-muted); }

/* ===== PLANES (tarjetas con precio) ===== */
.plans__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.plan {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
}
.plan:hover { border-color: var(--accent); box-shadow: var(--shadow-md); }
.plan--featured {
  border-color: var(--primary);
  position: relative;
}
.plan__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.875rem;
  border-radius: 100px;
  white-space: nowrap;
}
.plan__title { font-size: 1.1rem; font-weight: 700; color: var(--primary); margin-bottom: 0.5rem; }
.plan__desc { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.plan__list { margin-bottom: 1.75rem; }
.plan__list li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.35rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.plan__list li i { color: var(--accent); flex-shrink: 0; margin-top: 0.15rem; }
.plan .btn { width: 100%; }

/* ===== FORMULARIO DE CONTACTO ===== */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
.contact__info h2 { font-size: 1.75rem; font-weight: 800; color: var(--primary); margin-bottom: 1rem; }
.contact__info > p { color: var(--text-muted); margin-bottom: 2rem; line-height: 1.7; }
.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  margin-bottom: 1.5rem;
}
.contact__detail-icon {
  width: 42px;
  height: 42px;
  background: rgba(28,35,102,0.07);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  font-size: 1rem;
}
.contact__detail-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.contact__detail-value { font-weight: 700; color: var(--primary); font-size: 0.95rem; }
.contact__detail-value a { color: inherit; transition: color var(--transition); }
.contact__detail-value a:hover { color: var(--accent); }
.form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.form__title { font-size: 1.2rem; font-weight: 800; color: var(--primary); margin-bottom: 1.75rem; }
.form__group { margin-bottom: 1.25rem; }
.form__label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--gray-700); margin-bottom: 0.5rem; }
.form__label span { color: var(--accent); }
.form__input,
.form__textarea,
.form__select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(28,35,102,0.1);
}
.form__textarea { resize: vertical; min-height: 130px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form__submit { width: 100%; margin-top: 0.5rem; }
.form__privacy { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.875rem; text-align: center; line-height: 1.5; }
.form__privacy a { color: var(--primary); text-decoration: underline; }
.form__success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: var(--primary);
}
.form__success i { font-size: 2.5rem; color: var(--accent); margin-bottom: 1rem; display: block; }

/* ===== FOOTER ===== */
.footer {
  background: var(--gray-900);
  color: var(--gray-500);
  padding: 4rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__logo { margin-bottom: 1rem; }
.footer__logo img { height: 46px; }
.footer__tagline { font-size: 0.875rem; line-height: 1.65; margin-bottom: 1.5rem; color: var(--gray-600); }
.footer__social { display: flex; gap: 0.5rem; }
.footer__social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  transition: background var(--transition), color var(--transition);
  font-size: 0.9rem;
}
.footer__social a:hover { background: var(--accent); color: var(--white); }
.footer__heading {
  font-weight: 700;
  color: var(--white);
  font-size: 0.8rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer__links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__links a { font-size: 0.875rem; color: var(--gray-600); transition: color var(--transition); }
.footer__links a:hover { color: var(--white); }
.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}
.footer__contact-item i { color: var(--accent); font-size: 0.85rem; width: 14px; }
.footer__contact-item a { color: var(--gray-600); transition: color var(--transition); }
.footer__contact-item a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__copyright { font-size: 0.8rem; }
.footer__legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer__legal a { font-size: 0.8rem; color: var(--gray-600); transition: color var(--transition); }
.footer__legal a:hover { color: var(--white); }

/* ===== WHATSAPP FLOTANTE ===== */
.wa-btn {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 999;
  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 var(--transition), box-shadow var(--transition);
  color: var(--white);
  font-size: 1.6rem;
}
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.55); }

/* ===== BANNER COOKIES ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: rgba(18,18,28,0.97);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.07);
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner__text { font-size: 0.875rem; color: rgba(255,255,255,0.8); flex: 1; min-width: 260px; line-height: 1.55; }
.cookie-banner__text a { color: var(--accent); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 0.75rem; flex-shrink: 0; }
.cookie-btn-accept {
  padding: 0.75rem 1.375rem;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background var(--transition);
}
.cookie-btn-accept:hover { background: var(--accent-dark); }
.cookie-btn-reject {
  padding: 0.75rem 1rem;
  background: transparent;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.875rem;
  cursor: pointer;
  transition: all var(--transition);
}
.cookie-btn-reject:hover { color: var(--white); border-color: rgba(255,255,255,0.5); }

/* ===== PÁGINAS LEGALES ===== */
.legal-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
}
.legal-wrap h1 { font-size: 2rem; font-weight: 800; color: var(--primary); margin-bottom: 0.5rem; }
.legal-wrap .updated { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 2.5rem; padding-bottom: 2rem; border-bottom: 1px solid var(--gray-100); }
.legal-wrap h2 { font-size: 1.2rem; font-weight: 700; color: var(--primary); margin: 2.5rem 0 0.75rem; }
.legal-wrap p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.75; font-size: 0.95rem; }
.legal-wrap ul { margin: 0.75rem 0 1rem 1.5rem; }
.legal-wrap ul li { color: var(--text-muted); margin-bottom: 0.5rem; font-size: 0.95rem; line-height: 1.65; list-style: disc; }
.legal-wrap a { color: var(--primary); text-decoration: underline; }
.legal-wrap table { width: 100%; border-collapse: collapse; margin: 1rem 0 1.5rem; font-size: 0.9rem; }
.legal-wrap th { background: var(--primary); color: var(--white); padding: 0.75rem 1rem; text-align: left; font-weight: 600; }
.legal-wrap td { padding: 0.75rem 1rem; border-bottom: 1px solid var(--gray-100); color: var(--text-muted); }
.legal-wrap tr:last-child td { border-bottom: none; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
  padding: 0.75rem 0;
}
.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumb__list a { color: var(--text-muted); transition: color var(--transition); }
.breadcrumb__list a:hover { color: var(--primary); }
.breadcrumb__list li:not(:last-child)::after { content: '/'; margin-left: 0.5rem; }
.breadcrumb__list li:last-child { color: var(--primary); font-weight: 600; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .plans__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .hero__actions .btn { width: 100%; }
  .services__grid { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .content-grid--reverse { direction: ltr; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__legal { justify-content: center; }
  .pillars { grid-template-columns: 1fr; }

  /* Mobile nav */
  .navbar__nav {
    display: none;
    position: fixed;
    top: 88px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    padding: 1.5rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.375rem;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }
  .navbar__nav.open { display: flex; }
  .navbar__link { padding: 0.875rem 1rem; font-size: 1rem; }
  .navbar__dropdown-btn { padding: 0.875rem 1rem; font-size: 1rem; width: 100%; text-align: left; background: none; }
  .navbar__dropdown-btn:hover,
  .navbar__dropdown-btn:active { background: none; }
  .navbar__dropdown { background: none; }
  .navbar__dropdown-menu {
    display: none;
    position: static;
    transform: none !important;
    box-shadow: none;
    border: none;
    background: var(--gray-50);
    margin-left: 1rem;
    border-radius: var(--radius);
    padding: 0.25rem 0;
  }
  .navbar__dropdown.open .navbar__dropdown-menu {
    display: block;
  }
  .navbar__dropdown.open .navbar__dropdown-btn i {
    transform: rotate(180deg);
  }
  .navbar__toggle { display: flex; }
  .navbar__cta { width: 100%; margin-left: 0; text-align: center; }

  .cta-band__actions { flex-direction: column; align-items: center; }
  .cta-band__actions .btn { width: 100%; max-width: 320px; }

  .form__row { grid-template-columns: 1fr; }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
  .wa-btn { bottom: 1.25rem; right: 1.25rem; }
}

@media (max-width: 600px) {
  .form__row { grid-template-columns: 1fr; }
  .cookie-banner { padding: 1rem 1.25rem; }
  .cookie-banner__actions { width: 100%; }
  .cookie-btn-accept, .cookie-btn-reject { flex: 1; text-align: center; }
}

@media (max-width: 480px) {
  .hero { padding: 3.5rem 0 3rem; }
  .section { padding: 3.5rem 0; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .stats__number { font-size: 2rem; }
  .navbar__logo img { height: 52px; }
  .navbar__inner { height: 72px; }
  .navbar__nav { top: 72px; }
  .section__img { max-height: 280px; }
  .section__img--sm { max-height: 320px; }
  .hero__badges { flex-wrap: wrap; gap: 0.5rem; }
  .hero__badge { font-size: 0.8rem; }
}
