
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: sans-serif; background: #F0F0F0; }
header {
  padding: 1rem 2rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
  transition: background-color 0.3s ease;
}
.slider {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden; 
}
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}
.slide::after{
content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px; /* altura del difuminado */
  background: linear-gradient(to bottom, 
  rgba(255,255,255,0) 0%, 
  rgba(240,240,240,0.3) 40%, 
  rgba(240,240,240,0.6) 70%, 
  rgba(240,240,240,1) 100%);
  pointer-events: none;
}


.slide.active { opacity: 1; z-index: 1; }
.slide .content {
  position: absolute;
  bottom: 60%;
  left: 15%;
  transform: translateX(-50%);
  padding: 1rem;
  border-radius: 8px;
  color: white;

}
.footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.navbar a {
   text-decoration: none;
   color: white;
}

.logo22 {
   text-decoration: none;
   color: white;
   font-family: "Anton", sans-serif;
   font-weight: 400;
   font-style: normal;
   font-size: 30px;
}
@media  (max-width: 768px) {
    .navbar {
        display: grid;
        text-align: center;
        margin: auto;
        align-items: center;
        justify-content: center;

    }
    .navbar a {
        margin: auto;
    }
    .logo {
        margin: 0px;
        margin: auto;
    }
    .numero {
      font-size: 2rem;
      color: var(--acento);
    }

    .numero1 {
      font-size: 2rem;
      color: var(--acento);
    }
}

:root {
      --gris-oscuro: #1c1c1c;
      --gris-medio: #3a3a3a;
      --gris-claro: #dcdcdc;
      --blanco: #ffffff;
      --acento: #1c1c1c;
    }
    .contador-container {
      position: relative;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      top: -50px;
      max-width: 1000px;
      margin: auto;
      margin-bottom: 30px;
      margin: -20px auto 30px auto;
    }

    .contador {
      background: var(--gris-claro);
      border-radius: 20px;
      padding: 30px 20px;
      box-shadow: 0 0 15px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }

    .contador:hover {
      transform: scale(1.05);
      box-shadow: 0 0 15px rgba(0,0,0,1);
    }
    

    .numero {
      font-size: 2.8rem;
      color: var(--acento);
      font-family: Anton, sans-serif;
      font-weight: 200;
    }

    .numero1 {
      font-size: 2.8rem;
      color: var(--acento);
      font-family: Anton, sans-serif;
      font-weight: 200;
    }

    .descripcion {
      margin-top: 10px;
      font-size: 1rem;
      font-family: Anton, sans-serif;
      font-weight: 200;
      color: #888;
    }

    

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  color: white;
  flex-direction: column;
}
.navbar nav { display: flex; gap: 1rem; }
.navbar nav a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  
}
.logo {
  flex-grow: 1;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
}

#btn-comprar {
    background: none;
    border: 0;
    color: inherit;
    box-decoration-break: none;
    background-color: rgb(19, 87, 174);
    color: white;
    padding: 10px;
    border-radius: 30px;
}
#cerrar-modal {
    background: none;
    border: 0;
    color: inherit;
    box-decoration-break: none;
    background-color: white;
    color: rgb(19, 87, 174);
    font-weight: 700;
    padding: 8px;
    border-radius: 30px;
    border: 3px solid rgb(19, 87, 174);
    margin: auto;
}

.content button {
  border: none;
  border-top: 20px;
  padding: 8px;
  background-color: white;
  border-radius: 30px;
  box-shadow: 2px 2px 5px rgba(1, 0, 0, 1);
  cursor: pointer;
  width: max-content;
}
.content button:hover {
  background-color: crimson;
  color: white;
  transition: 0.3s;
}
.content h3 {
  text-align: center;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
  margin-bottom: 20px;
}
.slide-btn {
  position: absolute;
  top: 45%;
  font-size: 2rem;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  background: transparent; 
  border: none;
  color: rgba(0, 0, 0, 0.6); /* ajustá opacidad y color */
  font-weight: bold;
  cursor: pointer;
}


.slide-btn.left { left: 10px; }
.slide-btn.right { right: 10px; }


@keyframes confirmarEmoji {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

@media (max-width: 768px) {
  .slider {
    overflow-x: scroll;
    display: flex;
    scroll-snap-type: x mandatory;
    height: auto;
  }
  .slide {
    flex: 0 0 100%;
    position: relative;
    scroll-snap-align: start;
    opacity: 1 !important;
    height: 500px;
  }
  .slide .content {
  bottom: 30%;
  left: 20%;
  }
  .slide-btn { display: none; }
  #productos {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)) !important;
    gap: 0.5rem !important;
    padding: 0 1rem; /* opcional, para que no quede pegado al borde */
  }
  .navbar {
  display: grid;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  
}
.content h3 {
  text-align: center;
}
.car11 {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    flex-direction: column-reverse;
}
}
.footer {
  background-color: #111;
  color: #eee;
  padding: 2rem 1rem;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  margin-top: 4rem;
}

