*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --purple: #7B2D8B;
      --purple-light: #9B3DAD;
      --purple-dark: #5A1F67;
      --yellow: #F5C518;
      --dark: #1a1a1a;
      --dark2: #222;
      --mid: #333;
      --light: #f5f5f5;
      --white: #ffffff;
      --gray: #666;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Barlow', sans-serif;
      background: var(--dark);
      color: var(--white);
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      background: rgba(20,20,20,0.95);
      backdrop-filter: blur(10px);
      border-bottom: 2px solid var(--purple);
      padding: 0 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
    }

    .nav-logo img { height: 44px; width: auto; }

    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }

    .nav-links a {
      color: var(--white);
      text-decoration: none;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      opacity: 0.85;
      transition: opacity 0.2s, color 0.2s;
    }

    .nav-links a:hover { opacity: 1; color: var(--yellow); }

    .nav-cta {
      background: var(--purple);
      color: var(--white) !important;
      opacity: 1 !important;
      padding: 0.4rem 1.2rem;
      border-radius: 4px;
      transition: background 0.2s !important;
    }

    .nav-cta:hover { background: var(--purple-light) !important; }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
    }

    .hamburger span {
      display: block;
      width: 26px;
      height: 2px;
      background: var(--white);
      transition: all 0.3s;
    }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      padding-top: 64px;
      background:
        radial-gradient(ellipse at 70% 50%, rgba(123,45,139,0.25) 0%, transparent 60%),
        radial-gradient(ellipse at 10% 80%, rgba(245,197,24,0.08) 0%, transparent 50%),
        var(--dark);
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 39px,
        rgba(255,255,255,0.02) 39px,
        rgba(255,255,255,0.02) 40px
      ), repeating-linear-gradient(
        90deg,
        transparent,
        transparent 39px,
        rgba(255,255,255,0.02) 39px,
        rgba(255,255,255,0.02) 40px
      );
      pointer-events: none;
    }

    .hero-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 4rem 2rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .hero-text h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(3rem, 7vw, 6rem);
      line-height: 0.9;
      color: var(--white);
      margin-bottom: 1.2rem;
    }

    .hero-text h1 span {
      color: var(--purple-light);
    }

    .hero-text h1 em {
      color: var(--yellow);
      font-style: normal;
    }

    .hero-text p {
      font-size: 1.15rem;
      color: #ccc;
      line-height: 1.6;
      margin-bottom: 2rem;
      max-width: 480px;
    }

    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
      margin-bottom: 2rem;
    }

    .badge {
      background: rgba(123,45,139,0.25);
      border: 1px solid rgba(123,45,139,0.5);
      color: #dda0dd;
      padding: 0.3rem 0.8rem;
      border-radius: 999px;
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .hero-actions {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: var(--purple);
      color: var(--white);
      text-decoration: none;
      padding: 0.85rem 2rem;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 1.05rem;
      text-transform: uppercase;
      letter-spacing: 0.07em;
      border-radius: 6px;
      transition: background 0.2s, transform 0.2s;
      display: inline-block;
    }

    .btn-primary:hover { background: var(--purple-light); transform: translateY(-2px); }

    .btn-secondary {
      border: 2px solid var(--yellow);
      color: var(--yellow);
      text-decoration: none;
      padding: 0.85rem 2rem;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 1.05rem;
      text-transform: uppercase;
      letter-spacing: 0.07em;
      border-radius: 6px;
      transition: all 0.2s;
      display: inline-block;
    }

    .btn-secondary:hover { background: var(--yellow); color: var(--dark); transform: translateY(-2px); }

    .hero-visual {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .hero-logo-wrap {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(123,45,139,0.4);
      border-radius: 20px;
      padding: 3rem;
      backdrop-filter: blur(4px);
      box-shadow: 0 0 80px rgba(123,45,139,0.2);
    }

    .hero-logo-wrap img { width: 100%; max-width: 320px; height: auto; }

    /* ── SECTION COMMON ── */
    section { padding: 5rem 1.5rem; }

    .section-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .section-header h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2rem, 4vw, 3.2rem);
      color: var(--white);
      letter-spacing: 0.04em;
    }

    .section-header h2 span { color: var(--purple-light); }

    .section-header p {
      color: #aaa;
      margin-top: 0.5rem;
      font-size: 1.05rem;
    }

    .section-line {
      width: 60px;
      height: 3px;
      background: var(--yellow);
      margin: 0.8rem auto 0;
      border-radius: 2px;
    }

    /* ── PRODUCTS ── */
    #productos { background: var(--dark2); }

    .container { max-width: 1200px; margin: 0 auto; }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 1.5rem;
    }

    .product-card {
      background: var(--mid);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 12px;
      padding: 1.5rem;
      transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
      position: relative;
      overflow: hidden;
    }

    .product-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--purple), var(--yellow));
      opacity: 0;
      transition: opacity 0.25s;
    }

    .product-card:hover {
      transform: translateY(-4px);
      border-color: rgba(123,45,139,0.5);
      box-shadow: 0 8px 32px rgba(123,45,139,0.2);
    }

    .product-card:hover::before { opacity: 1; }

    .product-icon {
      font-size: 2.2rem;
      margin-bottom: 0.8rem;
    }

    .product-card h3 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: var(--white);
      margin-bottom: 0.75rem;
    }

    .product-card ul {
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
    }

    .product-card ul li {
      background: rgba(123,45,139,0.18);
      color: #ccc;
      font-size: 0.78rem;
      padding: 0.2rem 0.6rem;
      border-radius: 4px;
      border: 1px solid rgba(123,45,139,0.3);
    }

    /* ── MARCAS ── */
    #marcas { background: var(--dark); }

    .brands-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
      gap: 1.2rem;
      align-items: center;
    }

    .brand-item {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 10px;
      padding: 1.2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.25s;
      min-height: 80px;
    }

    .brand-item:hover {
      background: rgba(255,255,255,0.12);
      border-color: var(--purple);
      transform: scale(1.04);
    }

    .brand-item img {
      max-width: 100%;
      max-height: 50px;
      width: auto;
      height: auto;
      object-fit: contain;
      filter: grayscale(30%) brightness(1.1);
      transition: filter 0.25s;
    }

    .brand-item:hover img { filter: grayscale(0%) brightness(1.2); }

    /* ── CONTACTO ── */
    #contacto { background: var(--dark2); }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: start;
    }

    .contact-info h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.8rem;
      letter-spacing: 0.04em;
      margin-bottom: 1.5rem;
      color: var(--yellow);
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.5rem;
      padding: 1rem 1.2rem;
      background: rgba(255,255,255,0.04);
      border-left: 3px solid var(--purple);
      border-radius: 0 8px 8px 0;
    }

    .contact-item .icon { font-size: 1.8rem; }

    .contact-item .text { display: flex; flex-direction: column; }
    .contact-item .label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: #888; font-weight: 600; }
    .contact-item .value { font-size: 1.05rem; color: var(--white); font-weight: 600; }
    .contact-item .value a { color: var(--white); text-decoration: none; }
    .contact-item .value a:hover { color: var(--yellow); }

    .contact-map {
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.1);
    }

    .contact-map iframe {
      width: 100%;
      height: 360px;
      display: block;
      filter: grayscale(40%) invert(0.05);
    }

    /* ── FOOTER ── */
    footer {
      background: #111;
      border-top: 2px solid var(--purple);
      padding: 2rem 1.5rem;
      text-align: center;
    }

    footer img { height: 40px; margin-bottom: 1rem; }

    footer p { color: #666; font-size: 0.85rem; }

    footer a { color: var(--purple-light); text-decoration: none; }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; }
      .hero-text p { max-width: 100%; }
      .hero-actions { justify-content: center; }
      .hero-badges { justify-content: center; }
      .contact-grid { grid-template-columns: 1fr; }
      .nav-links { display: none; }
      .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 64px; left: 0; right: 0;
        background: rgba(20,20,20,0.98);
        padding: 1.5rem 2rem 2rem;
        border-bottom: 2px solid var(--purple);
        gap: 1.2rem;
        z-index: 999;
      }
      .hamburger { display: flex; }
    }

    @media (max-width: 560px) {
      .products-grid { grid-template-columns: 1fr; }
      .brands-grid { grid-template-columns: repeat(2, 1fr); }
      section { padding: 3.5rem 1rem; }
    }

    /* ── ANIMATIONS ── */
    .fade-in {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .fade-in.visible { opacity: 1; transform: none; }