:root {
  --font-family: "Roboto", sans-serif;
  --font-size-base: 17.2px;
  --line-height-base: 1.7;

  --max-w: 920px;
  --space-x: 1.1rem;
  --space-y: 1.5rem;
  --gap: 1.09rem;

  --radius-xl: 0.72rem;
  --radius-lg: 0.6rem;
  --radius-md: 0.38rem;
  --radius-sm: 0.23rem;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 30px rgba(0,0,0,0.08);

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

  --brand: #1a3a5c;
  --brand-contrast: #ffffff;
  --accent: #d97706;
  --accent-contrast: #ffffff;

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

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

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

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

  --surface-light: #f9fafb;
  --fg-on-surface-light: #4b5563;
  --border-on-surface-light: #e5e7eb;

  --bg-primary: #2563eb;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #1d4ed8;
  --ring: #2563eb;

  --bg-accent: #f59e0b;
  --fg-on-accent: #ffffff;
  --bg-accent-hover: #b45309;

  --link: #2563eb;
  --link-hover: #1d4ed8;

  --gradient-hero: linear-gradient(135deg, #1a3a5c 0%, #2563eb 100%);
  --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #d97706 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 {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: -0.02em;
}

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

.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: var(--btn-ghost-bg);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  padding: 10px;
  transition: background var(--anim-duration) var(--anim-ease);
}

.burger:hover {
  background: var(--btn-ghost-bg-hover);
}

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg-on-surface);
  border-radius: 2px;
  transition: all var(--anim-duration) var(--anim-ease);
}

.burger.active .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.burger.active .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--surface-2);
  box-shadow: var(--shadow-lg);
  padding: 5rem var(--space-x) var(--space-y);
  transition: right var(--anim-duration) var(--anim-ease);
  z-index: 999;
}

.nav-menu.open {
  right: 0;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}

.nav-link {
  display: block;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--fg-on-surface);
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
}

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

/* Overlay */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--anim-duration) var(--anim-ease);
}

.nav-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

