:root {
  --font-family: "IBM Plex Sans", sans-serif;
  --font-size-base: 17.1px;
  --line-height-base: 1.86;

  --max-w: 920px;
  --space-x: 1.39rem;
  --space-y: 1.5rem;
  --gap: 1.07rem;

  --radius-xl: 0.7rem;
  --radius-lg: 0.58rem;
  --radius-md: 0.31rem;
  --radius-sm: 0.25rem;

  --shadow-sm: 0 0px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 5px 14px rgba(0,0,0,0.11);
  --shadow-lg: 0 6px 20px rgba(0,0,0,0.13);

  --overlay: rgba(0, 0, 0, 0.5);
  --anim-duration: 340ms;
  --anim-ease: cubic-bezier(0.2,0.8,0.2,1);
  --random-number: 2;

  --brand: #7C3AED;
  --brand-contrast: #FFFFFF;
  --accent: #EC4899;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F3FF;
  --neutral-300: #DDD6FE;
  --neutral-600: #7C3AED;
  --neutral-800: #5B21B6;
  --neutral-900: #1E1B4B;

  --bg-page: #FAF9FF;
  --fg-on-page: #1E1B4B;

  --bg-alt: #F5F3FF;
  --fg-on-alt: #1E1B4B;

  --surface-1: #FFFFFF;
  --surface-2: #F5F3FF;
  --fg-on-surface: #1E1B4B;
  --border-on-surface: #DDD6FE;

  --surface-light: rgba(255, 255, 255, 0.85);
  --fg-on-surface-light: #1E1B4B;
  --border-on-surface-light: rgba(221, 214, 254, 0.6);

  --bg-primary: #7C3AED;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #6D28D9;
  --ring: #C4B5FD;

  --bg-accent: #FDF2F8;
  --fg-on-accent: #831843;
  --bg-accent-hover: #DB2777;

  --link: #7C3AED;
  --link-hover: #5B21B6;

  --gradient-hero: linear-gradient(135deg, #7C3AED 0%, #EC4899 100%);
  --gradient-accent: linear-gradient(90deg, #FDF2F8 0%, #F5F3FF 100%);

  --btn-ghost-bg: transparent;
  --btn-ghost-bg-hover: rgba(255,255,255,0.06);
  --chip-bg: rgba(255,255,255,0.08);
  --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;}

/* Estilos generales del header */
  header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    box-sizing: border-box;
  }

  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-y);
    flex-wrap: wrap;
    gap: var(--gap);
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.8);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .logo:hover {
    color: var(--link-hover);
  }

  .cta-button {
    background: var(--gradient-accent);
    color: var(--fg-on-accent);
    border: none;
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-md);
    white-space: nowrap;
  }

  .cta-button:hover {
    background-color: var(--bg-accent-hover);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
  }

  /* Navegación principal */
  .main-nav {
    position: relative;
  }

  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
    justify-content: center;
    transition: all var(--anim-duration) var(--anim-ease);
  }

  .nav-link {
    color: var(--link);
    text-decoration: none;
    padding: calc(var(--space-y) * 0.5) calc(var(--space-x) * 0.75);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    display: block;
    text-align: center;
    font-weight: 500;
  }

  .nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
  }

  /* Botón de menú hamburguesa (oculto en escritorio) */
  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
    position: absolute;
    right: 0;
    top: -3.5rem;
  }

  .burger-menu span {
    width: 100%;
    height: 3px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    transform-origin: center;
  }

  .burger-menu[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .burger-menu[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .burger-menu[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  /* Responsive: móviles */
  @media (max-width: 767px) {
    .header-top {
      margin-bottom: calc(var(--space-y) * 1.5);
    }

    .burger-menu {
      display: flex;
    }

    .nav-list {
      position: fixed;
      top: 0;
      right: -100%;
      height: 100vh;
      width: 70%;
      max-width: 300px;
      background-color: var(--surface-2);
      flex-direction: column;
      justify-content: flex-start;
      padding-top: 5rem;
      gap: 0;
      z-index: 5;
      box-shadow: var(--shadow-lg);
    }

    .nav-list.active {
      right: 0;
    }

    .nav-link {
      padding: calc(var(--space-y) * 0.75) var(--space-x);
      border-radius: 0;
      border-bottom: 1px solid var(--border-on-surface-light);
      text-align: left;
    }

    .nav-link:hover {
      background-color: var(--surface-light);
    }

    /* Overlay cuando el menú está abierto */
    .nav-list.active::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background-color: var(--overlay);
      z-index: -1;
    }
  }

  /* Responsive: tablets y pantallas pequeñas */
  @media (min-width: 768px) and (max-width: 1023px) {
    .nav-list {
      gap: calc(var(--gap) * 0.75);
    }
    .nav-link {
      padding: calc(var(--space-y) * 0.5) calc(var(--space-x) * 0.5);
    }
  }

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 2rem 1rem;
        border-top: 1px solid #dee2e6;
        font-family: sans-serif;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
        padding-bottom: 2rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid #ccc;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 1rem;
        color: #222;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .contact-block h3 {
        margin-top: 0;
        margin-bottom: 0.8rem;
        font-size: 1.1rem;
    }
    .contact-block ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
    }
    .contact-block li {
        margin-bottom: 0.5rem;
        color: #666;
    }
    .contact-block a {
        color: #666;
        text-decoration: none;
    }
    .contact-block a:hover {
        text-decoration: underline;
        color: #000;
    }
    .social-links {
        display: flex;
        gap: 1rem;
    }
    .social-links a {
        display: inline-block;
        padding: 0.4rem 0.8rem;
        background-color: #e9ecef;
        border-radius: 4px;
        color: #555;
        text-decoration: none;
        font-weight: bold;
    }
    .social-links a:hover {
        background-color: #ddd;
    }
    .footer-bottom {
        text-align: center;
        font-size: 0.9rem;
        color: #777;
        line-height: 1.6;
    }
    .legal-links {
        margin: 0.7rem 0;
    }
    .legal-links a {
        color: #555;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .disclaimer {
        margin-top: 0.7rem;
        font-style: italic;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 2.5rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 1rem;
        }
    }

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

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

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

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

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

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

.hero {
        position: relative;
        min-height: 600px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: var(--fg-on-primary);
        overflow: hidden;
    }

    .hero--compact {
        min-height: 400px;
    }

    .hero__bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -2;
    }

    .hero__overlay {
        position: absolute;
        inset: 0;
        background: var(--gradient-hero);
        opacity: 0.7;
        z-index: -1;
    }

    .hero--tint .hero__overlay {
        opacity: 0.55;
    }

    .hero__content {
        max-width: 900px;
        padding: clamp(16px, 3vw, 32px);
        z-index: 1;
    }

    .hero--tint .hero__content {
        background: var(--chip-bg);
        border-radius: var(--radius-lg);
        border: 1px solid var(--btn-ghost-bg-hover);
    }

    .hero h1 {
        font-size: clamp(28px, 5vw, 48px);
        font-weight: 700;
        margin-bottom: var(--space-y);
        text-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    }

    .hero p {
        font-size: clamp(16px, 2.5vw, 20px);
        font-weight: 400;
        margin: 0 auto 0;
        max-width: 700px;
    }