.footer-content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer a {
  color: #ff9900;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.carousel-reviews {
  position: relative;
  width: 960px;
  margin: 20px auto;
  font-family: Arial, sans-serif;
  background: #fafafa;
  border-radius: 12px;
  padding: 25px 50px;
  box-shadow: 0 6px 15px rgb(0 0 0 / 0.12);
  overflow: hidden;
}

.review-wrapper {
  overflow: hidden;
  width: 100%;
}

.review-container {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

.review {
  flex: 0 0 300px;
  background: white;
  border-radius: 14px;
  margin: 0 12px;
  padding: 25px 20px 30px;
  box-shadow: 0 4px 10px rgb(0 0 0 / 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #222;
  font-size: 15px;
  line-height: 1.4;
  user-select: none;
  transition: box-shadow 0.3s ease;
}
.review:hover {
  box-shadow: 0 8px 20px rgb(0 0 0 / 0.15);
}

.review img {
  border-radius: 50%;
  width: 65px;
  height: 65px;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #4caf50;
  box-sizing: border-box;
}

.review p {
  margin-bottom: 15px;
  min-height: 70px;
  font-weight: 500;
  color: #333;
}

.stars {
  color: #f5a623;
  font-size: 1.3rem;
  margin-bottom: 15px;
  user-select: none;
  letter-spacing: 2px;
}

.review span {
  font-weight: 700;
  color: #555;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}

button.prev,
button.next {
  position: absolute;
  top: 50%;
  background: transparent;
  border: none;
  font-size: 30px;
  cursor: pointer;
  user-select: none;
  color: #444;
  padding: 0 12px;
  transform: translateY(-50%);
  transition: color 0.3s ease;
  z-index: 10;
  filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.1));
}

button.prev:hover,
button.next:hover {
  color: #4caf50;
  filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.2));
}

button.prev {
  left: 10px;
}

button.next {
  right: 10px;
}

@keyframes timbre {
      0% { transform: rotate(0deg); }
      25% { transform: rotate(5deg); }
      50% { transform: rotate(-5deg); }
      75% { transform: rotate(2deg); }
      100% { transform: rotate(0deg); }
    }

    #timbre {
      cursor: pointer;
      animation: timbre 0.6s ease;
    }



/* Responsive */
@media (max-width: 700px) {
  .carousel-reviews {
    width: 100%;
    padding: 20px 30px;
  }
  .review {
    flex: 0 0 280px;
    margin: 0 8px;
    padding: 20px 15px 25px;
  }
  .review img {
    width: 55px;
    height: 55px;
    border-width: 2.5px;
  }
  button.prev,
  button.next {
    font-size: 26px;
    padding: 0 8px;
  }
}

@media (max-width: 700px) {
  .carousel-reviews {
    padding: 15px 15px;
  }
  .review-container {
    gap: 12px;
  }
  .review {
    flex: 0 0 90vw;
    margin: 0 6px;
    padding: 18px 15px 22px;
    font-size: 14px;
  }
  .review img {
    width: 50px;
    height: 50px;
    border-width: 2px;
  }
  .stars {
    font-size: 1.1rem;
  }
  button.prev,
  button.next {
    font-size: 28px;
    padding: 0 6px;
  }
  #btn-prev,
  #btn-next{
    display: none;
  }
  .slider-container{
    margin-right: 30px;
    margin-left: 30px;
  }
}
 body {
    margin: 0; font-family: Arial, sans-serif;
  }
  .slider-container {
    display: flex;
    position: relative;
    top: -110px;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    background: #fafafa;
    border-radius: 14px;
    padding: 20px 50px;
    box-shadow: 0 6px 15px rgb(0 0 0 / 0.1);
    z-index: 10;

  }
  .slider-track {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding-bottom: 10px;
  }
  .slider-track::-webkit-scrollbar {
    display: none;
  }
  .item {
    flex: 0 0 180px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.07);
    padding: 15px;
    text-align: center;
    cursor: pointer;
    user-select: none;
  }
  .item:hover{
    transform: scale(1.006);
  }
  .item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
  }
  .item h3 {
    margin: 0 0 8px;
    font-weight: 600;
    font-size: 1rem;
    color: #222;
  }
  .price {
    font-weight: 700;
    color: #4caf50;
    font-size: 1.1rem;
  }
  .slider-container button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 32px;
    color: #555;
    cursor: pointer;
    user-select: none;
    padding: 0 12px;
    transition: color 0.3s ease;
    z-index: 10;
  }
  button:hover {
    color: #4caf50;
  }
  #btn-prev {
    left: 15px;
  }
  #btn-next {
    right: 15px;
  }
  @media (max-width: 1024px) {
    .item {
      flex: 0 0 140px;
    }
  }
  @media (max-width: 700px) {
    .item {
      flex: 0 0 70vw;
    }
    .item img {
      height: 200px;
      width: 150px;
    }
    .item {
      flex: 0 0 100px;
    }
    .slider-container{
    margin-right: 30px;
    margin-left: 30px;
    padding: 20px;
    margin: -90px 20px 30px 20px;
  }
  
  }
