/* ===========================================
   MONETA SEGUROS — Premium Design System
   =========================================== */

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

:root {
  /* Brand Colors */
  --primary: #8b6262;
  --primary-dark: #5c3d3d;
  --primary-deeper: #3d2828;
  --primary-light: #c4a3a3;
  --primary-pale: #e8d5d5;

  /* Premium Accents */
  --gold: #d4a853;
  --gold-light: #e8c97a;
  --gold-dark: #b08a3e;

  /* Neutrals */
  --dark: #1a1215;
  --dark-soft: #231a1d;
  --dark-card: #2a2024;
  --gray-900: #2d2327;
  --gray-800: #3d3337;
  --gray-700: #554b4f;
  --gray-600: #6e6468;
  --gray-500: #8a8084;
  --gray-400: #a69ca0;
  --gray-300: #c4babd;
  --gray-200: #e0d8db;
  --gray-100: #f0eced;
  --light: #faf7f5;
  --white: #ffffff;

  /* Glass */
  --glass: rgba(139, 98, 98, 0.06);
  --glass-border: rgba(139, 98, 98, 0.12);
  --glass-dark: rgba(26, 18, 21, 0.7);
  --glass-dark-border: rgba(212, 168, 83, 0.15);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(26, 18, 21, 0.06);
  --shadow-md: 0 4px 24px rgba(26, 18, 21, 0.1);
  --shadow-lg: 0 8px 48px rgba(26, 18, 21, 0.14);
  --shadow-xl: 0 16px 64px rgba(26, 18, 21, 0.18);
  --shadow-gold: 0 4px 24px rgba(212, 168, 83, 0.25);

  /* Typography */
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, sans-serif;
  --font-accent: "Space Grotesk", monospace;

  /* Spacing */
  --section-padding: clamp(4rem, 8vw, 8rem);
  --container-max: 1200px;
  --container-padding: clamp(1.25rem, 4vw, 2.5rem);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration: 0.5s;
  --duration-fast: 0.3s;

  /* Border Radius */
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

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

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--light);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ---- Container ---- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ---- Section ---- */
.section {
  padding: var(--section-padding) 0;
  position: relative;
}

.section--light {
  background: var(--light);
}

.section--dark {
  background: var(--dark);
  overflow: hidden;
}

.section--dark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      ellipse at 20% 50%,
      rgba(139, 98, 98, 0.08) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 80% 20%,
      rgba(212, 168, 83, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.section--premium {
  background: linear-gradient(
    165deg,
    var(--dark) 0%,
    var(--dark-soft) 50%,
    var(--primary-deeper) 100%
  );
  overflow: hidden;
}

.section--premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      ellipse at 70% 0%,
      rgba(212, 168, 83, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 0% 100%,
      rgba(139, 98, 98, 0.12) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.section--contact {
  background: var(--light);
  position: relative;
}

.section--contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-pale),
    transparent
  );
}

/* Section Headers */
.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(3rem, 5vw, 5rem);
}

.section__tag {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 0.4rem 1.2rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.section__tag--gold {
  color: var(--gold);
  background: rgba(212, 168, 83, 0.1);
  border-color: rgba(212, 168, 83, 0.2);
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--gray-900);
  margin-bottom: 1.2rem;
}

.section__title--light {
  color: var(--white);
}

.section__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--gray-600);
  line-height: 1.7;
}

.section__subtitle--light {
  color: var(--gray-400);
}

.section__cta {
  text-align: center;
  margin-top: 3.5rem;
}

.text-accent {
  color: var(--primary);
}

.text-gold {
  color: var(--gold);
}

/* ---- Animations ---- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: all var(--duration) var(--ease-out);
}

.navbar.is-scrolled {
  padding: 0.7rem 0;
  background: rgba(250, 247, 245, 0.85);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  box-shadow: 0 1px 20px rgba(26, 18, 21, 0.08);
}

.navbar__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo-img {
  height: 36px;
  width: auto;
  transition: height var(--duration-fast) var(--ease-out);
}

.navbar.is-scrolled .navbar__logo-img {
  height: 30px;
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  list-style: none;
}

.navbar__link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  transition: all var(--duration-fast) var(--ease-out);
  position: relative;
}

.navbar.is-scrolled .navbar__link {
  color: var(--gray-800);
}

.navbar__link:hover {
  color: var(--primary);
  background: var(--glass);
}

.navbar.is-scrolled .navbar__link:hover {
  color: var(--primary);
  background: var(--glass);
}

.navbar__link--cta {
  background: var(--primary) !important;
  color: var(--white) !important;
  font-weight: 600;
  padding: 0.55rem 1.5rem;
  border-radius: 100px;
}

.navbar__link--cta:hover {
  background: var(--primary-dark) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Menu Toggle (Mobile) */
