/* =========================
   VARIABLES
   ========================= */

   :root {
    --black: #09090b;
    --ink: #17171a;
    --muted: #696970;
    --line: #e8e8eb;
    --soft: #f5f5f7;
    --white: #ffffff;
  
    --cyan: #14d4d1;
    --blue: #2f85d4;
    --purple: #7531a5;
  
    --gradient: linear-gradient(
      120deg,
      var(--cyan),
      var(--blue) 50%,
      var(--purple)
    );
  
    --container-width: 1240px;
    --header-height: 84px;
    --shadow-large: 0 30px 90px rgba(15, 15, 20, 0.12);
    --transition: cubic-bezier(0.2, 0.75, 0.25, 1);
  }
  
  
  /* =========================
     RESET
     ========================= */
  
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
  }
  
  body {
    margin: 0;
  
    color: var(--ink);
    background-color: var(--white);
  
    font-family:
      Inter,
      ui-sans-serif,
      -apple-system,
      BlinkMacSystemFont,
      "Segoe UI",
      Helvetica,
      Arial,
      sans-serif;
  
    line-height: 1.5;
    overflow-x: hidden;
  
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
  }
  
  body.menu-open {
    overflow: hidden;
  }
  
  img {
    display: block;
    max-width: 100%;
  }
  
  a {
    color: inherit;
  }
  
  button {
    color: inherit;
    font: inherit;
  }
  
  ::selection {
    color: var(--white);
    background-color: var(--blue);
  }
  
  
  /* =========================
     UTILIDADES
     ========================= */
  
  .container {
    width: min(calc(100% - 2.5rem), var(--container-width));
    margin-inline: auto;
  }
  
  .skip-link {
    position: fixed;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 9999;
  
    padding: 0.65rem 1rem;
  
    color: var(--white);
    background-color: var(--black);
    border-radius: 0.65rem;
  
    transform: translateY(-160%);
  }
  
  .skip-link:focus {
    transform: translateY(0);
  }
  
  .eyebrow {
    margin: 0 0 1.15rem;
  
    color: var(--muted);
  
    font-size: 0.74rem;
    font-weight: 750;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }
  
  .eyebrow em {
    font-style: italic;
  }
  
  .gradient-text {
    display: block;
    padding-bottom: 0.12em;
  
    color: transparent;
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
  }
  
  .button {
    display: inline-flex;
    min-height: 3.4rem;
  
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
  
    padding-inline: 1.5rem;
  
    border: 0;
    border-radius: 999px;
  
    font-weight: 720;
    text-decoration: none;
  
    cursor: pointer;
  
    transition:
      transform 0.25s var(--transition),
      box-shadow 0.25s var(--transition);
  }
  
  .button:hover {
    transform: translateY(-2px);
  }
  
  .button:active {
    transform: translateY(0);
  }
  
  .button-small {
    min-height: 2.75rem;
    padding-inline: 1.15rem;
    font-size: 0.9rem;
  }
  
  .button-dark {
    color: var(--white);
    background-color: var(--black);
  }
  
  .button-gradient {
    color: var(--white);
    background: var(--gradient);
    box-shadow: 0 14px 34px rgba(45, 134, 215, 0.24);
  }
  
  .button-gradient:hover {
    box-shadow: 0 18px 42px rgba(45, 134, 215, 0.34);
  }
  
  .text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
  
    font-weight: 700;
    text-decoration: none;
  }
  
  .text-link span {
    transition: transform 0.25s var(--transition);
  }
  
  .text-link:hover span {
    transform: translateY(3px);
  }
  
  
  /* =========================
     NAVEGACIÓN
     ========================= */
  
  .site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
  
    height: var(--header-height);
  
    border-bottom: 1px solid transparent;
  
    background-color: rgba(255, 255, 255, 0.82);
  
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  
    transition:
      height 0.3s var(--transition),
      border-color 0.3s ease,
      box-shadow 0.3s ease;
  }
  
  .site-header.scrolled {
    height: 72px;
  
    border-bottom-color: rgba(10, 10, 12, 0.08);
  
    box-shadow: 0 8px 30px rgba(10, 10, 12, 0.04);
  }
  
  .nav-wrapper {
    display: flex;
    height: 100%;
  
    align-items: center;
    justify-content: space-between;
  }
  
  .brand {
    position: relative;
    left: -0.5rem;
    top:-0.7rem;
  
    width: clamp(10rem, 14vw, 16rem);
  }
  
  .brand img {
    width: 100%;
    height: auto;
  
    transform: translateY(1rem);
  }
  
  .main-navigation {
    display: flex;
    align-items: center;
    gap: 2.1rem;
  }
  
  .main-navigation > a:not(.button) {
    color: #3b3b40;
  
    font-size: 0.91rem;
    font-weight: 650;
    text-decoration: none;
  }
  
  .main-navigation > a:not(.button)::after {
    display: block;
  
    width: 0;
    height: 1px;
    margin-top: 0.2rem;
  
    background-color: var(--black);
  
    content: "";
  
    transition: width 0.25s ease;
  }
  
  .main-navigation > a:not(.button):hover::after {
    width: 100%;
  }
  
  .nav-toggle {
    display: none;
  
    width: 3rem;
    height: 3rem;
    padding: 0;
  
    border: 0;
    background: transparent;
  }
  
  .nav-toggle span {
    display: block;
  
    width: 1.5rem;
    height: 2px;
    margin: 0.32rem auto;
  
    background-color: var(--black);
  
    transition:
      transform 0.25s ease,
      opacity 0.25s ease;
  }
  
  
  /* =========================
     HERO
     ========================= */
  
  .hero {
    position: relative;
  
    min-height: 100vh;
  
    padding-top: calc(var(--header-height) + 2.25rem);
    padding-bottom: 2rem;
  
    overflow: hidden;
  }
  
  .hero-grid {
    position: relative;
    z-index: 2;
  
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
  
    align-items: center;
    gap: 2rem;
  }
  
  .hero-content {
    position: relative;
    top: -4rem;

    max-width: 53rem;
  }
  
  .hero h1 {
    max-width: 53rem;
    margin: 0;
  
    font-size: clamp(3.4rem, 6.2vw, 6.3rem);
    font-weight: 780;
    line-height: 1;
    letter-spacing: -0.055em;
  }
  
  .hero-description {
    max-width: 39rem;
    margin: 2.1rem 0;
  
    color: var(--muted);
  
    font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  }
  
  .hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
  
    gap: 1.8rem;
  
    width: 100%;
    max-width: 39rem;
  
    margin-top: 4.8rem;
  }
  
  .hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1.7rem;
  
    margin-top: 3.6rem;
  
    color: #77777f;
  
    font-size: 0.82rem;
    font-weight: 650;
  }
  
  .hero-benefits span::before {
    display: inline-block;
  
    width: 0.4rem;
    height: 0.4rem;
    margin-right: 0.65rem;
  
    border-radius: 50%;
    background: var(--gradient);
  
    content: "";
    vertical-align: 1px;
  }
  
  
  /* =========================
     HERO VISUAL
     ========================= */
  
  .hero-visual {
    position: relative;
    min-width: 0;
    overflow: visible;
  }
  
  .hero-visual::before,
  .hero-visual::after {
    position: absolute;
    z-index: 0;
  
    border-radius: 50%;
    filter: blur(5rem);
  
    content: "";
    pointer-events: none;
  }
  
  .hero-visual::before {
    top: 1rem;
    right: -5rem;
  
    width: 24rem;
    height: 24rem;
  
    background: rgba(117, 49, 165, 0.18);
  
    filter: blur(6rem);
  }
  
  .hero-visual::after {
    bottom: -4rem;
    left: -5rem;
  
    width: 20rem;
    height: 20rem;
  
    background: rgba(20, 212, 209, 0.20);
  }
  
  .visual-stage {
    position: relative;
    z-index: 1;
  
    width: min(100%, 28rem);
    aspect-ratio: 4 / 5;
  
    margin-inline: auto;
  
    border-radius: 2.5rem;
    overflow: hidden;
  
    box-shadow: 0 2rem 5rem rgba(15, 15, 20, 0.15);
  
    transform: translateX(-3rem) rotate(2deg);
    transform-origin: center;
  }
  
  .visual-stage img {
    width: 100%;
    height: 100%;
  
    object-fit: cover;
    object-position: center;
  }
  
  .floating-label {
    position: absolute;
    z-index: 2;
  
    padding: 0.65rem 0.95rem;
  
    border: 1px solid rgba(10, 10, 15, 0.08);
    border-radius: 999px;
  
    background-color: rgba(255, 255, 255, 0.88);
  
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.08);
  
    backdrop-filter: blur(0.7rem);
    -webkit-backdrop-filter: blur(0.7rem);
  
    font-size: 0.66rem;
    font-weight: 760;
    letter-spacing: 0.12em;
  }
  
  .floating-label-one {
    top: 2rem;
    left: 1.6rem;
  }
  
  .floating-label-two {
    top: 10.5rem;
    right: 1.5rem;
  }
  
  
  /* =========================
     LUCES DE FONDO DEL HERO
     ========================= */
  
  .hero-glow {
    position: absolute;
  
    border-radius: 50%;
    filter: blur(0.7rem);
  
    pointer-events: none;
  }
  
  .hero-glow-left {
    bottom: 0;
    left: -11rem;
  
    width: 26rem;
    height: 26rem;
  
    background:
      radial-gradient(
        circle,
        rgba(18, 213, 209, 0.10),
        transparent 66%
      );
  }
  
  .hero-glow-right {
    top: 5rem;
    right: -10rem;
  
    width: 27rem;
    height: 27rem;
  
    background:
      radial-gradient(
        circle,
        rgba(117, 48, 165, 0.10),
        transparent 66%
      );
  }
  
  
  /* =========================
     FRANJA DE VALORES
     ========================= */
  
     .values-strip {
      overflow: hidden;
    
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    
      background-color: var(--soft);
    }
    
    .values-track {
      display: flex;
      width: max-content;
    
      animation: values-marquee 28s linear infinite;
    }
    
    .values-group {
      display: flex;
      flex-shrink: 0;
    
      align-items: center;
      gap: 2.1rem;
    
      padding-block: 1.35rem;
      padding-right: 2.1rem;
    }
    
    .values-group span {
      color: #7b7b83;
    
      font-size: 0.75rem;
      font-weight: 780;
      letter-spacing: 0.18em;
    
      white-space: nowrap;
    }
    
    .values-group i {
      flex-shrink: 0;
    
      width: 0.32rem;
      height: 0.32rem;
    
      border-radius: 50%;
      background: var(--gradient);
    }
    
    @keyframes values-marquee {
      from {
        transform: translateX(0);
      }
    
      to {
        transform: translateX(-50%);
      }
    }
  
  
  /* =========================
     ANIMACIONES
     ========================= */
  
  .reveal {
    opacity: 0;
  
    transform: translateY(2rem);
  
    transition:
      opacity 0.85s var(--transition),
      transform 0.85s var(--transition);
  }
  
  .reveal-delay {
    transition-delay: 0.15s;
  }
  
  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  

  /* =========================
   PRODUCTOS
   ========================= */

