*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --red:    #C0392B;
      --dark:   #1A1A1A;
      --ink:    #2D2D2D;
      --mid:    #555;
      --steel:  #888;
      --border: #E0E0E0;
      --bg:     #F7F7F5;
      --white:  #FFFFFF;
      --radius: 3px;
    }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Barlow', sans-serif;
      background: var(--bg);
      color: var(--ink);
      line-height: 1.7;
      overflow-x: hidden;
    }
    .container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: rgba(255,255,255,0.96);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--border);
    }
    .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
    .nav-logo { text-decoration: none; display: flex; align-items: center; }
    .nav-logo-img { height: 85px; width: auto; display: block; }
    .nav-links { display: flex; gap: 32px; list-style: none; }
    .nav-links a {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1rem; font-weight: 600;
      letter-spacing: .08em; text-transform: uppercase;
      color: var(--steel); text-decoration: none; transition: color .2s;
    }
    .nav-links a:hover { color: var(--red); }
    .nav-cta {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--dark); color: var(--white);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .82rem; font-weight: 700;
      letter-spacing: .1em; text-transform: uppercase;
      padding: 9px 20px; border-radius: var(--radius);
      text-decoration: none; transition: background .2s; white-space: nowrap;
    }
    .nav-cta:hover { background: var(--red); }

    .page-hero {
      background: var(--dark);
      padding: 140px 0 72px;
      position: relative; overflow: hidden;
    }
    .page-hero::before {
      content: ''; position: absolute; inset: 0;
      background: repeating-linear-gradient(
        -55deg, transparent, transparent 60px,
        rgba(192,57,43,.04) 60px, rgba(192,57,43,.04) 61px
      );
    }
    .page-hero-inner { position: relative; z-index: 1; }
    .page-hero-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .82rem; font-weight: 700;
      letter-spacing: .2em; text-transform: uppercase;
      color: var(--red); margin-bottom: 16px;
      display: flex; align-items: center; gap: 10px;
    }
    .page-hero-label::before { content: ''; width: 28px; height: 2px; background: var(--red); }
    .page-hero h1 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(2.8rem, 6vw, 5rem);
      font-weight: 800; text-transform: uppercase;
      line-height: .95; color: var(--white);
    }
    .page-hero h1 span { color: var(--red); }
    .page-hero-sub { margin-top: 16px; font-size: 1rem; color: rgba(255,255,255,.60); max-width: 480px; }

    .legal-page { padding: 72px 0 96px; }
    .legal-layout {
      display: grid;
      grid-template-columns: 240px 1fr;
      gap: 64px; align-items: start;
    }
    .toc {
      position: sticky; top: 88px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px 24px;
    }
    .toc-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .78rem; font-weight: 700;
      letter-spacing: .16em; text-transform: uppercase;
      color: var(--red); margin-bottom: 16px;
    }
    .toc-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
    .toc-list a {
      font-size: .92rem; color: var(--mid); text-decoration: none; transition: color .2s;
      display: block; padding: 2px 0 2px 10px; border-left: 2px solid transparent;
    }
    .toc-list a:hover { color: var(--red); border-color: var(--red); }

    .legal-article { max-width: 760px; }
    .update-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: #FFF3F2; border: 1px solid #FCCFCC;
      padding: 6px 14px; border-radius: 2px; margin-bottom: 40px;
      font-size: .88rem; color: var(--mid);
    }
    .update-badge strong { color: var(--red); }
    .legal-section { margin-bottom: 48px; }
    .legal-section h2 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.5rem; font-weight: 800;
      text-transform: uppercase; color: var(--dark);
      margin-bottom: 16px;
      padding-bottom: 10px;
      border-bottom: 2px solid var(--border);
    }
    .legal-section h2 span { color: var(--red); }
    .legal-section p { font-size: 1rem; color: var(--mid); margin-bottom: 14px; line-height: 1.75; }
    .legal-section ul { list-style: none; margin: 14px 0; display: flex; flex-direction: column; gap: 8px; }
    .legal-section ul li { font-size: 1rem; color: var(--mid); padding-left: 18px; position: relative; line-height: 1.7; }
    .legal-section ul li::before { content: ''; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; background: var(--red); border-radius: 50%; }
    .legal-section a { color: var(--red); text-decoration: none; }
    .legal-section a:hover { text-decoration: underline; }

    .cookie-table {
      width: 100%; border-collapse: collapse;
      margin: 20px 0; font-size: .93rem;
    }
    .cookie-table th {
      background: var(--dark); color: var(--white);
      padding: 12px 14px; text-align: left;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .82rem; font-weight: 700;
      letter-spacing: .08em; text-transform: uppercase;
    }
    .cookie-table td {
      padding: 11px 14px;
      border-bottom: 1px solid var(--border);
      color: var(--mid); vertical-align: top;
    }
    .cookie-table tr:last-child td { border-bottom: none; }
    .cookie-table tr:nth-child(even) td { background: var(--bg); }
    .cookie-type {
      display: inline-block;
      font-size: .75rem; font-weight: 700;
      letter-spacing: .06em; text-transform: uppercase;
      padding: 2px 8px; border-radius: 2px;
    }
    .cookie-type.propia { background: #E8F5E9; color: #2E7D32; }
    .cookie-type.terceros { background: #FFF8E1; color: #F57F17; }
    .cookie-type.tecnica { background: #E3F2FD; color: #1565C0; }

    .highlight-box {
      background: var(--white);
      border: 1px solid var(--border);
      border-left: 3px solid var(--red);
      padding: 18px 20px; border-radius: var(--radius); margin: 16px 0;
    }
    .highlight-box p { margin: 0; font-size: .96rem; }

    .browser-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin: 14px 0; }
    .browser-list li { font-size: 1rem; color: var(--mid); padding-left: 18px; position: relative; }
    .browser-list li::before { content: '→'; position: absolute; left: 0; color: var(--red); font-weight: 700; }

    footer { background: var(--dark); padding: 0; }
    .footer-top { padding: 56px 0 40px; border-bottom: 1px solid rgba(255,255,255,.07); }
    .footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; align-items: start; }
    .footer-logo { display: flex; align-items: flex-start; justify-content: flex-start; margin-bottom: 16px; }
    .footer-logo-img { height: 140px; width: auto; display: block; }
    .footer-tagline { font-size: 1rem; color: rgba(255,255,255,.75); line-height: 1.6; max-width: 220px; }
    .footer-contact-list { list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
    .footer-contact-list li { display: flex; align-items: center; gap: 8px; }
    .footer-contact-list svg { color: var(--red); flex-shrink: 0; }
    .footer-contact-list a { font-size: .95rem; color: rgba(255,255,255,.75); text-decoration: none; transition: color .2s; }
    .footer-contact-list a:hover { color: var(--red); }
    .footer-col-title { font-family: 'Barlow Condensed', sans-serif; font-size: .82rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 20px; }
    .footer-nav-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-nav-list a { font-size: 1rem; color: rgba(255,255,255,.75); text-decoration: none; transition: color .2s; }
    .footer-nav-list a:hover { color: var(--red); }
    .footer-hours-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
    .footer-hours-list li { font-size: .95rem; color: rgba(255,255,255,.75); display: flex; justify-content: space-between; gap: 16px; }
    .footer-hours-list .day { color: rgba(255,255,255,.5); }
    .footer-bottom { padding: 20px 0; }
    .footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
    .footer-copy { font-size: .92rem; color: rgba(255,255,255,.45); }
    .footer-bottom-links { display: flex; gap: 20px; list-style: none; }
    .footer-bottom-links a { font-size: .92rem; color: rgba(255,255,255,.45); text-decoration: none; transition: color .2s; }
    .footer-bottom-links a:hover { color: var(--red); }

    @media (max-width: 900px) {
      .legal-layout { grid-template-columns: 1fr; }
      .toc { position: static; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
      .cookie-table { font-size: .85rem; }
    }
    @media (max-width: 768px) { .nav-links { display: none; } }
    @media (max-width: 480px) {
      .footer-grid { grid-template-columns: 1fr; }
      .cookie-table { display: block; overflow-x: auto; }
    }
    .footer-dev { font-size: .88rem; color: rgba(255,255,255,.35); }
    .footer-dev a { color: rgba(255,255,255,.45); text-decoration: none; transition: color .2s; }
    .footer-dev a:hover { color: var(--red); }

.lang-switcher {
  position: relative;
  display: inline-flex;
  align-items: stretch;
  background: rgba(26,26,26,.09);
  border-radius: var(--radius);
  padding: 2px;
  flex-shrink: 0;
}
.lang-slide {
  position: absolute;
  top: 2px; left: 0;
  height: calc(100% - 4px);
  background: var(--dark);
  border-radius: calc(var(--radius) - 1px);
  transition: transform .22s cubic-bezier(.4,0,.2,1), width .22s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
  z-index: 0;
}
.lang-btn {
  position: relative; z-index: 1;
  background: none; border: none; cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .73rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--steel);
  padding: 5px 9px;
  border-radius: calc(var(--radius) - 1px);
  transition: color .22s;
  line-height: 1;
  white-space: nowrap;
}
.lang-btn.active { color: var(--white); }
.lang-btn:hover:not(.active) { color: var(--ink); }

.goog-te-banner-frame,
.skiptranslate,
.goog-te-balloon-frame,
#goog-gt-tt,
.VIpgJd-ZVi9od-aZ2wEe-wOHMyf { display: none !important; }
body { top: 0 !important; }