.navbar__toggle {
  display: none;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  cursor: pointer;
  padding: 0.45rem 1.2rem;
  z-index: 1001;
  transition: all var(--duration-fast) var(--ease-out);
  backdrop-filter: blur(10px);
}

.navbar.is-scrolled .navbar__toggle {
  background: var(--glass);
  border-color: var(--glass-border);
}

.navbar__toggle:hover {
  background: rgba(255, 255, 255, 0.15);
}

.navbar__toggle-text {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  transition: color var(--duration-fast) var(--ease-out);
}

.navbar.is-scrolled .navbar__toggle-text {
  color: var(--gray-800);
}

.navbar__toggle.is-active {
  background: var(--primary);
  border-color: var(--primary);
}

.navbar__toggle.is-active .navbar__toggle-text {
  color: var(--white);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 6rem 0 4rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    155deg,
    var(--dark) 0%,
    var(--dark-soft) 30%,
    var(--primary-deeper) 65%,
    var(--primary-dark) 100%
  );
}

.hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero__orbs {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float 20s ease-in-out infinite;
}

.hero__orb--1 {
  width: 500px;
  height: 500px;
  background: rgba(139, 98, 98, 0.2);
  top: -10%;
  right: -5%;
  animation-delay: 0s;
}

.hero__orb--2 {
  width: 350px;
  height: 350px;
  background: rgba(212, 168, 83, 0.1);
  bottom: 10%;
  left: -5%;
  animation-delay: -7s;
}

.hero__orb--3 {
  width: 250px;
  height: 250px;
  background: rgba(139, 98, 98, 0.12);
  top: 40%;
  right: 30%;
  animation-delay: -14s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -20px) scale(1.05);
  }
  66% {
    transform: translate(-20px, 15px) scale(0.95);
  }
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--gray-300);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1.4rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(212, 168, 83, 0.6);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.hero__title-accent {
  background: linear-gradient(
    135deg,
    var(--gold-light) 0%,
    var(--gold) 50%,
    var(--primary-light) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--gray-400);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__stat {
  text-align: center;
}

.hero__stat-number {
  display: block;
  font-family: var(--font-accent);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.hero__stat-plus {
  font-family: var(--font-accent);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
}

.hero__stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--gray-500);
  margin-top: 0.3rem;
  letter-spacing: 0.04em;
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

/* Scroll Indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-500);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-accent);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--primary-light), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% {
    transform: scaleY(0);
    transform-origin: top;
    opacity: 1;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 1;
  }
  51% {
    transform: scaleY(1);
    transform-origin: bottom;
    opacity: 1;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
    opacity: 0;
  }
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.8rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-spring);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn svg {
  transition: transform var(--duration-fast) var(--ease-spring);
  flex-shrink: 0;
}

.btn:hover svg {
  transform: translateX(3px);
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(139, 98, 98, 0.3);
}

.btn--primary:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(139, 98, 98, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212, 168, 83, 0.4);
  color: var(--dark);
}

.btn--lg {
  padding: 1rem 2.2rem;
  font-size: 1rem;
}

.btn--sm {
  padding: 0.55rem 1.2rem;
  font-size: 0.85rem;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ---- CARDS ---- */
.subsection {
  margin-bottom: 3.5rem;
}

.subsection:last-child {
  margin-bottom: 0;
}

.subsection__title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1.8rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-200);
}

.subsection__icon {
  font-size: 1.5rem;
}

.cards-grid {
  display: grid;
  gap: 1.2rem;
}

.cards-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.cards-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  position: relative;
  padding: 2rem;
  border-radius: var(--radius-lg);
  transition: all var(--duration) var(--ease-out);
  cursor: default;
}

.card--glass {
  background: var(--white);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
}