.values-flare-c9 {
        padding: clamp(3.5rem, 8vw, 6rem) var(--space-x);
        background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, .15), transparent 25%), var(--gradient-accent);
        color: var(--fg-on-primary);
    }

    .values-flare-c9__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .values-flare-c9__head {
        margin-bottom: 1.1rem;
    }

    .values-flare-c9__head p {
        margin: 0;
        color: rgba(255, 255, 255, .76);
        text-transform: uppercase;
        letter-spacing: .1em;
        font-size: .82rem;
    }

    .values-flare-c9__head h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .values-flare-c9__head span {
        display: block;
        margin-top: .8rem;
        color: rgba(255, 255, 255, .86);
    }

    .values-flare-c9__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
        gap: var(--gap);
    }

    .values-flare-c9__grid article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .values-flare-c9__meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .values-flare-c9__meta i {
        font-style: normal;
    }

    .values-flare-c9__meta span {
        color: var(--bg-accent);
    }

    .values-flare-c9__grid h3 {
        margin: .75rem 0 .35rem;
    }

    .values-flare-c9__grid p {
        margin: 0;
        color: rgba(255, 255, 255, .86);
    }

    .values-flare-c9__grid small {
        display: block;
        margin-top: .55rem;
        color: rgba(255, 255, 255, .76);
    }

.why-choose-light-alt {

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

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

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

    }

    .why-choose-light-alt h2 {
        font-size: clamp(32px, 5vw, 48px);
        margin: 0 0 1rem;
        color: var(--fg-on-alt);
        position: relative;
        display: inline-block;
    }

    .why-choose-light-alt h2::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--bg-primary);
        border-radius: var(--radius-sm);
        animation: shimmer 3s ease-in-out infinite;
    }

    @keyframes shimmer {
        0%, 100% {
            opacity: 1;
            transform: scaleX(1);
        }
        50% {
            opacity: 0.4;
            transform: scaleX(0.8);
        }
    }

    .why-choose-light-alt .why-choose-light-alt__subtitle {
        font-size: clamp(16px, 2vw, 20px);
        margin: 0;
        color: var(--neutral-600);
    }

    .why-choose-light-alt .why-choose-light-alt__list {
        display: flex;
        flex-direction: column;
        gap: clamp(16px, 2vw, 24px);
    }

    .why-choose-light-alt .why-choose-light-alt__item {
        display: flex;
        gap: clamp(16px, 2vw, 24px);
        background: var(--surface-1);
        padding: clamp(20px, 3vw, 32px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-sm);
        align-items: flex-start;

        position: relative;
        overflow: hidden;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .why-choose-light-alt .why-choose-light-alt__wave {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg,
        var(--bg-primary) 0%,
        var(--accent) 50%,
        var(--bg-primary) 100%);
        background-size: 200% 100%;
        animation: wave 3s linear infinite;

        transition: opacity var(--anim-duration) var(--anim-ease);
    }

    @keyframes wave {
        0% {
            background-position: 0% 0%;
        }
        100% {
            background-position: 200% 0%;
        }
    }

    .why-choose-light-alt .why-choose-light-alt__item:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
    }

    .why-choose-light-alt .why-choose-light-alt__item:hover .why-choose-light-alt__wave {
        opacity: 1;
    }

    .why-choose-light-alt .why-choose-light-alt__number {
        flex-shrink: 0;
        width: 56px;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-radius: var(--radius-md);
        font-size: clamp(20px, 2.5vw, 28px);
        font-weight: 700;
        position: relative;
        animation: sparkle 4s ease-in-out infinite;
    }

    @keyframes sparkle {
        0%, 100% {
            box-shadow: 0 0 0 rgba(0, 85, 183, 0);
        }
        10% {
            box-shadow: 0 0 20px rgba(0, 85, 183, 0.6);
        }
        20%, 80% {
            box-shadow: 0 0 0 rgba(0, 85, 183, 0);
        }
        90% {
            box-shadow: 0 0 20px rgba(0, 85, 183, 0.6);
        }
    }

    .why-choose-light-alt .why-choose-light-alt__content {
        flex: 1;
    }

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

    .why-choose-light-alt .why-choose-light-alt__item h3::before {
        content: '';
        position: absolute;
        left: -12px;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 0;
        background: var(--bg-primary);
        border-radius: var(--radius-sm);
        transition: height var(--anim-duration) var(--anim-ease);
    }

    .why-choose-light-alt .why-choose-light-alt__item:hover h3::before {
        height: 100%;
    }

    .why-choose-light-alt .why-choose-light-alt__item p {
        margin: 0;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

.index-recommendations {
        background: radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.7), transparent 60%),
        radial-gradient(circle at 85% 70%, rgba(212, 165, 165, 0.35), transparent 55%),
        var(--gradient-accent);
        color: var(--fg-on-primary);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
    }

    .index-recommendations__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .index-recommendations__h {
        text-align: center;
        margin-bottom: clamp(24px, 6vw, 52px);

        transform: translateY(-18px);
    }

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

    .index-recommendations__h h2 {
        margin: 0;
        font-size: clamp(28px, 4.6vw, 48px);
        letter-spacing: -0.02em;
    }

    .index-recommendations__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
        gap: clamp(14px, 2.6vw, 22px);
    }

    .index-recommendations__card {
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.6);
        border: 1px solid rgba(58, 46, 61, 0.12);
        box-shadow: var(--shadow-lg);
        padding: clamp(18px, 3vw, 26px);
        backdrop-filter: blur(10px);

        transform: translateY(26px);
        position: relative;
        overflow: hidden;
    }

    .index-recommendations__card::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), transparent 55%);
        opacity: 0.65;
        pointer-events: none;
    }

    .index-recommendations__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 12px;
        position: relative;
        z-index: 1;
    }

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

    .index-recommendations__tag {
        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;
        white-space: nowrap;
        flex: 0 0 auto;
    }

    .index-recommendations__card h3 {
        margin: 0 0 10px;
        position: relative;
        z-index: 1;
        font-size: 18px;
        font-weight: 900;
        color: var(--fg-on-page);
        letter-spacing: -0.01em;
    }

    .index-recommendations__card p {
        margin: 0 0 14px;
        position: relative;
        z-index: 1;
        color: rgba(58, 46, 61, 0.84);
        font-size: 14px;
        line-height: 1.65;
    }

    .index-recommendations__cta {
        position: relative;
        z-index: 1;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        padding: 10px 14px;
        border-radius: 999px;
        background: var(--bg-primary);
        border: 1px solid var(--ring);
        color: var(--fg-on-primary);
        font-weight: 800;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-size: 11px;
        transition: transform var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
    }

    .index-recommendations__cta::after {
        content: '->';
        font-size: 12px;
    }

    .index-recommendations__cta:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-2px);
    }