/* Desktop: ocultar burger y overlay, mostrar nav inline */
@media (min-width: 768px) {
  .burger {
    display: none;
  }

  .nav-menu {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    box-shadow: none;
    padding: 0;
    transition: none;
  }

  .nav-list {
    flex-direction: row;
    gap: calc(var(--gap) * 1.5);
  }

  .nav-link {
    font-size: 1rem;
    padding: 0.25rem 0;
  }

  .nav-overlay {
    display: none;
  }
}

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

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 40px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 768px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-left {
    flex: 0 0 auto;
    max-width: 300px;
  }
  .footer-right {
    flex: 1;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
  }
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
}
.footer-copyright {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #b0b0b0;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}
.footer-nav a:hover {
  color: #f0a500;
}
.footer-policy {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.footer-policy a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}
.footer-policy a:hover {
  color: #f0a500;
}
.footer-contact {
  margin-top: 20px;
}
.footer-contact p {
  margin: 5px 0;
  font-size: 0.95rem;
}
.footer-contact a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-contact a:hover {
  color: #f0a500;
}
.footer-disclaimer {
  margin-top: 20px;
  font-size: 0.8rem;
  color: #888;
  font-style: italic;
  max-width: 500px;
}

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

.nfintro-v9 {
        padding: clamp(3.9rem, 9vw, 7rem) var(--space-x);
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

    .nfintro-v9__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: 1.5rem;
        align-items: center;
        flex-wrap: wrap;
    }

    .nfintro-v9__hero {flex: 1 1 24rem;}
    .nfintro-v9__side {flex: 1 1 18rem;}

    .nfintro-v9__hero p {
        margin: 0;
        color: rgba(255, 255, 255, .78);
        font-size: .82rem;
        letter-spacing: .1em;
        text-transform: uppercase;
    }

    .nfintro-v9__hero h1 {
        margin: .6rem 0 0;
        font-size: clamp(2.5rem, 5vw, 4.8rem);
        line-height: 1.01;
    }

    .nfintro-v9__hero span {
        display: block;
        margin-top: .9rem;
        color: rgba(255, 255, 255, .88);
        max-width: 40rem;
    }

    .nfintro-v9__buttons {
        margin-top: 1.15rem;
        display: flex;
        gap: .75rem;
        flex-wrap: wrap;
    }

    .nfintro-v9__buttons a {
        display: inline-flex;
        min-height: 2.85rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: rgba(255, 255, 255, .14);
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .nfintro-v9__side img {
        display: block;
        width: 100%;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .nfintro-v9__stats {
        margin-top: .85rem;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: .7rem;
    }

    .nfintro-v9__stats article {
        padding: .85rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .nfintro-v9__stats strong,
    .nfintro-v9__stats span {display: block;}

    .nfintro-v9__stats span {margin-top: .25rem; color: rgba(255, 255, 255, .82);}

    @media (max-width: 780px) {
        .nfintro-v9__stats {
            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;
}

.next-pulse-c3 {
        padding: clamp(3.6rem, 8vw, 6.1rem) var(--space-x);
        background: radial-gradient(circle at 50% 0, rgba(255, 255, 255, .16), transparent 28%), var(--gradient-hero);
        color: var(--fg-on-primary);
        text-align: center;
    }

    .next-pulse-c3__wrap {
        max-width: 54rem;
        margin: 0 auto;
    }

    .next-pulse-c3__wrap p:first-child {
        margin: 0;
        color: rgba(255, 255, 255, .76);
    }

    .next-pulse-c3__wrap h2 {
        margin: .55rem 0 0;
        font-size: clamp(2.1rem, 4vw, 3.1rem);
    }

    .next-pulse-c3__row {
        margin-top: 1.15rem;
        display: flex;
        gap: .75rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .next-pulse-c3__row a {
        display: inline-flex;
        padding: .8rem 1rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, .12);
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .18);
        text-decoration: none;
        animation: next_pulse_c3 2.4s ease-in-out infinite;
    }

    .next-pulse-c3__row a:nth-child(2n) {
        animation-delay: .35s;
    }

    @keyframes next_pulse_c3 {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-3px);
        }
    }

    .next-pulse-c3__copy {
        margin-top: 1rem;

    }

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

.why-choose {

        padding: clamp(16px, 3vw, 44px);
    }

    .why-choose--light.why-choose--v2 {
        background: var(--fg-on-primary);
        color: var(--bg-primary);
    }

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

    .why-choose__wrap {
        border-radius: var(--radius-xl);
        padding: clamp(16px, 2.6vw, 26px);
        background: var(--bg-alt);
        border: 1px solid var(--neutral-300);
        box-shadow: var(--shadow-md);
    }

    .why-choose__h {
        margin-bottom: clamp(14px, 2vw, 22px);
    }

    .why-choose__pill {
        display: inline-flex;
        padding: 7px 12px;
        border-radius: 999px;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-sm);
        margin-bottom: 12px;
        font-size: 0.9rem;
    }

    .why-choose__title {
        margin: 0;
        font-size: clamp(24px, 4.2vw, 40px);
        line-height: 1.1;
        color: var(--bg-primary);
        letter-spacing: -0.02em;
    }

    .why-choose__subtitle {
        margin: 10px 0 0;
        color: var(--neutral-600);
        max-width: 70ch;
    }

    .why-choose__cards {
        display: grid;
        grid-template-columns:repeat(12, 1fr);
        gap: 14px;
    }

    .why-choose__card {
        grid-column: span 6;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-sm);
        overflow: hidden;
        transform: perspective(900px) rotateX(0) rotateY(0) translateY(0);
        transition: transform 180ms var(--anim-ease),
        box-shadow 180ms var(--anim-ease),
        border-color 180ms var(--anim-ease);
        will-change: transform;
        position: relative;
    }

    .why-choose__cardHead {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 16px;
        background: rgba(0, 0, 0, 0.03);
        border-bottom: 1px solid var(--border-on-surface);
    }

    .why-choose__num {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        display: grid;
        place-items: center;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
    }

    .why-choose__mini {
        color: var(--neutral-600);
        font-size: 0.9rem;
    }

    .why-choose__cardBody {
        padding: 14px 16px;
    }

    .why-choose__cardTitle {
        margin: 0 0 8px;
        color: var(--bg-primary);
        font-size: clamp(18px, 2.2vw, 20px);
    }

    .why-choose__cardText {
        margin: 0;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

    @media (max-width: 860px) {
        .why-choose__card {
            grid-column: span 12;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .why-choose__card {
            transition: none;
            transform: none;
        }
    }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: -0.02em;
}

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

.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: var(--btn-ghost-bg);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  padding: 10px;
  transition: background var(--anim-duration) var(--anim-ease);
}

.burger:hover {
  background: var(--btn-ghost-bg-hover);
}

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg-on-surface);
  border-radius: 2px;
  transition: all var(--anim-duration) var(--anim-ease);
}

.burger.active .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.burger.active .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--surface-2);
  box-shadow: var(--shadow-lg);
  padding: 5rem var(--space-x) var(--space-y);
  transition: right var(--anim-duration) var(--anim-ease);
  z-index: 999;
}

.nav-menu.open {
  right: 0;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}

.nav-link {
  display: block;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--fg-on-surface);
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
}

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

/* Overlay */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--anim-duration) var(--anim-ease);
}

.nav-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

