@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');
.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
/*
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
*/



*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}


body {
    font-family: "Poppins", sans-serif;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;

}

.header {
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
    padding: 70px 0;
}

.menu {
    position:absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
 }

 
.logo {
    font-size: 25px;
    color: #111111;
    text-transform: uppercase;
    font-weight: 800;
  }





.menu .navbar ul li {
    position: relative;
    float: left;
  }

.menu .navbar ul li a {
    font-size: 18px;
    padding: 20px;
    color: #111111;
    display: block;
  }

#menu {
    display: none;
  }

.menu-icono {
    width: 25px;

  }

  .menu label{
    cursor: pointer;
    display: none;
  }

  .submenu{
    position: relative;
  }

  .submenu #carrito{
    display: none;
  }

  .submenu:hover #carrito{
    display: block;
    position: absolute;
    right: 0;
    backdrop-filter: blur(10px);
    top: 100%;
    z-index: 1;
    background-color: #4E4B5076;
    padding: 20PX;
    min-width: 400px;
  }

  table{
    width: 100%;
  }

  th,td {
    color: #FFFFFF;
  }

  .borrar {
    background-color: #111111;
    border-radius: 50%;
    padding: 5px 10px;
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 800;
    cursor: pointer;
  }

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
  padding: 0 200px;

}

.header-img {
  flex-basis: 50%;
  text-align: center;
}

.header-txt {
  flex-basis: 50%;
  text-align: center;
}

.header-txt h1 {
  font-size: 90px;
  text-transform: uppercase;
  line-height: 1;
  color: #111111;
  font-family: 'Oswald', sans-serif;
  margin-bottom: 15px;
}

.header-txt p{
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.btn-1 {
  display: inline-block;
  padding: 11px 25px;
  background-color: #111111;
  color: #FFFFFF;
  border-radius: 5px;
}

.ofert {
  padding: 20px 0 0 0;
  display: flex;
  justify-content: space-between;
}

.ofert-1 {
  display: flex;
  align-items: center;
  flex-basis: calc(33.3%-15px);
  background-color: #f5f5f5;
  padding: 35%px;
}

.ofert-img {
  flex-basis: 50%;
  margin-right: 15px;
}

.ofert-img img {
  width: 250px;
}

.ofert-txt {
  flex-basis: 50%;
  text-align: center;
}

.ofert-txt h3 {
  color: black;
  font-family: 'Oswald', sans-serif;
  font-size: 25px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.btn-2 {
  display: inline-block;
  padding: 7px 10px;
  background-color: #111111;
  color: #FFFFFF;
  border-radius: 5px;
  font-size: 15px;
}

.products {
  padding: 50px 0;
  text-align: center;
}

.products img {
  width: 100%;
  height: 300px;        /* AQUÍ se controla el tamaño */
  object-fit: contain; /* o cover */
}


.products h2 {
  color: #111111;
  font-family: 'Oswald', sans-serif;
  font-size: 50px;
  text-transform: uppercase;
  margin-bottom: 50px;
}

.product-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px; /* Opcional: espacio entre columnas */
  text-align: center;

  

}

.product {
  text-align: center;
  padding: 30px;
  box-shadow: 0 0 20px rgb(0, 0, 0, 0.1);
}

.product h3 {
  font-size: 20px;
  color: #111111;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  margin-bottom: 15px;

}

.product p, .precio {
  font-size: 16px;
  color: #111111;
  margin-bottom: 15px;
}

.precio {
  font-weight: 800;
}

.icons {
  padding: 50px 0 100px 0;
  display: flex;
  justify-content: space-between;
}

.icons-1 {
  flex-basis: calc(33.3% - 30px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px;
  background-color: #f5f5f5;
}

.icon-txt h3 {
  font-size: 20px;
  color: #111111;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
}

.icon-txt p {
  font-size: 16px;
  color: #111111;
}

.blog {
  display: flex;
  justify-content: space-between;
  padding-bottom: 100px;
}

.blog-1 {
  flex-basis: calc(33.3% - 30px);
}

.blog-1 img {
  margin-bottom: 20px;
}

.blog-1 h3 {
  font-size: 20px;
  color: #111111;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.blog-1 p {
  font-size: 16px;
  color: #111111;
}

.footer {
  padding: 50px 0;
  background-color: #111111;
}

.footer-content {
  display: flex;
  justify-content: space-between;
}

.link h3 {
  font-size: 18px;
  color: #FFFFFF;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.link a {
  font-size: 16px;
  color: #DCDCDCDC;
  display: block;
  margin-bottom: 10px;
}

/*
responsive
*/

@media (max-width:991px){

      .menu {
    padding: 15px 20px;
    }
    
    .menu label {
      display: initial;
    }

    .menu .navbar {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: #181818;
      display: none;
    }

    .menu .navbar ul li {
      width: 100%;
    }

    .menu .navbar ul li a {
      color: #FFFFFF;
    }

    #menu:checked ~ .navbar {
      display: initial;
    }

    .logo{
      display: none;
    }

    .submenu:hover #carrito {
      min-width: 100%;
    }

    .header {
      min-width: 0vh;

    }

    .header-content {
      padding: 50px 0;
      flex-direction: column;
    }

    .header-img {
      display: none;
    }

    .header-txt {
      flex-basis: 100%;
      text-align: center;
    }

    .header-txt h1 {
      font-size: 70px;
    }

    .ofert {
      padding: 30px 30px 0 30px;
      flex-direction: column;
    }

    .ofert-1 {
      margin-bottom: 30px;
    }

    .products {
      padding: 0 30px 30px 30px;

    }

    .products h2 {
      margin-bottom: 30px;
    }

    .product-content {
      grid-template-columns: repeat(1, 1fr);
      gap: 30px;

    }

    .product img {
      width: 200px;
      height: 280px;
    }

    .icons {
      padding: 30px;
      flex-direction: column;
      
    }

    .icons-1 {
      margin-bottom: 30px;
    }

    .blog {
      padding: 0 30px 30px 30px;
      flex-direction: column;
    }

    .blog-1 {
      margin-bottom: 30px;
    }

    .footer {
      padding: 30px;
    }

    .footer-content {
      flex-direction: column;
      text-align: center;
    }





}