.social-l2 {

        padding: clamp(18px, 3vw, 44px);
        background: var(--bg-alt);
        color: var(--fg-on-alt);
    }

    .social-l2__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .social-l2__h {
        margin-bottom: clamp(14px, 2.2vw, 22px);
    }

    .social-l2__title {
        margin: 0;
        font-size: clamp(24px, 4.2vw, 40px);
        letter-spacing: -.02em;
        line-height: 1.1;
    }

    .social-l2__sub {
        margin: 10px 0 0;
        max-width: 72ch;
        color: var(--neutral-600);
    }

    .social-l2__wrap {
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
    }

    .social-l2__quoteBox {
        padding: 18px;
        border-bottom: 1px solid var(--border-on-surface);
        position: relative;
    }

    .social-l2__quote {
        display: none;
    }

    .social-l2__quote.is-on {
        display: block;
    }

    .social-l2__q {
        font-size: clamp(16px, 2.2vw, 20px);
        line-height: 1.7;
        color: var(--fg-on-page);
        letter-spacing: -.01em;
    }

    .social-l2__m {
        margin-top: 12px;
        color: var(--neutral-600);
        font-weight: 800;
    }

    .social-l2__badges {
        overflow: hidden;
        background: var(--bg-alt);
    }

    .social-l2__badgeTrack {
        display: flex;
        gap: 10px;
        padding: 12px;
        width: max-content;
        animation: socialL2Badges 16s linear infinite;
    }

    @keyframes socialL2Badges {
        0% {
            transform: translateX(0)
        }
        100% {
            transform: translateX(-50%)
        }
    }

    .social-l2__badge {
        display: inline-flex;
        align-items: center;
        padding: 8px 12px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid rgba(0, 0, 0, 0.06);
        font-weight: 900;
        white-space: nowrap;
    }

    @media (prefers-reduced-motion: reduce) {
        .social-l2__badgeTrack {
            animation: none;
        }
    }

/* Estilos generales del header */
  header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    box-sizing: border-box;
  }

  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-y);
    flex-wrap: wrap;
    gap: var(--gap);
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.8);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .logo:hover {
    color: var(--link-hover);
  }

  .cta-button {
    background: var(--gradient-accent);
    color: var(--fg-on-accent);
    border: none;
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-md);
    white-space: nowrap;
  }

  .cta-button:hover {
    background-color: var(--bg-accent-hover);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
  }

  /* Navegación principal */
  .main-nav {
    position: relative;
  }

  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
    justify-content: center;
    transition: all var(--anim-duration) var(--anim-ease);
  }

  .nav-link {
    color: var(--link);
    text-decoration: none;
    padding: calc(var(--space-y) * 0.5) calc(var(--space-x) * 0.75);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    display: block;
    text-align: center;
    font-weight: 500;
  }

  .nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
  }

  /* Botón de menú hamburguesa (oculto en escritorio) */
  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
    position: absolute;
    right: 0;
    top: -3.5rem;
  }

  .burger-menu span {
    width: 100%;
    height: 3px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    transform-origin: center;
  }

  .burger-menu[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .burger-menu[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .burger-menu[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  /* Responsive: móviles */
  @media (max-width: 767px) {
    .header-top {
      margin-bottom: calc(var(--space-y) * 1.5);
    }

    .burger-menu {
      display: flex;
    }

    .nav-list {
      position: fixed;
      top: 0;
      right: -100%;
      height: 100vh;
      width: 70%;
      max-width: 300px;
      background-color: var(--surface-2);
      flex-direction: column;
      justify-content: flex-start;
      padding-top: 5rem;
      gap: 0;
      z-index: 5;
      box-shadow: var(--shadow-lg);
    }

    .nav-list.active {
      right: 0;
    }

    .nav-link {
      padding: calc(var(--space-y) * 0.75) var(--space-x);
      border-radius: 0;
      border-bottom: 1px solid var(--border-on-surface-light);
      text-align: left;
    }

    .nav-link:hover {
      background-color: var(--surface-light);
    }

    /* Overlay cuando el menú está abierto */
    .nav-list.active::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background-color: var(--overlay);
      z-index: -1;
    }
  }

  /* Responsive: tablets y pantallas pequeñas */
  @media (min-width: 768px) and (max-width: 1023px) {
    .nav-list {
      gap: calc(var(--gap) * 0.75);
    }
    .nav-link {
      padding: calc(var(--space-y) * 0.5) calc(var(--space-x) * 0.5);
    }
  }

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 2rem 1rem;
        border-top: 1px solid #dee2e6;
        font-family: sans-serif;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
        padding-bottom: 2rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid #ccc;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 1rem;
        color: #222;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .contact-block h3 {
        margin-top: 0;
        margin-bottom: 0.8rem;
        font-size: 1.1rem;
    }
    .contact-block ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
    }
    .contact-block li {
        margin-bottom: 0.5rem;
        color: #666;
    }
    .contact-block a {
        color: #666;
        text-decoration: none;
    }
    .contact-block a:hover {
        text-decoration: underline;
        color: #000;
    }
    .social-links {
        display: flex;
        gap: 1rem;
    }
    .social-links a {
        display: inline-block;
        padding: 0.4rem 0.8rem;
        background-color: #e9ecef;
        border-radius: 4px;
        color: #555;
        text-decoration: none;
        font-weight: bold;
    }
    .social-links a:hover {
        background-color: #ddd;
    }
    .footer-bottom {
        text-align: center;
        font-size: 0.9rem;
        color: #777;
        line-height: 1.6;
    }
    .legal-links {
        margin: 0.7rem 0;
    }
    .legal-links a {
        color: #555;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .disclaimer {
        margin-top: 0.7rem;
        font-style: italic;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 2.5rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 1rem;
        }
    }

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

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

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

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

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

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

