:root {
      --black: #0f0f0f;
      --dark: #171717;
      --gold: #d6a23a;
      --gold-light: #f0c86a;
      --white: #ffffff;
      --gray: #b7b7b7;
      --soft: #f7f4ee;
      --radius: 22px;
      --shadow: 0 20px 50px rgba(0,0,0,.18);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      scroll-behavior: smooth;
    }

    body {
      font-family: "Montserrat", sans-serif;
      background: var(--soft);
      color: var(--dark);
      line-height: 1.6;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .container {
      width: min(1180px, 92%);
      margin: auto;
    }

    .topbar {
      background: #000;
      color: var(--white);
      font-size: .9rem;
      padding: 10px 0;
    }

    .topbar .container {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(15,15,15,.96);
      backdrop-filter: blur(12px);
      box-shadow: 0 8px 30px rgba(0,0,0,.25);
    }

    .navbar {
      height: 86px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
      color: var(--white);
      font-weight: 800;
      letter-spacing: .5px;
    }

    .brand-logo {
      width: 80px;
      height: 80px;
      object-fit: contain;
      transform: scale(1.6);
      transform-origin: center;
      flex-shrink: 0;
    }

    .brand span small {
      display: block;
      color: var(--gold-light);
      font-size: .72rem;
      font-weight: 500;
      letter-spacing: 1.5px;
    }

    nav ul {
      display: flex;
      list-style: none;
      gap: 28px;
      align-items: center;
    }

    nav a {
      color: var(--white);
      font-weight: 600;
      font-size: .95rem;
      transition: .3s;
    }

    nav a:hover {
      color: var(--gold-light);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 22px;
      border-radius: 999px;
      font-weight: 700;
      transition: .3s;
      border: none;
      cursor: pointer;
    }

    .btn-gold {
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: #111;
      box-shadow: 0 12px 30px rgba(214,162,58,.35);
    }

    .btn-gold:hover {
      transform: translateY(-3px);
      box-shadow: 0 18px 38px rgba(214,162,58,.45);
    }

    .btn-outline {
      border: 1px solid rgba(255,255,255,.3);
      color: var(--white);
    }

    .btn-outline:hover {
      border-color: var(--gold-light);
      color: var(--gold-light);
    }

    .hero {
      min-height: calc(100vh - 120px);
      background:
        linear-gradient(90deg, rgba(0,0,0,.88), rgba(0,0,0,.55), rgba(0,0,0,.15)),
        url("assets/banner-principal.jpg") center/cover no-repeat;
      color: var(--white);
      display: flex;
      align-items: center;
      position: relative;
    }

    .hero-content {
      max-width: 720px;
      padding: 90px 0;
    }

    .tag {
      display: inline-block;
      color: var(--gold-light);
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 18px;
    }

    .hero h1 {
      font-size: clamp(2.4rem, 6vw, 5rem);
      line-height: 1.05;
      margin-bottom: 22px;
    }

    .hero h1 strong {
      color: var(--gold-light);
    }

    .hero p {
      font-size: 1.18rem;
      color: #e7e7e7;
      max-width: 620px;
      margin-bottom: 32px;
    }

    .hero-actions {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .section {
      padding: 90px 0;
    }

    .section-title {
      text-align: center;
      max-width: 760px;
      margin: 0 auto 50px;
    }

    .section-title span {
      color: var(--gold);
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-size: .82rem;
    }

    .section-title h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      margin: 10px 0 15px;
    }

    .section-title p {
      color: #626262;
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 28px;
      box-shadow: 0 12px 35px rgba(0,0,0,.08);
      transition: .3s;
    }

    .card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow);
    }

    .card-icon {
      width: 58px;
      height: 58px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      background: #111;
      color: var(--gold-light);
      font-size: 1.8rem;
      margin-bottom: 18px;
    }

    .card h3 {
      margin-bottom: 10px;
      font-size: 1.15rem;
    }

    .card p {
      color: #666;
      font-size: .95rem;
    }

    .products {
      background: #111;
      color: var(--white);
    }

    .products .section-title p {
      color: #cfcfcf;
    }

    .product-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .product {
      background: #1c1c1c;
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid rgba(255,255,255,.08);
      transition: .3s;
    }

    .product:hover {
      transform: translateY(-8px);
      border-color: rgba(214,162,58,.6);
    }

    .product-img {
      height: 250px;
      background: #2b2b2b;
      overflow: hidden;
      padding: 0;
    }

    .product-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .product-info {
      padding: 26px;
    }

    .product-info h3 {
      color: var(--gold-light);
      margin-bottom: 10px;
    }

    .product-info p {
      color: #cfcfcf;
      margin-bottom: 18px;
      font-size: .95rem;
    }

    .banner-area {
      background:
        linear-gradient(90deg, rgba(0,0,0,.88), rgba(0,0,0,.45)),
        url("assets/banner-secundario.jpg") center/cover no-repeat;
      color: var(--white);
      border-radius: 34px;
      padding: 70px;
      box-shadow: var(--shadow);
    }

    .banner-area h2 {
      font-size: clamp(2rem, 4vw, 3.4rem);
      max-width: 680px;
      line-height: 1.1;
      margin-bottom: 18px;
    }

    .banner-area p {
      max-width: 580px;
      color: #e1e1e1;
      margin-bottom: 28px;
    }

    .about {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
    }

    .about-img {
      border-radius: 34px;
      overflow: hidden;
      box-shadow: var(--shadow);
    }
    
    .about-img img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
    }

    .about-text h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      margin-bottom: 20px;
    }

    .about-text p {
      color: #5f5f5f;
      margin-bottom: 18px;
    }

    .about-list {
      margin: 25px 0;
      display: grid;
      gap: 12px;
    }

    .about-list div {
      background: var(--white);
      padding: 16px 18px;
      border-radius: 16px;
      font-weight: 700;
      box-shadow: 0 8px 24px rgba(0,0,0,.06);
    }

    .contact {
      background: #0f0f0f;
      color: var(--white);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }

    .contact-box {
      background: #191919;
      border-radius: var(--radius);
      padding: 34px;
      border: 1px solid rgba(255,255,255,.08);
    }

    .contact-box h3 {
      color: var(--gold-light);
      margin-bottom: 18px;
    }

    .contact-item {
      margin-bottom: 14px;
      color: #d6d6d6;
    }

    form {
      display: grid;
      gap: 16px;
    }

    input, textarea, select {
      width: 100%;
      padding: 16px;
      border-radius: 14px;
      border: 1px solid rgba(255,255,255,.12);
      background: #101010;
      color: var(--white);
      font-family: inherit;
      outline: none;
    }

    textarea {
      min-height: 130px;
      resize: vertical;
    }

    footer {
      background: #050505;
      color: var(--white);
      padding: 60px 0 25px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr;
      gap: 35px;
      margin-bottom: 40px;
    }

    footer h3, footer h4 {
      margin-bottom: 18px;
      color: var(--gold-light);
    }

    footer p, footer li {
      color: #bfbfbf;
      font-size: .95rem;
    }

    footer ul {
      list-style: none;
      display: grid;
      gap: 10px;
    }

    .socials {
    display: flex;
    gap: 14px;
    margin-top: 20px;
    }

    .socials a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #171717;
    color: var(--gold-light);
    font-size: 1.3rem;
    border: 1px solid rgba(214, 162, 58, 0.2);
    transition: all .3s ease;
    }

    .socials a:hover {
    background: var(--gold);
    color: #111;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(214, 162, 58, .4);
    }

    .copy {
      border-top: 1px solid rgba(255,255,255,.1);
      padding-top: 22px;
      text-align: center;
      color: #aaa;
      font-size: .9rem;
    }

    .whatsapp-float {
      position: fixed;
      right: 24px;
      bottom: 24px;
      width: 62px;
      height: 62px;
      background: #25d366;
      color: white;
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-size: 2rem;
      box-shadow: 0 12px 30px rgba(0,0,0,.3);
      z-index: 999;
      transition: .3s;
    }

    .whatsapp-float:hover {
      transform: scale(1.08);
    }

    .mobile-menu {
      display: none;
      color: var(--white);
      font-size: 1.8rem;
      cursor: pointer;
    }

    .delivery-section {
      background: #111;
      padding: 55px 0;
      color: var(--white);
    }

    .delivery-box {
      background: linear-gradient(135deg, rgba(214,162,58,.18), rgba(255,255,255,.04));
      border: 1px solid rgba(214,162,58,.45);
      border-radius: 34px;
      padding: 38px 42px;
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 28px;
      box-shadow: var(--shadow);
    }

    .delivery-icon {
      width: 86px;
      height: 86px;
      border-radius: 24px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: #111;
      font-size: 2.5rem;
      box-shadow: 0 14px 35px rgba(214,162,58,.35);
    }

    .delivery-content span {
      color: var(--gold-light);
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-size: .82rem;
    }

    .delivery-content h2 {
      font-size: clamp(1.8rem, 4vw, 3rem);
      line-height: 1.1;
      margin: 8px 0 12px;
    }

    .delivery-content h2 strong {
      color: var(--gold-light);
    }

    .delivery-content p {
      color: #d6d6d6;
      max-width: 620px;
    }

    @media (max-width: 960px) {
      nav ul {
        display: none;
      }

      .mobile-menu {
        display: block;
      }

      .cards,
      .product-grid,
      .about,
      .contact-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .banner-area {
        padding: 40px 28px;
      }

      .hero {
        min-height: 720px;
      }

      .delivery-box {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 34px 24px;
      }

      .delivery-icon {
        margin: auto;
      }

    }

    @media (max-width: 600px) {
      .topbar .container {
        justify-content: center;
        text-align: center;
      }

      .navbar {
        height: 78px;
      }

      .brand-logo {
        width: 80px;
        height: 80px;
      }

      .hero-actions {
        flex-direction: column;
      }

      .btn {
        width: 100%;
      }

      .section {
        padding: 65px 0;
      }
      .product-img {
        height: 260px;
      }

      .product-img img {
        object-fit: cover;
        object-position: top center;
      }

      .delivery-box {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 34px 24px;
      }

      .delivery-icon {
        margin: auto;
      }

    }
@media (max-width: 960px) {
  nav {
    position: absolute;
    top: 78px;
    left: 0;
    width: 100%;
    background: rgba(15, 15, 15, 0.98);
    padding: 20px 0;
    display: none;
  }
  .product-img {
    height: 260px;
  }

  .product-img img {
    object-fit: cover;
    object-position: top center;
  }

  nav.active {
    display: block;
  }

  nav ul {
    display: flex;
    flex-direction: column;
    gap: 18px;
    text-align: center;
  }

  nav ul li {
    width: 100%;
  }

  nav ul li a {
    display: block;
    padding: 10px 0;
  }

  .mobile-menu {
    display: block;
  }

  .delivery-box {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 34px 24px;
  }

  .delivery-icon {
    margin: auto;
  }

}