.card--glass:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.card__icon-wrap {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--glass), rgba(139, 98, 98, 0.1));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  margin-bottom: 1.2rem;
  transition: all var(--duration-fast) var(--ease-out);
}

.card:hover .card__icon-wrap {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-color: transparent;
}

.card__icon {
  width: 28px;
  height: 28px;
  color: var(--primary);
  transition: color var(--duration-fast) var(--ease-out);
}

.card:hover .card__icon {
  color: var(--white);
}

.card__icon-wrap--lg {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.card__icon-wrap--lg .card__icon {
  width: 32px;
  height: 32px;
}

.card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.card__text {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.card__arrow {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.2rem;
  color: var(--primary-light);
  transition: all var(--duration-fast) var(--ease-spring);
  opacity: 0;
}

.card:hover .card__arrow {
  opacity: 1;
  transform: translateX(4px);
  color: var(--primary);
}

/* Card Horizontal */
.card--horizontal {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.8rem 2rem;
}

.card--horizontal .card__icon-wrap {
  margin-bottom: 0;
}

.card--horizontal .card__body {
  flex: 1;
}

.card--horizontal .card__arrow {
  position: static;
  opacity: 0;
  align-self: center;
  font-size: 1.5rem;
}

.card--horizontal:hover .card__arrow {
  opacity: 1;
}

/* ---- FEATURES (Why Moneta) ---- */
.features {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2.5rem 0;
  position: relative;
}

.feature__number {
  font-family: var(--font-accent);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(212, 168, 83, 0.2);
  line-height: 1;
  min-width: 80px;
  transition: color var(--duration) var(--ease-out);
}

.feature:hover .feature__number {
  color: rgba(212, 168, 83, 0.5);
}

.feature__content {
  flex: 1;
}

.feature__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.feature__text {
  font-size: 1rem;
  color: var(--gray-400);
  line-height: 1.7;
}

.feature__line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );
}

/* ---- TIMELINE (Franchises) ---- */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline__line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(212, 168, 83, 0.3),
    rgba(212, 168, 83, 0.5),
    rgba(212, 168, 83, 0.3),
    transparent
  );
  transform: translateX(-50%);
}

.timeline__item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.timeline__item:last-child {
  margin-bottom: 0;
}

/* Alternating layout */
.timeline__item {
  padding-right: 52%;
}

.timeline__item--right {
  padding-right: 0;
  padding-left: 52%;
  flex-direction: row-reverse;
}

.timeline__marker {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.timeline__step {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dark-card);
  border: 2px solid rgba(212, 168, 83, 0.3);
  color: var(--gold);
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--duration) var(--ease-out);
}

.timeline__item:hover .timeline__step {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: scale(1.1);
}

.timeline__marker--final .timeline__step {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  border-color: var(--gold);
  width: 52px;
  height: 52px;
  font-size: 1.2rem;
  box-shadow: var(--shadow-gold);
}

.timeline__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  backdrop-filter: blur(10px);
  transition: all var(--duration) var(--ease-out);
}

.timeline__card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(212, 168, 83, 0.2);
  transform: translateY(-2px);
}

.timeline__card--highlight {
  border-color: rgba(212, 168, 83, 0.3);
  background: rgba(212, 168, 83, 0.05);
}

.timeline__badge {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.25rem 0.8rem;
  border-radius: 100px;
  margin-bottom: 0.8rem;
}

.timeline__badge--gold {
  color: var(--gold);
  background: rgba(212, 168, 83, 0.1);
  border-color: rgba(212, 168, 83, 0.25);
}

.timeline__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.timeline__text {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.timeline__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gray-400);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
}

.tag--gold {
  color: var(--gold);
  background: rgba(212, 168, 83, 0.08);
  border-color: rgba(212, 168, 83, 0.2);
}

.timeline__highlight {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.8rem 1rem;
  background: rgba(212, 168, 83, 0.08);
  border: 1px solid rgba(212, 168, 83, 0.15);
  border-radius: var(--radius);
}

.timeline__highlight-number {
  font-family: var(--font-accent);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.timeline__highlight-label {
  font-size: 0.85rem;
  color: var(--gray-400);
}

/* Franchise CTA */
.franchise-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 4rem;
  padding: 2.5rem 3rem;
  background: rgba(212, 168, 83, 0.06);
  border: 1px solid rgba(212, 168, 83, 0.15);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(10px);
}