.identity-cv5 {
        padding: clamp(52px, 8vw, 96px) clamp(16px, 4vw, 40px);
        background: linear-gradient(145deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

    .identity-cv5__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .identity-cv5__hero {
        position: relative;
        border-radius: var(--radius-xl);
        overflow: hidden;
        min-height: 220px;
    }

    .identity-cv5__hero img {
        width: 100%;
        height: 100%;
        min-height: 220px;
        object-fit: cover;
        display: block;
    }

    .identity-cv5__overlay {
        position: absolute;
        inset: auto 0 0 0;
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(180deg, rgba(0, 0, 0, 0), var(--overlay));
    }

    .identity-cv5__overlay h2 {
        margin: 0;
        font-size: clamp(26px, 4vw, 42px);
    }

    .identity-cv5__overlay span {
        opacity: .92;
    }

    .identity-cv5__grid {
        margin-top: 14px;
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: var(--gap);
    }

    .identity-cv5__grid p {
        margin: 0 0 10px;
    }

    .identity-cv5__grid ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 8px;
    }

    .identity-cv5__grid li {
        background: rgba(255, 255, 255, 0.16);
        border: 1px solid rgba(255, 255, 255, 0.24);
        border-radius: var(--radius-md);
        padding: 10px 12px;
    }

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

.story-scene-l8 {
        padding: clamp(3.2rem, 7vw, 5.7rem) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .story-scene-l8__wrap {
        max-width: 58rem;
        margin: 0 auto;
    }

    .story-scene-l8__panel {
        padding: 1rem;
        border-radius: var(--radius-xl);
        background: var(--bg-alt);
        border: 1px solid var(--border-on-surface-light);
    }

    .story-scene-l8__top {
        display: grid;
        grid-template-columns: 14rem 1fr;
        gap: 1rem;
        align-items: center;
    }

    .story-scene-l8__top img {
        display: block;
        width: 100%;
        border-radius: var(--radius-lg);
    }

    .story-scene-l8__top p {
        margin: 0;
        color: var(--brand);
        font-size: .82rem;
        text-transform: uppercase;
        letter-spacing: .1em;
    }

    .story-scene-l8__top h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .story-scene-l8__copy {
        margin: .8rem 0 0;
        color: var(--neutral-600);
    }

    .story-scene-l8__panel a {
        display: inline-flex;
        margin-top: 1rem;
        min-height: 2.8rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        text-decoration: none;
    }

    @media (max-width: 700px) {
        .story-scene-l8__top {
            grid-template-columns: 1fr;
        }
    }

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

    .faq-layout-e .wrap {
        max-width: 860px;
        margin: 0 auto;
    }

    .faq-layout-e .section-head {
        margin-bottom: 16px;
    }

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

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

    .faq-layout-e .accordion {
        border-top: 1px solid var(--border-on-surface-light);
    }

    .faq-layout-e .entry {
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .faq-layout-e .question {
        width: 100%;
        text-align: left;
        border: 0;
        background: transparent;
        padding: 12px 0;
        font: inherit;
        font-weight: 600;
        color: var(--brand);
        cursor: pointer;
    }

    .faq-layout-e .answer {
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
        color: var(--neutral-600);
        padding: 0;
    }

    .faq-layout-e .entry.open .answer {
        max-height: 220px;
        padding-bottom: 12px;
    }

.partners {

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

    .partners .partners__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .partners .partners__title {
        font-size: clamp(28px, 5vw, 48px);
        text-align: center;
        margin: 0 0 clamp(48px, 7vw, 72px);
        color: var(--fg-on-page);
    }

    .partners .partners__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: clamp(32px, 5vw, 48px);
    }

    .partners .partners__item {
        display: flex;
        flex-direction: column;
        gap: clamp(20px, 3vw, 28px);
        align-items: center;
        padding: clamp(24px, 4vw, 32px);
        background: var(--surface-1);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
    }

    .partners .partners__logo {
        flex-shrink: 0;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .partners .partners__logo img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

    .partners .partners__info h3 {
        font-size: clamp(20px, 3vw, 24px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-surface);
    }

    .partners .partners__info p {
        font-size: clamp(15px, 2.2vw, 17px);
        line-height: 1.6;
        color: var(--neutral-600);
        margin: 0;
    }

    @media (max-width: 768px) {
        .partners .partners__item {
            flex-direction: column;
            text-align: center;
        }
    }

/* Estilos generales del header */
  header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    box-sizing: border-box;
  }

  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-y);
    flex-wrap: wrap;
    gap: var(--gap);
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.8);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .logo:hover {
    color: var(--link-hover);
  }

  .cta-button {
    background: var(--gradient-accent);
    color: var(--fg-on-accent);
    border: none;
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-md);
    white-space: nowrap;
  }

  .cta-button:hover {
    background-color: var(--bg-accent-hover);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
  }

  /* Navegación principal */
  .main-nav {
    position: relative;
  }

  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
    justify-content: center;
    transition: all var(--anim-duration) var(--anim-ease);
  }

  .nav-link {
    color: var(--link);
    text-decoration: none;
    padding: calc(var(--space-y) * 0.5) calc(var(--space-x) * 0.75);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    display: block;
    text-align: center;
    font-weight: 500;
  }

  .nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
  }

  /* Botón de menú hamburguesa (oculto en escritorio) */
  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
    position: absolute;
    right: 0;
    top: -3.5rem;
  }

  .burger-menu span {
    width: 100%;
    height: 3px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    transform-origin: center;
  }

  .burger-menu[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .burger-menu[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .burger-menu[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  /* Responsive: móviles */
  @media (max-width: 767px) {
    .header-top {
      margin-bottom: calc(var(--space-y) * 1.5);
    }

    .burger-menu {
      display: flex;
    }

    .nav-list {
      position: fixed;
      top: 0;
      right: -100%;
      height: 100vh;
      width: 70%;
      max-width: 300px;
      background-color: var(--surface-2);
      flex-direction: column;
      justify-content: flex-start;
      padding-top: 5rem;
      gap: 0;
      z-index: 5;
      box-shadow: var(--shadow-lg);
    }

    .nav-list.active {
      right: 0;
    }

    .nav-link {
      padding: calc(var(--space-y) * 0.75) var(--space-x);
      border-radius: 0;
      border-bottom: 1px solid var(--border-on-surface-light);
      text-align: left;
    }

    .nav-link:hover {
      background-color: var(--surface-light);
    }

    /* Overlay cuando el menú está abierto */
    .nav-list.active::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background-color: var(--overlay);
      z-index: -1;
    }
  }

  /* Responsive: tablets y pantallas pequeñas */
  @media (min-width: 768px) and (max-width: 1023px) {
    .nav-list {
      gap: calc(var(--gap) * 0.75);
    }
    .nav-link {
      padding: calc(var(--space-y) * 0.5) calc(var(--space-x) * 0.5);
    }
  }

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 2rem 1rem;
        border-top: 1px solid #dee2e6;
        font-family: sans-serif;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
        padding-bottom: 2rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid #ccc;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 1rem;
        color: #222;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .contact-block h3 {
        margin-top: 0;
        margin-bottom: 0.8rem;
        font-size: 1.1rem;
    }
    .contact-block ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
    }
    .contact-block li {
        margin-bottom: 0.5rem;
        color: #666;
    }
    .contact-block a {
        color: #666;
        text-decoration: none;
    }
    .contact-block a:hover {
        text-decoration: underline;
        color: #000;
    }
    .social-links {
        display: flex;
        gap: 1rem;
    }
    .social-links a {
        display: inline-block;
        padding: 0.4rem 0.8rem;
        background-color: #e9ecef;
        border-radius: 4px;
        color: #555;
        text-decoration: none;
        font-weight: bold;
    }
    .social-links a:hover {
        background-color: #ddd;
    }
    .footer-bottom {
        text-align: center;
        font-size: 0.9rem;
        color: #777;
        line-height: 1.6;
    }
    .legal-links {
        margin: 0.7rem 0;
    }
    .legal-links a {
        color: #555;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .disclaimer {
        margin-top: 0.7rem;
        font-style: italic;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 2.5rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 1rem;
        }
    }

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

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

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

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

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

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

.plans-lv4 {
        padding: clamp(50px, 7vw, 90px) clamp(16px, 4vw, 36px);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .plans-lv4__wrap {
        max-width: 920px;
        margin: 0 auto;
    }

    .plans-lv4__head {
        text-align: center;
        margin-bottom: 14px;
    }

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

    .plans-lv4__head p {
        margin: 8px 0 0;
        color: var(--neutral-600);
    }

    .plans-lv4__stack {
        display: grid;
        gap: 10px;
    }

    .plans-lv4__stack article {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--surface-light);
        padding: 12px;
    }

    .plans-lv4__line {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        gap: 8px;
    }

    .plans-lv4__line h3 {
        margin: 0;
    }

    .plans-lv4__line p {
        margin: 0;
        color: var(--brand);
        font-weight: 700;
    }

    .plans-lv4__chips {
        margin-top: 8px;
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }

    .plans-lv4__chips span {
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        padding: 5px 9px;
        font-size: .88rem;
    }

    .plans-lv4__stack button {
        margin-top: 10px;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 8px 11px;
    }

