:root {
  --font-family: "Noto Sans", sans-serif;
  --font-size-base: 18.2px;
  --line-height-base: 1.31;

  --max-w: 1300px;
  --space-x: 0.96rem;
  --space-y: 1.35rem;
  --gap: 1.13rem;

  --radius-xl: 1.28rem;
  --radius-lg: 0.87rem;
  --radius-md: 0.64rem;
  --radius-sm: 0.36rem;

  --shadow-sm: 0 2px 6px rgba(0,0,0,0.18);
  --shadow-md: 0 8px 26px rgba(0,0,0,0.23);
  --shadow-lg: 0 18px 60px rgba(0,0,0,0.28);

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

  --brand: #005A34;
  --brand-contrast: #FFFFFF;
  --accent: #0077B6;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F8F9FA;
  --neutral-300: #DEE2E6;
  --neutral-600: #6C757D;
  --neutral-800: #343A40;
  --neutral-900: #212529;

  --bg-page: #F0F8F5;
  --fg-on-page: #1A2C21;

  --bg-alt: #E8F4EF;
  --fg-on-alt: #1A2C21;

  --surface-1: #FFFFFF;
  --surface-2: #F8F9FA;
  --fg-on-surface: #212529;
  --border-on-surface: #DEE2E6;

  --surface-light: rgba(255, 255, 255, 0.85);
  --fg-on-surface-light: #212529;
  --border-on-surface-light: rgba(222, 226, 230, 0.7);

  --bg-primary: #005A34;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #004427;
  --ring: #0077B6;

  --bg-accent: #E6F2FF;
  --fg-on-accent: #003554;
  --bg-accent-hover: #0096C7;

  --link: #005A34;
  --link-hover: #003D24;

  --gradient-hero: linear-gradient(135deg, #005A34 0%, #0077B6 100%);
  --gradient-accent: linear-gradient(90deg, #E6F2FF 0%, #E8F4EF 100%);

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

.site-header {
        background-color: var(--surface-1);
        border-bottom: 1px solid var(--border-on-surface);
        position: sticky;
        top: 0;
        z-index: 1000;
        padding: var(--space-y) 0;
    }

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

    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--fg-on-surface);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .main-nav {
        display: flex;
        align-items: center;
    }

    .nav-list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: calc(var(--gap) * 2);
    }

    .nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: 0.5rem 0;
        position: relative;
        transition: color var(--anim-duration) var(--anim-ease);
    }

    .nav-link:hover,
    .nav-link:focus {
        color: var(--link-hover);
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--brand);
        transition: width var(--anim-duration) var(--anim-ease);
    }

    .nav-link:hover::after {
        width: 100%;
    }

    .cta-button {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: 0.75rem 1.75rem;
        border-radius: var(--radius-lg);
        text-decoration: none;
        font-weight: 600;
        white-space: nowrap;
        transition: background-color var(--anim-duration) var(--anim-ease);
        border: none;
        cursor: pointer;
        display: inline-block;
    }

    .cta-button:hover,
    .cta-button:focus {
        background-color: var(--bg-primary-hover);
    }

    .burger-menu {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .burger-line {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

    /* Estado activo del menú burger */
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }

    /* Responsive: Mobile */
    @media (max-width: 767px) {
        .burger-menu {
            display: flex;
        }

        .main-nav {
            position: fixed;
            top: 0;
            right: 0;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: var(--surface-2);
            padding: 6rem 2rem 2rem;
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            box-shadow: var(--shadow-lg);
            z-index: 1000;
        }

        .main-nav.is-active {
            transform: translateX(0);
        }

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

        .nav-link {
            font-size: calc(var(--font-size-base) * 1.1);
            padding: 0.75rem 0;
            display: block;
        }

        .nav-link::after {
            display: none;
        }

        .cta-button {
            display: none;
        }

        /* Overlay cuando el menú está abierto */
        .main-nav::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: var(--overlay);
            z-index: -1;
            opacity: 0;
            pointer-events: none;
            transition: opacity var(--anim-duration) var(--anim-ease);
        }

        .main-nav.is-active::before {
            opacity: 1;
            pointer-events: all;
        }
    }

    /* Responsive: Tablet */
    @media (min-width: 768px) and (max-width: 1023px) {
        .header-container {
            padding: 0 calc(var(--space-x) * 0.75);
        }
        .nav-list {
            gap: var(--gap);
        }
    }

.site-footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 3rem 1rem 1.5rem;
    font-family: 'Segoe UI', system-ui, sans-serif;
    border-top: 4px solid #b8860b;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #333;
  }
  .footer-row:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }
  .footer-brand {
    flex: 1;
    min-width: 250px;
    margin-bottom: 1.5rem;
  }
  .footer-logo {
    font-size: 2rem;
    font-weight: 800;
    color: #f0f0f0;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
  }
  .footer-tagline {
    font-size: 0.95rem;
    color: #aaa;
    max-width: 300px;
  }
  .footer-nav {
    flex: 1;
    min-width: 200px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #fff;
    text-decoration: underline;
  }
  .contact-block, .footer-social {
    flex: 1;
    min-width: 250px;
    margin-bottom: 1.5rem;
  }
  .contact-title, .social-title {
    color: #f0f0f0;
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  .contact-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .contact-block li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
  }
  .contact-block a, .footer-social a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .contact-block a:hover, .footer-social a:hover {
    color: #d4af37;
  }
  .social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-social a {
    background-color: #333;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.9rem;
  }
  .copyright {
    font-size: 0.9rem;
    color: #aaa;
  }
  .legal-links {
    font-size: 0.85rem;
  }
  .legal-links a {
    color: #b8860b;
    text-decoration: none;
    margin: 0 0.3rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.75rem;
    color: #888;
    max-width: 800px;
    line-height: 1.4;
    margin-top: 0.5rem;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      gap: 2rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 1rem;
    }
    .social-links {
      justify-content: flex-start;
    }
  }