/*
whatsapp
*/
#enviar-whatsapp {
  margin-left: 15px;
}

#vaciar-carrito,
#enviar-whatsapp {
  display: inline-block;
  margin-right: 12px;
}

/* SOLO MÓVIL */
@media (max-width: 991px) {
  #vaciar-carrito,
  #enviar-whatsapp {
    display: block;
    width: 100%;
    margin: 10px 0;
    text-align: center;
  }
}


/*
BLOG
*/

/* ====== BLOG ESTILO TARJETA ====== */

.blog {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-bottom: 100px;
}

.blog-1 {
  background-color: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-1:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.15);
}

.blog-1 img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-1 h3 {
  padding: 20px 20px 0 20px;
  font-size: 20px;
}

.blog-1 p {
  padding: 0 20px 20px 20px;
  line-height: 1.6;
  color: #444;
  font-size: 15px;
}

/* ====== BLOG RESPONSIVE ====== */
@media (max-width: 991px) {
  .blog {
    grid-template-columns: 1fr;
    padding-bottom: 50px;
  }
}



/*
Icono
*/

/* ====== ICONOS ESTILO TARJETA ====== */

.icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 60px 0;
}

.icon-1 {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.icon-1:hover {
  transform: translateY(-6px);
}

.icon-img {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.icon-img img {
  width: 70px;
}

.icon-txt h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.icon-txt p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}

/* ====== ICONOS RESPONSIVE ====== */
@media (max-width: 991px) {
  .icons {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }
}

/*
botones de agregar, ni idea que hare
*/

/* ====== BOTÓN AGREGAR AL CARRITO ====== */

.agregar-carrito {
  display: inline-block;
  padding: 10px 18px;
  background: linear-gradient(135deg, #111111, #333333);
  color: #ffffff;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.agregar-carrito:hover {
  background: linear-gradient(135deg, #000000, #444444);
  transform: scale(1.05);
  box-shadow: 0 8px 18px rgba(0,0,0,0.25);
}

/* Ícono opcional */
.agregar-carrito::before {
  content: "🛒";
  margin-right: 8px;
}


/*
Cambiar carrito
*/
/* ====== CARRITO ELEGANTE ====== */

.submenu #carrito {
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

/* Tabla */
#lista-carrito {
  border-collapse: collapse;
}

#lista-carrito th {
  font-size: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.3);
}