#tabs {
      max-width: 800px;
      margin: 40px auto;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      background: #fff;
      border: 1px solid #ccc;
    }
    /* Botones */
    #tabs .tab-buttons {
      display: flex;
      background: #f2f2f2;
      border-bottom: 1px solid #ccc;
    }
    #tabs .tab-buttons button {
      flex: 1 1 0;
      padding: 15px 0;
      cursor: pointer;
      background: none;
      border: none;
      font-weight: bold;
      font-size: 16px;
      transition: background 0.2s ease;
      color: #333;
      margin: 0;
      box-sizing: border-box;
      white-space: nowrap;
      user-select: none;
      text-align: center;
    }
    #tabs .tab-buttons button.active {
      background: #00adcf;
      color: white;
    }
    /* Contenido */
    #tabs .tab-content {
      padding: 20px 30px;
      display: none;
      color: #222;
      box-sizing: border-box;
    }
    #tabs .tab-content.active {
      display: block;
    }
    /* Responsive */
    @media (max-width: 500px) {
      #tabs .tab-buttons {
        flex-direction: column;
      }
      #tabs .tab-buttons button {
        flex: none;
        padding: 12px;
        font-size: 14px;
      }
    }
    iframe {
      border-radius: 20px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.15);
      width: 100%;
      height: 350px;
      border: none;
      margin-top: 15px;
    }
    .info-container {
      display: flex;
      gap: 2.5rem;
      justify-content: space-around;
      padding: 1rem;
      font-family: Arial, sans-serif;
      color: #333;
      width: 70%;
      margin: auto;
    }
    .info-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      max-width: 180px;
      text-align: center;
      font-weight: normal;
      cursor: default;
      user-select: none;
      font-size: 1rem;
    }
    .info-item .icon {
      font-size: 40px;
      margin-bottom: 0.6rem;
    }
    .info-item span {
      font-size: 0.95rem;
      line-height: 1.3;
    }
    @media (max-width: 700px) {
      .info-container {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
      }
      .info-item {
        max-width: 280px;
      }
       .btn-catalogo {
        position: relative;
        top: -120px;
       }
    }

  .btn-catalogo {
    all: unset;
    display: flex;
    position: relative;
    top: -100px;
    z-index: 11;
    background-color: #00adcf;
    color: white;
    height: 35px;
    margin: auto;
    justify-content: center;
    align-items: center;
    width: 220px;
    font-size: 20px;
    cursor: pointer;
    font-family: "Anton", sans-serif;
   font-weight: 100;
   font-style: normal;
  color: white;
    clip-path: polygon(
    0% 0%, 15% 0%, 10% 50%, 15% 100%, 0% 100%, 
    100% 100%, 85% 100%, 90% 50%, 85% 0%, 100% 0% 
  );
  }
.btn-catalogo:hover {
    color: rgb(255, 255, 255);
    background-color: #00d5ff;
  }
  @media (max-width: 700px) {
    .btn-catalogo{
        position: relative;
        top: -190px;

    }
  }
  
.contenedor {
  position: relative;
  top: -95px;
  width: 100%;
  height: 40px; /* altura visible */
  overflow: hidden;
  position: relative;
}