.nfcookie-v7 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
        padding: calc(var(--space-y) * .9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .nfcookie-v7__text strong {display: block; margin-bottom: 4px;}
    .nfcookie-v7__text p {margin: 0; opacity: .95;}

    .nfcookie-v7__actions {display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end;}

    .nfcookie-v7__actions button {
        border: 1px solid rgba(255,255,255,.35);
        background: rgba(255,255,255,.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v7__actions button[data-choice='accept'] {
        background: var(--fg-on-primary);
        color: var(--accent);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v7__wrap {grid-template-columns: 1fr;}
        .nfcookie-v7__actions {justify-content: flex-start;}
    }

.intro-banner-c5 {
        padding: clamp(4rem, 9vw, 7rem) var(--space-x);
        background: linear-gradient(120deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

    .intro-banner-c5__wrap {
        max-width: 62rem;
        margin: 0 auto;
        text-align: center;
    }

    .intro-banner-c5__over {
        display: inline-flex;
        padding: .45rem .8rem;
        border-radius: 999px;
        background: var(--chip-bg);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .intro-banner-c5__wrap h1 {
        margin: .8rem 0 0;
        font-size: clamp(2.6rem, 5vw, 4.8rem);
        line-height: 1;
    }

    .intro-banner-c5__sub {
        margin: 1rem auto 0;
        max-width: 40rem;
        color: rgba(255, 255, 255, .88);
    }

    .intro-banner-c5__bar {
        margin-top: 1.25rem;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: .75rem;
    }

    .intro-banner-c5__bar div {
        padding: .85rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
    }

    .intro-banner-c5__cta {
        margin-top: 1rem;
        padding: .9rem 1rem;
        border-radius: var(--radius-md);
        background: rgba(17, 24, 39, .2);
    }

    @media (max-width: 640px) {
        .intro-banner-c5__bar {
            grid-template-columns: 1fr;
        }
    }

.gallery--light-v6 {
    padding: 40px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
}

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

.gallery__title {
    margin: 0 0 12px;
    font-size: clamp(22px,3.5vw,28px);
}

.gallery__strip {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(120px, 1fr);
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.gallery__thumb {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--surface-light);
    border: 1px solid var(--border-on-surface-light);
    min-width: 120px;
}

.gallery__thumb img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    display: block;
}

.nfsocial-v11 {
        padding: clamp(48px, 8vw, 80px) 0;
        background: linear-gradient(145deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

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

    .nfsocial-v11__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: calc(var(--gap) * 2);
        align-items: center;
    }

    .nfsocial-v11__media img {
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        width: 100%;
        display: block;
    }

    .nfsocial-v11__text h2 {
        margin-bottom: var(--space-y);
    }

    .nfsocial-v11__text p {
        margin-bottom: var(--space-y);
        opacity: .92;
    }

    .nfsocial-v11__text a {
        display: inline-block;
        padding: 12px 24px;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    @media (max-width: 840px) {
        .nfsocial-v11__grid {
            grid-template-columns: 1fr;
        }
    }

.next-strip-l2 {
        padding: clamp(3rem, 7vw, 5.6rem) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .next-strip-l2__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        align-items: end;
        flex-wrap: wrap;
    }

    .next-strip-l2__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

    .next-strip-l2__wrap h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .next-strip-l2__wrap a {
        display: inline-flex;
        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;
    }

    .next-strip-l2__actions {
        max-width: var(--max-w);
        margin: 1rem auto 0;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
        gap: .75rem;
    }

    .next-strip-l2__actions a {
        display: block;
        padding: .95rem;
        border-radius: var(--radius-lg);
        background: var(--bg-alt);
        border: 1px solid var(--border-on-surface-light);
        text-decoration: none;
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .next-strip-l2__actions span {
        display: block;
        margin-top: .35rem;
        color: var(--neutral-600);
    }

    .next-strip-l2 {
        overflow: hidden;
    }

    .next-strip-l2__wrap {
        background-image: linear-gradient(rgba(255, 255, 255, .86), rgba(255, 255, 255, .86)), url('https://images.pexels.com/photos/259447/pexels-photo-259447.jpeg?auto=compress&cs=tinysrgb&w=800');
        color: black;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        border-radius: var(--radius-xl);
        overflow: hidden;
        padding: var(--gap);
        box-shadow: var(--shadow-sm)
    }

.site-header {
        background-color: var(--surface-1);
        border-bottom: 1px solid var(--border-on-surface);
        position: sticky;
        top: 0;
        z-index: 1000;
        padding: var(--space-y) 0;
    }

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

    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--fg-on-surface);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .main-nav {
        display: flex;
        align-items: center;
    }

    .nav-list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: calc(var(--gap) * 2);
    }

    .nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: 0.5rem 0;
        position: relative;
        transition: color var(--anim-duration) var(--anim-ease);
    }

    .nav-link:hover,
    .nav-link:focus {
        color: var(--link-hover);
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--brand);
        transition: width var(--anim-duration) var(--anim-ease);
    }

    .nav-link:hover::after {
        width: 100%;
    }

    .cta-button {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: 0.75rem 1.75rem;
        border-radius: var(--radius-lg);
        text-decoration: none;
        font-weight: 600;
        white-space: nowrap;
        transition: background-color var(--anim-duration) var(--anim-ease);
        border: none;
        cursor: pointer;
        display: inline-block;
    }

    .cta-button:hover,
    .cta-button:focus {
        background-color: var(--bg-primary-hover);
    }

    .burger-menu {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .burger-line {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

    /* Estado activo del menú burger */
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }

    /* Responsive: Mobile */
    @media (max-width: 767px) {
        .burger-menu {
            display: flex;
        }

        .main-nav {
            position: fixed;
            top: 0;
            right: 0;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: var(--surface-2);
            padding: 6rem 2rem 2rem;
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            box-shadow: var(--shadow-lg);
            z-index: 1000;
        }

        .main-nav.is-active {
            transform: translateX(0);
        }

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

        .nav-link {
            font-size: calc(var(--font-size-base) * 1.1);
            padding: 0.75rem 0;
            display: block;
        }

        .nav-link::after {
            display: none;
        }

        .cta-button {
            display: none;
        }

        /* Overlay cuando el menú está abierto */
        .main-nav::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: var(--overlay);
            z-index: -1;
            opacity: 0;
            pointer-events: none;
            transition: opacity var(--anim-duration) var(--anim-ease);
        }

        .main-nav.is-active::before {
            opacity: 1;
            pointer-events: all;
        }
    }

    /* Responsive: Tablet */
    @media (min-width: 768px) and (max-width: 1023px) {
        .header-container {
            padding: 0 calc(var(--space-x) * 0.75);
        }
        .nav-list {
            gap: var(--gap);
        }
    }

.site-footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 3rem 1rem 1.5rem;
    font-family: 'Segoe UI', system-ui, sans-serif;
    border-top: 4px solid #b8860b;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #333;
  }
  .footer-row:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }
  .footer-brand {
    flex: 1;
    min-width: 250px;
    margin-bottom: 1.5rem;
  }
  .footer-logo {
    font-size: 2rem;
    font-weight: 800;
    color: #f0f0f0;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
  }
  .footer-tagline {
    font-size: 0.95rem;
    color: #aaa;
    max-width: 300px;
  }
  .footer-nav {
    flex: 1;
    min-width: 200px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #fff;
    text-decoration: underline;
  }
  .contact-block, .footer-social {
    flex: 1;
    min-width: 250px;
    margin-bottom: 1.5rem;
  }
  .contact-title, .social-title {
    color: #f0f0f0;
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  .contact-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .contact-block li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
  }
  .contact-block a, .footer-social a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .contact-block a:hover, .footer-social a:hover {
    color: #d4af37;
  }
  .social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-social a {
    background-color: #333;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.9rem;
  }
  .copyright {
    font-size: 0.9rem;
    color: #aaa;
  }
  .legal-links {
    font-size: 0.85rem;
  }
  .legal-links a {
    color: #b8860b;
    text-decoration: none;
    margin: 0 0.3rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.75rem;
    color: #888;
    max-width: 800px;
    line-height: 1.4;
    margin-top: 0.5rem;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      gap: 2rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 1rem;
    }
    .social-links {
      justify-content: flex-start;
    }
  }

.nfcookie-v7 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
        padding: calc(var(--space-y) * .9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .nfcookie-v7__text strong {display: block; margin-bottom: 4px;}
    .nfcookie-v7__text p {margin: 0; opacity: .95;}

    .nfcookie-v7__actions {display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end;}

    .nfcookie-v7__actions button {
        border: 1px solid rgba(255,255,255,.35);
        background: rgba(255,255,255,.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v7__actions button[data-choice='accept'] {
        background: var(--fg-on-primary);
        color: var(--accent);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v7__wrap {grid-template-columns: 1fr;}
        .nfcookie-v7__actions {justify-content: flex-start;}
    }

.project-list {

        color: var(--fg-on-primary);
        background: var(--gradient-hero);
        padding: clamp(16px, 3vw, 40px);
    }

    .project-list .project-list__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .project-list .project-list__h {
        text-align: center;
        margin-bottom: var(--space-y);
    }

    .project-list h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.5rem;
        color: var(--fg-on-primary);
    }

    .project-list .project-list__filters {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
        margin-bottom: var(--space-y);
        justify-content: center;
    }

    .project-list .project-list__filter {
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);
        background: var(--fg-on-page);
        color: var(--bg-page);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .project-list .project-list__filter:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary) fff;
        border-color: var(--bg-primary);
    }

    .project-list .project-list__grid {
        display: grid;
        gap: var(--space-x);
    }

    @media (min-width: 768px) {
        .project-list .project-list__grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }

    @media (min-width: 1024px) {
        .project-list .project-list__grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }
    }

    .project-list .project-list__card {
        background: var(--surface-light);
        border: 1px solid var(--ring);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-sm);
        transition: transform var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    }

    .project-list .project-list__card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

    .project-list .project-list__image img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

    .project-list .project-list__content {
        padding: clamp(16px, 2vw, 24px);
    }

    .project-list h3 {
        margin: 0 0 0.5rem;
        font-size: clamp(18px, 2.2vw, 22px);
    }

    .project-list h3 a {
        color: var(--fg-on-primary);
        text-decoration: none;
    }

    .project-list h3 a:hover {
        color: var(--bg-primary);
    }

    .project-list p {
            color: var(--neutral-600);
        margin: 0.5rem 0 1rem;
    }

    .project-list .project-list__tags {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .project-list .project-list__tag {
        padding: 0.25rem 0.75rem;
        border-radius: var(--radius-sm);
        background: var(--fg-on-page);
        color: var(--bg-page);
        font-size: 0.875rem;
    }

.index-recommendations-light {
        background: var(--bg-page);
        color: var(--fg-on-page);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
    }

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

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

        transform: translateY(-18px);
    }

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

    .index-recommendations-light__h p {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .index-recommendations-light__card {
        border-radius: var(--radius-xl);
        background: var(--surface-light);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-md);
        padding: clamp(18px, 3vw, 26px);

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

    .index-recommendations-light__card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 20% 15%, rgba(248, 225, 231, 0.45), transparent 55%);
        pointer-events: none;
    }

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

    .index-recommendations-light__card p {
        margin: 0 0 14px;
        position: relative;
        z-index: 1;
        color: var(--fg-on-surface-light);
        font-size: 14px;
        line-height: 1.65;
    }

    .index-recommendations-light__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-light__cta::after {
        content: '->';
        font-size: 12px;
    }

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