#lista-carrito td {
  padding: 10px 5px;
  vertical-align: middle;
}

/* Imagen del carrito */
#lista-carrito img {
  border-radius: 10px;
}

/* Botón borrar */
.borrar {
  background: #ff4d4d;
  color: white;
  border-radius: 50%;
  padding: 5px 10px;
  font-size: 14px;
  transition: 0.3s;
}

.borrar:hover {
  background: #e60000;
}

/* ====== BOTONES DEL CARRITO ====== */

#vaciar-carrito,
#enviar-whatsapp {
  display: block;
  width: 100%;
  margin-top: 12px;
  padding: 10px;
  text-align: center;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* Vaciar */
#vaciar-carrito {
  background: linear-gradient(135deg, #555, #222);
}

#vaciar-carrito:hover {
  background: linear-gradient(135deg, #333, #000);
  transform: scale(1.03);
}

/* WhatsApp */
#enviar-whatsapp {
  background: linear-gradient(135deg, #25D366, #1ebe5d);
}

#enviar-whatsapp:hover {
  background: linear-gradient(135deg, #1ebe5d, #128c4a);
  transform: scale(1.03);
}

/* ====== CARRITO EN MÓVIL ====== */
@media (max-width: 991px) {
  .submenu:hover #carrito {
    min-width: 100%;
  }
}

/*
Menubobesponja
*/

/* ===== MENÚ HAMBURGUESA MEJORADO ===== */

@media (max-width: 991px) {

  .menu .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(24, 24, 24, 0.95);
    backdrop-filter: blur(8px);
    display: none;
    padding: 20px 0;
    border-radius: 0 0 20px 20px;
    animation: slideDown 0.35s ease;
  }

  .menu .navbar ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .menu .navbar ul li {
    width: 100%;
    text-align: center;
  }

  .menu .navbar ul li a {
    padding: 15px;
    font-size: 18px;
    transition: background 0.3s ease;
  }

  .menu .navbar ul li a:hover {
    background: rgba(255,255,255,0.08);
  }

  #menu:checked ~ .navbar {
    display: block;
  }
}

/* Animación */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/*
botnones informacion
*/

/* ===== BOTÓN INFORMACIÓN PREMIUM ===== */