.hiw-zigzag-c3 {
        padding: clamp(3.6rem, 8vw, 6.1rem) var(--space-x);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

    .hiw-zigzag-c3__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .hiw-zigzag-c3__head {
        max-width: 42rem;
        margin: 0 auto 1.25rem;
        text-align: center;
    }

    .hiw-zigzag-c3__head h2 {
        margin: 0;
        font-size: clamp(2rem, 4vw, 3rem);
        color: var(--fg-on-page);
    }

    .hiw-zigzag-c3__head p {
        margin: .55rem 0 0;
        color: var(--neutral-800);
    }

    .hiw-zigzag-c3__grid {
        display: grid;
        gap: var(--gap);
    }

    .hiw-zigzag-c3__grid article {
        width: min(28rem, 100%);
        padding: 1rem;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, .2);
        backdrop-filter: blur(8px);
        border: 1px solid var(--border-on-surface-light);
    }

    .hiw-zigzag-c3__grid article:nth-child(odd) {
        margin-right: auto;
    }

    .hiw-zigzag-c3__grid article:nth-child(even) {
        margin-left: auto;
    }

    .hiw-zigzag-c3__num {
        display: inline-flex;
        min-width: 2.6rem;
        height: 2.6rem;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        font-weight: 700;
    }

    .hiw-zigzag-c3__grid h3 {
        margin: .75rem 0 .35rem;
        color: var(--fg-on-page);
    }

    .hiw-zigzag-c3__grid p {
        margin: 0;
        color: var(--neutral-800);
    }

.features {
    padding: clamp(48px, 8vw, 80px) 0;
    color: var(--fg-on-page);
}

.features--alt {
    background-color: var(--bg-alt);
    color: var(--fg-on-alt);
}

.features__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
}

.features__title {
    text-align: center;
    margin-bottom: calc(var(--space-y) * 2);
    font-size: clamp(28px, 4vw, 40px);
    color: inherit;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: calc(var(--gap) * 1.5);
}

.features__card {
    background-color: var(--surface-1);
    padding: clamp(16px, 3vw, 32px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--anim-duration) var(--anim-ease);
    text-align: center;
    border: 1px solid var(--border-on-surface);
}

.features__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.features__icon {
    font-size: 2.5rem;
    color: var(--brand);
    margin-bottom: var(--space-y);
}

.features__card h3 {
    margin-bottom: var(--space-y);
    color: var(--fg-on-surface);
}

.features__card p {
    color: var(--fg-on-surface-light);
    margin: 0 auto;
}

.index-feedback {
        background: radial-gradient(circle at 20% 25%, rgba(255, 255, 255, 0.7), transparent 60%),
        radial-gradient(circle at 85% 65%, rgba(212, 165, 165, 0.35), transparent 55%),
        var(--gradient-accent);
        color: var(--fg-on-primary);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
        overflow: hidden;
    }

    .index-feedback__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .index-feedback__h {
        text-align: center;
        margin-bottom: clamp(28px, 6vw, 60px);

        transform: translateY(-18px);
    }

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

    .index-feedback__h h2 {
        margin: 0;
        font-size: clamp(28px, 4.6vw, 48px);
        letter-spacing: -0.02em;
    }

    .index-feedback__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
        gap: clamp(14px, 2.6vw, 22px);
    }

    .index-feedback__card {
        border-radius: var(--radius-xl);
        border: 1px solid rgba(58, 46, 61, 0.12);
        background: rgba(255, 255, 255, 0.6);
        box-shadow: var(--shadow-lg);
        padding: clamp(18px, 3vw, 26px);
        backdrop-filter: blur(10px);

        transform: translateY(28px);
        position: relative;
        overflow: hidden;
    }

    .index-feedback__card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), transparent 55%);
        opacity: 0.6;
        pointer-events: none;
    }

    .index-feedback__top {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 14px;
        position: relative;
        z-index: 1;
    }

    .index-feedback__who {
        display: flex;
        align-items: center;
        gap: 12px;
        min-width: 0;
    }

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

    .index-feedback__name {
        margin: 0;
        font-size: 16px;
        font-weight: 700;
        color: var(--fg-on-page);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 18ch;
    }

    .index-feedback__meta {
        margin: 2px 0 0;
        font-size: 13px;
        color: rgba(58, 46, 61, 0.7);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 22ch;
    }

    .index-feedback__rating {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 8px 10px;
        border-radius: 999px;
        background: var(--bg-page);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-sm);
        flex: 0 0 auto;
    }

    .index-feedback__stars {
        font-size: 14px;
        letter-spacing: 0.08em;
        color: var(--accent);
        line-height: 1;
    }

    .index-feedback__score {
        font-size: 12px;
        font-weight: 700;
        color: var(--fg-on-page);
    }

    .index-feedback__quote {
        margin: 14px 0 0;
        position: relative;
        z-index: 1;
        color: rgba(58, 46, 61, 0.88);
        font-size: 14px;
        line-height: 1.65;
    }

    .index-feedback__badge {
        display: inline-flex;
        margin-top: 12px;
        position: relative;
        z-index: 1;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid var(--border-on-surface-light);
        font-size: 11px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
    }