.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__content {
        padding: clamp(32px, 5vw, 40px);
    }

    .partners .partners__card {
        background: var(--surface-1);
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface);
        text-align: center;
    }

    .partners .partners__logo {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 300px;

    }

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

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

.site-header {
        background-color: var(--surface-1);
        border-bottom: 1px solid var(--border-on-surface);
        position: sticky;
        top: 0;
        z-index: 1000;
        padding: var(--space-y) 0;
    }

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

    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--fg-on-surface);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .main-nav {
        display: flex;
        align-items: center;
    }

    .nav-list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: calc(var(--gap) * 2);
    }

    .nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: 0.5rem 0;
        position: relative;
        transition: color var(--anim-duration) var(--anim-ease);
    }

    .nav-link:hover,
    .nav-link:focus {
        color: var(--link-hover);
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--brand);
        transition: width var(--anim-duration) var(--anim-ease);
    }

    .nav-link:hover::after {
        width: 100%;
    }

    .cta-button {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: 0.75rem 1.75rem;
        border-radius: var(--radius-lg);
        text-decoration: none;
        font-weight: 600;
        white-space: nowrap;
        transition: background-color var(--anim-duration) var(--anim-ease);
        border: none;
        cursor: pointer;
        display: inline-block;
    }

    .cta-button:hover,
    .cta-button:focus {
        background-color: var(--bg-primary-hover);
    }

    .burger-menu {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .burger-line {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

    /* Estado activo del menú burger */
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }

    /* Responsive: Mobile */
    @media (max-width: 767px) {
        .burger-menu {
            display: flex;
        }

        .main-nav {
            position: fixed;
            top: 0;
            right: 0;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: var(--surface-2);
            padding: 6rem 2rem 2rem;
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            box-shadow: var(--shadow-lg);
            z-index: 1000;
        }

        .main-nav.is-active {
            transform: translateX(0);
        }

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

        .nav-link {
            font-size: calc(var(--font-size-base) * 1.1);
            padding: 0.75rem 0;
            display: block;
        }

        .nav-link::after {
            display: none;
        }

        .cta-button {
            display: none;
        }

        /* Overlay cuando el menú está abierto */
        .main-nav::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: var(--overlay);
            z-index: -1;
            opacity: 0;
            pointer-events: none;
            transition: opacity var(--anim-duration) var(--anim-ease);
        }

        .main-nav.is-active::before {
            opacity: 1;
            pointer-events: all;
        }
    }

    /* Responsive: Tablet */
    @media (min-width: 768px) and (max-width: 1023px) {
        .header-container {
            padding: 0 calc(var(--space-x) * 0.75);
        }
        .nav-list {
            gap: var(--gap);
        }
    }

.site-footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 3rem 1rem 1.5rem;
    font-family: 'Segoe UI', system-ui, sans-serif;
    border-top: 4px solid #b8860b;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #333;
  }
  .footer-row:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }
  .footer-brand {
    flex: 1;
    min-width: 250px;
    margin-bottom: 1.5rem;
  }
  .footer-logo {
    font-size: 2rem;
    font-weight: 800;
    color: #f0f0f0;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
  }
  .footer-tagline {
    font-size: 0.95rem;
    color: #aaa;
    max-width: 300px;
  }
  .footer-nav {
    flex: 1;
    min-width: 200px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #fff;
    text-decoration: underline;
  }
  .contact-block, .footer-social {
    flex: 1;
    min-width: 250px;
    margin-bottom: 1.5rem;
  }
  .contact-title, .social-title {
    color: #f0f0f0;
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  .contact-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .contact-block li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
  }
  .contact-block a, .footer-social a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .contact-block a:hover, .footer-social a:hover {
    color: #d4af37;
  }
  .social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-social a {
    background-color: #333;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.9rem;
  }
  .copyright {
    font-size: 0.9rem;
    color: #aaa;
  }
  .legal-links {
    font-size: 0.85rem;
  }
  .legal-links a {
    color: #b8860b;
    text-decoration: none;
    margin: 0 0.3rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.75rem;
    color: #888;
    max-width: 800px;
    line-height: 1.4;
    margin-top: 0.5rem;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      gap: 2rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 1rem;
    }
    .social-links {
      justify-content: flex-start;
    }
  }

.nfcookie-v7 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
        padding: calc(var(--space-y) * .9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .nfcookie-v7__text strong {display: block; margin-bottom: 4px;}
    .nfcookie-v7__text p {margin: 0; opacity: .95;}

    .nfcookie-v7__actions {display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end;}

    .nfcookie-v7__actions button {
        border: 1px solid rgba(255,255,255,.35);
        background: rgba(255,255,255,.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v7__actions button[data-choice='accept'] {
        background: var(--fg-on-primary);
        color: var(--accent);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v7__wrap {grid-template-columns: 1fr;}
        .nfcookie-v7__actions {justify-content: flex-start;}
    }

.project-item--colored-v5 {
    padding: 56px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

.project-item__inner {
    max-width: 720px;
    margin: 0 auto;
}

.project-item__card {
    border-radius: var(--radius-xl);
    padding: 20px 22px;
    background: rgba(15,23,42,0.98);
    border: 1px solid rgba(148,163,184,0.75);
}

.project-item__header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: baseline;
}

.project-item__header h1 {
    margin: 0;
    font-size: clamp(24px,4vw,32px);
    color: var(--brand-contrast);
}

.project-item__tag {
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    font-size: 0.8rem;
}

.project-item__meta {
    margin: 8px 0 8px;
    font-size: 0.9rem;
    color: var(--neutral-300);
}

.project-item__desc {
    margin: 0;
    font-size: 0.95rem;
    color: var(--neutral-200);
    line-height: 1.7;
}

.site-header {
        background-color: var(--surface-1);
        border-bottom: 1px solid var(--border-on-surface);
        position: sticky;
        top: 0;
        z-index: 1000;
        padding: var(--space-y) 0;
    }

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

    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--fg-on-surface);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .main-nav {
        display: flex;
        align-items: center;
    }

    .nav-list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: calc(var(--gap) * 2);
    }

    .nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: 0.5rem 0;
        position: relative;
        transition: color var(--anim-duration) var(--anim-ease);
    }

    .nav-link:hover,
    .nav-link:focus {
        color: var(--link-hover);
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--brand);
        transition: width var(--anim-duration) var(--anim-ease);
    }

    .nav-link:hover::after {
        width: 100%;
    }

    .cta-button {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: 0.75rem 1.75rem;
        border-radius: var(--radius-lg);
        text-decoration: none;
        font-weight: 600;
        white-space: nowrap;
        transition: background-color var(--anim-duration) var(--anim-ease);
        border: none;
        cursor: pointer;
        display: inline-block;
    }

    .cta-button:hover,
    .cta-button:focus {
        background-color: var(--bg-primary-hover);
    }

    .burger-menu {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .burger-line {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

    /* Estado activo del menú burger */
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }

    /* Responsive: Mobile */
    @media (max-width: 767px) {
        .burger-menu {
            display: flex;
        }

        .main-nav {
            position: fixed;
            top: 0;
            right: 0;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: var(--surface-2);
            padding: 6rem 2rem 2rem;
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            box-shadow: var(--shadow-lg);
            z-index: 1000;
        }

        .main-nav.is-active {
            transform: translateX(0);
        }

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

        .nav-link {
            font-size: calc(var(--font-size-base) * 1.1);
            padding: 0.75rem 0;
            display: block;
        }

        .nav-link::after {
            display: none;
        }

        .cta-button {
            display: none;
        }

        /* Overlay cuando el menú está abierto */
        .main-nav::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: var(--overlay);
            z-index: -1;
            opacity: 0;
            pointer-events: none;
            transition: opacity var(--anim-duration) var(--anim-ease);
        }

        .main-nav.is-active::before {
            opacity: 1;
            pointer-events: all;
        }
    }

    /* Responsive: Tablet */
    @media (min-width: 768px) and (max-width: 1023px) {
        .header-container {
            padding: 0 calc(var(--space-x) * 0.75);
        }
        .nav-list {
            gap: var(--gap);
        }
    }