/* Desktop: ocultar burger y overlay, mostrar nav inline */
@media (min-width: 768px) {
  .burger {
    display: none;
  }

  .nav-menu {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    box-shadow: none;
    padding: 0;
    transition: none;
  }

  .nav-list {
    flex-direction: row;
    gap: calc(var(--gap) * 1.5);
  }

  .nav-link {
    font-size: 1rem;
    padding: 0.25rem 0;
  }

  .nav-overlay {
    display: none;
  }
}

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

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 40px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 768px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-left {
    flex: 0 0 auto;
    max-width: 300px;
  }
  .footer-right {
    flex: 1;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
  }
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
}
.footer-copyright {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #b0b0b0;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}
.footer-nav a:hover {
  color: #f0a500;
}
.footer-policy {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.footer-policy a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}
.footer-policy a:hover {
  color: #f0a500;
}
.footer-contact {
  margin-top: 20px;
}
.footer-contact p {
  margin: 5px 0;
  font-size: 0.95rem;
}
.footer-contact a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-contact a:hover {
  color: #f0a500;
}
.footer-disclaimer {
  margin-top: 20px;
  font-size: 0.8rem;
  color: #888;
  font-style: italic;
  max-width: 500px;
}

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

.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-list {
        background: var(--bg-alt);
        color: var(--fg-on-alt);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
    }

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

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

        transform: translateY(-18px);
    }

    .index-recommendations-list__eyebrow {
        margin: 0 0 10px;
        text-transform: uppercase;
        letter-spacing: 0.22em;
        font-size: 12px;
        color: var(--neutral-600);
    }

    .index-recommendations-list__h h2 {
        margin: 0;
        font-size: clamp(28px, 4.6vw, 48px);
        letter-spacing: -0.02em;
        color: var(--fg-on-page);
    }

    .index-recommendations-list__list {
        display: grid;
        gap: 12px;
    }

    .index-recommendations-list__row {
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
        background: var(--surface-light);
        box-shadow: var(--shadow-sm);
        overflow: hidden;

        transform: translateY(24px);
    }

    .index-recommendations-list__q {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        cursor: pointer;
        padding: 14px 16px;
        border: 0;
        background: transparent;
        color: var(--fg-on-page);
        font: inherit;
        text-align: left;
    }

    .index-recommendations-list__left {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        min-width: 0;
    }

    .index-recommendations-list__icon {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        background: var(--bg-accent);
        border: 1px solid var(--border-on-surface);
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
    }

    .index-recommendations-list__title {
        font-weight: 900;
        font-size: 14px;
        color: var(--fg-on-page);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 30ch;
    }

    .index-recommendations-list__right {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        flex: 0 0 auto;
    }

    .index-recommendations-list__tag {
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
        color: var(--neutral-800);
        font-size: 10px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        white-space: nowrap;
    }

    .index-recommendations-list__chev {
        width: 30px;
        height: 30px;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-primary);
        border: 1px solid var(--ring);
        color: var(--fg-on-primary);
        font-weight: 900;
        line-height: 1;
    }

    .index-recommendations-list__a {
        display: none;
        padding: 0 16px 14px;
        overflow: hidden;
    }

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

    .index-recommendations-list__actions {
        margin-top: 10px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        flex-wrap: wrap;
    }

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

    .index-recommendations-list__cta {
        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;
    }

    .index-recommendations-list__cta::after {
        content: '->';
    }

    .index-recommendations-list__cta:hover {
        background: var(--bg-primary-hover);
    }

    @media (max-width: 560px) {
        .index-recommendations-list__tag {
            display: none;
        }
    }

.partners--colored-v5 {

    padding: 56px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

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

.partners__header {
    text-align: center;
    margin-bottom: 20px;
}

.partners__header h2 {
    margin: 0 0 4px;
    font-size: clamp(22px,3.5vw,28px);
    color: var(--brand-contrast);
}

.partners__header p {
    margin: 0;
    color: var(--neutral-300);
}

.partners__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px,1fr));
    gap: 12px;
}

.partners__logo {
    border-radius: var(--radius-xl);
    padding: 10px 12px;
    background: rgba(15,23,42,0.96);
    border: 1px solid rgba(148,163,184,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.partners__logo--gold {
    border-color: var(--accent);
}
.partners__logo--prime {
    border-color: var(--bg-primary);
}
.partners__logo--trusted {
    border-color: var(--accent);
}

.partners__logo-text {
    font-size: 0.9rem;
    color: var(--neutral-0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: -0.02em;
}

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

.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: var(--btn-ghost-bg);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  padding: 10px;
  transition: background var(--anim-duration) var(--anim-ease);
}

.burger:hover {
  background: var(--btn-ghost-bg-hover);
}

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg-on-surface);
  border-radius: 2px;
  transition: all var(--anim-duration) var(--anim-ease);
}

.burger.active .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.burger.active .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--surface-2);
  box-shadow: var(--shadow-lg);
  padding: 5rem var(--space-x) var(--space-y);
  transition: right var(--anim-duration) var(--anim-ease);
  z-index: 999;
}

.nav-menu.open {
  right: 0;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}

