:root {
  --font-family: "Montserrat", sans-serif;
  --font-size-base: 15.5px;
  --line-height-base: 1.73;

  --max-w: 1060px;
  --space-x: 1.19rem;
  --space-y: 1.5rem;
  --gap: 0.84rem;

  --radius-xl: 0.64rem;
  --radius-lg: 0.52rem;
  --radius-md: 0.34rem;
  --radius-sm: 0.24rem;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 14px rgba(0,0,0,0.08);
  --shadow-lg: 0 14px 24px rgba(0,0,0,0.1);

  --overlay: rgba(0,0,0,0.5);
  --anim-duration: 430ms;
  --anim-ease: ease-in-out;
  --random-number: 2;

  --brand: #1a5e3a;
  --brand-contrast: #ffffff;
  --accent: #d97706;
  --accent-contrast: #1a1a2e;

  --neutral-0: #ffffff;
  --neutral-100: #f3f4f6;
  --neutral-300: #d1d5db;
  --neutral-600: #6b7280;
  --neutral-800: #1f2937;
  --neutral-900: #111827;

  --bg-page: #f9fafb;
  --fg-on-page: #1f2937;

  --bg-alt: #e5e7eb;
  --fg-on-alt: #374151;

  --surface-1: #ffffff;
  --surface-2: #f3f4f6;
  --fg-on-surface: #1f2937;
  --border-on-surface: #d1d5db;

  --surface-light: #ffffff;
  --fg-on-surface-light: #374151;
  --border-on-surface-light: #e5e7eb;

  --bg-primary: #1a5e3a;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #144d2f;
  --ring: #1a5e3a;

  --bg-accent: #fef3c7;
  --fg-on-accent: #1a1a2e;
  --bg-accent-hover: #b45309;

  --link: #1a5e3a;
  --link-hover: #144d2f;

  --gradient-hero: linear-gradient(135deg, #1a5e3a 0%, #2d8a4e 100%);
  --gradient-accent: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);

  --btn-ghost-bg: transparent;
  --btn-ghost-bg-hover: rgba(255,255,255,0.06);
  --chip-bg: rgba(255,255,255,0.68);
  --input-placeholder: rgba(255,255,255,0.55);
}
body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
*{box-sizing:border-box;}