.franchise-cta__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.franchise-cta__text {
  font-size: 0.95rem;
  color: var(--gray-400);
}

/* ---- CONTACT ---- */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.contact-info__text {
  font-size: 1.05rem;
  color: var(--gray-600);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-detail__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  color: var(--primary);
  flex-shrink: 0;
}

.contact-detail strong {
  display: block;
  font-size: 0.9rem;
  color: var(--gray-900);
  margin-bottom: 0.15rem;
}

.contact-detail p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.contact-detail a {
  color: var(--primary);
}

/* Form */
.contact-form {
  background: var(--white);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 1.3rem;
}

.form-group:last-of-type {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 0.4rem;
}

.form-optional {
  font-weight: 400;
  color: var(--gray-500);
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-900);
  background: var(--gray-100);
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  transition: all var(--duration-fast) var(--ease-out);
  outline: none;
}

.form-input::placeholder {
  color: var(--gray-400);
}

.form-input:focus {
  background: var(--white);
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(139, 98, 98, 0.1);
}

.form-input.is-invalid {
  border-color: #e74c3c;
  background: #fef5f5;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238A8084' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-error {
  display: none;
  font-size: 0.78rem;
  color: #e74c3c;
  margin-top: 0.3rem;
}

.form-group.has-error .form-error {
  display: block;
}

/* Checkbox */
.form-group--checkbox {
  margin-bottom: 0.8rem;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  cursor: pointer;
  font-size: 0.82rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.form-checkbox input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.form-checkbox__mark {
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--gray-300);
  border-radius: 5px;
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-fast) var(--ease-out);
  background: var(--gray-100);
}

.form-checkbox input:checked + .form-checkbox__mark {
  background: var(--primary);
  border-color: var(--primary);
}

.form-checkbox input:checked + .form-checkbox__mark::after {
  content: "";
  display: block;
  width: 6px;
  height: 10px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translate(-1px, -1px);
}

.form-checkbox__text a {
  color: var(--primary);
  text-decoration: underline;
}

.form-disclaimer {
  text-align: center;
  font-size: 0.78rem;
  color: var(--gray-500);
  margin-top: 1rem;
}

/* Form Success */
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}

.form-success.is-visible {
  display: block;
}

.form-success__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  animation: scale-in 0.5s var(--ease-spring);
}

@keyframes scale-in {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.form-success p {
  color: var(--gray-600);
}

/* ---- FOOTER ---- */
.footer {
  background: var(--dark);
  padding: 4rem 0 2rem;
  color: var(--gray-400);
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__logo {
  height: 32px;
  width: auto;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.footer__tagline {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer__col-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer__col ul {
  list-style: none;
}

.footer__col li {
  margin-bottom: 0.5rem;
}

.footer__col a {
  font-size: 0.88rem;
  color: var(--gray-500);
  transition: color var(--duration-fast) var(--ease-out);
}

.footer__col a:hover {
  color: var(--gold);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: 0.82rem;
  color: var(--gray-600);
}

.footer__powered a {
  color: var(--gold);
}

.footer__powered a:hover {
  color: var(--gold-light);
}

/* ---- COOKIE BANNER ---- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 1rem var(--container-padding);
  background: rgba(26, 18, 21, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateY(100%);
  transition: transform var(--duration) var(--ease-out);
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner__content {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cookie-banner__content p {
  font-size: 0.85rem;
  color: var(--gray-400);
}

.cookie-banner__content a {
  color: var(--gold);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .cards-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline__line {
    left: 24px;
  }

  .timeline__item,
  .timeline__item--right {
    padding-left: 70px;
    padding-right: 0;
    flex-direction: row;
  }

  .timeline__marker {
    left: 24px;
  }

  .franchise-cta {
    flex-direction: column;
    text-align: center;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .navbar__toggle {
    display: flex;
  }

  .navbar__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    background: var(--dark);
    padding: 5rem 2rem 2rem;
    gap: 0.5rem;
    transition: right var(--duration) var(--ease-out);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
  }

  .navbar__menu.is-open {
    right: 0;
  }

  .navbar__menu .navbar__link {
    color: var(--gray-300);
    font-size: 1.05rem;
    padding: 0.8rem 1rem;
    width: 100%;
    display: block;
  }

  .navbar__menu .navbar__link--cta {
    text-align: center;
    margin-top: 1rem;
  }

  .hero__title {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .hero__stats {
    flex-direction: column;
    gap: 1rem;
  }

  .hero__stat-divider {
    width: 30px;
    height: 1px;
  }

  .cards-grid--4,
  .cards-grid--2 {
    grid-template-columns: 1fr;
  }

  .card--horizontal {
    flex-direction: column;
    gap: 1rem;
  }

  .card--horizontal .card__arrow {
    display: none;
  }

  .feature {
    flex-direction: column;
    gap: 0.5rem;
  }

  .feature__number {
    font-size: 2rem;
  }

  .footer__top {
    grid-template-columns: 1fr;
  }

  .footer__links {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .franchise-cta {
    padding: 1.8rem;
  }

  .cookie-banner__content {
    flex-direction: column;
    text-align: center;
  }
}

/* ===========================================
   SUBPAGES — Page Hero, Products, Levels, FAQ
   =========================================== */

/* ---- Page Hero (compact subpage hero) ---- */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 7rem 0 3rem;
}

.page-hero--compact {
  min-height: 35vh;
  padding: 6rem 0 2rem;
}

.page-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ---- Product Blocks (seguros detail) ---- */
.product-block {
  background: var(--white);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--duration) var(--ease-out);
}

.product-block:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.product-block__header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-200);
}