.nav-link {
  display: block;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--fg-on-surface);
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
}

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

/* Overlay */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--anim-duration) var(--anim-ease);
}

.nav-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

/* Desktop: ocultar burger y overlay, mostrar nav inline */
@media (min-width: 768px) {
  .burger {
    display: none;
  }

  .nav-menu {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    box-shadow: none;
    padding: 0;
    transition: none;
  }

  .nav-list {
    flex-direction: row;
    gap: calc(var(--gap) * 1.5);
  }

  .nav-link {
    font-size: 1rem;
    padding: 0.25rem 0;
  }

  .nav-overlay {
    display: none;
  }
}

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

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 40px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 768px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-left {
    flex: 0 0 auto;
    max-width: 300px;
  }
  .footer-right {
    flex: 1;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
  }
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
}
.footer-copyright {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #b0b0b0;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}
.footer-nav a:hover {
  color: #f0a500;
}
.footer-policy {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.footer-policy a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}
.footer-policy a:hover {
  color: #f0a500;
}
.footer-contact {
  margin-top: 20px;
}
.footer-contact p {
  margin: 5px 0;
  font-size: 0.95rem;
}
.footer-contact a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-contact a:hover {
  color: #f0a500;
}
.footer-disclaimer {
  margin-top: 20px;
  font-size: 0.8rem;
  color: #888;
  font-style: italic;
  max-width: 500px;
}

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

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

.hiw-ledger-l2 {
        padding: clamp(3.2rem, 7vw, 5.8rem) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .hiw-ledger-l2__wrap {
        max-width: 60rem;
        margin: 0 auto;
    }

    .hiw-ledger-l2__head {
        text-align: center;
        margin-bottom: 1.2rem;
    }

    .hiw-ledger-l2__head p {
        margin: 0;
        color: var(--neutral-600);
    }

    .hiw-ledger-l2__head h2 {
        margin: .45rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .hiw-ledger-l2__rows {
        display: grid;
        gap: .8rem;
    }

    .hiw-ledger-l2__rows article {
        display: grid;
        grid-template-columns: 3rem 1fr;
        gap: .9rem;
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--bg-alt);
        border: 1px solid var(--border-on-surface-light);
    }

    .hiw-ledger-l2__rows strong {
        display: grid;
        place-items: center;
        width: 3rem;
        height: 3rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        color: var(--brand);
        box-shadow: var(--shadow-sm);
    }

    .hiw-ledger-l2__rows h3 {
        margin: 0;
    }

    .hiw-ledger-l2__rows p {
        margin: .35rem 0 0;
        color: var(--neutral-600);
    }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: -0.02em;
}

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

.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: var(--btn-ghost-bg);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  padding: 10px;
  transition: background var(--anim-duration) var(--anim-ease);
}

.burger:hover {
  background: var(--btn-ghost-bg-hover);
}

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg-on-surface);
  border-radius: 2px;
  transition: all var(--anim-duration) var(--anim-ease);
}

.burger.active .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.burger.active .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--surface-2);
  box-shadow: var(--shadow-lg);
  padding: 5rem var(--space-x) var(--space-y);
  transition: right var(--anim-duration) var(--anim-ease);
  z-index: 999;
}

.nav-menu.open {
  right: 0;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}

.nav-link {
  display: block;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--fg-on-surface);
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
}

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

/* Overlay */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--anim-duration) var(--anim-ease);
}

.nav-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