.site-footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 3rem 1rem 1.5rem;
    font-family: 'Segoe UI', system-ui, sans-serif;
    border-top: 4px solid #b8860b;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #333;
  }
  .footer-row:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }
  .footer-brand {
    flex: 1;
    min-width: 250px;
    margin-bottom: 1.5rem;
  }
  .footer-logo {
    font-size: 2rem;
    font-weight: 800;
    color: #f0f0f0;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
  }
  .footer-tagline {
    font-size: 0.95rem;
    color: #aaa;
    max-width: 300px;
  }
  .footer-nav {
    flex: 1;
    min-width: 200px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #fff;
    text-decoration: underline;
  }
  .contact-block, .footer-social {
    flex: 1;
    min-width: 250px;
    margin-bottom: 1.5rem;
  }
  .contact-title, .social-title {
    color: #f0f0f0;
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  .contact-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .contact-block li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
  }
  .contact-block a, .footer-social a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .contact-block a:hover, .footer-social a:hover {
    color: #d4af37;
  }
  .social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-social a {
    background-color: #333;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.9rem;
  }
  .copyright {
    font-size: 0.9rem;
    color: #aaa;
  }
  .legal-links {
    font-size: 0.85rem;
  }
  .legal-links a {
    color: #b8860b;
    text-decoration: none;
    margin: 0 0.3rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.75rem;
    color: #888;
    max-width: 800px;
    line-height: 1.4;
    margin-top: 0.5rem;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      gap: 2rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 1rem;
    }
    .social-links {
      justify-content: flex-start;
    }
  }

.nfcookie-v7 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
        padding: calc(var(--space-y) * .9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .nfcookie-v7__text strong {display: block; margin-bottom: 4px;}
    .nfcookie-v7__text p {margin: 0; opacity: .95;}

    .nfcookie-v7__actions {display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end;}

    .nfcookie-v7__actions button {
        border: 1px solid rgba(255,255,255,.35);
        background: rgba(255,255,255,.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v7__actions button[data-choice='accept'] {
        background: var(--fg-on-primary);
        color: var(--accent);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v7__wrap {grid-template-columns: 1fr;}
        .nfcookie-v7__actions {justify-content: flex-start;}
    }

.article-content-section {
    padding: clamp(48px, 8vw, 80px) 0;
}

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

.article-content-section__content {
    max-width: 800px;
    margin: 0 auto;
}

.article-content-section__content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--fg-on-page);
}

.article-content-section__content p {
    max-width: 100%;
    margin-bottom: 1.5rem;
    color: var(--neutral-600);
}

.article-content-section__content ul,
.article-content-section__content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    color: var(--neutral-600);
}

.article-content-section__content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.article-content-section__callout {
    margin-top: 2rem;
    padding: clamp(16px, 3vw, 24px);
    background-color: var(--bg-alt);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-on-surface);
}

.article-content-section__callout p {
    margin: 0;
    color: var(--fg-on-alt);
}

.article-content-section__actions {
    margin-top: 2rem;
    text-align: center;
}

.article-content-section__btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--radius-md);
    font-weight: 500;
    text-align: center;
    transition: all var(--anim-duration) var(--anim-ease);
    cursor: pointer;
    border: 1px solid var(--bg-primary);
    font-size: 1rem;
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

.article-content-section__btn:hover {
    background-color: var(--bg-primary-hover);
    border-color: var(--bg-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.site-header {
        background-color: var(--surface-1);
        border-bottom: 1px solid var(--border-on-surface);
        position: sticky;
        top: 0;
        z-index: 1000;
        padding: var(--space-y) 0;
    }

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

    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--fg-on-surface);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .main-nav {
        display: flex;
        align-items: center;
    }

    .nav-list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: calc(var(--gap) * 2);
    }

    .nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: 0.5rem 0;
        position: relative;
        transition: color var(--anim-duration) var(--anim-ease);
    }

    .nav-link:hover,
    .nav-link:focus {
        color: var(--link-hover);
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--brand);
        transition: width var(--anim-duration) var(--anim-ease);
    }

    .nav-link:hover::after {
        width: 100%;
    }

    .cta-button {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: 0.75rem 1.75rem;
        border-radius: var(--radius-lg);
        text-decoration: none;
        font-weight: 600;
        white-space: nowrap;
        transition: background-color var(--anim-duration) var(--anim-ease);
        border: none;
        cursor: pointer;
        display: inline-block;
    }

    .cta-button:hover,
    .cta-button:focus {
        background-color: var(--bg-primary-hover);
    }

    .burger-menu {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .burger-line {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

    /* Estado activo del menú burger */
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }

    /* Responsive: Mobile */
    @media (max-width: 767px) {
        .burger-menu {
            display: flex;
        }

        .main-nav {
            position: fixed;
            top: 0;
            right: 0;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: var(--surface-2);
            padding: 6rem 2rem 2rem;
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            box-shadow: var(--shadow-lg);
            z-index: 1000;
        }

        .main-nav.is-active {
            transform: translateX(0);
        }

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

        .nav-link {
            font-size: calc(var(--font-size-base) * 1.1);
            padding: 0.75rem 0;
            display: block;
        }

        .nav-link::after {
            display: none;
        }

        .cta-button {
            display: none;
        }

        /* Overlay cuando el menú está abierto */
        .main-nav::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: var(--overlay);
            z-index: -1;
            opacity: 0;
            pointer-events: none;
            transition: opacity var(--anim-duration) var(--anim-ease);
        }

        .main-nav.is-active::before {
            opacity: 1;
            pointer-events: all;
        }
    }

    /* Responsive: Tablet */
    @media (min-width: 768px) and (max-width: 1023px) {
        .header-container {
            padding: 0 calc(var(--space-x) * 0.75);
        }
        .nav-list {
            gap: var(--gap);
        }
    }

.site-footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 3rem 1rem 1.5rem;
    font-family: 'Segoe UI', system-ui, sans-serif;
    border-top: 4px solid #b8860b;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #333;
  }
  .footer-row:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }
  .footer-brand {
    flex: 1;
    min-width: 250px;
    margin-bottom: 1.5rem;
  }
  .footer-logo {
    font-size: 2rem;
    font-weight: 800;
    color: #f0f0f0;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
  }
  .footer-tagline {
    font-size: 0.95rem;
    color: #aaa;
    max-width: 300px;
  }
  .footer-nav {
    flex: 1;
    min-width: 200px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #fff;
    text-decoration: underline;
  }
  .contact-block, .footer-social {
    flex: 1;
    min-width: 250px;
    margin-bottom: 1.5rem;
  }
  .contact-title, .social-title {
    color: #f0f0f0;
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  .contact-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .contact-block li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
  }
  .contact-block a, .footer-social a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .contact-block a:hover, .footer-social a:hover {
    color: #d4af37;
  }
  .social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-social a {
    background-color: #333;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.9rem;
  }
  .copyright {
    font-size: 0.9rem;
    color: #aaa;
  }
  .legal-links {
    font-size: 0.85rem;
  }
  .legal-links a {
    color: #b8860b;
    text-decoration: none;
    margin: 0 0.3rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.75rem;
    color: #888;
    max-width: 800px;
    line-height: 1.4;
    margin-top: 0.5rem;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      gap: 2rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 1rem;
    }
    .social-links {
      justify-content: flex-start;
    }
  }