.product-block__icon-wrap {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--glass), rgba(139, 98, 98, 0.12));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  flex-shrink: 0;
}

.product-block__icon-wrap .card__icon {
  width: 30px;
  height: 30px;
  color: var(--primary);
}

.product-block__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.2rem;
}

.product-block__tagline {
  font-size: 0.9rem;
  color: var(--gray-600);
}

.product-block__content {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 2rem;
  align-items: start;
}

.product-block__text h4 {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin: 1.5rem 0 0.8rem;
}

.product-block__text p {
  margin-bottom: 0.8rem;
  color: var(--gray-700);
  line-height: 1.7;
}

.product-features {
  list-style: none;
  padding: 0;
}

.product-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  color: var(--gray-700);
  font-size: 0.95rem;
}

.product-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

/* Highlight Card */
.product-block__highlight {
  display: flex;
  align-items: stretch;
}

.highlight-card {
  background: linear-gradient(
    155deg,
    var(--dark) 0%,
    var(--primary-deeper) 100%
  );
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.highlight-card__label {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.highlight-card__value {
  font-family: var(--font-accent);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.highlight-card__note {
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* Extras Grid (D&O, Ciber) */
.extras-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.extra-card {
  background: var(--white);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--duration) var(--ease-out);
}

.extra-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
  transform: translateY(-2px);
}

.extra-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.8rem;
}

.extra-card p {
  color: var(--gray-700);
  font-size: 0.95rem;
}

/* ---- FAQ Accordion ---- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  margin-bottom: 0.8rem;
  overflow: hidden;
  transition: all var(--duration-fast) var(--ease-out);
}

.section--dark .faq-item {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

.section--light .faq-item {
  background: var(--white);
}

.faq-item[open] {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-sm);
}

.section--dark .faq-item[open] {
  border-color: rgba(212, 168, 83, 0.3);
}

.faq-item__question {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  transition: all var(--duration-fast) var(--ease-out);
}

.section--dark .faq-item__question {
  color: var(--gray-200);
}

.faq-item__question::-webkit-details-marker {
  display: none;
}

.faq-item__question::after {
  content: "+";
  font-family: var(--font-accent);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--primary);
  transition: transform var(--duration-fast) var(--ease-out);
  margin-left: 1rem;
  flex-shrink: 0;
}

.section--dark .faq-item__question::after {
  color: var(--gold);
}

.faq-item[open] .faq-item__question::after {
  content: "−";
}

.faq-item__answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--gray-700);
  line-height: 1.7;
}

.section--dark .faq-item__answer {
  color: var(--gray-400);
}

.faq-item__answer p {
  margin-bottom: 0.5rem;
}

/* ---- Level Blocks (franquicias) ---- */
.level-block {
  background: var(--white);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: all var(--duration) var(--ease-out);
}

.level-block:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.level-block__badge {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  background: var(--primary);
  padding: 0.3rem 1rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.level-block__badge--2 {
  background: var(--primary-dark);
}
.level-block__badge--3 {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
}
.level-block__badge--4 {
  background: linear-gradient(135deg, var(--dark), var(--gray-900));
}
.level-block__badge--5 {
  background: linear-gradient(
    135deg,
    var(--primary-deeper),
    var(--primary-dark)
  );
}

.level-block__header {
  margin-bottom: 1.5rem;
}

.level-block__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.3rem;
}

.level-block__tagline {
  font-size: 0.95rem;
  color: var(--gray-600);
}

.level-block__content p {
  color: var(--gray-700);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.level-block__features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.level-feature {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 1rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--gray-800);
}

.level-feature--gold {
  background: rgba(212, 168, 83, 0.08);
  border-color: rgba(212, 168, 83, 0.2);
}

.level-feature__icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.level-block__callout {
  background: rgba(212, 168, 83, 0.06);
  border: 1px solid rgba(212, 168, 83, 0.15);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.6;
}

/* ---- Requisitos Grid ---- */
.requisitos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.requisito-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all var(--duration) var(--ease-out);
}