/* Estilos generales del header */
  header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    box-sizing: border-box;
  }

  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-y);
    flex-wrap: wrap;
    gap: var(--gap);
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.8);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .logo:hover {
    color: var(--link-hover);
  }

  .cta-button {
    background: var(--gradient-accent);
    color: var(--fg-on-accent);
    border: none;
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-md);
    white-space: nowrap;
  }

  .cta-button:hover {
    background-color: var(--bg-accent-hover);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
  }

  /* Navegación principal */
  .main-nav {
    position: relative;
  }

  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
    justify-content: center;
    transition: all var(--anim-duration) var(--anim-ease);
  }

  .nav-link {
    color: var(--link);
    text-decoration: none;
    padding: calc(var(--space-y) * 0.5) calc(var(--space-x) * 0.75);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    display: block;
    text-align: center;
    font-weight: 500;
  }

  .nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
  }

  /* Botón de menú hamburguesa (oculto en escritorio) */
  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
    position: absolute;
    right: 0;
    top: -3.5rem;
  }

  .burger-menu span {
    width: 100%;
    height: 3px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    transform-origin: center;
  }

  .burger-menu[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .burger-menu[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .burger-menu[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  /* Responsive: móviles */
  @media (max-width: 767px) {
    .header-top {
      margin-bottom: calc(var(--space-y) * 1.5);
    }

    .burger-menu {
      display: flex;
    }

    .nav-list {
      position: fixed;
      top: 0;
      right: -100%;
      height: 100vh;
      width: 70%;
      max-width: 300px;
      background-color: var(--surface-2);
      flex-direction: column;
      justify-content: flex-start;
      padding-top: 5rem;
      gap: 0;
      z-index: 5;
      box-shadow: var(--shadow-lg);
    }

    .nav-list.active {
      right: 0;
    }

    .nav-link {
      padding: calc(var(--space-y) * 0.75) var(--space-x);
      border-radius: 0;
      border-bottom: 1px solid var(--border-on-surface-light);
      text-align: left;
    }

    .nav-link:hover {
      background-color: var(--surface-light);
    }

    /* Overlay cuando el menú está abierto */
    .nav-list.active::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background-color: var(--overlay);
      z-index: -1;
    }
  }

  /* Responsive: tablets y pantallas pequeñas */
  @media (min-width: 768px) and (max-width: 1023px) {
    .nav-list {
      gap: calc(var(--gap) * 0.75);
    }
    .nav-link {
      padding: calc(var(--space-y) * 0.5) calc(var(--space-x) * 0.5);
    }
  }

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 2rem 1rem;
        border-top: 1px solid #dee2e6;
        font-family: sans-serif;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
        padding-bottom: 2rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid #ccc;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 1rem;
        color: #222;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .contact-block h3 {
        margin-top: 0;
        margin-bottom: 0.8rem;
        font-size: 1.1rem;
    }
    .contact-block ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
    }
    .contact-block li {
        margin-bottom: 0.5rem;
        color: #666;
    }
    .contact-block a {
        color: #666;
        text-decoration: none;
    }
    .contact-block a:hover {
        text-decoration: underline;
        color: #000;
    }
    .social-links {
        display: flex;
        gap: 1rem;
    }
    .social-links a {
        display: inline-block;
        padding: 0.4rem 0.8rem;
        background-color: #e9ecef;
        border-radius: 4px;
        color: #555;
        text-decoration: none;
        font-weight: bold;
    }
    .social-links a:hover {
        background-color: #ddd;
    }
    .footer-bottom {
        text-align: center;
        font-size: 0.9rem;
        color: #777;
        line-height: 1.6;
    }
    .legal-links {
        margin: 0.7rem 0;
    }
    .legal-links a {
        color: #555;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .disclaimer {
        margin-top: 0.7rem;
        font-style: italic;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 2.5rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 1rem;
        }
    }

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

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

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

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

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[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;
    }

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

    .contact-layout-c .wrap {
        max-width: 920px;
        margin: 0 auto;
    }

    .contact-layout-c .section-head {
        margin-bottom: 18px;
        text-align: center;
    }

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

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

    .contact-layout-c .stack {
        border-left: 3px solid var(--brand);
        padding-left: 16px;
        display: grid;
        gap: 12px;
    }

    .contact-layout-c .line h3 {
        margin: 0;
        font-size: 1rem;
        color: var(--brand);
    }

    .contact-layout-c .line p {
        margin: 4px 0 0;
    }

    .contact-layout-c .social-bar {
        margin-top: 18px;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        align-items: center;
    }

    .contact-layout-c .social-bar a {
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-radius: var(--radius-sm);
        padding: 7px 11px;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .contact-layout-c .social-bar a:hover {
        transform: translateY(-2px);
    }

.support-lv6 {
        padding: clamp(50px, 7vw, 90px) clamp(16px, 4vw, 36px);
        background: linear-gradient(180deg, var(--surface-2), var(--surface-1));
        color: var(--fg-on-page);
    }

    .support-lv6__wrap {
        max-width: 920px;
        margin: 0 auto;
    }

    .support-lv6__head {
        margin-bottom: 14px;
    }

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

    .support-lv6__head p {
        margin: 8px 0 0;
        color: var(--neutral-600);
    }

    .support-lv6__table {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        overflow: hidden;
    }

    .support-lv6__table article {
        display: grid;
        grid-template-columns: .8fr 1.2fr;
        gap: 12px;
        padding: 12px;
        border-bottom: 1px solid var(--border-on-surface-light);
        background: var(--surface-1);
    }

    .support-lv6__table article:last-child {
        border-bottom: 0;
    }

    .support-lv6__table h3 {
        margin: 0;
        color: var(--brand);
        font-size: 1rem;
    }

    .support-lv6__table p {
        margin: 0;
        color: var(--neutral-600);
    }

    @media (max-width: 700px) {
        .support-lv6__table article {
            grid-template-columns: 1fr;
        }
    }

/* Estilos generales del header */
  header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    box-sizing: border-box;
  }

  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-y);
    flex-wrap: wrap;
    gap: var(--gap);
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.8);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .logo:hover {
    color: var(--link-hover);
  }

  .cta-button {
    background: var(--gradient-accent);
    color: var(--fg-on-accent);
    border: none;
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-md);
    white-space: nowrap;
  }

  .cta-button:hover {
    background-color: var(--bg-accent-hover);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
  }

  /* Navegación principal */
  .main-nav {
    position: relative;
  }

  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
    justify-content: center;
    transition: all var(--anim-duration) var(--anim-ease);
  }

  .nav-link {
    color: var(--link);
    text-decoration: none;
    padding: calc(var(--space-y) * 0.5) calc(var(--space-x) * 0.75);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    display: block;
    text-align: center;
    font-weight: 500;
  }

  .nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
  }

  /* Botón de menú hamburguesa (oculto en escritorio) */
  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
    position: absolute;
    right: 0;
    top: -3.5rem;
  }

  .burger-menu span {
    width: 100%;
    height: 3px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    transform-origin: center;
  }

  .burger-menu[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .burger-menu[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .burger-menu[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  /* Responsive: móviles */
  @media (max-width: 767px) {
    .header-top {
      margin-bottom: calc(var(--space-y) * 1.5);
    }

    .burger-menu {
      display: flex;
    }

    .nav-list {
      position: fixed;
      top: 0;
      right: -100%;
      height: 100vh;
      width: 70%;
      max-width: 300px;
      background-color: var(--surface-2);
      flex-direction: column;
      justify-content: flex-start;
      padding-top: 5rem;
      gap: 0;
      z-index: 5;
      box-shadow: var(--shadow-lg);
    }

    .nav-list.active {
      right: 0;
    }

    .nav-link {
      padding: calc(var(--space-y) * 0.75) var(--space-x);
      border-radius: 0;
      border-bottom: 1px solid var(--border-on-surface-light);
      text-align: left;
    }

    .nav-link:hover {
      background-color: var(--surface-light);
    }

    /* Overlay cuando el menú está abierto */
    .nav-list.active::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background-color: var(--overlay);
      z-index: -1;
    }
  }

  /* Responsive: tablets y pantallas pequeñas */
  @media (min-width: 768px) and (max-width: 1023px) {
    .nav-list {
      gap: calc(var(--gap) * 0.75);
    }
    .nav-link {
      padding: calc(var(--space-y) * 0.5) calc(var(--space-x) * 0.5);
    }
  }

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 2rem 1rem;
        border-top: 1px solid #dee2e6;
        font-family: sans-serif;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
        padding-bottom: 2rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid #ccc;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 1rem;
        color: #222;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .contact-block h3 {
        margin-top: 0;
        margin-bottom: 0.8rem;
        font-size: 1.1rem;
    }
    .contact-block ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
    }
    .contact-block li {
        margin-bottom: 0.5rem;
        color: #666;
    }
    .contact-block a {
        color: #666;
        text-decoration: none;
    }
    .contact-block a:hover {
        text-decoration: underline;
        color: #000;
    }
    .social-links {
        display: flex;
        gap: 1rem;
    }
    .social-links a {
        display: inline-block;
        padding: 0.4rem 0.8rem;
        background-color: #e9ecef;
        border-radius: 4px;
        color: #555;
        text-decoration: none;
        font-weight: bold;
    }
    .social-links a:hover {
        background-color: #ddd;
    }
    .footer-bottom {
        text-align: center;
        font-size: 0.9rem;
        color: #777;
        line-height: 1.6;
    }
    .legal-links {
        margin: 0.7rem 0;
    }
    .legal-links a {
        color: #555;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .disclaimer {
        margin-top: 0.7rem;
        font-style: italic;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 2.5rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 1rem;
        }
    }

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

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

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

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

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

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