.nfcookie-v7 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
        padding: calc(var(--space-y) * .9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .nfcookie-v7__text strong {display: block; margin-bottom: 4px;}
    .nfcookie-v7__text p {margin: 0; opacity: .95;}

    .nfcookie-v7__actions {display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end;}

    .nfcookie-v7__actions button {
        border: 1px solid rgba(255,255,255,.35);
        background: rgba(255,255,255,.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v7__actions button[data-choice='accept'] {
        background: var(--fg-on-primary);
        color: var(--accent);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v7__wrap {grid-template-columns: 1fr;}
        .nfcookie-v7__actions {justify-content: flex-start;}
    }

.project-item--colored-v5 {
    padding: 56px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

.project-item__inner {
    max-width: 720px;
    margin: 0 auto;
}

.project-item__card {
    border-radius: var(--radius-xl);
    padding: 20px 22px;
    background: rgba(15,23,42,0.98);
    border: 1px solid rgba(148,163,184,0.75);
}

.project-item__header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: baseline;
}

.project-item__header h1 {
    margin: 0;
    font-size: clamp(24px,4vw,32px);
    color: var(--brand-contrast);
}

.project-item__tag {
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    font-size: 0.8rem;
}

.project-item__meta {
    margin: 8px 0 8px;
    font-size: 0.9rem;
    color: var(--neutral-300);
}

.project-item__desc {
    margin: 0;
    font-size: 0.95rem;
    color: var(--neutral-200);
    line-height: 1.7;
}

.index-feedback-summary {
        background: var(--bg-page);
        color: var(--fg-on-page);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
    }

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

    .index-feedback-summary__h {
        text-align: center;
        margin-bottom: clamp(22px, 5vw, 44px);
        transform: translateY(-18px);
    }

    .index-feedback-summary__h h2 {
        margin: 0 0 10px;
        font-size: clamp(26px, 4.4vw, 44px);
        letter-spacing: -0.02em;
    }

    .index-feedback-summary__h p {
        margin: 0;
        color: var(--neutral-600);
    }

    .index-feedback-summary__layout {
        display: grid;
        grid-template-columns: minmax(260px, 340px) 1fr;
        gap: clamp(16px, 3vw, 28px);
        align-items: start;
    }

    .index-feedback-summary__panel {
        border-radius: var(--radius-xl);
        background: var(--bg-accent);
        border: 1px solid var(--border-on-surface);
        padding: clamp(18px, 3vw, 26px);
        box-shadow: var(--shadow-md);

        transform: translateY(22px);
        position: sticky;
        top: 16px;
    }

    .index-feedback-summary__kpi {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 14px;
    }

    .index-feedback-summary__avg {
        width: 72px;
        height: 72px;
        border-radius: 22px;
        background: var(--bg-page);
        border: 1px solid var(--border-on-surface);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 900;
        font-size: 22px;
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .index-feedback-summary__stars {
        color: var(--accent);
        letter-spacing: 0.08em;
        font-size: 14px;
        line-height: 1;
        margin-bottom: 6px;
    }

    .index-feedback-summary__count {
        font-size: 12px;
        color: var(--neutral-600);
        text-transform: uppercase;
        letter-spacing: 0.18em;
    }

    .index-feedback-summary__note {
        color: var(--fg-on-accent);
        font-size: 14px;
    }

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

    .index-feedback-summary__card {
        border-radius: var(--radius-xl);
        background: var(--surface-light);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-sm);
        padding: 18px 18px 16px;

        transform: translateY(22px);
    }

    .index-feedback-summary__head {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 12px;
    }

    .index-feedback-summary__who {
        display: flex;
        align-items: center;
        gap: 10px;
        min-width: 0;
    }

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

    .index-feedback-summary__who h3 {
        margin: 0;
        font-size: 14px;
        font-weight: 900;
        color: var(--fg-on-page);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 18ch;
    }

    .index-feedback-summary__who p {
        margin: 2px 0 0;
        font-size: 12px;
        color: var(--neutral-600);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 24ch;
    }

    .index-feedback-summary__chip {
        flex: 0 0 auto;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--bg-primary);
        border: 1px solid var(--ring);
        color: var(--fg-on-primary);
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: 0.16em;
        white-space: nowrap;
    }

    .index-feedback-summary__quote {
        margin: 0;
        color: var(--fg-on-surface-light);
        font-size: 14px;
        line-height: 1.65;
    }

    @media (max-width: 860px) {
        .index-feedback-summary__layout {
            grid-template-columns: 1fr;
        }

        .index-feedback-summary__panel {
            position: relative;
            top: 0;
        }
    }

.site-header {
        background-color: var(--surface-1);
        border-bottom: 1px solid var(--border-on-surface);
        position: sticky;
        top: 0;
        z-index: 1000;
        padding: var(--space-y) 0;
    }

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

    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--fg-on-surface);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .main-nav {
        display: flex;
        align-items: center;
    }

    .nav-list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: calc(var(--gap) * 2);
    }

    .nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: 0.5rem 0;
        position: relative;
        transition: color var(--anim-duration) var(--anim-ease);
    }

    .nav-link:hover,
    .nav-link:focus {
        color: var(--link-hover);
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--brand);
        transition: width var(--anim-duration) var(--anim-ease);
    }

    .nav-link:hover::after {
        width: 100%;
    }

    .cta-button {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: 0.75rem 1.75rem;
        border-radius: var(--radius-lg);
        text-decoration: none;
        font-weight: 600;
        white-space: nowrap;
        transition: background-color var(--anim-duration) var(--anim-ease);
        border: none;
        cursor: pointer;
        display: inline-block;
    }

    .cta-button:hover,
    .cta-button:focus {
        background-color: var(--bg-primary-hover);
    }

    .burger-menu {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .burger-line {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

    /* Estado activo del menú burger */
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }

    /* Responsive: Mobile */
    @media (max-width: 767px) {
        .burger-menu {
            display: flex;
        }

        .main-nav {
            position: fixed;
            top: 0;
            right: 0;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: var(--surface-2);
            padding: 6rem 2rem 2rem;
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            box-shadow: var(--shadow-lg);
            z-index: 1000;
        }

        .main-nav.is-active {
            transform: translateX(0);
        }

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

        .nav-link {
            font-size: calc(var(--font-size-base) * 1.1);
            padding: 0.75rem 0;
            display: block;
        }

        .nav-link::after {
            display: none;
        }

        .cta-button {
            display: none;
        }

        /* Overlay cuando el menú está abierto */
        .main-nav::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: var(--overlay);
            z-index: -1;
            opacity: 0;
            pointer-events: none;
            transition: opacity var(--anim-duration) var(--anim-ease);
        }

        .main-nav.is-active::before {
            opacity: 1;
            pointer-events: all;
        }
    }

    /* Responsive: Tablet */
    @media (min-width: 768px) and (max-width: 1023px) {
        .header-container {
            padding: 0 calc(var(--space-x) * 0.75);
        }
        .nav-list {
            gap: var(--gap);
        }
    }

.site-footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 3rem 1rem 1.5rem;
    font-family: 'Segoe UI', system-ui, sans-serif;
    border-top: 4px solid #b8860b;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #333;
  }
  .footer-row:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }
  .footer-brand {
    flex: 1;
    min-width: 250px;
    margin-bottom: 1.5rem;
  }
  .footer-logo {
    font-size: 2rem;
    font-weight: 800;
    color: #f0f0f0;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
  }
  .footer-tagline {
    font-size: 0.95rem;
    color: #aaa;
    max-width: 300px;
  }
  .footer-nav {
    flex: 1;
    min-width: 200px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #fff;
    text-decoration: underline;
  }
  .contact-block, .footer-social {
    flex: 1;
    min-width: 250px;
    margin-bottom: 1.5rem;
  }
  .contact-title, .social-title {
    color: #f0f0f0;
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  .contact-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .contact-block li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
  }
  .contact-block a, .footer-social a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .contact-block a:hover, .footer-social a:hover {
    color: #d4af37;
  }
  .social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-social a {
    background-color: #333;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.9rem;
  }
  .copyright {
    font-size: 0.9rem;
    color: #aaa;
  }
  .legal-links {
    font-size: 0.85rem;
  }
  .legal-links a {
    color: #b8860b;
    text-decoration: none;
    margin: 0 0.3rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.75rem;
    color: #888;
    max-width: 800px;
    line-height: 1.4;
    margin-top: 0.5rem;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      gap: 2rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 1rem;
    }
    .social-links {
      justify-content: flex-start;
    }
  }