.requisito-card:hover {
  border-color: rgba(212, 168, 83, 0.3);
  transform: translateY(-4px);
}

.requisito-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.requisito-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.requisito-card p {
  color: var(--gray-400);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ---- About Block ---- */
.about-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-block__text .section__tag {
  margin-bottom: 1rem;
}

.about-block__text .section__title {
  text-align: left;
  margin-bottom: 1.5rem;
}

.about-block__text p {
  margin-bottom: 1rem;
  color: var(--gray-700);
  line-height: 1.7;
}

.about-img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ---- Values Grid ---- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--duration) var(--ease-out);
}

.value-card:hover {
  border-color: rgba(212, 168, 83, 0.2);
  transform: translateY(-2px);
}

.value-card__number {
  font-family: var(--font-accent);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(212, 168, 83, 0.2);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.value-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.value-card p {
  color: var(--gray-400);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ---- Companies Grid ---- */
.companies-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

.company-chip {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-700);
  background: var(--white);
  border: 1px solid var(--glass-border);
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  transition: all var(--duration-fast) var(--ease-out);
}

.company-chip:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ---- Legal Pages ---- */
.legal-page {
  padding-top: clamp(2rem, 4vw, 4rem);
}

.container--narrow {
  max-width: 800px;
}

.legal-content {
  color: var(--gray-700);
  line-height: 1.8;
}

.legal-updated {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gray-900);
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--gray-200);
}

.legal-content h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gray-900);
  margin: 1.5rem 0 0.8rem;
}

.legal-content p {
  margin-bottom: 1rem;
}

.legal-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.legal-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
}

.legal-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 600;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}

.legal-table th,
.legal-table td {
  padding: 0.8rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
}

.legal-table th {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-600);
  background: var(--glass);
}

.legal-table td {
  color: var(--gray-700);
}

.legal-table code {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  color: var(--primary-dark);
  background: var(--glass);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
}

/* ---- Navbar is-active link ---- */
.navbar__link.is-active {
  color: var(--primary);
  font-weight: 600;
}

.navbar.is-scrolled .navbar__link.is-active {
  color: var(--primary);
}

/* ===========================================
   RESPONSIVE — Subpages
   =========================================== */

@media (max-width: 768px) {
  .product-block__content {
    grid-template-columns: 1fr;
  }

  .product-block__header {
    flex-direction: column;
    text-align: center;
  }

  .extras-grid {
    grid-template-columns: 1fr;
  }

  .level-block__features {
    grid-template-columns: 1fr;
  }

  .requisitos-grid {
    grid-template-columns: 1fr;
  }

  .about-block {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-block__text .section__title {
    text-align: center;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .legal-table {
    font-size: 0.8rem;
  }

  .legal-table th,
  .legal-table td {
    padding: 0.6rem 0.5rem;
  }

  .page-hero {
    min-height: 40vh;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 5rem;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .contact-form {
    padding: 1.25rem;
  }

  .product-block {
    padding: 1.5rem;
  }

  .level-block {
    padding: 1.5rem;
  }

  .page-hero {
    min-height: 35vh;
    padding: 5rem 0 2rem;
  }

  .page-hero--compact {
    min-height: 28vh;
  }
}
