/* ===============================
   🧹 RESETEO GLOBAL
   =============================== */
   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Figtree, Helvetica, sans-serif;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  body {
    background-color: #1a1a1a;
    color: white;
  }
  
  /* ===============================
     🔝 BARRA SUPERIOR (top-bar)
     =============================== */
  .top-bar {
    background-color: #e3fc02;
    text-align: center;
    font-size: 16px;
    padding: 8px 0;
    color: #000;
  }
  
  /* ===============================
     📌 NAVBAR
     =============================== */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #111;
    position: relative;
  }
  
  .logo {
    font-weight: bold;
    color: #e3fc02;
    font-size: 18px;
  }
  
  .center-content {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 40px;
  }
  
  .menu {
    display: flex;
    gap: 20px;
    align-items: center;
    font-size: 20px;
  }
  
  .menu a {
    font-size: 14px;
  }
  
  #busqueda {
    padding: 6px 14px;
    border-radius: 20px;
    border: none;
    font-size: 14px;
  }
  
  /* ===============================
     🖼️ HERO / PORTADA PRINCIPAL
     =============================== */
  .hero {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 40px 20px;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  .btn-catalogo {
    background-color: #e6ff00;
    color: #000;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 4px;
  }
  
  .hero-product {
    width: 70%;
    max-width: 300px;
  }
  
  /* ===============================
     🧱 GALERÍA DE PRODUCTOS
     =============================== */
  main {
    background-color: #1f1f21;
    color: #fff8f8;
    padding: 20px;
    text-align: center;
    font-family: Figtree, Helvetica, sans-serif;
  }
  
  .masonry-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  
  .masonry-item {
    width: 300px;
    background: rgba(97, 95, 95, 0.521);
    padding: 10px;
    border-radius: 8px;
    text-align: center;
  }
  
  .galeria-img {
    width: 100%;
    border-radius: 5px;
  }
  
  .p {
    font-size: 18px;
    margin-top: 10px;
    color: #ffffff;
  }
  
  /* ===============================
     📨 NEWSLETTER
     =============================== */
  .newsletter {
    color: rgb(255, 255, 255);
    text-align: center;
    padding: 30px 15px;
  }
  
  .newsletter form {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 10px;
    border: 10px;
  }
  
  .newsletter input {
    padding: 10px;
    width: 70%;
    border: 10px;
  }
  
  .newsletter button {
    padding: 10px 15px;
    background: black;
    color: white;
    border: 10px;

  }
  
  /* ===============================
     🦶 FOOTER
     =============================== */
  footer {
    padding: 15px;
    font-size: 12px;
    text-align: center;
    background-color: #0d0d0d;
  }
  
  /* ===============================
     🛍️ PÁGINA DE PRODUCTO INDIVIDUAL
     =============================== */
  .producto-container {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .producto-img img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .producto-detalles {
    text-align: center;
  }
  
  .precio-original {
    text-decoration: line-through;
    color: #888;
  }
  
  .precio-descuento {
    font-size: 20px;
    font-weight: bold;
    color: #e6ff00;
    margin-bottom: 15px;
  }
  
  .cantidad {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .cantidad input[type="number"] {
    width: 60px;
    padding: 6px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    text-align: center;
    -moz-appearance: textfield;
  }
  
  .cantidad button {
    padding: 5px 10px;
  }
  
  .btn-comprar {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border: 1px solid #e6ff00;
    cursor: not-allowed;
    margin-bottom: 15px;
  }
  
  /* ===============================
     👥 SECCIÓN SOBRE NOSOTROS
     =============================== */
  .sobre-nosotros {
    background-color: #1f1f1f;
    color: #fff;
    padding: 50px 20px;
  }
  
  .contenido-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  
  .contenido-flex .imagen img {
    width: 100%;
    max-width: 450px;
    border-radius: 10px;
  }
  
  .texto {
    text-align: left;
  }
  
  .texto h2 {
    color: #e6ff00;
    margin-bottom: 20px;
    font-size: 2rem;
  }
  
  .texto p {
    margin-bottom: 15px;
    line-height: 1.6;
  }
  
  .texto ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
  }
  
  .texto li {
    margin-bottom: 10px;
    font-weight: 500;
  }
  