/* Desktop: ocultar burger y overlay, mostrar nav inline */
@media (min-width: 768px) {
  .burger {
    display: none;
  }

  .nav-menu {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    box-shadow: none;
    padding: 0;
    transition: none;
  }

  .nav-list {
    flex-direction: row;
    gap: calc(var(--gap) * 1.5);
  }

  .nav-link {
    font-size: 1rem;
    padding: 0.25rem 0;
  }

  .nav-overlay {
    display: none;
  }
}

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

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 40px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 768px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-left {
    flex: 0 0 auto;
    max-width: 300px;
  }
  .footer-right {
    flex: 1;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
  }
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
}
.footer-copyright {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #b0b0b0;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}
.footer-nav a:hover {
  color: #f0a500;
}
.footer-policy {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.footer-policy a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}
.footer-policy a:hover {
  color: #f0a500;
}
.footer-contact {
  margin-top: 20px;
}
.footer-contact p {
  margin: 5px 0;
  font-size: 0.95rem;
}
.footer-contact a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-contact a:hover {
  color: #f0a500;
}
.footer-disclaimer {
  margin-top: 20px;
  font-size: 0.8rem;
  color: #888;
  font-style: italic;
  max-width: 500px;
}

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

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

.social-l1 {

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

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

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

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

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

    .social-l1__grid {
        display: grid;
        grid-template-columns:repeat(12, 1fr);
        gap: 14px;
    }

    .social-l1__card {
        grid-column: span 4;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        padding: 16px;
        position: relative;
        transform-style: preserve-3d;
        transition: transform 420ms var(--anim-ease);
        min-height: 170px;
    }

    .social-l1__card:hover {
        transform: rotateY(180deg);
    }

    .social-l1__front,
    .social-l1__back {
        position: absolute;
        inset: 0;
        padding: 16px;
        backface-visibility: hidden;
        border-radius: inherit;
    }

    .social-l1__front::before {
        content: '';
        position: absolute;
        inset: -1px;
        background: radial-gradient(260px 130px at 20% 15%, rgba(0, 86, 179, 0.12), transparent 60%),
        radial-gradient(240px 140px at 85% 35%, rgba(255, 107, 53, 0.12), transparent 62%);
        pointer-events: none;
        border-radius: inherit;
    }

    .social-l1__chip {
        display: inline-flex;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid rgba(0, 0, 0, 0.06);
        font-weight: 900;
        position: relative;
    }

    .social-l1__big {
        margin-top: 12px;
        font-weight: 900;
        font-size: clamp(18px, 2.4vw, 28px);
        letter-spacing: -.01em;
        position: relative;
    }

    .social-l1__small {
        margin-top: 8px;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
        position: relative;
    }

    .social-l1__back {
        transform: rotateY(180deg);
        background: var(--bg-alt);
        border: 1px solid var(--neutral-300);
    }

    .social-l1__backTitle {
        font-weight: 900;
        color: var(--bg-primary);
        letter-spacing: -.01em;
        margin-bottom: 8px;
    }

    .social-l1__backText {
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

    @media (max-width: 980px) {
        .social-l1__card {
            grid-column: span 6;
        }
    }

    @media (max-width: 640px) {
        .social-l1__card {
            grid-column: span 12;
        }
    }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: -0.02em;
}

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

.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: var(--btn-ghost-bg);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  padding: 10px;
  transition: background var(--anim-duration) var(--anim-ease);
}

.burger:hover {
  background: var(--btn-ghost-bg-hover);
}

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg-on-surface);
  border-radius: 2px;
  transition: all var(--anim-duration) var(--anim-ease);
}

.burger.active .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.burger.active .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--surface-2);
  box-shadow: var(--shadow-lg);
  padding: 5rem var(--space-x) var(--space-y);
  transition: right var(--anim-duration) var(--anim-ease);
  z-index: 999;
}

.nav-menu.open {
  right: 0;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}

.nav-link {
  display: block;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--fg-on-surface);
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
}

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

/* Overlay */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--anim-duration) var(--anim-ease);
}

.nav-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

/* Desktop: ocultar burger y overlay, mostrar nav inline */
@media (min-width: 768px) {
  .burger {
    display: none;
  }

  .nav-menu {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    box-shadow: none;
    padding: 0;
    transition: none;
  }

  .nav-list {
    flex-direction: row;
    gap: calc(var(--gap) * 1.5);
  }

  .nav-link {
    font-size: 1rem;
    padding: 0.25rem 0;
  }

  .nav-overlay {
    display: none;
  }
}

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

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 40px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 768px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-left {
    flex: 0 0 auto;
    max-width: 300px;
  }
  .footer-right {
    flex: 1;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
  }
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
}
.footer-copyright {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #b0b0b0;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}
.footer-nav a:hover {
  color: #f0a500;
}
.footer-policy {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.footer-policy a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}
.footer-policy a:hover {
  color: #f0a500;
}
.footer-contact {
  margin-top: 20px;
}
.footer-contact p {
  margin: 5px 0;
  font-size: 0.95rem;
}
.footer-contact a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-contact a:hover {
  color: #f0a500;
}
.footer-disclaimer {
  margin-top: 20px;
  font-size: 0.8rem;
  color: #888;
  font-style: italic;
  max-width: 500px;
}

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

.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 {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: -0.02em;
}

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

.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: var(--btn-ghost-bg);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  padding: 10px;
  transition: background var(--anim-duration) var(--anim-ease);
}

.burger:hover {
  background: var(--btn-ghost-bg-hover);
}

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg-on-surface);
  border-radius: 2px;
  transition: all var(--anim-duration) var(--anim-ease);
}

.burger.active .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.burger.active .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--surface-2);
  box-shadow: var(--shadow-lg);
  padding: 5rem var(--space-x) var(--space-y);
  transition: right var(--anim-duration) var(--anim-ease);
  z-index: 999;
}

.nav-menu.open {
  right: 0;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}

.nav-link {
  display: block;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--fg-on-surface);
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
}

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

/* Overlay */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--anim-duration) var(--anim-ease);
}

.nav-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

