*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --orange: #FF6B2B;
      --orange-dark: #E05520;
      --orange-light: #FFF1EB;
      --black: #1A1A1A;
      --gray-900: #2D2D2D;
      --gray-600: #6B6B6B;
      --gray-200: #E8E7E4;
      --gray-100: #F0EFEC;
      --white-warm: #FAFAF8;
      --white: #FFFFFF;
      --green: #22C55E;
      --green-light: #F0FDF4;
      --font-display: 'Space Grotesk', sans-serif;
      --font-body: 'Inter', sans-serif;
      --radius: 12px;
      --radius-sm: 8px;
      --shadow-card: 0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.06);
      --shadow-hover: 0 4px 8px rgba(0,0,0,0.08), 0 12px 32px rgba(0,0,0,0.10);
    }

    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-body);
      background: var(--white-warm);
      color: var(--black);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    /* ── NAV ── */
    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: var(--white);
      border-bottom: 1px solid var(--gray-200);
      padding: 0 1.5rem;
    }
    .nav-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
      gap: 1.5rem;
    }
    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      flex-shrink: 0;
    }
    .logo-icon {
      width: 36px;
      height: 36px;
    }
    .logo-text {
      font-family: var(--font-display);
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--black);
      letter-spacing: -0.02em;
    }
    .logo-text span { color: var(--orange); }
    nav ul {
      display: flex;
      list-style: none;
      gap: 0.25rem;
    }
    nav ul a {
      font-family: var(--font-body);
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--gray-600);
      text-decoration: none;
      padding: 0.4rem 0.75rem;
      border-radius: var(--radius-sm);
      transition: color 0.15s, background 0.15s;
    }
    nav ul a:hover { color: var(--black); background: var(--gray-100); }
    .nav-badge {
      background: var(--orange);
      color: white;
      font-size: 0.75rem;
      font-weight: 600;
      padding: 0.25rem 0.75rem;
      border-radius: 99px;
      white-space: nowrap;
      font-family: var(--font-display);
    }
    .hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
    .hamburger span { display: block; width: 22px; height: 2px; background: var(--black); margin: 5px 0; border-radius: 2px; transition: 0.2s; }

    /* ── HERO ── */
    .hero {
      background: var(--black);
      color: white;
      padding: 5rem 1.5rem 4rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 60% at 50% 110%, rgba(255,107,43,0.25) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(255,107,43,0.15);
      border: 1px solid rgba(255,107,43,0.3);
      color: var(--orange);
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 0.3rem 0.9rem;
      border-radius: 99px;
      margin-bottom: 1.5rem;
      font-family: var(--font-display);
    }
    .hero-eyebrow::before { content: '●'; font-size: 0.5rem; animation: pulse 2s infinite; }
    @keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }
    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 700;
      letter-spacing: -0.03em;
      line-height: 1.1;
      max-width: 700px;
      margin: 0 auto 1rem;
    }
    .hero h1 em { color: var(--orange); font-style: normal; }
    .hero-sub {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.65);
      max-width: 520px;
      margin: 0 auto 2.5rem;
      line-height: 1.7;
    }
    .hero-stats {
      display: flex;
      justify-content: center;
      gap: 2rem;
      flex-wrap: wrap;
    }
    .stat {
      text-align: center;
    }
    .stat-num {
      font-family: var(--font-display);
      font-size: 1.75rem;
      font-weight: 700;
      color: var(--orange);
      line-height: 1;
    }
    .stat-label {
      font-size: 0.75rem;
      color: rgba(255,255,255,0.5);
      margin-top: 2px;
    }

    /* ── AFFILIATE DISCLAIMER (above fold, required) ── */
    .affiliate-notice {
      background: var(--orange-light);
      border-bottom: 1px solid rgba(255,107,43,0.2);
      padding: 0.6rem 1.5rem;
      text-align: center;
    }
    .affiliate-notice p {
      font-size: 0.8rem;
      color: var(--orange-dark);
      max-width: 1200px;
      margin: 0 auto;
    }
    .affiliate-notice a { color: var(--orange-dark); font-weight: 600; }

    /* ── SECTION WRAPPER ── */
    .section { padding: 4rem 1.5rem; }
    .section-inner { max-width: 1200px; margin: 0 auto; }
    .section-header { margin-bottom: 2rem; }
    .section-eyebrow {
      font-family: var(--font-display);
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 0.4rem;
    }
    .section-title {
      font-family: var(--font-display);
      font-size: clamp(1.4rem, 3vw, 2rem);
      font-weight: 700;
      letter-spacing: -0.02em;
      color: var(--black);
    }

    /* ── FILTER TABS ── */
    .filter-tabs {
      display: flex;
      gap: 0.5rem;
      flex-wrap: wrap;
      margin-bottom: 1.75rem;
    }
    .tab {
      background: var(--white);
      border: 1px solid var(--gray-200);
      color: var(--gray-600);
      font-size: 0.8rem;
      font-weight: 500;
      padding: 0.4rem 1rem;
      border-radius: 99px;
      cursor: pointer;
      transition: 0.15s;
      font-family: var(--font-body);
    }
    .tab:hover { border-color: var(--orange); color: var(--orange); }
    .tab.active { background: var(--orange); border-color: var(--orange); color: white; }

    /* ── OFFER GRID ── */
    .offers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 1.25rem;
    }

    .offers-state {
      grid-column: 1 / -1;
      background: var(--white);
      border: 1px dashed var(--gray-200);
      border-radius: var(--radius);
      color: var(--gray-600);
      font-size: 0.9rem;
      padding: 2rem;
      text-align: center;
    }
    .offers-state-error {
      border-color: rgba(255,107,43,0.35);
      color: var(--orange-dark);
      background: var(--orange-light);
    }
    /* ── OFFER CARD ── */
    .card {
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-card);
      transition: box-shadow 0.2s, transform 0.2s;
      display: flex;
      flex-direction: column;
      position: relative;
    }
    .card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }

    /* Badge de descuento en forma de etiqueta */
    .discount-tag {
      position: absolute;
      top: 12px;
      left: -2px;
      background: var(--orange);
      color: white;
      font-family: var(--font-display);
      font-size: 0.8rem;
      font-weight: 700;
      padding: 0.25rem 0.7rem 0.25rem 0.85rem;
      border-radius: 0 4px 4px 0;
      z-index: 2;
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 8% 50%);
    }
    .discount-tag-soft {
      background: var(--black);
      clip-path: none;
      left: 12px;
      border-radius: 4px;
      font-size: 0.72rem;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }
    .card-img {
      aspect-ratio: 16/9;
      background: var(--gray-100);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .card-img img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      padding: 1rem;
    }
    .card-img .img-placeholder {
      font-size: 3rem;
      opacity: 0.2;
    }
    .card-body { padding: 1rem 1.1rem; flex: 1; display: flex; flex-direction: column; gap: 0.5rem; }
    .card-store {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.7rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--gray-600);
    }
    .store-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
    .card-niche {
      display: inline-flex;
      width: fit-content;
      max-width: 100%;
      color: var(--orange-dark);
      background: var(--orange-light);
      border-radius: 4px;
      font-size: 0.68rem;
      font-weight: 700;
      line-height: 1.35;
      padding: 0.16rem 0.5rem;
      text-transform: uppercase;
    }
    .card-title {
      font-family: var(--font-display);
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--black);
      line-height: 1.4;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .card-analysis {
      font-size: 0.8rem;
      color: var(--gray-600);
      line-height: 1.5;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .card-verdict {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 0.7rem;
      font-weight: 600;
      color: #15803D;
      background: var(--green-light);
      padding: 0.2rem 0.6rem;
      border-radius: 4px;
      width: fit-content;
    }
    .card-verdict::before { content: '✓'; }
    .card-prices {
      display: flex;
      align-items: baseline;
      gap: 0.5rem;
      margin-top: auto;
      padding-top: 0.5rem;
      border-top: 1px solid var(--gray-100);
    }
    .card-prices-note {
      color: var(--gray-600);
      font-size: 0.78rem;
      line-height: 1.4;
    }
    .price-new {
      font-family: var(--font-display);
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--black);
      line-height: 1;
    }
    .price-old {
      font-size: 0.85rem;
      color: var(--gray-600);
      text-decoration: line-through;
    }
    .price-save {
      font-size: 0.75rem;
      color: var(--green);
      font-weight: 600;
      margin-left: auto;
    }
    .card-cta {
      display: block;
      background: var(--orange);
      color: white;
      text-align: center;
      padding: 0.75rem;
      font-family: var(--font-display);
      font-size: 0.9rem;
      font-weight: 600;
      text-decoration: none;
      transition: background 0.15s;
    }
    .card-cta:hover { background: var(--orange-dark); }
    .card-cta-label { font-size: 0.7rem; opacity: 0.8; font-family: var(--font-body); font-weight: 400; display: block; }

    /* ── HOW IT WORKS ── */
    .how-section { background: var(--black); color: white; }
    .how-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1.5rem;
    }
    .how-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--radius);
      padding: 1.5rem;
    }
    .how-num {
      font-family: var(--font-display);
      font-size: 2rem;
      font-weight: 700;
      color: var(--orange);
      opacity: 0.5;
      line-height: 1;
      margin-bottom: 0.75rem;
    }
    .how-card h3 {
      font-family: var(--font-display);
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 0.4rem;
    }
    .how-card p { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

    /* ── ABOUT / TRANSPARENCY ── */
    .about-section { background: var(--gray-100); }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: start;
    }
    .about-text h2 {
      font-family: var(--font-display);
      font-size: 1.75rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      margin-bottom: 1rem;
    }
    .about-text p {
      font-size: 0.9rem;
      color: var(--gray-600);
      line-height: 1.8;
      margin-bottom: 0.75rem;
    }
    .affiliate-box {
      background: white;
      border: 1px solid var(--gray-200);
      border-radius: var(--radius);
      padding: 1.5rem;
    }
    .affiliate-box h3 {
      font-family: var(--font-display);
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 0.75rem;
      color: var(--black);
    }
    .affiliate-box p { font-size: 0.83rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 0.5rem; }
    .partners-list {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-top: 1rem;
    }
    .partner-badge {
      background: var(--gray-100);
      border: 1px solid var(--gray-200);
      color: var(--gray-900);
      font-size: 0.75rem;
      font-weight: 500;
      padding: 0.25rem 0.75rem;
      border-radius: 99px;
    }

    /* ── TELEGRAM COMMUNITY ── */
    .community-section { background: var(--orange); color: white; padding: 3rem 1.5rem; text-align: center; }
    .community-inner { max-width: 680px; margin: 0 auto; }
    .community-eyebrow {
      font-family: var(--font-display);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      opacity: 0.78;
      margin-bottom: 0.55rem;
    }
    .community-section h2 {
      font-family: var(--font-display);
      font-size: clamp(1.45rem, 3vw, 2rem);
      font-weight: 700;
      letter-spacing: -0.02em;
      margin-bottom: 0.65rem;
    }
    .community-section p { font-size: 0.92rem; opacity: 0.88; margin-bottom: 1.5rem; line-height: 1.7; }
    .community-actions { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
    .community-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 0.72rem 1.15rem;
      border-radius: var(--radius-sm);
      font-family: var(--font-display);
      font-size: 0.9rem;
      font-weight: 700;
      text-decoration: none;
      transition: transform 0.15s, opacity 0.15s, background 0.15s;
    }
    .community-btn:hover { transform: translateY(-1px); opacity: 0.9; }
    .community-btn-primary { background: var(--black); color: white; }
    .community-btn-secondary { background: white; color: var(--orange-dark); }

    /* ── FOOTER ── */
    footer {
      background: var(--gray-900);
      color: rgba(255,255,255,0.5);
      padding: 3rem 1.5rem 1.5rem;
    }
    .footer-inner { max-width: 1200px; margin: 0 auto; }
    .footer-top {
      display: grid;
      grid-template-columns: 1.5fr repeat(3, 1fr);
      gap: 2rem;
      margin-bottom: 2.5rem;
    }
    .footer-brand .logo-text { color: white; font-size: 1.1rem; }
    .footer-brand p {
      font-size: 0.8rem;
      line-height: 1.7;
      margin-top: 0.75rem;
      max-width: 280px;
    }
    .footer-col h4 {
      color: white;
      font-family: var(--font-display);
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 0.75rem;
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 0.4rem; }
    .footer-col ul a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.82rem; transition: color 0.15s; }
    .footer-col ul a:hover { color: white; }
    .footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin-bottom: 1.5rem; }
    .footer-legal { font-size: 0.75rem; line-height: 1.7; }
    .footer-legal a { color: rgba(255,255,255,0.4); text-decoration: underline; }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-top: 1.25rem;
      font-size: 0.75rem;
    }



    /* COOKIE CONSENT */
    .cookie-consent {
      position: fixed;
      left: 1rem;
      right: 1rem;
      bottom: 1rem;
      z-index: 50;
      max-width: 760px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 1rem 1.1rem;
      background: rgba(26,26,26,0.96);
      color: white;
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: var(--radius-sm);
      box-shadow: 0 16px 40px rgba(0,0,0,0.22);
    }
    .cookie-consent[hidden] { display: none; }
    .cookie-consent p { font-size: 0.8rem; line-height: 1.5; color: rgba(255,255,255,0.78); margin: 0; }
    .cookie-consent-actions { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
    .cookie-consent-actions a { color: rgba(255,255,255,0.75); font-size: 0.78rem; text-decoration: underline; }
    .cookie-consent-actions button {
      border: none;
      border-radius: var(--radius-sm);
      background: var(--orange);
      color: white;
      cursor: pointer;
      font-family: var(--font-display);
      font-size: 0.82rem;
      font-weight: 700;
      min-height: 38px;
      padding: 0 0.95rem;
    }
    @media (max-width: 640px) {
      .cookie-consent { flex-direction: column; align-items: flex-start; }
      .cookie-consent-actions { width: 100%; justify-content: space-between; }
    }


    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      nav ul, .nav-badge { display: none; }
      .hamburger { display: block; }
      .about-grid { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr; }
      .community-actions { flex-direction: column; align-items: stretch; }
      .hero { padding: 3.5rem 1.25rem 3rem; }
      .hero-stats { gap: 1.25rem; }
    }
    @media (max-width: 480px) {
      .offers-grid { grid-template-columns: 1fr; }
    }
    @media (prefers-reduced-motion: reduce) {
      * { transition: none !important; animation: none !important; }
    }