.terms-layout-d {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

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

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

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

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

    .terms-layout-d ol {
        margin: 0;
        padding-left: 20px;
        display: grid;
        gap: 10px;
    }

    .terms-layout-d li {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--surface-light);
        padding: var(--space-y) var(--space-x);
    }

    .terms-layout-d h3, .terms-layout-d h4 {
        margin: 0 0 8px;
        color: var(--fg-on-surface);
    }

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

/* Estilos generales del header */
  header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    box-sizing: border-box;
  }

  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-y);
    flex-wrap: wrap;
    gap: var(--gap);
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.8);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .logo:hover {
    color: var(--link-hover);
  }

  .cta-button {
    background: var(--gradient-accent);
    color: var(--fg-on-accent);
    border: none;
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-md);
    white-space: nowrap;
  }

  .cta-button:hover {
    background-color: var(--bg-accent-hover);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
  }

  /* Navegación principal */
  .main-nav {
    position: relative;
  }

  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
    justify-content: center;
    transition: all var(--anim-duration) var(--anim-ease);
  }

  .nav-link {
    color: var(--link);
    text-decoration: none;
    padding: calc(var(--space-y) * 0.5) calc(var(--space-x) * 0.75);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    display: block;
    text-align: center;
    font-weight: 500;
  }

  .nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
  }

  /* Botón de menú hamburguesa (oculto en escritorio) */
  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
    position: absolute;
    right: 0;
    top: -3.5rem;
  }

  .burger-menu span {
    width: 100%;
    height: 3px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    transform-origin: center;
  }

  .burger-menu[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .burger-menu[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .burger-menu[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  /* Responsive: móviles */
  @media (max-width: 767px) {
    .header-top {
      margin-bottom: calc(var(--space-y) * 1.5);
    }

    .burger-menu {
      display: flex;
    }

    .nav-list {
      position: fixed;
      top: 0;
      right: -100%;
      height: 100vh;
      width: 70%;
      max-width: 300px;
      background-color: var(--surface-2);
      flex-direction: column;
      justify-content: flex-start;
      padding-top: 5rem;
      gap: 0;
      z-index: 5;
      box-shadow: var(--shadow-lg);
    }

    .nav-list.active {
      right: 0;
    }

    .nav-link {
      padding: calc(var(--space-y) * 0.75) var(--space-x);
      border-radius: 0;
      border-bottom: 1px solid var(--border-on-surface-light);
      text-align: left;
    }

    .nav-link:hover {
      background-color: var(--surface-light);
    }

    /* Overlay cuando el menú está abierto */
    .nav-list.active::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background-color: var(--overlay);
      z-index: -1;
    }
  }

  /* Responsive: tablets y pantallas pequeñas */
  @media (min-width: 768px) and (max-width: 1023px) {
    .nav-list {
      gap: calc(var(--gap) * 0.75);
    }
    .nav-link {
      padding: calc(var(--space-y) * 0.5) calc(var(--space-x) * 0.5);
    }
  }

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 2rem 1rem;
        border-top: 1px solid #dee2e6;
        font-family: sans-serif;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
        padding-bottom: 2rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid #ccc;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 1rem;
        color: #222;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .contact-block h3 {
        margin-top: 0;
        margin-bottom: 0.8rem;
        font-size: 1.1rem;
    }
    .contact-block ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
    }
    .contact-block li {
        margin-bottom: 0.5rem;
        color: #666;
    }
    .contact-block a {
        color: #666;
        text-decoration: none;
    }
    .contact-block a:hover {
        text-decoration: underline;
        color: #000;
    }
    .social-links {
        display: flex;
        gap: 1rem;
    }
    .social-links a {
        display: inline-block;
        padding: 0.4rem 0.8rem;
        background-color: #e9ecef;
        border-radius: 4px;
        color: #555;
        text-decoration: none;
        font-weight: bold;
    }
    .social-links a:hover {
        background-color: #ddd;
    }
    .footer-bottom {
        text-align: center;
        font-size: 0.9rem;
        color: #777;
        line-height: 1.6;
    }
    .legal-links {
        margin: 0.7rem 0;
    }
    .legal-links a {
        color: #555;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .disclaimer {
        margin-top: 0.7rem;
        font-style: italic;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 2.5rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 1rem;
        }
    }

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

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

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

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

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

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

.policy-layout-e {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--accent);
        color: var(--neutral-0);
    }

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

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

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

    .policy-layout-e .section-head p {
        margin: 10px auto 0;
        max-width: 72ch;
        color: var(--neutral-100);
    }

    .policy-layout-e .columns {
        columns: 2 260px;
        column-gap: 14px;
    }

    .policy-layout-e article {
        break-inside: avoid;
        margin-bottom: 12px;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, .22);
        padding: 12px;
        background: rgba(255, 255, 255, .05);
    }

    .policy-layout-e h3 {
        margin: 0;
    }

    .policy-layout-e .meta {
        margin: 7px 0 0;
        color: var(--neutral-100);
    }

    .policy-layout-e article p:last-child {
        margin: 7px 0 0;
        color: var(--neutral-100);
    }

/* Estilos generales del header */
  header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    box-sizing: border-box;
  }

  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-y);
    flex-wrap: wrap;
    gap: var(--gap);
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.8);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .logo:hover {
    color: var(--link-hover);
  }

  .cta-button {
    background: var(--gradient-accent);
    color: var(--fg-on-accent);
    border: none;
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-md);
    white-space: nowrap;
  }

  .cta-button:hover {
    background-color: var(--bg-accent-hover);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
  }

  /* Navegación principal */
  .main-nav {
    position: relative;
  }

  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
    justify-content: center;
    transition: all var(--anim-duration) var(--anim-ease);
  }

  .nav-link {
    color: var(--link);
    text-decoration: none;
    padding: calc(var(--space-y) * 0.5) calc(var(--space-x) * 0.75);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    display: block;
    text-align: center;
    font-weight: 500;
  }

  .nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
  }

  /* Botón de menú hamburguesa (oculto en escritorio) */
  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
    position: absolute;
    right: 0;
    top: -3.5rem;
  }

  .burger-menu span {
    width: 100%;
    height: 3px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    transform-origin: center;
  }

  .burger-menu[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .burger-menu[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .burger-menu[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  /* Responsive: móviles */
  @media (max-width: 767px) {
    .header-top {
      margin-bottom: calc(var(--space-y) * 1.5);
    }

    .burger-menu {
      display: flex;
    }

    .nav-list {
      position: fixed;
      top: 0;
      right: -100%;
      height: 100vh;
      width: 70%;
      max-width: 300px;
      background-color: var(--surface-2);
      flex-direction: column;
      justify-content: flex-start;
      padding-top: 5rem;
      gap: 0;
      z-index: 5;
      box-shadow: var(--shadow-lg);
    }

    .nav-list.active {
      right: 0;
    }

    .nav-link {
      padding: calc(var(--space-y) * 0.75) var(--space-x);
      border-radius: 0;
      border-bottom: 1px solid var(--border-on-surface-light);
      text-align: left;
    }

    .nav-link:hover {
      background-color: var(--surface-light);
    }

    /* Overlay cuando el menú está abierto */
    .nav-list.active::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background-color: var(--overlay);
      z-index: -1;
    }
  }

  /* Responsive: tablets y pantallas pequeñas */
  @media (min-width: 768px) and (max-width: 1023px) {
    .nav-list {
      gap: calc(var(--gap) * 0.75);
    }
    .nav-link {
      padding: calc(var(--space-y) * 0.5) calc(var(--space-x) * 0.5);
    }
  }

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 2rem 1rem;
        border-top: 1px solid #dee2e6;
        font-family: sans-serif;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
        padding-bottom: 2rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid #ccc;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 1rem;
        color: #222;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .contact-block h3 {
        margin-top: 0;
        margin-bottom: 0.8rem;
        font-size: 1.1rem;
    }
    .contact-block ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
    }
    .contact-block li {
        margin-bottom: 0.5rem;
        color: #666;
    }
    .contact-block a {
        color: #666;
        text-decoration: none;
    }
    .contact-block a:hover {
        text-decoration: underline;
        color: #000;
    }
    .social-links {
        display: flex;
        gap: 1rem;
    }
    .social-links a {
        display: inline-block;
        padding: 0.4rem 0.8rem;
        background-color: #e9ecef;
        border-radius: 4px;
        color: #555;
        text-decoration: none;
        font-weight: bold;
    }
    .social-links a:hover {
        background-color: #ddd;
    }
    .footer-bottom {
        text-align: center;
        font-size: 0.9rem;
        color: #777;
        line-height: 1.6;
    }
    .legal-links {
        margin: 0.7rem 0;
    }
    .legal-links a {
        color: #555;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .disclaimer {
        margin-top: 0.7rem;
        font-style: italic;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 2.5rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 1rem;
        }
    }

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

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

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

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

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

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