/* Desktop: ocultar burger y overlay, mostrar nav inline */
@media (min-width: 768px) {
  .burger {
    display: none;
  }

  .nav-menu {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    box-shadow: none;
    padding: 0;
    transition: none;
  }

  .nav-list {
    flex-direction: row;
    gap: calc(var(--gap) * 1.5);
  }

  .nav-link {
    font-size: 1rem;
    padding: 0.25rem 0;
  }

  .nav-overlay {
    display: none;
  }
}

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

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 40px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 768px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-left {
    flex: 0 0 auto;
    max-width: 300px;
  }
  .footer-right {
    flex: 1;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
  }
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
}
.footer-copyright {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #b0b0b0;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}
.footer-nav a:hover {
  color: #f0a500;
}
.footer-policy {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.footer-policy a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}
.footer-policy a:hover {
  color: #f0a500;
}
.footer-contact {
  margin-top: 20px;
}
.footer-contact p {
  margin: 5px 0;
  font-size: 0.95rem;
}
.footer-contact a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-contact a:hover {
  color: #f0a500;
}
.footer-disclaimer {
  margin-top: 20px;
  font-size: 0.8rem;
  color: #888;
  font-style: italic;
  max-width: 500px;
}

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

.story-card-l2 {
        padding: clamp(3.2rem, 7vw, 5.7rem) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .story-card-l2__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: .9fr 1.1fr;
        gap: 1.2rem;
        align-items: center;
    }

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

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

    .story-card-l2__story p {
        margin: .8rem 0 0;
        color: var(--neutral-600);
    }

    .story-card-l2__metric {
        margin-top: 1rem;
        padding: .9rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

    .story-card-l2__metric span {
        display: block;
        margin-top: .25rem;
        color: var(--neutral-600);
    }

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

.identity-nv7 {
        padding: clamp(56px, 8vw, 104px) clamp(16px, 4vw, 40px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

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

    .identity-nv7__head {
        text-align: center;
        margin-bottom: 18px;
    }

    .identity-nv7__head p {
        margin: 0;
        opacity: .9;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

    .identity-nv7__head h2 {
        margin: 8px 0;
        font-size: clamp(30px, 5vw, 50px);
    }

    .identity-nv7__head span {
        display: block;
        margin: 0 auto;
        max-width: 72ch;
        opacity: .92;
    }

    .identity-nv7__grid {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .identity-nv7__grid article {
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: rgba(255, 255, 255, 0.12);
        box-shadow: var(--shadow-sm);
    }

    .identity-nv7__grid h3 {
        margin: 0;
    }

    .identity-nv7__grid p {
        margin: 7px 0;
        opacity: .94;
    }

    .identity-nv7__grid small {
        opacity: .9;
    }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: -0.02em;
}

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

.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: var(--btn-ghost-bg);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  padding: 10px;
  transition: background var(--anim-duration) var(--anim-ease);
}

.burger:hover {
  background: var(--btn-ghost-bg-hover);
}

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg-on-surface);
  border-radius: 2px;
  transition: all var(--anim-duration) var(--anim-ease);
}

.burger.active .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.burger.active .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--surface-2);
  box-shadow: var(--shadow-lg);
  padding: 5rem var(--space-x) var(--space-y);
  transition: right var(--anim-duration) var(--anim-ease);
  z-index: 999;
}

.nav-menu.open {
  right: 0;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}

.nav-link {
  display: block;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--fg-on-surface);
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
}

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

/* Overlay */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--anim-duration) var(--anim-ease);
}

.nav-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