.products-section {
  padding-top: clamp(3rem, 5vw, 4.5rem);
  padding-bottom: clamp(5rem, 8vw, 8rem);

  background-color: var(--white);
}

.products-heading{
  max-width:43rem;

  margin-bottom:5rem;

  text-align:left;
}

.products-heading h2 {
  margin: 0;

  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  font-weight: 780;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.products-heading > p:last-child {
  max-width: 36rem;
  margin: 1.4rem auto 0;

  color: var(--muted);

  font-size: 1.05rem;
}

.products-grid {
  display: grid;
  grid-template-columns:
    repeat(auto-fit, minmax(min(100%, 19rem), 23rem));

  justify-content: center;
  gap: 2rem;
}

.product-card {
  overflow: hidden;

  border: 1px solid var(--line);
  border-radius: 2rem;

  background-color: var(--white);

  box-shadow:
    0 1.5rem 4rem rgba(15, 15, 20, 0.08);

  transition:
    transform 0.3s var(--transition),
    box-shadow 0.3s var(--transition);
}

.product-card:hover {
  transform: translateY(-0.5rem);

  box-shadow:
    0 2rem 5rem rgba(15, 15, 20, 0.13);
}

.product-image {
  display: block;

  aspect-ratio: 1 / 1;

  overflow: hidden;

  background:
    linear-gradient(
      145deg,
      rgba(20, 212, 209, 0.08),
      rgba(117, 49, 165, 0.08)
    );
}

.product-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.45s var(--transition);
}