/* Reset básico para el header */
  header {
    display: block;
    width: 100%;
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: var(--space-y, 1rem) var(--space-x, 1rem);
    box-sizing: border-box;
  }

  /* Estilo de dos filas */
  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--gap, 1rem);
    margin-bottom: var(--space-y, 0.75rem);
  }

  .logo {
    font-size: calc(var(--font-size-base, 1rem) * 1.5);
    font-weight: 700;
    color: var(--brand, #0056b3);
    text-decoration: none;
    line-height: var(--line-height-base, 1.5);
  }

  .logo:hover {
    color: var(--brand-contrast, #003d80);
  }

  .header-contact {
    display: flex;
    gap: var(--gap, 1rem);
    flex-wrap: wrap;
    font-size: var(--font-size-base, 1rem);
    color: var(--neutral-600, #666);
  }

  .contact-item {
    white-space: nowrap;
  }

  .header-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }

  /* Botón burger */
  .burger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
  }

  .burger-line {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--neutral-800, #333);
    border-radius: var(--radius-sm, 4px);
    transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .burger.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Navegación */
  .nav {
    flex: 1;
  }

  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap, 1.5rem);
    flex-wrap: wrap;
  }

  .nav-item {
    margin: 0;
  }

  .nav-link {
    text-decoration: none;
    color: var(--neutral-800, #333);
    font-size: var(--font-size-base, 1rem);
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease), border-color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-link:hover,
  .nav-link:focus {
    color: var(--brand, #0056b3);
    border-bottom-color: var(--brand, #0056b3);
  }

  /* Móvil: max-width 767px */
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }

    .nav {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1, #fff);
      border-radius: var(--radius-md, 8px);
      box-shadow: var(--shadow-lg, 0 4px 12px rgba(0,0,0,0.15));
      padding: var(--space-y, 1rem) var(--space-x, 1rem);
      z-index: 20;
    }

    .nav.open {
      display: block;
    }

    .nav-list {
      flex-direction: column;
      gap: var(--gap, 0.75rem);
    }

    .nav-link {
      display: block;
      padding: 0.5rem 0;
      border-bottom: 1px solid var(--border-on-surface, #ddd);
    }

    .nav-link:last-child {
      border-bottom: none;
    }
  }

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2.5rem 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.footer-left {
  flex: 1 1 280px;
  min-width: 200px;
}

.footer-right {
  flex: 2 1 400px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-brand {
  margin-bottom: 0.5rem;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0a500;
  text-decoration: none;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.footer-logo:hover {
  color: #ffbe33;
}

.footer-copyright {
  margin: 0;
  color: #b0b0b0;
  font-size: 0.85rem;
}

.footer-nav {
  width: 100%;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}

.footer-menu li {
  margin: 0;
}

.footer-menu a {
  color: #c0c0d0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-menu a:hover {
  color: #f0a500;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal a {
  color: #a0a0b8;
  text-decoration: none;
  font-size: 0.85rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.footer-legal a:hover {
  color: #f0a500;
  border-bottom-color: #f0a500;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0;
  margin: 0;
}

.footer-contact p {
  margin: 0;
  color: #d0d0e0;
  font-size: 0.9rem;
}

.contact-label {
  font-weight: 600;
  color: #b0b0c8;
  margin-right: 0.3rem;
}

.footer-contact a {
  color: #c0c0d0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: #f0a500;
}

.footer-disclaimer {
  margin: 0;
  font-size: 0.8rem;
  color: #8888a0;
  line-height: 1.4;
  border-top: 1px solid #2a2a3e;
  padding-top: 0.75rem;
}

@media (max-width: 640px) {
  .footer-container {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-left,
  .footer-right {
    flex: 1 1 auto;
    min-width: 0;
  }

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

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

.cookie-cv7 {
        position: fixed;
        left: var(--space-x);
        bottom: var(--space-y);
        width: min(360px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

    .cookie-cv7__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.14);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv7__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

.intro-window-l9 {
        padding: clamp(3.7rem, 8vw, 6.7rem) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .intro-window-l9__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: 1.4rem;
        align-items: center;
        flex-wrap: wrap;
    }

    .intro-window-l9__copy {
        flex: 1 1 22rem;
        order: calc(3 - var(--random-number));
    }

    .intro-window-l9__media {
        flex: 1 1 18rem;
        order: var(--random-number);
    }

    .intro-window-l9__copy p {
        margin: 0;
        color: var(--neutral-600);
        font-size: .82rem;
        letter-spacing: .1em;
        text-transform: uppercase;
    }

    .intro-window-l9__copy h1 {
        margin: .6rem 0 0;
        font-size: clamp(2.4rem, 5vw, 4.2rem);
        line-height: 1.03;
    }

    .intro-window-l9__copy span {
        display: block;
        margin-top: .9rem;
        color: var(--neutral-600);
    }

    .intro-window-l9__links {
        margin-top: 1.1rem;
        display: flex;
        gap: .75rem;
        flex-wrap: wrap;
    }

    .intro-window-l9__links a {
        display: inline-flex;
        min-height: 2.8rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: var(--surface-1);
        color: var(--fg-on-page);
        border: 1px solid var(--border-on-surface-light);
    }

    .intro-window-l9__links a:first-child {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

    .intro-window-l9__media img {
        display: block;
        width: 100%;
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface-light);
    }

    .intro-window-l9__mark {
        margin-top: .85rem;
        padding: .8rem .9rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
    *{box-sizing:border-box;}

    .next-c-1 {
        padding: clamp(3.3rem, 7vw, 6rem) var(--space-x);
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
    }

    .next-c-1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .next-c-1__mast {
        display: flex;
        justify-content: space-between;
        align-items: end;
        gap: 1rem;
        flex-wrap: wrap;
        margin-bottom: 1.1rem;
    }

    .next-c-1__mast p {
        margin: 0;
        color: rgba(255, 255, 255, 0.82);
    }

    .next-c-1__mast h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .next-c-1__mast a {
        display: inline-flex;
        min-height: 2.85rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

    .next-c-1__list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
        gap: var(--gap);
    }

    .next-c-1__list article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .next-c-1__list i {
        font-style: normal;
        display: inline-flex;
        width: 2.3rem;
        height: 2.3rem;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255, 255, 255, .16);
    }

    .next-c-1__list h3 {
        margin: .8rem 0 .35rem;
        font-size: 1.04rem;
    }

    .next-c-1__list p {
        margin: 0;
        color: rgba(255, 255, 255, 0.82);
    }

    .next-c-1__list a {
        display: inline-block;
        margin-top: .75rem;
        color: var(--bg-accent);
        text-decoration: none;
        font-weight: 600;
    }

    /* macro-bg:next-c-1__wrap */
    .next-c-1 {
        overflow: hidden;
    }

    .next-c-1__wrap {
        background-image: linear-gradient(rgba(0, 0, 0, .88), rgba(17, 24, 39, .88)), url('https://images.pexels.com/photos/256381/pexels-photo-256381.jpeg?auto=compress&cs=tinysrgb&w=800');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        border-radius: var(--radius-xl);
        overflow: hidden;
        padding: var(--space-y);
    }

.touch-orbit {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

    .touch-orbit .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .touch-orbit .touch-header {
        margin-bottom: 14px;
        text-align: center;
    }

    .touch-orbit h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
    }

    .touch-orbit .touch-header p {
        margin: 10px auto 0;
        max-width: 64ch;
        opacity: .92;
    }

    .touch-orbit .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 10px;
    }

    .touch-orbit .card {
        border: 1px solid rgba(255, 255, 255, .35);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
        padding: 12px;
        animation: orbitIn 420ms ease both;
    }

    .touch-orbit .card:nth-child(2) {
        animation-delay: 90ms;
    }

    .touch-orbit .card:nth-child(3) {
        animation-delay: 180ms;
    }

    .touch-orbit .icon,
    .touch-orbit .badge,
    .touch-orbit h3,
    .touch-orbit .card p {
        margin: 0 0 8px;
    }

    .touch-orbit .card a {
        color: var(--accent-contrast);
        text-decoration: underline;
    }

    .touch-orbit .main {
        display: inline-block;
        margin-top: 14px;
        text-decoration: none;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    @keyframes orbitIn {
        from {
            opacity: 0;
            transform: translateY(8px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

.why-choose {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: clamp(40px, 6vw, 80px) clamp(16px, 3vw, 40px);
    }

    .why-choose .why-choose__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .why-choose .why-choose__h {
        text-align: center;
        margin-bottom: clamp(32px, 5vw, 64px);

        transform: translateY(20px);
    }

    .why-choose h2 {
        font-size: clamp(32px, 5vw, 48px);
        margin: 0 0 1rem;
        color: var(--fg-on-primary);
    }

    .why-choose .why-choose__subtitle {
        font-size: clamp(16px, 2vw, 20px);
        margin: 0;
        opacity: 0.9;
    }

    .why-choose .why-choose__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--gap);
    }

    .why-choose .why-choose__item {
        background: var(--fg-on-primary);
        padding: clamp(20px, 3vw, 32px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        transition: transform var(--anim-duration) var(--anim-ease);

        transform: translateY(30px);
    }

    .why-choose .why-choose__item:hover {
        transform: translateY(-4px);
    }

    .why-choose .why-choose__number {
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-radius: var(--radius-md);
        margin-bottom: 1rem;
        font-size: 24px;
    }

    .why-choose .why-choose__item h3 {
        font-size: clamp(18px, 2.2vw, 22px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-surface-light);
    }

    .why-choose .why-choose__item p {
        margin: 0;
        color: var(--fg-on-surface-light);
        opacity: 0.85;
        line-height: var(--line-height-base);
    }

/* Reset básico para el header */
  header {
    display: block;
    width: 100%;
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: var(--space-y, 1rem) var(--space-x, 1rem);
    box-sizing: border-box;
  }

  /* Estilo de dos filas */
  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--gap, 1rem);
    margin-bottom: var(--space-y, 0.75rem);
  }

  .logo {
    font-size: calc(var(--font-size-base, 1rem) * 1.5);
    font-weight: 700;
    color: var(--brand, #0056b3);
    text-decoration: none;
    line-height: var(--line-height-base, 1.5);
  }

  .logo:hover {
    color: var(--brand-contrast, #003d80);
  }

  .header-contact {
    display: flex;
    gap: var(--gap, 1rem);
    flex-wrap: wrap;
    font-size: var(--font-size-base, 1rem);
    color: var(--neutral-600, #666);
  }

  .contact-item {
    white-space: nowrap;
  }

  .header-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }

  /* Botón burger */
  .burger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
  }

  .burger-line {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--neutral-800, #333);
    border-radius: var(--radius-sm, 4px);
    transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .burger.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Navegación */
  .nav {
    flex: 1;
  }

  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap, 1.5rem);
    flex-wrap: wrap;
  }

  .nav-item {
    margin: 0;
  }

  .nav-link {
    text-decoration: none;
    color: var(--neutral-800, #333);
    font-size: var(--font-size-base, 1rem);
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease), border-color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-link:hover,
  .nav-link:focus {
    color: var(--brand, #0056b3);
    border-bottom-color: var(--brand, #0056b3);
  }

  /* Móvil: max-width 767px */
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }

    .nav {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1, #fff);
      border-radius: var(--radius-md, 8px);
      box-shadow: var(--shadow-lg, 0 4px 12px rgba(0,0,0,0.15));
      padding: var(--space-y, 1rem) var(--space-x, 1rem);
      z-index: 20;
    }

    .nav.open {
      display: block;
    }

    .nav-list {
      flex-direction: column;
      gap: var(--gap, 0.75rem);
    }

    .nav-link {
      display: block;
      padding: 0.5rem 0;
      border-bottom: 1px solid var(--border-on-surface, #ddd);
    }

    .nav-link:last-child {
      border-bottom: none;
    }
  }

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2.5rem 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.footer-left {
  flex: 1 1 280px;
  min-width: 200px;
}

.footer-right {
  flex: 2 1 400px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-brand {
  margin-bottom: 0.5rem;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0a500;
  text-decoration: none;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.footer-logo:hover {
  color: #ffbe33;
}

.footer-copyright {
  margin: 0;
  color: #b0b0b0;
  font-size: 0.85rem;
}

.footer-nav {
  width: 100%;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}

.footer-menu li {
  margin: 0;
}

.footer-menu a {
  color: #c0c0d0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-menu a:hover {
  color: #f0a500;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal a {
  color: #a0a0b8;
  text-decoration: none;
  font-size: 0.85rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.footer-legal a:hover {
  color: #f0a500;
  border-bottom-color: #f0a500;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0;
  margin: 0;
}

.footer-contact p {
  margin: 0;
  color: #d0d0e0;
  font-size: 0.9rem;
}

.contact-label {
  font-weight: 600;
  color: #b0b0c8;
  margin-right: 0.3rem;
}

.footer-contact a {
  color: #c0c0d0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: #f0a500;
}

.footer-disclaimer {
  margin: 0;
  font-size: 0.8rem;
  color: #8888a0;
  line-height: 1.4;
  border-top: 1px solid #2a2a3e;
  padding-top: 0.75rem;
}

@media (max-width: 640px) {
  .footer-container {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-left,
  .footer-right {
    flex: 1 1 auto;
    min-width: 0;
  }

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

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

.cookie-cv7 {
        position: fixed;
        left: var(--space-x);
        bottom: var(--space-y);
        width: min(360px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

    .cookie-cv7__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.14);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv7__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

.messages {

        color: var(--fg-on-page);
        background: var(--bg-page);
        padding: clamp(16px, 3vw, 40px);
    }

    .messages .messages__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--space-x);

    }

    @media (max-width: 767px) {
        .messages .messages__c {
            grid-template-columns: 1fr;
            height: auto;
        }

        .messages .messages__chat-form {
            flex-direction: column;
        }
    }

    @media (min-width: 1024px) {
        .messages .messages__c {
            grid-template-columns: 300px 1fr;
        }
    }

    .messages .messages__list {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 1rem;
        overflow-y: auto;
    }

    .messages h2 {
        margin: 0 0 1rem;
        color: var(--fg-on-page);
        font-size: 1.25rem;
    }

    .messages .messages__items {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .messages .messages__item {
        display: flex;
        gap: 1rem;
        padding: 1rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.1);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .messages .messages__item:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    .messages .messages__avatar {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        color: var(--fg-on-page);
        flex-shrink: 0;
    }

    .messages .messages__info {
        flex: 1;
        min-width: 0;
    }

    .messages h4 {
        margin: 0 0 0.25rem;
        color: var(--fg-on-page);
        font-size: 1rem;
    }

    .messages .messages__info p {
        margin: 0 0 0.25rem;

        font-size: 0.875rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .messages .messages__time {
        font-size: 0.75rem;

    }

    .messages .messages__chat {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.2);
        display: flex;
        flex-direction: column;
    }

    .messages .messages__chat-header {
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .messages h3 {
        margin: 0;
        color: var(--fg-on-page);
    }

    .messages .messages__chat-messages {
        flex: 1;
        padding: 1rem;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .messages .messages__message {
        background: rgba(255, 255, 255, 0.1);
        padding: 0.875rem 1rem;
        border-radius: var(--radius-md);
        max-width: 70%;
    }

    .messages .messages__message-text {
        color: var(--fg-on-page);
        margin-bottom: 0.25rem;
    }

    .messages .messages__message-time {
        font-size: 0.75rem;

    }

    .messages .messages__chat-form {
        display: flex;
        gap: 0.5rem;
        padding: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .messages .messages__chat-form input {
        flex: 1;
        padding: 0.875rem;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.1);
        color: var(--fg-on-page);
        outline: none;
    }

    .messages .messages__chat-form input::placeholder {

    }

    .messages .messages__chat-form button {
        padding: 0.875rem 1.5rem;
        border-radius: var(--radius-md);
        border: none;
        background: var(--bg-page);
        color: var(--bg-primary);
        font-weight: 600;
        cursor: pointer;
    }

body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
    *{box-sizing:border-box;}

    .feedback-ux5 {
        background: radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.65), transparent 60%), linear-gradient(135deg, rgba(212, 165, 165, 0.55), rgba(248, 225, 231, 0.9)), var(--gradient-hero);
        color: var(--fg-on-primary);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
        overflow: hidden;
    }

    .feedback-ux5__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .feedback-ux5__h {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 16px;
        margin-bottom: clamp(20px, 5vw, 44px);

        transform: translateY(-18px);
    }

    .feedback-ux5__eyebrow {
        margin: 0 0 10px;
        text-transform: uppercase;
        letter-spacing: 0.22em;
        font-size: 12px;
        color: rgba(58, 46, 61, 0.72);
    }

    .feedback-ux5__h h2 {
        margin: 0;
        font-size: clamp(26px, 4.2vw, 42px);
        letter-spacing: -0.02em;
    }

    .feedback-ux5__controls {
        display: flex;
        gap: 10px;
        flex: 0 0 auto;
    }

    .feedback-ux5__btn {
        border: 1px solid rgba(58, 46, 61, 0.18);
        background: rgba(255, 255, 255, 0.55);
        color: var(--fg-on-page);
        border-radius: 999px;
        padding: 10px 14px;
        cursor: pointer;
        box-shadow: var(--shadow-sm);
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        font-size: 11px;
        transition: transform var(--anim-duration) var(--anim-ease);
        backdrop-filter: blur(10px);
    }

    .feedback-ux5__btn:hover {
        transform: translateY(-2px);
    }

    .feedback-ux5__track {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: minmax(260px, 340px);
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 6px 2px 10px;
        
    }

    .feedback-ux5__card {
        scroll-snap-align: start;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.62);
        border: 1px solid rgba(58, 46, 61, 0.12);
        box-shadow: var(--shadow-sm);
        padding: 18px 18px 16px;

        transform: translateY(24px);
        backdrop-filter: blur(10px);
    }

    .feedback-ux5__bar {
        display: flex;
        align-items: center;
        gap: 10px;
        justify-content: space-between;
        margin-bottom: 12px;
    }

    .feedback-ux5__stars {
        color: var(--accent);
        letter-spacing: 0.08em;
        font-size: 24px;
        flex: 0 0 auto;
    }

    .feedback-ux5__score {
        font-size: 12px;
        font-weight: 800;
        color: var(--fg-on-page);
        flex: 0 0 auto;
    }

    .feedback-ux5__chip {
        margin-left: auto;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--bg-accent);
        border: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-accent);
        font-size: 10px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        flex: 0 0 auto;
    }

    .feedback-ux5__quote {
        margin: 0 0 14px;
        color: rgba(58, 46, 61, 0.88);
        font-size: 14px;
        line-height: 1.65;
    }

    .feedback-ux5__who {
        display: flex;
        align-items: center;
        gap: 10px;
        padding-top: 10px;
        border-top: 1px solid rgba(58, 46, 61, 0.12);
    }

    .feedback-ux5__avatar {
        width: 38px;
        height: 38px;
        border-radius: 14px;
        background: var(--bg-page);
        border: 1px solid var(--border-on-surface);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        flex: 0 0 auto;
    }

    .feedback-ux5__who h3 {
        margin: 0;
        font-size: 14px;
        font-weight: 800;
        color: var(--fg-on-page);
    }

    .feedback-ux5__who p {
        margin: 2px 0 0;
        font-size: 12px;
        color: rgba(58, 46, 61, 0.7);
    }

    @media (max-width: 560px) {
        .feedback-ux5__h {
            flex-direction: column;
            align-items: flex-start;
        }
    }

body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
    *{box-sizing:border-box;}.clar-ux8{padding:clamp(20px,3vw,44px);background:var(--neutral-0);color:var(--neutral-900)}.clar-ux8__wrap{max-width:var(--max-w);margin:0 auto}.clar-ux8 p{margin:8px 0 12px;color:var(--neutral-600)}.clar-ux8__cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:10px}.clar-ux8__cards article{border:1px solid var(--neutral-300);background:var(--neutral-100);border-radius:var(--radius-md);padding:12px}.clar-ux8__cards small{color:var(--brand)}.clar-ux8__cards h3{margin:6px 0}.clar-ux8__cards p{margin:0;color:var(--neutral-800)}

/* Reset básico para el header */
  header {
    display: block;
    width: 100%;
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: var(--space-y, 1rem) var(--space-x, 1rem);
    box-sizing: border-box;
  }

  /* Estilo de dos filas */
  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--gap, 1rem);
    margin-bottom: var(--space-y, 0.75rem);
  }

  .logo {
    font-size: calc(var(--font-size-base, 1rem) * 1.5);
    font-weight: 700;
    color: var(--brand, #0056b3);
    text-decoration: none;
    line-height: var(--line-height-base, 1.5);
  }

  .logo:hover {
    color: var(--brand-contrast, #003d80);
  }

  .header-contact {
    display: flex;
    gap: var(--gap, 1rem);
    flex-wrap: wrap;
    font-size: var(--font-size-base, 1rem);
    color: var(--neutral-600, #666);
  }

  .contact-item {
    white-space: nowrap;
  }

  .header-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }

  /* Botón burger */
  .burger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
  }

  .burger-line {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--neutral-800, #333);
    border-radius: var(--radius-sm, 4px);
    transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .burger.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Navegación */
  .nav {
    flex: 1;
  }

  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap, 1.5rem);
    flex-wrap: wrap;
  }

  .nav-item {
    margin: 0;
  }

  .nav-link {
    text-decoration: none;
    color: var(--neutral-800, #333);
    font-size: var(--font-size-base, 1rem);
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease), border-color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-link:hover,
  .nav-link:focus {
    color: var(--brand, #0056b3);
    border-bottom-color: var(--brand, #0056b3);
  }

  /* Móvil: max-width 767px */
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }

    .nav {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1, #fff);
      border-radius: var(--radius-md, 8px);
      box-shadow: var(--shadow-lg, 0 4px 12px rgba(0,0,0,0.15));
      padding: var(--space-y, 1rem) var(--space-x, 1rem);
      z-index: 20;
    }

    .nav.open {
      display: block;
    }

    .nav-list {
      flex-direction: column;
      gap: var(--gap, 0.75rem);
    }

    .nav-link {
      display: block;
      padding: 0.5rem 0;
      border-bottom: 1px solid var(--border-on-surface, #ddd);
    }

    .nav-link:last-child {
      border-bottom: none;
    }
  }

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2.5rem 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.footer-left {
  flex: 1 1 280px;
  min-width: 200px;
}

.footer-right {
  flex: 2 1 400px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-brand {
  margin-bottom: 0.5rem;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0a500;
  text-decoration: none;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.footer-logo:hover {
  color: #ffbe33;
}

.footer-copyright {
  margin: 0;
  color: #b0b0b0;
  font-size: 0.85rem;
}

.footer-nav {
  width: 100%;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}

.footer-menu li {
  margin: 0;
}

.footer-menu a {
  color: #c0c0d0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-menu a:hover {
  color: #f0a500;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal a {
  color: #a0a0b8;
  text-decoration: none;
  font-size: 0.85rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.footer-legal a:hover {
  color: #f0a500;
  border-bottom-color: #f0a500;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0;
  margin: 0;
}

.footer-contact p {
  margin: 0;
  color: #d0d0e0;
  font-size: 0.9rem;
}

.contact-label {
  font-weight: 600;
  color: #b0b0c8;
  margin-right: 0.3rem;
}

.footer-contact a {
  color: #c0c0d0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: #f0a500;
}

.footer-disclaimer {
  margin: 0;
  font-size: 0.8rem;
  color: #8888a0;
  line-height: 1.4;
  border-top: 1px solid #2a2a3e;
  padding-top: 0.75rem;
}

@media (max-width: 640px) {
  .footer-container {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-left,
  .footer-right {
    flex: 1 1 auto;
    min-width: 0;
  }

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

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

.cookie-cv7 {
        position: fixed;
        left: var(--space-x);
        bottom: var(--space-y);
        width: min(360px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

    .cookie-cv7__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.14);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv7__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

.touch-orbit {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

    .touch-orbit .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .touch-orbit .touch-header {
        margin-bottom: 14px;
        text-align: center;
    }

    .touch-orbit h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
    }

    .touch-orbit .touch-header p {
        margin: 10px auto 0;
        max-width: 64ch;
        opacity: .92;
    }

    .touch-orbit .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 10px;
    }

    .touch-orbit .card {
        border: 1px solid rgba(255, 255, 255, .35);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
        padding: 12px;
        animation: orbitIn 420ms ease both;
    }

    .touch-orbit .card:nth-child(2) {
        animation-delay: 90ms;
    }

    .touch-orbit .card:nth-child(3) {
        animation-delay: 180ms;
    }

    .touch-orbit .icon,
    .touch-orbit .badge,
    .touch-orbit h3,
    .touch-orbit .card p {
        margin: 0 0 8px;
    }

    .touch-orbit .card a {
        color: var(--accent-contrast);
        text-decoration: underline;
    }

    .touch-orbit .main {
        display: inline-block;
        margin-top: 14px;
        text-decoration: none;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    @keyframes orbitIn {
        from {
            opacity: 0;
            transform: translateY(8px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

/* Reset básico para el header */
  header {
    display: block;
    width: 100%;
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: var(--space-y, 1rem) var(--space-x, 1rem);
    box-sizing: border-box;
  }

  /* Estilo de dos filas */
  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--gap, 1rem);
    margin-bottom: var(--space-y, 0.75rem);
  }

  .logo {
    font-size: calc(var(--font-size-base, 1rem) * 1.5);
    font-weight: 700;
    color: var(--brand, #0056b3);
    text-decoration: none;
    line-height: var(--line-height-base, 1.5);
  }

  .logo:hover {
    color: var(--brand-contrast, #003d80);
  }

  .header-contact {
    display: flex;
    gap: var(--gap, 1rem);
    flex-wrap: wrap;
    font-size: var(--font-size-base, 1rem);
    color: var(--neutral-600, #666);
  }

  .contact-item {
    white-space: nowrap;
  }

  .header-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }

  /* Botón burger */
  .burger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
  }

  .burger-line {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--neutral-800, #333);
    border-radius: var(--radius-sm, 4px);
    transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .burger.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Navegación */
  .nav {
    flex: 1;
  }

  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap, 1.5rem);
    flex-wrap: wrap;
  }

  .nav-item {
    margin: 0;
  }

  .nav-link {
    text-decoration: none;
    color: var(--neutral-800, #333);
    font-size: var(--font-size-base, 1rem);
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease), border-color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-link:hover,
  .nav-link:focus {
    color: var(--brand, #0056b3);
    border-bottom-color: var(--brand, #0056b3);
  }

  /* Móvil: max-width 767px */
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }

    .nav {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1, #fff);
      border-radius: var(--radius-md, 8px);
      box-shadow: var(--shadow-lg, 0 4px 12px rgba(0,0,0,0.15));
      padding: var(--space-y, 1rem) var(--space-x, 1rem);
      z-index: 20;
    }

    .nav.open {
      display: block;
    }

    .nav-list {
      flex-direction: column;
      gap: var(--gap, 0.75rem);
    }

    .nav-link {
      display: block;
      padding: 0.5rem 0;
      border-bottom: 1px solid var(--border-on-surface, #ddd);
    }

    .nav-link:last-child {
      border-bottom: none;
    }
  }

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2.5rem 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.footer-left {
  flex: 1 1 280px;
  min-width: 200px;
}

.footer-right {
  flex: 2 1 400px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-brand {
  margin-bottom: 0.5rem;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0a500;
  text-decoration: none;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.footer-logo:hover {
  color: #ffbe33;
}

.footer-copyright {
  margin: 0;
  color: #b0b0b0;
  font-size: 0.85rem;
}

.footer-nav {
  width: 100%;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}

.footer-menu li {
  margin: 0;
}

.footer-menu a {
  color: #c0c0d0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-menu a:hover {
  color: #f0a500;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal a {
  color: #a0a0b8;
  text-decoration: none;
  font-size: 0.85rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.footer-legal a:hover {
  color: #f0a500;
  border-bottom-color: #f0a500;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0;
  margin: 0;
}

.footer-contact p {
  margin: 0;
  color: #d0d0e0;
  font-size: 0.9rem;
}

.contact-label {
  font-weight: 600;
  color: #b0b0c8;
  margin-right: 0.3rem;
}

.footer-contact a {
  color: #c0c0d0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: #f0a500;
}

.footer-disclaimer {
  margin: 0;
  font-size: 0.8rem;
  color: #8888a0;
  line-height: 1.4;
  border-top: 1px solid #2a2a3e;
  padding-top: 0.75rem;
}

@media (max-width: 640px) {
  .footer-container {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-left,
  .footer-right {
    flex: 1 1 auto;
    min-width: 0;
  }

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

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

.cookie-cv7 {
        position: fixed;
        left: var(--space-x);
        bottom: var(--space-y);
        width: min(360px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

    .cookie-cv7__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.14);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv7__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
    *{box-sizing:border-box;}

    .support-ux6 {
        padding: clamp(56px, 7vw, 96px) clamp(16px, 4vw, 36px);
        background: linear-gradient(140deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

    .support-ux6__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .support-ux6__box {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: var(--gap);
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.12);
        padding: 16px;
    }

    .support-ux6__box h2 {
        margin: 0;
        font-size: clamp(26px, 4vw, 40px);
    }

    .support-ux6__box p {
        margin: 8px 0 0;
        opacity: .92;
    }

    .support-ux6__box a {
        text-decoration: none;
        white-space: nowrap;
        padding: 10px 16px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .support-ux6__box {
            flex-direction: column;
            align-items: flex-start;
        }
    }

.faq-layout-d {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: white;
        color: black;
    }

    .faq-layout-d .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .faq-layout-d .section-head {
        margin-bottom: 16px;
        text-align: center;
    }

    .faq-layout-d h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
    }

    .faq-layout-d .section-head p {
        margin: 10px auto 0;
        max-width: 68ch;
    }

    .faq-layout-d .cards {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    }

    .faq-layout-d .card {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, .22);
        background: var(--accent);
        color: var(--accent-contrast);
        padding: var(--space-y) var(--space-x);
    }

    .faq-layout-d .card h3 {
        margin: 0;
        font-size: 1.05rem;
    }

    .faq-layout-d .card p {
        margin: 9px 0 0;
        color: var(--neutral-100);
    }

.connect {
        color: var(--gradient-accent);
        background: var(--gradient-hero);
        padding: clamp(32px, 5vw, 64px) clamp(16px, 4vw, 40px);
    }

    .connect .connect__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .connect .connect__title {
        font-size: clamp(28px, 5vw, 48px);
        text-align: center;
        margin: 0 0 clamp(48px, 7vw, 72px);
    }

    .connect .connect__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: clamp(24px, 4vw, 32px);
    }

    .connect .connect__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--gap);
        padding: var(--space-x);
        background: var(--surface-1);
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface);
        text-decoration: none;
        color: inherit;
        transition: transform 0.3s, border-color 0.3s;
    }

    .connect .connect__item {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        animation: section-pulse-border 3s var(--anim-ease) infinite;
    }

    @keyframes section-pulse-border {
        0%, 100% {
            border-color: var(--border-on-surface);
            box-shadow: none;
        }
        50% {
            border-color: var(--brand);
            box-shadow: 0 0 0 3px var(--accent);
        }
    }

    .connect .connect__item:hover {
        transform: translateY(-6px);
        border-color: var(--bg-accent);
    }

    .connect .connect__item span {
        font-size: clamp(17px, 2.8vw, 20px);
        font-weight: 600;
    }

/* Reset básico para el header */
  header {
    display: block;
    width: 100%;
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: var(--space-y, 1rem) var(--space-x, 1rem);
    box-sizing: border-box;
  }

  /* Estilo de dos filas */
  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--gap, 1rem);
    margin-bottom: var(--space-y, 0.75rem);
  }

  .logo {
    font-size: calc(var(--font-size-base, 1rem) * 1.5);
    font-weight: 700;
    color: var(--brand, #0056b3);
    text-decoration: none;
    line-height: var(--line-height-base, 1.5);
  }

  .logo:hover {
    color: var(--brand-contrast, #003d80);
  }

  .header-contact {
    display: flex;
    gap: var(--gap, 1rem);
    flex-wrap: wrap;
    font-size: var(--font-size-base, 1rem);
    color: var(--neutral-600, #666);
  }

  .contact-item {
    white-space: nowrap;
  }

  .header-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }

  /* Botón burger */
  .burger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
  }

  .burger-line {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--neutral-800, #333);
    border-radius: var(--radius-sm, 4px);
    transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .burger.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Navegación */
  .nav {
    flex: 1;
  }

  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap, 1.5rem);
    flex-wrap: wrap;
  }

  .nav-item {
    margin: 0;
  }

  .nav-link {
    text-decoration: none;
    color: var(--neutral-800, #333);
    font-size: var(--font-size-base, 1rem);
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease), border-color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-link:hover,
  .nav-link:focus {
    color: var(--brand, #0056b3);
    border-bottom-color: var(--brand, #0056b3);
  }

  /* Móvil: max-width 767px */
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }

    .nav {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1, #fff);
      border-radius: var(--radius-md, 8px);
      box-shadow: var(--shadow-lg, 0 4px 12px rgba(0,0,0,0.15));
      padding: var(--space-y, 1rem) var(--space-x, 1rem);
      z-index: 20;
    }

    .nav.open {
      display: block;
    }

    .nav-list {
      flex-direction: column;
      gap: var(--gap, 0.75rem);
    }

    .nav-link {
      display: block;
      padding: 0.5rem 0;
      border-bottom: 1px solid var(--border-on-surface, #ddd);
    }

    .nav-link:last-child {
      border-bottom: none;
    }
  }

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2.5rem 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.footer-left {
  flex: 1 1 280px;
  min-width: 200px;
}

.footer-right {
  flex: 2 1 400px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-brand {
  margin-bottom: 0.5rem;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0a500;
  text-decoration: none;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.footer-logo:hover {
  color: #ffbe33;
}

.footer-copyright {
  margin: 0;
  color: #b0b0b0;
  font-size: 0.85rem;
}

.footer-nav {
  width: 100%;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}

.footer-menu li {
  margin: 0;
}

.footer-menu a {
  color: #c0c0d0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-menu a:hover {
  color: #f0a500;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal a {
  color: #a0a0b8;
  text-decoration: none;
  font-size: 0.85rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.footer-legal a:hover {
  color: #f0a500;
  border-bottom-color: #f0a500;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0;
  margin: 0;
}

.footer-contact p {
  margin: 0;
  color: #d0d0e0;
  font-size: 0.9rem;
}

.contact-label {
  font-weight: 600;
  color: #b0b0c8;
  margin-right: 0.3rem;
}

.footer-contact a {
  color: #c0c0d0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: #f0a500;
}

.footer-disclaimer {
  margin: 0;
  font-size: 0.8rem;
  color: #8888a0;
  line-height: 1.4;
  border-top: 1px solid #2a2a3e;
  padding-top: 0.75rem;
}

@media (max-width: 640px) {
  .footer-container {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-left,
  .footer-right {
    flex: 1 1 auto;
    min-width: 0;
  }

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

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

.cookie-cv7 {
        position: fixed;
        left: var(--space-x);
        bottom: var(--space-y);
        width: min(360px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

    .cookie-cv7__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.14);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv7__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

.form-layout-d {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .form-layout-d .wrap {
        max-width: 760px;
        margin: 0 auto;
    }

    .form-layout-d .section-head {
        margin-bottom: 18px;
    }

    .form-layout-d h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
    }

    .form-layout-d .section-head p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .form-layout-d .line-form {
        border-top: 2px solid var(--brand);
        padding-top: 12px;
    }

    .form-layout-d label {
        display: grid;
        gap: 8px;
        margin-bottom: 12px;
        font-weight: 600;
        color: var(--brand);
    }

    .form-layout-d input, .form-layout-d textarea {
        border: 0;
        border-bottom: 1px solid var(--neutral-300);
        padding: 8px 2px;
        font: inherit;
        background: transparent;
    }

    .form-layout-d input:focus, .form-layout-d textarea:focus {
        outline: none;
        border-color: var(--ring);
    }

    .form-layout-d button {
        border: 1px solid var(--brand);
        color: var(--brand);
        background: transparent;
        border-radius: 999px;
        padding: 9px 16px;
    }

body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
    *{box-sizing:border-box;}

    .support-ux6 {
        padding: clamp(56px, 7vw, 96px) clamp(16px, 4vw, 36px);
        background: linear-gradient(140deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

    .support-ux6__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .support-ux6__box {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: var(--gap);
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.12);
        padding: 16px;
    }

    .support-ux6__box h2 {
        margin: 0;
        font-size: clamp(26px, 4vw, 40px);
    }

    .support-ux6__box p {
        margin: 8px 0 0;
        opacity: .92;
    }

    .support-ux6__box a {
        text-decoration: none;
        white-space: nowrap;
        padding: 10px 16px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .support-ux6__box {
            flex-direction: column;
            align-items: flex-start;
        }
    }

.contacts-fresh-v2 {
        padding: calc(var(--space-y) * 2.2) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-alt);
    }

    .contacts-fresh-v2 .shell {
        max-width: 900px;
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

    .contacts-fresh-v2 h2 {
        margin: 0;
        font-size: clamp(1.7rem, 3.2vw, 2.5rem);
    }

    .contacts-fresh-v2 .subtitle {
        margin: 0;
        color: var(--fg-on-surface-light);
    }

    .contacts-fresh-v2 .list {
        display: grid;
        gap: .75rem;
    }

    .contacts-fresh-v2 article {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: var(--gap);
        padding: 1rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
    }

    .contacts-fresh-v2 .label {
        margin: 0;
        color: var(--fg-on-surface-light);
        font-size: .9rem;
    }

    .contacts-fresh-v2 .value {
        margin: .2rem 0 0;
        font-weight: 700;
    }

    .contacts-fresh-v2 a {
        padding: .5rem .8rem;
        border-radius: var(--radius-sm);
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
    }

    @media (max-width: 700px) {
        .contacts-fresh-v2 article {
            flex-direction: column;
            align-items: flex-start;
        }
    }

/* Reset básico para el header */
  header {
    display: block;
    width: 100%;
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: var(--space-y, 1rem) var(--space-x, 1rem);
    box-sizing: border-box;
  }

  /* Estilo de dos filas */
  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--gap, 1rem);
    margin-bottom: var(--space-y, 0.75rem);
  }

  .logo {
    font-size: calc(var(--font-size-base, 1rem) * 1.5);
    font-weight: 700;
    color: var(--brand, #0056b3);
    text-decoration: none;
    line-height: var(--line-height-base, 1.5);
  }

  .logo:hover {
    color: var(--brand-contrast, #003d80);
  }

  .header-contact {
    display: flex;
    gap: var(--gap, 1rem);
    flex-wrap: wrap;
    font-size: var(--font-size-base, 1rem);
    color: var(--neutral-600, #666);
  }

  .contact-item {
    white-space: nowrap;
  }

  .header-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }

  /* Botón burger */
  .burger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
  }

  .burger-line {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--neutral-800, #333);
    border-radius: var(--radius-sm, 4px);
    transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .burger.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Navegación */
  .nav {
    flex: 1;
  }

  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap, 1.5rem);
    flex-wrap: wrap;
  }

  .nav-item {
    margin: 0;
  }

  .nav-link {
    text-decoration: none;
    color: var(--neutral-800, #333);
    font-size: var(--font-size-base, 1rem);
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease), border-color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-link:hover,
  .nav-link:focus {
    color: var(--brand, #0056b3);
    border-bottom-color: var(--brand, #0056b3);
  }

  /* Móvil: max-width 767px */
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }

    .nav {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1, #fff);
      border-radius: var(--radius-md, 8px);
      box-shadow: var(--shadow-lg, 0 4px 12px rgba(0,0,0,0.15));
      padding: var(--space-y, 1rem) var(--space-x, 1rem);
      z-index: 20;
    }

    .nav.open {
      display: block;
    }

    .nav-list {
      flex-direction: column;
      gap: var(--gap, 0.75rem);
    }

    .nav-link {
      display: block;
      padding: 0.5rem 0;
      border-bottom: 1px solid var(--border-on-surface, #ddd);
    }

    .nav-link:last-child {
      border-bottom: none;
    }
  }

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2.5rem 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.footer-left {
  flex: 1 1 280px;
  min-width: 200px;
}

.footer-right {
  flex: 2 1 400px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-brand {
  margin-bottom: 0.5rem;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0a500;
  text-decoration: none;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.footer-logo:hover {
  color: #ffbe33;
}

.footer-copyright {
  margin: 0;
  color: #b0b0b0;
  font-size: 0.85rem;
}

.footer-nav {
  width: 100%;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}

.footer-menu li {
  margin: 0;
}

.footer-menu a {
  color: #c0c0d0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-menu a:hover {
  color: #f0a500;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal a {
  color: #a0a0b8;
  text-decoration: none;
  font-size: 0.85rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.footer-legal a:hover {
  color: #f0a500;
  border-bottom-color: #f0a500;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0;
  margin: 0;
}

.footer-contact p {
  margin: 0;
  color: #d0d0e0;
  font-size: 0.9rem;
}

.contact-label {
  font-weight: 600;
  color: #b0b0c8;
  margin-right: 0.3rem;
}

.footer-contact a {
  color: #c0c0d0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: #f0a500;
}

.footer-disclaimer {
  margin: 0;
  font-size: 0.8rem;
  color: #8888a0;
  line-height: 1.4;
  border-top: 1px solid #2a2a3e;
  padding-top: 0.75rem;
}

@media (max-width: 640px) {
  .footer-container {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-left,
  .footer-right {
    flex: 1 1 auto;
    min-width: 0;
  }

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

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

.cookie-cv7 {
        position: fixed;
        left: var(--space-x);
        bottom: var(--space-y);
        width: min(360px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

    .cookie-cv7__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.14);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv7__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

.terms-layout-b {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .terms-layout-b .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .terms-layout-b .section-head {
        margin-bottom: 16px;
        text-align: center;
    }

    .terms-layout-b h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
    }

    .terms-layout-b .section-head p {
        margin: 10px auto 0;
        color: var(--neutral-600);
        max-width: 74ch;
    }

    .terms-layout-b .grid {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }

    .terms-layout-b article {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        padding: 12px;
        background: var(--bg-alt);
    }

    .terms-layout-b h3 {
        margin: 0 0 8px;
        color: var(--brand);
    }

    .terms-layout-b h4 {
        margin: 10px 0 6px;
    }

    .terms-layout-b p, .terms-layout-b li {
        color: var(--neutral-600);
        margin-top: 0;
    }

/* Reset básico para el header */
  header {
    display: block;
    width: 100%;
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: var(--space-y, 1rem) var(--space-x, 1rem);
    box-sizing: border-box;
  }

  /* Estilo de dos filas */
  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--gap, 1rem);
    margin-bottom: var(--space-y, 0.75rem);
  }

  .logo {
    font-size: calc(var(--font-size-base, 1rem) * 1.5);
    font-weight: 700;
    color: var(--brand, #0056b3);
    text-decoration: none;
    line-height: var(--line-height-base, 1.5);
  }

  .logo:hover {
    color: var(--brand-contrast, #003d80);
  }

  .header-contact {
    display: flex;
    gap: var(--gap, 1rem);
    flex-wrap: wrap;
    font-size: var(--font-size-base, 1rem);
    color: var(--neutral-600, #666);
  }

  .contact-item {
    white-space: nowrap;
  }

  .header-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }

  /* Botón burger */
  .burger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
  }

  .burger-line {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--neutral-800, #333);
    border-radius: var(--radius-sm, 4px);
    transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .burger.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Navegación */
  .nav {
    flex: 1;
  }

  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap, 1.5rem);
    flex-wrap: wrap;
  }

  .nav-item {
    margin: 0;
  }

  .nav-link {
    text-decoration: none;
    color: var(--neutral-800, #333);
    font-size: var(--font-size-base, 1rem);
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease), border-color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-link:hover,
  .nav-link:focus {
    color: var(--brand, #0056b3);
    border-bottom-color: var(--brand, #0056b3);
  }

  /* Móvil: max-width 767px */
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }

    .nav {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1, #fff);
      border-radius: var(--radius-md, 8px);
      box-shadow: var(--shadow-lg, 0 4px 12px rgba(0,0,0,0.15));
      padding: var(--space-y, 1rem) var(--space-x, 1rem);
      z-index: 20;
    }

    .nav.open {
      display: block;
    }

    .nav-list {
      flex-direction: column;
      gap: var(--gap, 0.75rem);
    }

    .nav-link {
      display: block;
      padding: 0.5rem 0;
      border-bottom: 1px solid var(--border-on-surface, #ddd);
    }

    .nav-link:last-child {
      border-bottom: none;
    }
  }

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2.5rem 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.footer-left {
  flex: 1 1 280px;
  min-width: 200px;
}

.footer-right {
  flex: 2 1 400px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-brand {
  margin-bottom: 0.5rem;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0a500;
  text-decoration: none;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.footer-logo:hover {
  color: #ffbe33;
}

.footer-copyright {
  margin: 0;
  color: #b0b0b0;
  font-size: 0.85rem;
}

.footer-nav {
  width: 100%;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}

.footer-menu li {
  margin: 0;
}

.footer-menu a {
  color: #c0c0d0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-menu a:hover {
  color: #f0a500;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal a {
  color: #a0a0b8;
  text-decoration: none;
  font-size: 0.85rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.footer-legal a:hover {
  color: #f0a500;
  border-bottom-color: #f0a500;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0;
  margin: 0;
}

.footer-contact p {
  margin: 0;
  color: #d0d0e0;
  font-size: 0.9rem;
}

.contact-label {
  font-weight: 600;
  color: #b0b0c8;
  margin-right: 0.3rem;
}

.footer-contact a {
  color: #c0c0d0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: #f0a500;
}

.footer-disclaimer {
  margin: 0;
  font-size: 0.8rem;
  color: #8888a0;
  line-height: 1.4;
  border-top: 1px solid #2a2a3e;
  padding-top: 0.75rem;
}

@media (max-width: 640px) {
  .footer-container {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-left,
  .footer-right {
    flex: 1 1 auto;
    min-width: 0;
  }

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

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

.cookie-cv7 {
        position: fixed;
        left: var(--space-x);
        bottom: var(--space-y);
        width: min(360px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

    .cookie-cv7__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.14);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv7__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

.terms-layout-f {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: linear-gradient(180deg, var(--surface-2), var(--surface-1));
        color: var(--fg-on-page);
    }

    .terms-layout-f .wrap {
        max-width: 980px;
        margin: 0 auto;
    }

    .terms-layout-f .section-head {
        margin-bottom: 16px;
    }

    .terms-layout-f h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
    }

    .terms-layout-f .section-head p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .terms-layout-f .list {
        display: grid;
        gap: 14px;
    }

    .terms-layout-f article {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: linear-gradient(180deg, var(--surface-1), var(--surface-2));
        padding: var(--space-y) var(--space-x);
    }

    .terms-layout-f h3 {
        margin: 0 0 8px;
        color: var(--brand);
    }

    .terms-layout-f h4 {
        margin: 10px 0 6px;
    }

    .terms-layout-f p, .terms-layout-f li {
        color: var(--neutral-600);
    }

/* Reset básico para el header */
  header {
    display: block;
    width: 100%;
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: var(--space-y, 1rem) var(--space-x, 1rem);
    box-sizing: border-box;
  }

  /* Estilo de dos filas */
  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--gap, 1rem);
    margin-bottom: var(--space-y, 0.75rem);
  }

  .logo {
    font-size: calc(var(--font-size-base, 1rem) * 1.5);
    font-weight: 700;
    color: var(--brand, #0056b3);
    text-decoration: none;
    line-height: var(--line-height-base, 1.5);
  }

  .logo:hover {
    color: var(--brand-contrast, #003d80);
  }

  .header-contact {
    display: flex;
    gap: var(--gap, 1rem);
    flex-wrap: wrap;
    font-size: var(--font-size-base, 1rem);
    color: var(--neutral-600, #666);
  }

  .contact-item {
    white-space: nowrap;
  }

  .header-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }

  /* Botón burger */
  .burger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
  }

  .burger-line {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--neutral-800, #333);
    border-radius: var(--radius-sm, 4px);
    transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .burger.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Navegación */
  .nav {
    flex: 1;
  }

  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap, 1.5rem);
    flex-wrap: wrap;
  }

  .nav-item {
    margin: 0;
  }

  .nav-link {
    text-decoration: none;
    color: var(--neutral-800, #333);
    font-size: var(--font-size-base, 1rem);
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease), border-color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-link:hover,
  .nav-link:focus {
    color: var(--brand, #0056b3);
    border-bottom-color: var(--brand, #0056b3);
  }

  /* Móvil: max-width 767px */
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }

    .nav {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1, #fff);
      border-radius: var(--radius-md, 8px);
      box-shadow: var(--shadow-lg, 0 4px 12px rgba(0,0,0,0.15));
      padding: var(--space-y, 1rem) var(--space-x, 1rem);
      z-index: 20;
    }

    .nav.open {
      display: block;
    }

    .nav-list {
      flex-direction: column;
      gap: var(--gap, 0.75rem);
    }

    .nav-link {
      display: block;
      padding: 0.5rem 0;
      border-bottom: 1px solid var(--border-on-surface, #ddd);
    }

    .nav-link:last-child {
      border-bottom: none;
    }
  }

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2.5rem 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.footer-left {
  flex: 1 1 280px;
  min-width: 200px;
}

.footer-right {
  flex: 2 1 400px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-brand {
  margin-bottom: 0.5rem;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0a500;
  text-decoration: none;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.footer-logo:hover {
  color: #ffbe33;
}

.footer-copyright {
  margin: 0;
  color: #b0b0b0;
  font-size: 0.85rem;
}

.footer-nav {
  width: 100%;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}

.footer-menu li {
  margin: 0;
}

.footer-menu a {
  color: #c0c0d0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-menu a:hover {
  color: #f0a500;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal a {
  color: #a0a0b8;
  text-decoration: none;
  font-size: 0.85rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.footer-legal a:hover {
  color: #f0a500;
  border-bottom-color: #f0a500;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0;
  margin: 0;
}

.footer-contact p {
  margin: 0;
  color: #d0d0e0;
  font-size: 0.9rem;
}

.contact-label {
  font-weight: 600;
  color: #b0b0c8;
  margin-right: 0.3rem;
}

.footer-contact a {
  color: #c0c0d0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: #f0a500;
}

.footer-disclaimer {
  margin: 0;
  font-size: 0.8rem;
  color: #8888a0;
  line-height: 1.4;
  border-top: 1px solid #2a2a3e;
  padding-top: 0.75rem;
}

@media (max-width: 640px) {
  .footer-container {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-left,
  .footer-right {
    flex: 1 1 auto;
    min-width: 0;
  }

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

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

.cookie-cv7 {
        position: fixed;
        left: var(--space-x);
        bottom: var(--space-y);
        width: min(360px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

    .cookie-cv7__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.14);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv7__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

.nfthank-v12 {
        padding: clamp(56px, 10vw, 112px) 18px;
        background: var(--surface-2);
        color: var(--fg-on-page);
    }

    .nfthank-v12__shell {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border-top: 6px solid var(--accent);
        border-left: 1px solid var(--border-on-surface);
        border-right: 1px solid var(--border-on-surface);
        border-bottom: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        padding: clamp(30px, 4vw, 46px);
    }

    .nfthank-v12 h1 {
        margin: 0;
        font-size: clamp(32px, 5vw, 52px);
        color: var(--brand);
    }

    .nfthank-v12 p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .nfthank-v12 a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

/* Reset básico para el header */
  header {
    display: block;
    width: 100%;
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: var(--space-y, 1rem) var(--space-x, 1rem);
    box-sizing: border-box;
  }

  /* Estilo de dos filas */
  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--gap, 1rem);
    margin-bottom: var(--space-y, 0.75rem);
  }

  .logo {
    font-size: calc(var(--font-size-base, 1rem) * 1.5);
    font-weight: 700;
    color: var(--brand, #0056b3);
    text-decoration: none;
    line-height: var(--line-height-base, 1.5);
  }

  .logo:hover {
    color: var(--brand-contrast, #003d80);
  }

  .header-contact {
    display: flex;
    gap: var(--gap, 1rem);
    flex-wrap: wrap;
    font-size: var(--font-size-base, 1rem);
    color: var(--neutral-600, #666);
  }

  .contact-item {
    white-space: nowrap;
  }

  .header-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }

  /* Botón burger */
  .burger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
  }

  .burger-line {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--neutral-800, #333);
    border-radius: var(--radius-sm, 4px);
    transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .burger.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Navegación */
  .nav {
    flex: 1;
  }

  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap, 1.5rem);
    flex-wrap: wrap;
  }

  .nav-item {
    margin: 0;
  }

  .nav-link {
    text-decoration: none;
    color: var(--neutral-800, #333);
    font-size: var(--font-size-base, 1rem);
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease), border-color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .nav-link:hover,
  .nav-link:focus {
    color: var(--brand, #0056b3);
    border-bottom-color: var(--brand, #0056b3);
  }

  /* Móvil: max-width 767px */
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }

    .nav {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1, #fff);
      border-radius: var(--radius-md, 8px);
      box-shadow: var(--shadow-lg, 0 4px 12px rgba(0,0,0,0.15));
      padding: var(--space-y, 1rem) var(--space-x, 1rem);
      z-index: 20;
    }

    .nav.open {
      display: block;
    }

    .nav-list {
      flex-direction: column;
      gap: var(--gap, 0.75rem);
    }

    .nav-link {
      display: block;
      padding: 0.5rem 0;
      border-bottom: 1px solid var(--border-on-surface, #ddd);
    }

    .nav-link:last-child {
      border-bottom: none;
    }
  }

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2.5rem 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.footer-left {
  flex: 1 1 280px;
  min-width: 200px;
}

.footer-right {
  flex: 2 1 400px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-brand {
  margin-bottom: 0.5rem;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0a500;
  text-decoration: none;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.footer-logo:hover {
  color: #ffbe33;
}

.footer-copyright {
  margin: 0;
  color: #b0b0b0;
  font-size: 0.85rem;
}

.footer-nav {
  width: 100%;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}

.footer-menu li {
  margin: 0;
}

.footer-menu a {
  color: #c0c0d0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-menu a:hover {
  color: #f0a500;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal a {
  color: #a0a0b8;
  text-decoration: none;
  font-size: 0.85rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.footer-legal a:hover {
  color: #f0a500;
  border-bottom-color: #f0a500;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0;
  margin: 0;
}

.footer-contact p {
  margin: 0;
  color: #d0d0e0;
  font-size: 0.9rem;
}

.contact-label {
  font-weight: 600;
  color: #b0b0c8;
  margin-right: 0.3rem;
}

.footer-contact a {
  color: #c0c0d0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: #f0a500;
}

.footer-disclaimer {
  margin: 0;
  font-size: 0.8rem;
  color: #8888a0;
  line-height: 1.4;
  border-top: 1px solid #2a2a3e;
  padding-top: 0.75rem;
}

@media (max-width: 640px) {
  .footer-container {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-left,
  .footer-right {
    flex: 1 1 auto;
    min-width: 0;
  }

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

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

.cookie-cv7 {
        position: fixed;
        left: var(--space-x);
        bottom: var(--space-y);
        width: min(360px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

    .cookie-cv7__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.14);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

    .cookie-cv7__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

.nf404-v10 {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .nf404-v10__box {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 46px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-sm);
    }

    .nf404-v10 h1 {
        margin: 0;
        font-size: clamp(32px, 6vw, 56px);
    }

    .nf404-v10 p {
        margin: 12px 0 0;
        color: var(--neutral-600);
    }

    .nf404-v10 a {
        display: inline-block;
        margin-top: 18px;
        color: var(--link);
        text-decoration: none;
        border-bottom: 2px solid var(--link);
        padding-bottom: 2px;
    }