/* Desktop: ocultar burger y overlay, mostrar nav inline */
@media (min-width: 768px) {
  .burger {
    display: none;
  }

  .nav-menu {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    box-shadow: none;
    padding: 0;
    transition: none;
  }

  .nav-list {
    flex-direction: row;
    gap: calc(var(--gap) * 1.5);
  }

  .nav-link {
    font-size: 1rem;
    padding: 0.25rem 0;
  }

  .nav-overlay {
    display: none;
  }
}

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

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 40px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 768px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-left {
    flex: 0 0 auto;
    max-width: 300px;
  }
  .footer-right {
    flex: 1;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
  }
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
}
.footer-copyright {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #b0b0b0;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}
.footer-nav a:hover {
  color: #f0a500;
}
.footer-policy {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.footer-policy a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}
.footer-policy a:hover {
  color: #f0a500;
}
.footer-contact {
  margin-top: 20px;
}
.footer-contact p {
  margin: 5px 0;
  font-size: 0.95rem;
}
.footer-contact a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-contact a:hover {
  color: #f0a500;
}
.footer-disclaimer {
  margin-top: 20px;
  font-size: 0.8rem;
  color: #888;
  font-style: italic;
  max-width: 500px;
}

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

.map-shell-c4 {
        padding: clamp(3.5rem, 8vw, 6rem) var(--space-x);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .map-shell-c4__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .map-shell-c4__band {
        margin-bottom: 1rem;
        display: flex;
        justify-content: space-between;
        align-items: end;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .map-shell-c4__band h2 {
        margin: 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .map-shell-c4__band p {
        margin: 0;
        color: rgba(255, 255, 255, .82);
    }

    .map-shell-c4__shell {
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: 1rem;
    }

    .map-shell-c4__shell iframe {
        display: block;
        width: 100%;
        min-height: 24rem;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .map-shell-c4__cards {
        display: grid;
        gap: .75rem;
    }

    .map-shell-c4__cards article {
        padding: .95rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .map-shell-c4__cards p {
        margin: .35rem 0 0;
        color: rgba(255, 255, 255, .84);
    }

    @media (max-width: 840px) {
        .map-shell-c4__shell {
            grid-template-columns: 1fr;
        }
    }

.nfcontacts-v12 {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--surface-2);
        color: var(--fg-on-surface);
    }

    .nfcontacts-v12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

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

    .nfcontacts-v12__columns {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: var(--gap);
    }

    .nfcontacts-v12 article {
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        padding: 12px;
    }

    .nfcontacts-v12 h3 {
        margin: 0 0 6px;
    }

    .nfcontacts-v12 p {
        margin: 0;
        font-weight: 700;
    }

    .nfcontacts-v12 small {
        display: block;
        margin-top: 4px;
        color: var(--fg-on-surface-light);
    }

    .nfcontacts-v12 a {
        display: inline-block;
        margin-top: 8px;
        color: var(--link);
        text-decoration: none;
        font-weight: 700;
    }

.nfform-v9 {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: linear-gradient(145deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
    }

    .nfform-v9__form {
        max-width: 860px;
        margin: 0 auto;
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, .25);
        background: rgba(255, 255, 255, .08);
        padding: 16px;
        display: grid;
        gap: 10px;
    }

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

    .nfform-v9__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

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

    .nfform-v9 input,
    .nfform-v9 textarea {
        width: 100%;
        border: 1px solid rgba(255, 255, 255, .3);
        border-radius: var(--radius-sm);
        background: rgba(255, 255, 255, .15);
        color: var(--fg-on-primary);
        padding: 9px;
        font: inherit;
    }

    .nfform-v9 button {
        justify-self: start;
        border: 0;
        border-radius: var(--radius-sm);
        padding: 10px 14px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfform-v9__grid {
            grid-template-columns: 1fr;
        }
    }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: -0.02em;
}

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

.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: var(--btn-ghost-bg);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  padding: 10px;
  transition: background var(--anim-duration) var(--anim-ease);
}

.burger:hover {
  background: var(--btn-ghost-bg-hover);
}

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg-on-surface);
  border-radius: 2px;
  transition: all var(--anim-duration) var(--anim-ease);
}

.burger.active .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.burger.active .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--surface-2);
  box-shadow: var(--shadow-lg);
  padding: 5rem var(--space-x) var(--space-y);
  transition: right var(--anim-duration) var(--anim-ease);
  z-index: 999;
}

.nav-menu.open {
  right: 0;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}

.nav-link {
  display: block;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--fg-on-surface);
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
}

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

/* Overlay */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--anim-duration) var(--anim-ease);
}

.nav-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

/* Desktop: ocultar burger y overlay, mostrar nav inline */
@media (min-width: 768px) {
  .burger {
    display: none;
  }

  .nav-menu {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    box-shadow: none;
    padding: 0;
    transition: none;
  }

  .nav-list {
    flex-direction: row;
    gap: calc(var(--gap) * 1.5);
  }

  .nav-link {
    font-size: 1rem;
    padding: 0.25rem 0;
  }

  .nav-overlay {
    display: none;
  }
}

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

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 40px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 768px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-left {
    flex: 0 0 auto;
    max-width: 300px;
  }
  .footer-right {
    flex: 1;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
  }
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
}
.footer-copyright {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #b0b0b0;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}
.footer-nav a:hover {
  color: #f0a500;
}
.footer-policy {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.footer-policy a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}
.footer-policy a:hover {
  color: #f0a500;
}
.footer-contact {
  margin-top: 20px;
}
.footer-contact p {
  margin: 5px 0;
  font-size: 0.95rem;
}
.footer-contact a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-contact a:hover {
  color: #f0a500;
}
.footer-disclaimer {
  margin-top: 20px;
  font-size: 0.8rem;
  color: #888;
  font-style: italic;
  max-width: 500px;
}

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

.policy-layout-c {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

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

    .policy-layout-c .section-head {
        margin-bottom: 14px;
    }

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

    .policy-layout-c .section-head p {
        margin: 10px 0 0;
        opacity: .92;
    }

    .policy-layout-c .stack {
        display: grid;
        gap: 10px;
    }

    .policy-layout-c article {
        border: 1px solid rgba(255, 255, 255, .3);
        border-radius: var(--radius-md);
        padding: 12px;
        background: rgba(255, 255, 255, .1);
    }

    .policy-layout-c h3 {
        margin: 0;
        display: flex;
        gap: 8px;
        align-items: center;
    }

    .policy-layout-c h3 span {
        display: inline-grid;
        place-items: center;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .18);
    }

    .policy-layout-c article p {
        margin: 8px 0 0;
        opacity: .95;
    }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: -0.02em;
}

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