.ofert-txt .btn-2,
.header-txt .btn-1 {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 30px;
  background: linear-gradient(135deg, #111111, #333333);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.ofert-txt .btn-2:hover,
.header-txt .btn-1:hover {
  background: linear-gradient(135deg, #000000, #444444);
  transform: scale(1.05);
  box-shadow: 0 8px 18px rgba(0,0,0,0.25);
}

/* Ícono sutil */
.ofert-txt .btn-2::after,
.header-txt .btn-1::after {
  content: "";
}

/*
letras de ofertas especiales
*/

@media (max-width: 991px) {
  .header-txt {
    padding: 0 20px;
  }
}





/*
botones de suscripcion
*/

/* ===== BOTONES STREAMING ===== */
.btn-streaming {
    display: inline-block;
    margin: 20px auto 0 auto; /* 20px de separación arriba y centrado horizontal */
    padding: 10px 20px;
    background-color: #111111;
    color: #ffffff;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    text-align: center;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.btn-streaming:hover {
    background-color: #333333;
    transform: translateY(-2px);
}

/* Centrar el botón dentro del blog-1 */
.blog-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.btn-streaming {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 28px;
  border-radius: 30px;
  background: linear-gradient(135deg, #111111, #333333);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-streaming:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}


/*
Solucion de error dada por chatgpt
*/

/* Botones de streaming dentro de los blogs */
.blog-1 {
    position: relative;
    text-align: center; /* Mantiene todo centrado */
}

.blog-1 .btn-streaming {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 20px; /* separa el botón del contenido */
    background-color: #111111;
    color: #FFFFFF;
    border-radius: 5px;
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.3s ease;
}

.blog-1 .btn-streaming:hover {
    background-color: #333333;
    transform: translateY(-2px);
}
























/*
Prueba, a solucion temporal
*/


/*
Solucion dad Por Chagtp*/

/* ===== FOOTER BASE ===== */

.footer {
    background-color: #111;
    color: #fff;
    padding: 50px 20px;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer .link {
    flex: 1 1 200px;
}

.footer .link h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer .link ul {
    list-style: none;
    padding: 0;
}

.footer .link li {
    margin-bottom: 8px;
}

.footer .link a {
    text-decoration: none;
    color: #bbb;
    transition: 0.3s;
}

.footer .link a:hover {
    color: #fff;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer .link {
        flex: 1 1 100%;
    }

}


/*Otra Solucion*/

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CONTENEDOR GENERAL */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.header {
    background: #f5f5f5;
    text-align: center;
    padding: 40px 20px;
}

/* TITULO PRINCIPAL */
.header h1 {
    font-size: 60px;
    font-weight: 900;
    margin-bottom: 20px;
}

/* SUBTITULO */
.header p {
    font-size: 18px;
    margin-bottom: 25px;
}

/* BOTON */
.btn {
    display: inline-block;
    padding: 10px 25px;
    background: #000;
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
}

/* ------------------- */
/* RESPONSIVE MOVIL */
/* ------------------- */

@media (max-width: 768px) {

    .header {
        padding: 60px 15px;
    }

    .header h1 {
        font-size: 36px; /* mucho más proporcionado */
        line-height: 1.1;
    }

    .header p {
        font-size: 14px;
    }

    .btn {
        padding: 8px 20px;
        font-size: 14px;
    }
}

/* texto no central*/




.product-card {
    text-align: center;
}



/* Efecto al boton*/

.btn-2 {
    display: inline-block;
    padding: 12px 26px;
    background: linear-gradient(135deg, #111, #2d2d2d);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* Hover elegante */
.btn-2:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(0,0,0,0.35);
}

/* Brillo animado */
.btn-2::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0.1),
        rgba(255,255,255,0.4),
        rgba(255,255,255,0.1)
    );
    transform: skewX(-25deg);
    transition: 0.6s;
}

.btn-2:hover::before {
    left: 125%;
}

/* Efecto click */
.btn-2:active {
    transform: scale(0.95);
}



/*extra por el boton*/

/* ===== INPUT CANTIDAD DEL CARRITO ===== */

#lista-carrito input[type="number"]{
  width: 55px;
  height: 32px;
  border-radius: 8px;
  border: none;
  outline: none;
  background: rgba(255,255,255,0.15);
  color: #fff;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  backdrop-filter: blur(4px);
  transition: 0.3s ease;
}

/* Hover */
#lista-carrito input[type="number"]:hover{
  background: rgba(255,255,255,0.25);
}

/* Focus */
#lista-carrito input[type="number"]:focus{
  background: rgba(255,255,255,0.35);
  box-shadow: 0 0 0 2px #25D366;
}

/* Quitar flechas */
#lista-carrito input[type=number]::-webkit-inner-spin-button, 
#lista-carrito input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

#lista-carrito input[type=number] {
  -moz-appearance: textfield;
}

/*Extra para boton de numero*/

.contador{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:6px;
}

.contador button{
    width:28px;
    height:28px;
    border:none;
    border-radius:6px;
    background:#3d3c3c;
    color:#14ad3a;
    font-size:16px;
    cursor:pointer;
    transition:all .2s ease;
}

.contador button:hover{
    background:#00c853;
    transform:scale(1.1);
}

.contador .cantidad{
    min-width:22px;
    text-align:center;
    font-weight:600;
    font-size:14px;
    background:#000000;
    padding:3px 6px;
    border-radius:4px;
}