.nfcookie-v7 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
        padding: calc(var(--space-y) * .9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .nfcookie-v7__text strong {display: block; margin-bottom: 4px;}
    .nfcookie-v7__text p {margin: 0; opacity: .95;}

    .nfcookie-v7__actions {display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end;}

    .nfcookie-v7__actions button {
        border: 1px solid rgba(255,255,255,.35);
        background: rgba(255,255,255,.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v7__actions button[data-choice='accept'] {
        background: var(--fg-on-primary);
        color: var(--accent);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v7__wrap {grid-template-columns: 1fr;}
        .nfcookie-v7__actions {justify-content: flex-start;}
    }

.story-metrics-c3 {
        padding: clamp(3.6rem, 8vw, 6rem) var(--space-x);
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
    }

    .story-metrics-c3__wrap {
        max-width: 60rem;
        margin: 0 auto;
    }

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

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

    .story-metrics-c3__head span {
        display: block;
        margin-top: .8rem;

    }

    .story-metrics-c3__panel {
        margin-top: 1rem;
        display: grid;
        grid-template-columns: 1.1fr .9fr;
        gap: 1rem;
        padding: 1rem;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .story-metrics-c3__text p {
        margin: 0 0 .75rem;

    }

    .story-metrics-c3__stats {
        display: grid;
        gap: .75rem;
    }

    .story-metrics-c3__stats div {
        padding: .85rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
    }

    .story-metrics-c3__stats span {
        display: block;
        margin-top: .25rem;
        color: rgba(255, 255, 255, .82);
    }

    .story-metrics-c3__button {
        display: inline-flex;
        margin-top: 1rem;
        min-height: 2.85rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        color: var(--fg-on-page);
        text-decoration: none;
    }

    @media (max-width: 820px) {
        .story-metrics-c3__panel {
            grid-template-columns: 1fr;
        }
    }

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

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

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

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

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

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

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

.features__icon--chip {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.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;
}

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

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

    .identity-nv11__hero {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.28);
    }

    .identity-nv11__hero h2 {
        margin: 0;
        font-size: clamp(28px, 4.5vw, 46px);
    }

    .identity-nv11__hero p {
        margin: 8px 0 0;
        opacity: .92;
        max-width: 72ch;
    }

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

    .identity-nv11__copy span {
        display: block;
        margin: 0 0 9px;
        opacity: .92;
    }

    .identity-nv11__list h3 {
        margin: 0 0 9px;
        font-size: 1rem;
    }

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

    .identity-nv11__list li {
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.14);
        padding: 9px 11px;
    }

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

.site-header {
        background-color: var(--surface-1);
        border-bottom: 1px solid var(--border-on-surface);
        position: sticky;
        top: 0;
        z-index: 1000;
        padding: var(--space-y) 0;
    }

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

    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--fg-on-surface);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .main-nav {
        display: flex;
        align-items: center;
    }

    .nav-list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: calc(var(--gap) * 2);
    }

    .nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: 0.5rem 0;
        position: relative;
        transition: color var(--anim-duration) var(--anim-ease);
    }

    .nav-link:hover,
    .nav-link:focus {
        color: var(--link-hover);
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--brand);
        transition: width var(--anim-duration) var(--anim-ease);
    }

    .nav-link:hover::after {
        width: 100%;
    }

    .cta-button {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: 0.75rem 1.75rem;
        border-radius: var(--radius-lg);
        text-decoration: none;
        font-weight: 600;
        white-space: nowrap;
        transition: background-color var(--anim-duration) var(--anim-ease);
        border: none;
        cursor: pointer;
        display: inline-block;
    }

    .cta-button:hover,
    .cta-button:focus {
        background-color: var(--bg-primary-hover);
    }

    .burger-menu {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .burger-line {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

    /* Estado activo del menú burger */
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }

    /* Responsive: Mobile */
    @media (max-width: 767px) {
        .burger-menu {
            display: flex;
        }

        .main-nav {
            position: fixed;
            top: 0;
            right: 0;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: var(--surface-2);
            padding: 6rem 2rem 2rem;
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            box-shadow: var(--shadow-lg);
            z-index: 1000;
        }

        .main-nav.is-active {
            transform: translateX(0);
        }

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

        .nav-link {
            font-size: calc(var(--font-size-base) * 1.1);
            padding: 0.75rem 0;
            display: block;
        }

        .nav-link::after {
            display: none;
        }

        .cta-button {
            display: none;
        }

        /* Overlay cuando el menú está abierto */
        .main-nav::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: var(--overlay);
            z-index: -1;
            opacity: 0;
            pointer-events: none;
            transition: opacity var(--anim-duration) var(--anim-ease);
        }

        .main-nav.is-active::before {
            opacity: 1;
            pointer-events: all;
        }
    }

    /* Responsive: Tablet */
    @media (min-width: 768px) and (max-width: 1023px) {
        .header-container {
            padding: 0 calc(var(--space-x) * 0.75);
        }
        .nav-list {
            gap: var(--gap);
        }
    }

.site-footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 3rem 1rem 1.5rem;
    font-family: 'Segoe UI', system-ui, sans-serif;
    border-top: 4px solid #b8860b;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #333;
  }
  .footer-row:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }
  .footer-brand {
    flex: 1;
    min-width: 250px;
    margin-bottom: 1.5rem;
  }
  .footer-logo {
    font-size: 2rem;
    font-weight: 800;
    color: #f0f0f0;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
  }
  .footer-tagline {
    font-size: 0.95rem;
    color: #aaa;
    max-width: 300px;
  }
  .footer-nav {
    flex: 1;
    min-width: 200px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #fff;
    text-decoration: underline;
  }
  .contact-block, .footer-social {
    flex: 1;
    min-width: 250px;
    margin-bottom: 1.5rem;
  }
  .contact-title, .social-title {
    color: #f0f0f0;
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  .contact-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .contact-block li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
  }
  .contact-block a, .footer-social a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .contact-block a:hover, .footer-social a:hover {
    color: #d4af37;
  }
  .social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-social a {
    background-color: #333;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.9rem;
  }
  .copyright {
    font-size: 0.9rem;
    color: #aaa;
  }
  .legal-links {
    font-size: 0.85rem;
  }
  .legal-links a {
    color: #b8860b;
    text-decoration: none;
    margin: 0 0.3rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.75rem;
    color: #888;
    max-width: 800px;
    line-height: 1.4;
    margin-top: 0.5rem;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      gap: 2rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 1rem;
    }
    .social-links {
      justify-content: flex-start;
    }
  }

.nfcookie-v7 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
        padding: calc(var(--space-y) * .9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .nfcookie-v7__text strong {display: block; margin-bottom: 4px;}
    .nfcookie-v7__text p {margin: 0; opacity: .95;}

    .nfcookie-v7__actions {display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end;}

    .nfcookie-v7__actions button {
        border: 1px solid rgba(255,255,255,.35);
        background: rgba(255,255,255,.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v7__actions button[data-choice='accept'] {
        background: var(--fg-on-primary);
        color: var(--accent);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v7__wrap {grid-template-columns: 1fr;}
        .nfcookie-v7__actions {justify-content: flex-start;}
    }

.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);
    }

.nfform-v10 {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .nfform-v10__form {
        max-width: 760px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        padding: 16px;
        display: grid;
        gap: 10px;
    }

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

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

    .nfform-v10__steps {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .nfform-v10__steps span {
        padding: 4px 8px;
        border-radius: var(--radius-sm);
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
        color: var(--neutral-600);
        font-size: .85rem;
    }

    .nfform-v10 label {
        display: grid;
        gap: 6px;
    }

    .nfform-v10 label strong {
        color: var(--neutral-800);
        font-size: .9rem;
    }

    .nfform-v10 input {
        width: 100%;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 9px;
        font: inherit;
    }

    .nfform-v10 button {
        justify-self: start;
        border: 0;
        border-radius: var(--radius-sm);
        padding: 10px 14px;
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        font-weight: 700;
    }

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

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

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

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

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

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

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

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

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

.site-header {
        background-color: var(--surface-1);
        border-bottom: 1px solid var(--border-on-surface);
        position: sticky;
        top: 0;
        z-index: 1000;
        padding: var(--space-y) 0;
    }

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

    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--fg-on-surface);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .main-nav {
        display: flex;
        align-items: center;
    }

    .nav-list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: calc(var(--gap) * 2);
    }

    .nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: 0.5rem 0;
        position: relative;
        transition: color var(--anim-duration) var(--anim-ease);
    }

    .nav-link:hover,
    .nav-link:focus {
        color: var(--link-hover);
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--brand);
        transition: width var(--anim-duration) var(--anim-ease);
    }

    .nav-link:hover::after {
        width: 100%;
    }

    .cta-button {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: 0.75rem 1.75rem;
        border-radius: var(--radius-lg);
        text-decoration: none;
        font-weight: 600;
        white-space: nowrap;
        transition: background-color var(--anim-duration) var(--anim-ease);
        border: none;
        cursor: pointer;
        display: inline-block;
    }

    .cta-button:hover,
    .cta-button:focus {
        background-color: var(--bg-primary-hover);
    }

    .burger-menu {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .burger-line {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

    /* Estado activo del menú burger */
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }

    /* Responsive: Mobile */
    @media (max-width: 767px) {
        .burger-menu {
            display: flex;
        }

        .main-nav {
            position: fixed;
            top: 0;
            right: 0;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: var(--surface-2);
            padding: 6rem 2rem 2rem;
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            box-shadow: var(--shadow-lg);
            z-index: 1000;
        }

        .main-nav.is-active {
            transform: translateX(0);
        }

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

        .nav-link {
            font-size: calc(var(--font-size-base) * 1.1);
            padding: 0.75rem 0;
            display: block;
        }

        .nav-link::after {
            display: none;
        }

        .cta-button {
            display: none;
        }

        /* Overlay cuando el menú está abierto */
        .main-nav::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: var(--overlay);
            z-index: -1;
            opacity: 0;
            pointer-events: none;
            transition: opacity var(--anim-duration) var(--anim-ease);
        }

        .main-nav.is-active::before {
            opacity: 1;
            pointer-events: all;
        }
    }

    /* Responsive: Tablet */
    @media (min-width: 768px) and (max-width: 1023px) {
        .header-container {
            padding: 0 calc(var(--space-x) * 0.75);
        }
        .nav-list {
            gap: var(--gap);
        }
    }