.product-card:hover .product-image img {
  transform: scale(1.04);
}

.product-info {
  padding: 1.7rem;
}

.product-category {
  margin: 0 0 0.7rem;

  color: var(--blue);

  font-size: 0.7rem;
  font-weight: 780;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-info h3 {
  margin: 0;

  font-size: 1.45rem;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.product-description {
  margin: 0.9rem 0 1.5rem;

  color: var(--muted);

  font-size: 0.94rem;
}

.product-button {
  width: 100%;
}

/* =========================
   FOOTER
   ========================= */
   .site-footer{

    background:#f7f8fa;

    border-top:1px solid #e8e8eb;

    padding:2rem 0;

}

.footer-content{

    display:grid;

    grid-template-columns:
        1fr
        auto
        1fr;

    align-items:center;

}

.footer-logo{

    justify-self:start;

}

.footer-logo img{

  width:4rem;

  opacity:.9;

  transition:.3s;

}

.footer-logo:hover img{

  opacity:1;

  transform:translateY(-2px);

}

.footer-links{

    display:flex;

    align-items:center;

    gap:2rem;

}

.footer-links a{

    color:var(--muted);

    text-decoration:none;

    font-size:.92rem;

    transition:.25s;

}

.footer-links a:hover{

    color:var(--black);

}

.footer-copy{

    justify-self:end;

    color:var(--muted);

    font-size:.92rem;

    white-space:nowrap;

}
  
  /* =========================
     TABLET
     ========================= */
  
  @media (max-width: 900px) {
    :root {
      --header-height: 74px;
    }
  
    .brand {
      left: 0;
      width: clamp(8.5rem, 24vw, 11rem);
    }
  
    .brand img {
      transform: none;
    }
  
    .nav-toggle {
      position: relative;
      z-index: 3;
  
      display: block;
    }
  
    .nav-toggle[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }
  
    .nav-toggle[aria-expanded="true"] span:nth-child(2) {
      opacity: 0;
    }
  
    .nav-toggle[aria-expanded="true"] span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }
  
    .main-navigation {
      position: fixed;
      inset: 0;
      z-index: 2;
  
      display: flex;
      flex-direction: column;
  
      align-items: flex-start;
      justify-content: center;
  
      gap: 1.75rem;
      padding: 6.25rem 1.9rem;
  
      background-color: rgba(255, 255, 255, 0.98);
  
      opacity: 0;
      pointer-events: none;
  
      transform: translateY(-0.9rem);
  
      transition:
        opacity 0.28s ease,
        transform 0.28s var(--transition);
    }
  
    .main-navigation.open {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }
  
    .main-navigation > a:not(.button) {
      font-size: 2.2rem;
    }
  
    .hero {
      min-height: auto;
      padding-top: 8.7rem;
      padding-bottom: 5rem;
    }
  
    .hero-grid {
      grid-template-columns: 1fr;
      gap: 3.5rem;
    }
  
    .hero-content {
      top: 0;
    }
  
    .hero-visual {
      margin-top: 1rem;
    }
  
    .visual-stage {
      width: min(100%, 28rem);
      margin-inline: auto;
  
      transform: rotate(1.5deg);
    }
  }
  
/* =========================
   MÓVIL
   ========================= */

   @media (max-width: 700px) {

    /* CONTENEDOR */
  
    .container {
      width: min(
        calc(100% - 2.5rem),
        var(--container-width)
      );
    }
  
  
    /* HEADER */
  
    .site-header,
    .site-header.scrolled {
      height: 5.5rem;
  
      background-color: rgba(255, 255, 255, 0.98);
  
      border-bottom:
        1px solid rgba(10, 10, 15, 0.06);
  
      box-shadow: none;
    }
  
    .brand {
      position: relative;
  
      left: 0;
      top: 0;
  
      width: 10.5rem;
    }
  
    .brand img {
      width: 100%;
      height: auto;
  
      transform: none;
    }
  
    .nav-toggle {
      width: 2.8rem;
      height: 2.8rem;
    }
  
    .nav-toggle span {
      width: 1.8rem;
      height: 2px;
  
      margin-block: 0.36rem;
    }
  
  
    /* MENÚ MÓVIL */
  
    .main-navigation {
      position: fixed;
  
      top: 5.5rem;
      right: 0;
      bottom: 0;
      left: 0;
  
      display: flex;
      flex-direction: column;
  
      align-items: flex-start;
      justify-content: flex-start;
  
      gap: 1.5rem;
  
      padding: 2.5rem 2rem;
  
      background-color: #ffffff;
  
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
  
      transform: translateY(-0.75rem);
  
      overflow-y: auto;
  
      transition:
        opacity 0.25s ease,
        transform 0.25s var(--transition),
        visibility 0.25s ease;
    }
  
    .main-navigation.open {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
  
      transform: translateY(0);
    }
  
    .main-navigation > a:not(.button) {
      width: 100%;
  
      color: var(--ink);
  
      font-size: clamp(2rem, 10vw, 2.8rem);
      font-weight: 760;
      line-height: 1;
      letter-spacing: -0.04em;
    }
  
    .main-navigation .button {
      width: 100%;
      max-width: 19rem;
  
      margin-top: 0.75rem;
    }
  
  
    /* HERO */
  
    .hero {
      min-height: auto;
  
      padding-top: 8.75rem;
      padding-bottom: 4.5rem;
    }
  
    .hero-grid {
      gap: 3rem;
    }
  
    .hero-content {
      top: 0;
    }
  
    .eyebrow {
      margin-bottom: 1.4rem;
  
      font-size: 0.72rem;
      letter-spacing: 0.17em;
    }
  
    .hero h1 {
      max-width: 100%;
  
      font-size: clamp(3.15rem, 13.2vw, 4.2rem);
      line-height: 0.98;
      letter-spacing: -0.055em;
    }
  
    .hero-description {
      max-width: 28rem;
  
      margin-top: 2.4rem;
      margin-bottom: 0;
  
      font-size: 1.08rem;
      line-height: 1.6;
    }
  
    .hero-actions {
      display: flex;
      flex-direction: column;
  
      align-items: stretch;
      justify-content: center;
  
      width: 100%;
      max-width: 22rem;
  
      gap: 1.25rem;
  
      margin-top: 3.5rem;
      margin-inline: auto;
    }
  
    .hero-actions .button {
      width: 100%;
      min-height: 4rem;
  
      padding-inline: 1.25rem;
  
      font-size: 1rem;
    }
  
    .hero-actions .text-link {
      justify-content: center;
  
      min-height: 2.8rem;
  
      font-size: 0.95rem;
    }
  
    .hero-benefits {
      display: none;
    }
  
    .hero-visual {
      margin-top: 0.5rem;
    }
  
    .visual-stage {
      width: min(92%, 24rem);
      aspect-ratio: 4 / 5;
  
      margin-inline: auto;
  
      border-radius: 1.8rem;
  
      transform: rotate(1deg);
    }
  
    .floating-label-two {
      top: 9rem;
      right: 0.8rem;
    }
  
  
    /* CARRUSEL DE PALABRAS */
  
    .values-group {
      gap: 1.5rem;
  
      padding-block: 1rem;
      padding-right: 1.5rem;
    }
  
    .values-group span {
      font-size: 0.66rem;
      letter-spacing: 0.15em;
    }
  
  
    /* PRODUCTOS */
  
    .products-section {
      padding-top: 3.5rem;
      padding-bottom: 5rem;
    }
  
    .products-heading {
      max-width: 100%;
  
      margin-bottom: 2.5rem;
  
      text-align: left;
    }
  
    .products-heading .eyebrow {
      margin-bottom: 1.15rem;
    }
  
    .products-heading h2 {
      max-width: 100%;
  
      margin: 0;
  
      font-size: clamp(2.35rem, 10vw, 3.15rem);
      line-height: 1.02;
      letter-spacing: -0.05em;
    }
  
    .products-grid {
      grid-template-columns: minmax(0, 1fr);
  
      width: 100%;
  
      gap: 1.5rem;
    }
  
    .product-card {
      width: 100%;
      max-width: 28rem;
  
      margin-inline: auto;
  
      border-radius: 1.7rem;
  
      transform: none;
      transform-style: flat;
    }
  
    .product-card.is-visible,
    .product-card:hover {
      transform: none;
    }
  
    .product-card::before {
      display: none;
    }
  
    .product-image {
      aspect-ratio: 4 / 3;
    }
  
    .product-image img {
      object-position: center;
    }
  
    .product-info {
      padding: 1.7rem 1.5rem 1.5rem;
    }
  
    .product-category {
      margin-bottom: 0.8rem;
  
      font-size: 0.67rem;
      line-height: 1.4;
      letter-spacing: 0.14em;
    }
  
    .product-info h3 {
      font-size: clamp(1.45rem, 6.7vw, 1.9rem);
      line-height: 1.18;
    }
  
    .product-description {
      margin-top: 1rem;
      margin-bottom: 1.6rem;
  
      font-size: 1rem;
      line-height: 1.55;
    }
  
    .product-button {
      min-height: 3.8rem;
  
      font-size: 1rem;
    }
  
  
    /* FOOTER */
  
    .site-footer {
      padding-block: 2.8rem;
  
      background-color: #f7f8fa;
    }
  
    .footer-content {
      display: flex;
      flex-direction: column;
  
      align-items: center;
      justify-content: center;
  
      gap: 1.8rem;
  
      text-align: center;
    }
  
    .footer-logo {
      width: 7.5rem;
    }
  
    .footer-logo img {
      display: block;
  
      width: 100%;
      height: auto;
    }
  
    .footer-links {
      display: flex;
      flex-wrap: wrap;
  
      justify-content: center;
  
      gap: 0.8rem 1.4rem;
    }
  
    .footer-links a {
      font-size: 0.88rem;
    }
  
    .footer-copy {
      margin: 0;
  
      font-size: 0.88rem;
    }
  }
  
  
  /* =========================
     MOVIMIENTO REDUCIDO
     ========================= */
  
  @media (prefers-reduced-motion: reduce) {
  
    html {
      scroll-behavior: auto;
    }
  
    *,
    *::before,
    *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      scroll-behavior: auto !important;
      transition-duration: 0.01ms !important;
    }
  
    .reveal {
      opacity: 1;
      transform: none;
    }
  
    .product-card,
    .product-card.is-visible,
    .product-card:hover {
      opacity: 1;
      transform: none;
    }
  
    .product-image img,
    .product-card:hover .product-image img {
      transform: none;
    }
  }