.texto-moviendo {
  position: absolute;
  white-space: nowrap;
  animation: moverDerechaLoop 9s linear infinite;
  color: #747474;
  font-size: 20px;
  line-height: 40px; /* centra verticalmente */
  font-family: Anton, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 30px;
}
@keyframes moverDerechaLoop {
  0% {
    right: -100%;
  }
  100% {
    right: 100%;
  }
}
@import url(https://fonts.googleapis.com/css?family=Roboto:400,500,300,700);

.footer-distributed {
  background-color: #292c2f;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
  width: 100%;
  text-align: left;
  font: normal 16px sans-serif;
  padding: 45px 50px;
}

.footer-distributed .footer-left p {
  color: #8f9296;
  font-size: 14px;
  margin: 0;
}
/* Footer links */

.footer-distributed p.footer-links {
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  margin: 0 0 10px;
  padding: 0;
  transition: ease .25s;
}

.footer-distributed p.footer-links a {
  display: inline-block;
  line-height: 1.8;
  text-decoration: none;
  color: inherit;
  transition: ease .25s;
}

.footer-distributed .footer-links a:before {
  content: "·";
  font-size: 20px;
  left: 0;
  color: #fff;
  display: inline-block;
  padding-right: 5px;
}

.footer-distributed .footer-links .link-1:before {
  content: none;
}

.footer-distributed .footer-right {
  float: right;
  margin-top: 6px;
  max-width: 180px;
}

.footer-distributed .footer-right a {
  display: inline-block;
  width: 35px;
  height: 35px;
  background-color: #33383b;
  border-radius: 2px;
  font-size: 20px;
  color: #ffffff;
  text-align: center;
  line-height: 35px;
  margin-left: 3px;
  transition:all .25s;
}

.footer-distributed .footer-right a:hover{transform:scale(1.1); -webkit-transform:scale(1.1);}

.footer-distributed p.footer-links a:hover{text-decoration:underline;}

/* Media Queries */

@media (max-width: 600px) {
  .footer-distributed .footer-left, .footer-distributed .footer-right {
    text-align: center;
  }
  .footer-distributed .footer-right {
    float: none;
    margin: 0 auto 20px;
  }
  .footer-distributed .footer-left p.footer-links {
    line-height: 1.8;
  }
}

    /* Botón carrito */
    .cart-btn {
      position: fixed;
      top: 20px;
      right: 20px;
      background: #fff;
      color: rgb(78, 78, 78);
      padding: 10px 20px;
      border: none;
      border-radius: 15px;
      cursor: pointer;
      z-index: 1001;
      font-size: 16px;
      font-weight: 500;
      transition: background 0.3s;
    }
    .cart-btn:hover {
      background: rgb(107, 255, 107);
      color: black;
    }

    /* Panel carrito */
    .cart-panel {
      position: fixed;
      top: 0;
      right: -100%;
      width: 33%;
      height: 100%;
      background: #fff;
      box-shadow: -4px 0 20px rgba(0,0,0,0.15);
      transition: right 0.35s ease;
      display: flex;
      flex-direction: column;
      z-index: 1000;
    }

    .cart-panel.active {
      right: 0;
    }

    /* Header */
    .cart-header {
      display: flex;
      align-items: center;
      border-bottom: 1px solid #e0e0e0;
      padding: 16px;
    }

    .back-btn {
      background: none;
      border: none;
      font-size: 16px;
      cursor: pointer;
      color: #0066cc;
      font-weight: 500;
      margin-right: 10px;
      transition: color 0.3s;
    }
    .back-btn:hover {
      color: #004999;
    }

    .cart-header h2 {
      margin: 0;
      font-size: 18px;
      font-weight: 600;
      color: #0066cc;
    }

    /* Contenido scrollable */
    .cart-content {
      flex: 1;
      overflow-y: auto;
      padding: 16px;
    }

    .cart-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 15px;
      background: #fafafa;
      padding: 12px;
      border-radius: 8px;
      border: 1px solid #e5e5e5;
      font-size: 15px;
    }

    .cart-item button {
      background: #0066cc;
      color: #fff;
      border: none;
      padding: 5px 8px;
      border-radius: 4px;
      cursor: pointer;
      margin: 0 3px;
      font-size: 14px;
      transition: background 0.3s;
    }
    .cart-item button:hover {
      background: #004999;
    }

    .cart-total {
      margin: 20px 0 10px;
      font-size: 18px;
      font-weight: 600;
      color: #222;
    }

    .cart-discount input {
      width: 100%;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 6px;
      outline: none;
      font-size: 14px;
    }
    .cart-discount input:focus {
      border-color: #0066cc;
      box-shadow: 0 0 0 2px rgba(0,102,204,0.2);
    }

    /* Footer fijo */
    .cart-footer {
      padding: 16px;
      border-top: 1px solid #e0e0e0;
      background: #fff;
    }

    .cart-footer button {
      width: 100%;
      padding: 14px;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      font-size: 16px;
      font-weight: 500;
      transition: background 0.3s;
    }

    .finalize {
      background: #28a745;
      color: #fff;
    }
    .finalize:hover {
      background: #1e7e34;
    }
    @media (max-width: 700px) {
       .cart-btn {
      position: fixed;
      top: 10px;
      right: -5px;
      background: #fff;
      color: rgb(78, 78, 78);
      padding: 3px 16px;
      border: none;
      border-radius: 0px;
      cursor: pointer;
      z-index: 1001;
      font-size: 16px;
      font-weight: 500;
      transition: background 0.3s;
      margin: auto; 
    clip-path: polygon(10px 0, 100% 0, 100% 100%, 10px 100%, 0 50%);
    }
    .cart-panel {
      position: fixed;
      top: 0;
      right: -100%;
      width: 80%;
      height: 100%;
      background: #fff;
      box-shadow: -4px 0 20px rgba(0,0,0,0.15);
      transition: right 0.35s ease;
      display: flex;
      flex-direction: column;
      z-index: 1000;
    }
    }