.site-footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 3rem 1rem 1.5rem;
    font-family: 'Segoe UI', system-ui, sans-serif;
    border-top: 4px solid #b8860b;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #333;
  }
  .footer-row:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }
  .footer-brand {
    flex: 1;
    min-width: 250px;
    margin-bottom: 1.5rem;
  }
  .footer-logo {
    font-size: 2rem;
    font-weight: 800;
    color: #f0f0f0;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
  }
  .footer-tagline {
    font-size: 0.95rem;
    color: #aaa;
    max-width: 300px;
  }
  .footer-nav {
    flex: 1;
    min-width: 200px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #fff;
    text-decoration: underline;
  }
  .contact-block, .footer-social {
    flex: 1;
    min-width: 250px;
    margin-bottom: 1.5rem;
  }
  .contact-title, .social-title {
    color: #f0f0f0;
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  .contact-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .contact-block li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
  }
  .contact-block a, .footer-social a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .contact-block a:hover, .footer-social a:hover {
    color: #d4af37;
  }
  .social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-social a {
    background-color: #333;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.9rem;
  }
  .copyright {
    font-size: 0.9rem;
    color: #aaa;
  }
  .legal-links {
    font-size: 0.85rem;
  }
  .legal-links a {
    color: #b8860b;
    text-decoration: none;
    margin: 0 0.3rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.75rem;
    color: #888;
    max-width: 800px;
    line-height: 1.4;
    margin-top: 0.5rem;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      gap: 2rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 1rem;
    }
    .social-links {
      justify-content: flex-start;
    }
  }

.nfcookie-v7 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
        padding: calc(var(--space-y) * .9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .nfcookie-v7__text strong {display: block; margin-bottom: 4px;}
    .nfcookie-v7__text p {margin: 0; opacity: .95;}

    .nfcookie-v7__actions {display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end;}

    .nfcookie-v7__actions button {
        border: 1px solid rgba(255,255,255,.35);
        background: rgba(255,255,255,.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v7__actions button[data-choice='accept'] {
        background: var(--fg-on-primary);
        color: var(--accent);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v7__wrap {grid-template-columns: 1fr;}
        .nfcookie-v7__actions {justify-content: flex-start;}
    }

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

    .terms-layout-d .wrap {
        max-width: 920px;
        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 rgba(255, 255, 255, .2);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .05);
        padding: 12px;
    }

    .terms-layout-d h3, .terms-layout-d h4 {
        margin: 0 0 8px;
    }

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

.site-header {
        background-color: var(--surface-1);
        border-bottom: 1px solid var(--border-on-surface);
        position: sticky;
        top: 0;
        z-index: 1000;
        padding: var(--space-y) 0;
    }

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

    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--fg-on-surface);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .main-nav {
        display: flex;
        align-items: center;
    }

    .nav-list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: calc(var(--gap) * 2);
    }

    .nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: 0.5rem 0;
        position: relative;
        transition: color var(--anim-duration) var(--anim-ease);
    }

    .nav-link:hover,
    .nav-link:focus {
        color: var(--link-hover);
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--brand);
        transition: width var(--anim-duration) var(--anim-ease);
    }

    .nav-link:hover::after {
        width: 100%;
    }

    .cta-button {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: 0.75rem 1.75rem;
        border-radius: var(--radius-lg);
        text-decoration: none;
        font-weight: 600;
        white-space: nowrap;
        transition: background-color var(--anim-duration) var(--anim-ease);
        border: none;
        cursor: pointer;
        display: inline-block;
    }

    .cta-button:hover,
    .cta-button:focus {
        background-color: var(--bg-primary-hover);
    }

    .burger-menu {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .burger-line {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

    /* Estado activo del menú burger */
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }

    /* Responsive: Mobile */
    @media (max-width: 767px) {
        .burger-menu {
            display: flex;
        }

        .main-nav {
            position: fixed;
            top: 0;
            right: 0;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: var(--surface-2);
            padding: 6rem 2rem 2rem;
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            box-shadow: var(--shadow-lg);
            z-index: 1000;
        }

        .main-nav.is-active {
            transform: translateX(0);
        }

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

        .nav-link {
            font-size: calc(var(--font-size-base) * 1.1);
            padding: 0.75rem 0;
            display: block;
        }

        .nav-link::after {
            display: none;
        }

        .cta-button {
            display: none;
        }

        /* Overlay cuando el menú está abierto */
        .main-nav::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: var(--overlay);
            z-index: -1;
            opacity: 0;
            pointer-events: none;
            transition: opacity var(--anim-duration) var(--anim-ease);
        }

        .main-nav.is-active::before {
            opacity: 1;
            pointer-events: all;
        }
    }

    /* Responsive: Tablet */
    @media (min-width: 768px) and (max-width: 1023px) {
        .header-container {
            padding: 0 calc(var(--space-x) * 0.75);
        }
        .nav-list {
            gap: var(--gap);
        }
    }

.site-footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 3rem 1rem 1.5rem;
    font-family: 'Segoe UI', system-ui, sans-serif;
    border-top: 4px solid #b8860b;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #333;
  }
  .footer-row:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }
  .footer-brand {
    flex: 1;
    min-width: 250px;
    margin-bottom: 1.5rem;
  }
  .footer-logo {
    font-size: 2rem;
    font-weight: 800;
    color: #f0f0f0;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
  }
  .footer-tagline {
    font-size: 0.95rem;
    color: #aaa;
    max-width: 300px;
  }
  .footer-nav {
    flex: 1;
    min-width: 200px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #fff;
    text-decoration: underline;
  }
  .contact-block, .footer-social {
    flex: 1;
    min-width: 250px;
    margin-bottom: 1.5rem;
  }
  .contact-title, .social-title {
    color: #f0f0f0;
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  .contact-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .contact-block li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
  }
  .contact-block a, .footer-social a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .contact-block a:hover, .footer-social a:hover {
    color: #d4af37;
  }
  .social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-social a {
    background-color: #333;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.9rem;
  }
  .copyright {
    font-size: 0.9rem;
    color: #aaa;
  }
  .legal-links {
    font-size: 0.85rem;
  }
  .legal-links a {
    color: #b8860b;
    text-decoration: none;
    margin: 0 0.3rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.75rem;
    color: #888;
    max-width: 800px;
    line-height: 1.4;
    margin-top: 0.5rem;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      gap: 2rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 1rem;
    }
    .social-links {
      justify-content: flex-start;
    }
  }

.nfcookie-v7 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
        padding: calc(var(--space-y) * .9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .nfcookie-v7__text strong {display: block; margin-bottom: 4px;}
    .nfcookie-v7__text p {margin: 0; opacity: .95;}

    .nfcookie-v7__actions {display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end;}

    .nfcookie-v7__actions button {
        border: 1px solid rgba(255,255,255,.35);
        background: rgba(255,255,255,.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v7__actions button[data-choice='accept'] {
        background: var(--fg-on-primary);
        color: var(--accent);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v7__wrap {grid-template-columns: 1fr;}
        .nfcookie-v7__actions {justify-content: flex-start;}
    }

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

    .policy-layout-b .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

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

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

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

    .policy-layout-b ol {
        margin: 0;
        padding-left: 18px;
        display: grid;
        gap: 10px;
    }

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

    .policy-layout-b h3 {
        margin: 0;
        color: var(--brand);
        font-size: 1rem;
    }

    .policy-layout-b li p {
        margin: 8px 0 0;
        color: var(--neutral-600);
    }

.site-header {
        background-color: var(--surface-1);
        border-bottom: 1px solid var(--border-on-surface);
        position: sticky;
        top: 0;
        z-index: 1000;
        padding: var(--space-y) 0;
    }

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

    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--fg-on-surface);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .main-nav {
        display: flex;
        align-items: center;
    }

    .nav-list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: calc(var(--gap) * 2);
    }

    .nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: 0.5rem 0;
        position: relative;
        transition: color var(--anim-duration) var(--anim-ease);
    }

    .nav-link:hover,
    .nav-link:focus {
        color: var(--link-hover);
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--brand);
        transition: width var(--anim-duration) var(--anim-ease);
    }

    .nav-link:hover::after {
        width: 100%;
    }

    .cta-button {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: 0.75rem 1.75rem;
        border-radius: var(--radius-lg);
        text-decoration: none;
        font-weight: 600;
        white-space: nowrap;
        transition: background-color var(--anim-duration) var(--anim-ease);
        border: none;
        cursor: pointer;
        display: inline-block;
    }

    .cta-button:hover,
    .cta-button:focus {
        background-color: var(--bg-primary-hover);
    }

    .burger-menu {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .burger-line {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

    /* Estado activo del menú burger */
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }

    /* Responsive: Mobile */
    @media (max-width: 767px) {
        .burger-menu {
            display: flex;
        }

        .main-nav {
            position: fixed;
            top: 0;
            right: 0;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: var(--surface-2);
            padding: 6rem 2rem 2rem;
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            box-shadow: var(--shadow-lg);
            z-index: 1000;
        }

        .main-nav.is-active {
            transform: translateX(0);
        }

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

        .nav-link {
            font-size: calc(var(--font-size-base) * 1.1);
            padding: 0.75rem 0;
            display: block;
        }

        .nav-link::after {
            display: none;
        }

        .cta-button {
            display: none;
        }

        /* Overlay cuando el menú está abierto */
        .main-nav::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: var(--overlay);
            z-index: -1;
            opacity: 0;
            pointer-events: none;
            transition: opacity var(--anim-duration) var(--anim-ease);
        }

        .main-nav.is-active::before {
            opacity: 1;
            pointer-events: all;
        }
    }

    /* Responsive: Tablet */
    @media (min-width: 768px) and (max-width: 1023px) {
        .header-container {
            padding: 0 calc(var(--space-x) * 0.75);
        }
        .nav-list {
            gap: var(--gap);
        }
    }