.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: var(--btn-ghost-bg);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  padding: 10px;
  transition: background var(--anim-duration) var(--anim-ease);
}

.burger:hover {
  background: var(--btn-ghost-bg-hover);
}

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg-on-surface);
  border-radius: 2px;
  transition: all var(--anim-duration) var(--anim-ease);
}

.burger.active .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.burger.active .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--surface-2);
  box-shadow: var(--shadow-lg);
  padding: 5rem var(--space-x) var(--space-y);
  transition: right var(--anim-duration) var(--anim-ease);
  z-index: 999;
}

.nav-menu.open {
  right: 0;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}

.nav-link {
  display: block;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--fg-on-surface);
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
}

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

/* Overlay */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--anim-duration) var(--anim-ease);
}

.nav-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

/* Desktop: ocultar burger y overlay, mostrar nav inline */
@media (min-width: 768px) {
  .burger {
    display: none;
  }

  .nav-menu {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    box-shadow: none;
    padding: 0;
    transition: none;
  }

  .nav-list {
    flex-direction: row;
    gap: calc(var(--gap) * 1.5);
  }

  .nav-link {
    font-size: 1rem;
    padding: 0.25rem 0;
  }

  .nav-overlay {
    display: none;
  }
}

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

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 40px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 768px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-left {
    flex: 0 0 auto;
    max-width: 300px;
  }
  .footer-right {
    flex: 1;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
  }
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
}
.footer-copyright {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #b0b0b0;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}
.footer-nav a:hover {
  color: #f0a500;
}
.footer-policy {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.footer-policy a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}
.footer-policy a:hover {
  color: #f0a500;
}
.footer-contact {
  margin-top: 20px;
}
.footer-contact p {
  margin: 5px 0;
  font-size: 0.95rem;
}
.footer-contact a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-contact a:hover {
  color: #f0a500;
}
.footer-disclaimer {
  margin-top: 20px;
  font-size: 0.8rem;
  color: #888;
  font-style: italic;
  max-width: 500px;
}

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

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

    .thank-mode-a p {
        margin: 12px 0 0;
        opacity: .92;
    }

    .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 {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: -0.02em;
}

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

.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: var(--btn-ghost-bg);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  padding: 10px;
  transition: background var(--anim-duration) var(--anim-ease);
}

.burger:hover {
  background: var(--btn-ghost-bg-hover);
}

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg-on-surface);
  border-radius: 2px;
  transition: all var(--anim-duration) var(--anim-ease);
}

.burger.active .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.burger.active .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--surface-2);
  box-shadow: var(--shadow-lg);
  padding: 5rem var(--space-x) var(--space-y);
  transition: right var(--anim-duration) var(--anim-ease);
  z-index: 999;
}

.nav-menu.open {
  right: 0;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}

.nav-link {
  display: block;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--fg-on-surface);
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
}

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

/* Overlay */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--anim-duration) var(--anim-ease);
}

.nav-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

/* Desktop: ocultar burger y overlay, mostrar nav inline */
@media (min-width: 768px) {
  .burger {
    display: none;
  }

  .nav-menu {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    box-shadow: none;
    padding: 0;
    transition: none;
  }

  .nav-list {
    flex-direction: row;
    gap: calc(var(--gap) * 1.5);
  }

  .nav-link {
    font-size: 1rem;
    padding: 0.25rem 0;
  }

  .nav-overlay {
    display: none;
  }
}

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

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 40px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 768px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-left {
    flex: 0 0 auto;
    max-width: 300px;
  }
  .footer-right {
    flex: 1;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
  }
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
}
.footer-copyright {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #b0b0b0;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}
.footer-nav a:hover {
  color: #f0a500;
}
.footer-policy {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.footer-policy a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}
.footer-policy a:hover {
  color: #f0a500;
}
.footer-contact {
  margin-top: 20px;
}
.footer-contact p {
  margin: 5px 0;
  font-size: 0.95rem;
}
.footer-contact a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-contact a:hover {
  color: #f0a500;
}
.footer-disclaimer {
  margin-top: 20px;
  font-size: 0.8rem;
  color: #888;
  font-style: italic;
  max-width: 500px;
}

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

.err-slab-a {
    padding: clamp(56px, 10vw, 110px) 20px;
    background: var(--gradient-hero);
    color: var(--fg-on-primary);
}

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

.err-slab-a h1 {
    margin: 0;
    font-size: clamp(34px, 6vw, 58px);
}

.err-slab-a p {
    margin: 12px 0 0;
    opacity: .92;
}

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