/* =========================
   PÁGINAS LEGALES
   ========================= */

   .legal-header {
    border-bottom: 1px solid var(--line);
    background-color: rgba(255, 255, 255, 0.94);
  }
  
  .legal-navigation {
    display: flex;
    min-height: 6rem;
  
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
  
  .legal-logo {
    width: clamp(10rem, 12vw, 16rem);
  }
  
  .legal-logo img {
    display: block;
    width: 100%;
    height: auto;
  }
  
  .legal-back-link {
    color: var(--muted);
  
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
  
    transition: color 0.25s ease;
  }
  
  .legal-back-link:hover {
    color: var(--black);
  }
  
  .legal-page {
    padding-block: clamp(4rem, 8vw, 7rem);
  }
  
  .legal-content {
    max-width: 50rem;
  }
  
  .legal-content h1 {
    margin: 0;
  
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
  }
  
  .legal-updated {
    margin: 1.5rem 0 4rem;
    color: var(--muted);
  }
  
  .legal-content section {
    margin-top: 3.5rem;
  }
  
  .legal-content h2 {
    margin: 0 0 1rem;
  
    font-size: clamp(1.35rem, 3vw, 1.8rem);
    line-height: 1.2;
    letter-spacing: -0.025em;
  }
  
  .legal-content p,
  .legal-content li,
  .legal-content dd {
    color: var(--muted);
    line-height: 1.75;
  }
  
  .legal-content a {
    color: var(--ink);
    text-decoration-thickness: 1px;
    text-underline-offset: 0.2rem;
  }
  
  .legal-content ul {
    padding-left: 1.25rem;
  }
  
  .legal-content li + li {
    margin-top: 0.65rem;
  }
  
  .legal-data {
    margin: 2rem 0 0;
  }
  
  .legal-data > div {
    display: grid;
    grid-template-columns: 10rem 1fr;
    gap: 1.5rem;
  
    padding-block: 1rem;
  
    border-bottom: 1px solid var(--line);
  }
  
  .legal-data dt {
    font-weight: 750;
  }
  
  .legal-data dd {
    margin: 0;
  }
  
  .legal-table-wrapper {
    width: 100%;
    margin-top: 1.5rem;
  
    overflow-x: auto;
  
    border: 1px solid var(--line);
    border-radius: 1rem;
  }
  
  .legal-table {
    width: 100%;
    min-width: 42rem;
  
    border-collapse: collapse;
  }
  
  .legal-table th,
  .legal-table td {
    padding: 1rem;
  
    border-bottom: 1px solid var(--line);
  
    text-align: left;
    vertical-align: top;
  }
  
  .legal-table th {
    color: var(--ink);
    background-color: var(--soft);
  
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  
  .legal-table td {
    color: var(--muted);
  }
  
  .legal-table tbody tr:last-child td {
    border-bottom: 0;
  }
  
  @media (max-width: 600px) {
    .legal-navigation {
      min-height: 5rem;
    }
  
    .legal-logo {
      width: clamp(8.5rem, 24vw, 11rem);
    }
  
    .legal-content h1 {
      font-size: clamp(2.8rem, 15vw, 4rem);
    }
  
    .legal-data > div {
      grid-template-columns: 1fr;
      gap: 0.25rem;
    }
  }