.site-footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 3rem 1rem 1.5rem;
    font-family: 'Segoe UI', system-ui, sans-serif;
    border-top: 4px solid #b8860b;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #333;
  }
  .footer-row:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }
  .footer-brand {
    flex: 1;
    min-width: 250px;
    margin-bottom: 1.5rem;
  }
  .footer-logo {
    font-size: 2rem;
    font-weight: 800;
    color: #f0f0f0;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
  }
  .footer-tagline {
    font-size: 0.95rem;
    color: #aaa;
    max-width: 300px;
  }
  .footer-nav {
    flex: 1;
    min-width: 200px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #fff;
    text-decoration: underline;
  }
  .contact-block, .footer-social {
    flex: 1;
    min-width: 250px;
    margin-bottom: 1.5rem;
  }
  .contact-title, .social-title {
    color: #f0f0f0;
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  .contact-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .contact-block li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
  }
  .contact-block a, .footer-social a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .contact-block a:hover, .footer-social a:hover {
    color: #d4af37;
  }
  .social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-social a {
    background-color: #333;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.9rem;
  }
  .copyright {
    font-size: 0.9rem;
    color: #aaa;
  }
  .legal-links {
    font-size: 0.85rem;
  }
  .legal-links a {
    color: #b8860b;
    text-decoration: none;
    margin: 0 0.3rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.75rem;
    color: #888;
    max-width: 800px;
    line-height: 1.4;
    margin-top: 0.5rem;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      gap: 2rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 1rem;
    }
    .social-links {
      justify-content: flex-start;
    }
  }

.nfcookie-v7 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
        padding: calc(var(--space-y) * .9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .nfcookie-v7__text strong {display: block; margin-bottom: 4px;}
    .nfcookie-v7__text p {margin: 0; opacity: .95;}

    .nfcookie-v7__actions {display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end;}

    .nfcookie-v7__actions button {
        border: 1px solid rgba(255,255,255,.35);
        background: rgba(255,255,255,.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v7__actions button[data-choice='accept'] {
        background: var(--fg-on-primary);
        color: var(--accent);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v7__wrap {grid-template-columns: 1fr;}
        .nfcookie-v7__actions {justify-content: flex-start;}
    }

.thank-mode-a {
        padding: clamp(56px, 10vw, 110px) 18px;
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

    .thank-mode-a .box {
        max-width: 720px;
        margin: 0 auto;
        text-align: center;
    }

    .thank-mode-a h1 {
        margin: 0;
        font-size: clamp(32px, 5vw, 52px);
        color: var(--fg-on-page);
    }

    .thank-mode-a p {
        margin: 12px 0 0;
        opacity: .92;
        color: var(--fg-on-page);
    }

    .thank-mode-a a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

.site-header {
        background-color: var(--surface-1);
        border-bottom: 1px solid var(--border-on-surface);
        position: sticky;
        top: 0;
        z-index: 1000;
        padding: var(--space-y) 0;
    }

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

    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--fg-on-surface);
        text-decoration: none;
        white-space: nowrap;
        transition: color var(--anim-duration) var(--anim-ease);
    }

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

    .main-nav {
        display: flex;
        align-items: center;
    }

    .nav-list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: calc(var(--gap) * 2);
    }

    .nav-link {
        color: var(--fg-on-surface);
        text-decoration: none;
        font-weight: 500;
        padding: 0.5rem 0;
        position: relative;
        transition: color var(--anim-duration) var(--anim-ease);
    }

    .nav-link:hover,
    .nav-link:focus {
        color: var(--link-hover);
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--brand);
        transition: width var(--anim-duration) var(--anim-ease);
    }

    .nav-link:hover::after {
        width: 100%;
    }

    .cta-button {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: 0.75rem 1.75rem;
        border-radius: var(--radius-lg);
        text-decoration: none;
        font-weight: 600;
        white-space: nowrap;
        transition: background-color var(--anim-duration) var(--anim-ease);
        border: none;
        cursor: pointer;
        display: inline-block;
    }

    .cta-button:hover,
    .cta-button:focus {
        background-color: var(--bg-primary-hover);
    }

    .burger-menu {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .burger-line {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

    /* Estado activo del menú burger */
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }

    /* Responsive: Mobile */
    @media (max-width: 767px) {
        .burger-menu {
            display: flex;
        }

        .main-nav {
            position: fixed;
            top: 0;
            right: 0;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: var(--surface-2);
            padding: 6rem 2rem 2rem;
            transform: translateX(100%);
            transition: transform var(--anim-duration) var(--anim-ease);
            box-shadow: var(--shadow-lg);
            z-index: 1000;
        }

        .main-nav.is-active {
            transform: translateX(0);
        }

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

        .nav-link {
            font-size: calc(var(--font-size-base) * 1.1);
            padding: 0.75rem 0;
            display: block;
        }

        .nav-link::after {
            display: none;
        }

        .cta-button {
            display: none;
        }

        /* Overlay cuando el menú está abierto */
        .main-nav::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: var(--overlay);
            z-index: -1;
            opacity: 0;
            pointer-events: none;
            transition: opacity var(--anim-duration) var(--anim-ease);
        }

        .main-nav.is-active::before {
            opacity: 1;
            pointer-events: all;
        }
    }

    /* Responsive: Tablet */
    @media (min-width: 768px) and (max-width: 1023px) {
        .header-container {
            padding: 0 calc(var(--space-x) * 0.75);
        }
        .nav-list {
            gap: var(--gap);
        }
    }

.site-footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 3rem 1rem 1.5rem;
    font-family: 'Segoe UI', system-ui, sans-serif;
    border-top: 4px solid #b8860b;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #333;
  }
  .footer-row:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }
  .footer-brand {
    flex: 1;
    min-width: 250px;
    margin-bottom: 1.5rem;
  }
  .footer-logo {
    font-size: 2rem;
    font-weight: 800;
    color: #f0f0f0;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
  }
  .footer-tagline {
    font-size: 0.95rem;
    color: #aaa;
    max-width: 300px;
  }
  .footer-nav {
    flex: 1;
    min-width: 200px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #fff;
    text-decoration: underline;
  }
  .contact-block, .footer-social {
    flex: 1;
    min-width: 250px;
    margin-bottom: 1.5rem;
  }
  .contact-title, .social-title {
    color: #f0f0f0;
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  .contact-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .contact-block li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
  }
  .contact-block a, .footer-social a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .contact-block a:hover, .footer-social a:hover {
    color: #d4af37;
  }
  .social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-social a {
    background-color: #333;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.9rem;
  }
  .copyright {
    font-size: 0.9rem;
    color: #aaa;
  }
  .legal-links {
    font-size: 0.85rem;
  }
  .legal-links a {
    color: #b8860b;
    text-decoration: none;
    margin: 0 0.3rem;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.75rem;
    color: #888;
    max-width: 800px;
    line-height: 1.4;
    margin-top: 0.5rem;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      gap: 2rem;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 1rem;
    }
    .social-links {
      justify-content: flex-start;
    }
  }

.nfcookie-v7 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .nfcookie-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
        padding: calc(var(--space-y) * .9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .nfcookie-v7__text strong {display: block; margin-bottom: 4px;}
    .nfcookie-v7__text p {margin: 0; opacity: .95;}

    .nfcookie-v7__actions {display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end;}

    .nfcookie-v7__actions button {
        border: 1px solid rgba(255,255,255,.35);
        background: rgba(255,255,255,.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .nfcookie-v7__actions button[data-choice='accept'] {
        background: var(--fg-on-primary);
        color: var(--accent);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v7__wrap {grid-template-columns: 1fr;}
        .nfcookie-v7__actions {justify-content: flex-start;}
    }

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

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

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

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

    .nf404-v8 a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        text-decoration: none;
    }