.thank-mode-b {
        padding: clamp(58px, 10vw, 114px) 18px;
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .thank-mode-b .card {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border-radius: var(--radius-xl);
        padding: clamp(30px, 4vw, 46px);
        background: var(--surface-1);
        box-shadow: var(--shadow-lg);
    }

    .thank-mode-b h1 {
        margin: 0;
        font-size: clamp(32px, 5vw, 54px);
        color: var(--brand);
    }

    .thank-mode-b p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .thank-mode-b a {
        display: inline-block;
        margin-top: 18px;
        padding: 11px 18px;
        border-radius: var(--radius-sm);
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

/* Estilos generales del header */
  header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    box-sizing: border-box;
  }

  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-y);
    flex-wrap: wrap;
    gap: var(--gap);
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.8);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .logo:hover {
    color: var(--link-hover);
  }

  .cta-button {
    background: var(--gradient-accent);
    color: var(--fg-on-accent);
    border: none;
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--anim-duration) var(--anim-ease);
    box-shadow: var(--shadow-md);
    white-space: nowrap;
  }

  .cta-button:hover {
    background-color: var(--bg-accent-hover);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
  }

  /* Navegación principal */
  .main-nav {
    position: relative;
  }

  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--gap);
    justify-content: center;
    transition: all var(--anim-duration) var(--anim-ease);
  }

  .nav-link {
    color: var(--link);
    text-decoration: none;
    padding: calc(var(--space-y) * 0.5) calc(var(--space-x) * 0.75);
    border-radius: var(--radius-md);
    transition: all var(--anim-duration) var(--anim-ease);
    display: block;
    text-align: center;
    font-weight: 500;
  }

  .nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
  }

  /* Botón de menú hamburguesa (oculto en escritorio) */
  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
    position: absolute;
    right: 0;
    top: -3.5rem;
  }

  .burger-menu span {
    width: 100%;
    height: 3px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    transform-origin: center;
  }

  .burger-menu[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .burger-menu[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .burger-menu[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  /* Responsive: móviles */
  @media (max-width: 767px) {
    .header-top {
      margin-bottom: calc(var(--space-y) * 1.5);
    }

    .burger-menu {
      display: flex;
    }

    .nav-list {
      position: fixed;
      top: 0;
      right: -100%;
      height: 100vh;
      width: 70%;
      max-width: 300px;
      background-color: var(--surface-2);
      flex-direction: column;
      justify-content: flex-start;
      padding-top: 5rem;
      gap: 0;
      z-index: 5;
      box-shadow: var(--shadow-lg);
    }

    .nav-list.active {
      right: 0;
    }

    .nav-link {
      padding: calc(var(--space-y) * 0.75) var(--space-x);
      border-radius: 0;
      border-bottom: 1px solid var(--border-on-surface-light);
      text-align: left;
    }

    .nav-link:hover {
      background-color: var(--surface-light);
    }

    /* Overlay cuando el menú está abierto */
    .nav-list.active::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background-color: var(--overlay);
      z-index: -1;
    }
  }

  /* Responsive: tablets y pantallas pequeñas */
  @media (min-width: 768px) and (max-width: 1023px) {
    .nav-list {
      gap: calc(var(--gap) * 0.75);
    }
    .nav-link {
      padding: calc(var(--space-y) * 0.5) calc(var(--space-x) * 0.5);
    }
  }

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 2rem 1rem;
        border-top: 1px solid #dee2e6;
        font-family: sans-serif;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
        padding-bottom: 2rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid #ccc;
    }
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 1rem;
        color: #222;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #000;
        text-decoration: underline;
    }
    .contact-block h3 {
        margin-top: 0;
        margin-bottom: 0.8rem;
        font-size: 1.1rem;
    }
    .contact-block ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
    }
    .contact-block li {
        margin-bottom: 0.5rem;
        color: #666;
    }
    .contact-block a {
        color: #666;
        text-decoration: none;
    }
    .contact-block a:hover {
        text-decoration: underline;
        color: #000;
    }
    .social-links {
        display: flex;
        gap: 1rem;
    }
    .social-links a {
        display: inline-block;
        padding: 0.4rem 0.8rem;
        background-color: #e9ecef;
        border-radius: 4px;
        color: #555;
        text-decoration: none;
        font-weight: bold;
    }
    .social-links a:hover {
        background-color: #ddd;
    }
    .footer-bottom {
        text-align: center;
        font-size: 0.9rem;
        color: #777;
        line-height: 1.6;
    }
    .legal-links {
        margin: 0.7rem 0;
    }
    .legal-links a {
        color: #555;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .disclaimer {
        margin-top: 0.7rem;
        font-style: italic;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    @media (max-width: 768px) {
        .footer-top {
            flex-direction: column;
            gap: 2.5rem;
        }
        .footer-nav ul {
            flex-direction: column;
            gap: 1rem;
        }
    }

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

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

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

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

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

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

.err-slab-c {
        padding: clamp(56px, 10vw, 114px) 20px;
        background: linear-gradient(180deg, var(--bg-accent), var(--bg-page));
        color: var(--fg-on-page);
    }

    .err-slab-c .tile {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 44px);
        background: var(--surface-1);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
        border-top: 8px solid var(--accent);
    }

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

    .err-slab-c p {
        margin: 12px 0 0;
        color: var(--neutral-800);
    }

    .err-slab-c a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 18px;
        border-radius: 999px;
        border: 1px solid var(--neutral-300);
        color: var(--fg-on-page);
        text-decoration: none;
    }