body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background-color: #fef6dc;
}
#toplinea {
  background-color: #ff6f00;  
  height: 10px;
} 
.top-bar {
  background-color: #393f4a;
  color: #fff9dd;
  display: flex;
  align-items: center;
  padding: 0px 22px;
  justify-content: space-between;
}

.logo {
  width: 100px;
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.1) rotate(5deg);
}

/* Responsive styles for top-bar and logo */
@media (max-width: 900px) {
  .top-bar {
    flex-direction: column;
    align-items: center;
    padding: 0px 8px;
  }
  .logo {
    width: 120px;
    margin-left: 0;
    display: block;
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 600px) {
  .top-bar {
    flex-direction: column;
    align-items: center;
    padding: 0px 2px;
  }
  .logo {
    width: 120px;
    margin-left: 0;
  }
}
  
.menu-toggle {
  font-weight: bold;
  font-size: 1.8em; 
  padding: 10px 0px; 
  font-family: preconnect;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #fff9dd;
  display: inline-block;
  cursor: pointer;
  margin-left: 10px;
  margin-right: 0px;
  
}
/* =======Menu de hamburguesa======== */
.menu-contenedor {
  position: relative;
}
/* barra lateral */
.sidebar {
  position: fixed;
  top: 0;
  left: -350px;
  width: 200px;
  height: 100%;
  background-color: #ff6f00;
  color: white;
  padding: 1rem;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
  transition: left 0.3s ease;
  z-index: 1000;
}
.sidebar ul {
  list-style: none;
  padding: 0;
}
.sidebar ul li {
  margin: 1rem 0;
}

.sidebar ul li a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 999;
}

.sidebar.open {
  left: 0;
}

.overlay.show {
  display: block;
}

/* Responsive sidebar for mobile */
@media (max-width: 900px) {
  .sidebar {
    width: 70vw;
    min-width: 160px;
    max-width: 320px;
    font-size: 1em;
  }
}
@media (max-width: 600px) {
  .sidebar {
    width: 90vw;
    min-width: 120px;
    font-size: 0.95em;
    padding: 0.5rem;
  }
  .sidebar ul li a {
    font-size: 1em;
  }
}

/*=====barra de busqueda=====*/

.search-bar {
  display: flex;
  align-items: center;
  flex: 1;
  margin: 30px;
  max-width: 650px;
  min-width: 220px;
  height: 48px;
  box-shadow: 0 2px 8px rgba(255, 111, 0, 0.10);
  transition: max-width 0.3s, height 0.3s;
}

.search-bar input {
  width: 100%;
  height: 100%;
  padding: 0 16px;
  border-radius: 12px 0 0 12px;
  border: 2px solid #ff9100;
  font-size: 1.15em;
  outline: none;
  box-sizing: border-box;
  background: #fffbe7;
  transition: border 0.2s, box-shadow 0.2s;
}

.search-bar input:focus {
  border: 2px solid #ff6f00;
  box-shadow: 0 0 8px #ff9100;
}

.btn-search {
  background: linear-gradient(90deg, orange 60%, #ff6f00 100%);
  border: none;
  padding: 0 28px;
  cursor: pointer;
  border-radius: 0 12px 12px 0;
  color: #fff;
  font-weight: bold;
  font-size: 1.15em;
  transition: background 0.2s, transform 0.2s;
  height: 100%;
  display: flex;
  align-items: center;
  letter-spacing: 1px;
}

.btn-search:hover {
  background: #ff6f00;
  transform: scale(1.07);
}

/* Responsive search bar */
@media (max-width: 900px) {
  .search-bar {
    margin: 10px 0;
    max-width: 620px;
    min-width: 650px;
    height: 38px;
  }
  .search-bar input {
    font-size: 1em;
    padding: 0 10px;
  }
  .btn-search {
    font-size: 1em;
    padding: 0 10px;
  }
}

@media (max-width: 600px) {
  .search-bar {
    margin: 10px 0;
    max-width: 220px;
    min-width: 450px;
    height: 32px;
  }
  .search-bar input {
    font-size: 1em;
    padding: 0 10px;
  }
  .btn-search {
    font-size: 1em;
    padding: 0 10px;
  }
}


  /* Botón de seguir pedido */
  .btn-pedido {
    background-color: #ffa500;
    border: none;
    padding: 8px;
    color: white;
    cursor: pointer;
    font-weight: bold;
    border-radius: 8px; /* Borde curvado */
    transition: background 0.2s, transform 0.2s;
  }
  .btn-pedido:hover {
    background-color: #ff8800;
    transform: scale(1.05);
  }

  .cart {
    font-size: 1.8em; 
    padding: 12px; 
    color: white;
    cursor: pointer;
    font-weight: bold;
    transition: color 0.2s, transform 0.2s;
  }
  .cart:hover {
    color: #ffcc00;
    transform: scale(1.1);
  }

/* Botón de inicio de sesión */
.login {
  font-size: 1em; 
  padding: 0px; 
  color: white;
  cursor: pointer;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  gap: 2px;
  transition: color 0.2s;
}
.login:hover {
  color: #ffcc00;
}
#login-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Responsive: user-actions, btn-pedido, cart, login */
@media (max-width: 900px) {
  .user-actions {
    gap: 10px;
    margin-bottom: 20px;
  }
  .btn-pedido {
    padding: 6px;
    font-size: 0.95em;
  }
  .cart {
    font-size: 1.3em;
    padding: 8px;
  }
  .login {
    font-size: 0.95em;
  }
}

@media (max-width: 600px) {
  .user-actions {
    gap: 6px;
  }
  .btn-pedido {
    padding: 4px;
    font-size: 0.9em;
    border-radius: 6px;
  }
  .cart {
    font-size: 1em;
    padding: 4px;
  }
  .login {
    font-size: 0.9em;
    gap: 1px;
  }
}



/* 
  .user-actions se utiliza para agrupar y alinear los elementos de acciones del usuario 
  (como el botón de seguir pedido, el carrito y el login) en la barra superior.
  Usa flexbox para alinearlos horizontalmente y separarlos con un espacio (gap).
*/
.user-actions{
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Responsive: user-actions */
@media (max-width: 900px) {
  .user-actions {
    gap: 10px;
  }
}
@media (max-width: 600px) {
  .user-actions {
    gap: 6px;
  }
}


/*login modal*/

#login-modal {
    display: none;
  }
 #close-modal{
float: right;
cursor:pointer;
 }

.formulario-inicio {
flex-direction: column;
align-items: center;

}
  .modal {
          position: fixed;
          z-index: 9999;
          left: 0; top: 0;
          width: 100%; height: 100%;
          overflow: auto;
          background: rgba(0,0,0,0.4);
          display: none;
          align-items: center; 
          justify-content: center;
        }
        .modal[style*="display: flex"] {
          display: flex !important;
        }
        /*contenido del formulario*/
        .modal-content {
          background: #fdffef;
          padding: 30px 20px;
          border-radius: 8px;
          width: 90%;
          max-width: 350px;
          box-shadow: 0 2px 8px rgba(0,0,0,0.2);
          position: relative;
          display: flex;
          flex-direction: column;
          align-items: center;
        }
        .modal-content h2 {
          margin-top: 0;
          font-size: 1.2em;
          margin-bottom: 15px;
          text-align: center;
          color: #393f4a;
          font-family: Lulita One, sans-serif;
        }
        .modal-content label {
          display: block;
          margin-top: 10px;
          font-weight: bold;
          color: #393f4a;
        }
        .modal-content input[type="email"],
        .modal-content input[type="password"] {
          width: 100%;
          padding: 7px;
          margin-top: 5px;
          margin-bottom: 10px;
          border: 1px solid #ff9100;
          border-radius: 4px;
        }
        .modal-content button[type="submit"] {
          width: 100%;
          padding: 8px;
          background: #ff6f00;
          color: #fff;
          border: none;
          border-radius: 4px;
          font-weight: bold;
          cursor: pointer;
        }
        .modal-content button[type="submit"]:hover {
          background: #767c83;
        }
        .modal-content small {
          display: block;
          margin-bottom: 10px;
          color: #666;
          text-align: center;
        }
        .modal-content a {
          color: black;
          text-decoration: none;
          font-size: 0.95em;
        }
        .modal-content a:hover {
          text-decoration: underline;
        }
      
  
  /*==== Barra de DELIVERY==== */
  .delivery-bar {
    background-color: #35c4f0;
    color: black;
    text-align: center;
    padding: 5px;
    font-size: 1.2em;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    display: flex;
    align-items: center; 
    justify-content: center; 
    gap: 10px;
    width: 100%;
    box-sizing: border-box;
  }

  @media (max-width: 600px) {
    .delivery-bar {
      font-size: 1em;
      flex-direction: column;
      gap: 4px;
      padding: 8px 2px;
    }
  }
  
    
    /*texto Juled Toys*/
    .title {
    color: #ff6f00;
    background: linear-gradient(90deg, #bd00ff 10%, #ff6f00 50%, #35c4f0 90%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow:
      2px 2px 0 #fff9dd,
      4px 4px 8px #393f4a,
      0 0 16px #ff6f00;
    font-size: 8em;
    font-family: "Lilita One", cursive, sans-serif;
    margin: 0;
    letter-spacing: 4px;
    font-weight: 900;
    animation: title-pop 1.2s cubic-bezier(.68,-0.55,.27,1.55) both;
    transition: text-shadow 0.3s, transform 0.3s;
    cursor: pointer;
    }
    .title:hover {
    text-shadow:
      0 0 20px #fff9dd,
      0 0 40px #bd00ff,
      0 0 60px #35c4f0;
    transform: scale(1.05) rotate(-2deg);
    }

    @keyframes title-pop {
    0% {
      opacity: 0;
      transform: scale(0.7) rotate(-10deg);
      letter-spacing: 0;
    }
    60% {
      opacity: 1;
      transform: scale(1.1) rotate(3deg);
      letter-spacing: 8px;
    }
    100% {
      opacity: 1;
      transform: scale(1) rotate(0deg);
      letter-spacing: 4px;
    }
    }
    .title2 {
    color: #ff6f00;
    background: linear-gradient(90deg, #bd00ff 10%, #ff6f00 50%, #35c4f0 90%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow:
      2px 2px 0 #fff9dd,
      4px 4px 8px #393f4a,
      0 0 16px #ff6f00;
    font-size: 5em;
    font-family: "WDXL Lubrifont TC", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    letter-spacing: 4px;
    font-weight: 900;
    animation: title-pop 1.2s cubic-bezier(.68,-0.55,.27,1.55) both;
    transition: text-shadow 0.3s, transform 0.3s;
    cursor: pointer;
    }
  .title3 {
    color: #ff6f00;
    background: linear-gradient(90deg, #bd00ff 10%, #ff6f00 50%, #35c4f0 90%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow:
      2px 2px 0 #fff9dd,
      4px 4px 8px #393f4a,
      0 0 16px #ff6f00;
    font-size: 4em;
    font-family: "WDXL Lubrifont TC", sans-serif;
    font-weight: 900;
    font-style: normal;
    margin: 0;
    letter-spacing: 4px;
    animation: title-pop 1.2s cubic-bezier(.68,-0.55,.27,1.55) both;
    transition: text-shadow 0.3s, transform 0.3s;
    cursor: pointer;
    text-align: left;         /* Alinea el texto a la izquierda */
    display: block;           /* Ocupa todo el ancho disponible */
    width: 100%;              /* Asegura que ocupe el ancho del contenedor */
  }

    #slide-conadre {
    position: relative;
    width: auto;
    height: 580px;
    background-image: url("Imagenes/Conadre.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    margin-top: -50px;
    margin-bottom: -50px;
    box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.4);
    animation: fadeIn 1s ease-in-out;
    }

    #slide-conadre .slide-text {
    background: rgba(0, 0, 0, 0.4);
    padding: 5.5rem 2rem;
    border-radius: 12px;
    max-width: 700px;
    animation: textUp 1s ease-out;
    }

   
    #slide-sueña {    
    position: relative;
    width: auto;
    height: 580px;
    background-image: url("Imagenes/Sue.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    margin-top: -50px;
    margin-bottom: -50px;
    box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.4);
    animation: fadeIn 1s ease-in-out;
    }
   #slide-sueña .slide-text {
    background: rgba(0, 0, 0, 0.4);
    padding: 5.5rem 2rem;
    border-radius: 12px;
    max-width: 700px;
    animation: textUp 1s ease-out;
    }


   /*subtitulo Construye, juega...*/
    .subtitle {
    color: #7843e6;
    font-size: 1.5em;
    font-family: "Dancing Script", cursive;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
    }
    .subtitle2 {
    color: #e6e3ed;
    font-size: 1.5em;
    font-family: "Dancing Script", cursive;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
    }.subtitle3 {
    color: #f7f7f8;
    font-size: 1.5em;
    font-family: "Dancing Script", cursive;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
    }

  .texto-3{
    color:white;
    font-size: 1.5em;
    font-family: "WDXL Lubrifont TC", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin-top: 20px;
    text-align: center;
    padding: 0 20px;

  }
.texto_slide_oferta{
  display: inline-block;
  font-size:2.2rem ;
  font-weight: bold;
  color: #ff9800;
  background: #fffbe7;
  padding: 6px 22px;
  border-radius: 30px;
  margin: 10px 0;
  font-family: 'Lilita One', cursive;
  box-shadow: 0 2px 8px rgba(255,152,0,0.10);
  letter-spacing: 1px;
  transform: skew(-10deg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;

}
   .banner-buttons button {
    margin: 25px 25px;
    background-color: #ff6f00; 
    color: #fff9dd;
    border: none;
    padding: 20px 30px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 111, 0, 0.15);
    }

    .banner-buttons button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    }

    .btn-yellow {
    font-size: 1.2em;
    }
    .img-toads {
    flex: 1;
    max-width: 450px;
    text-align: center;
    padding: 0px 200px 0px 0px;
    }
    
    .img-toads img {
    max-width: 100%;
    height: auto;
    max-height: 550px; 
    }
   
   
    /*fondo de la pagina*/
    .slider {
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, #fff9dd 0%, #ffe0b2 40%, #b3e5fc 100%);
    padding: 30px 20px;
    border-bottom: 10px solid transparent;
    border-image: linear-gradient(to right, #fff, #4b4bef, #fff) 1;
   
    }
    
    .slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    justify-content: space-between;
    gap: 20px;
    }
    
    .slide {
    min-width: 100%;
    box-sizing: border-box;
    text-align: center;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    }
    .slide.active {
    display: flex;
    flex-direction: row; 
    justify-content: space-between;
    align-items: center;
    text-align: left;
    gap: 40px;
    padding: 0px 0px 0px 200px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
    }
    .slide-text {
    flex: 1;
    max-width: 500px;
    }

    .arrow {
    position: absolute;
    top: 30%;
    transform: translateY(-50%);
    font-size: 100px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
    color: #333;
    }
    
    .arrow.left {
    left: 20px;
    }
   
    .arrow.right {
    right: 20px;
    }
    
    .toad {
    height: 150px;
    }

    /* --- Responsive styles for banner/slider section --- */
    @media (max-width: 1200px) {
    .slide.active {
      padding-left: 40px;
      gap: 20px;
      max-width: 100%;
    }
    .img-toads {
      padding-right: 40px;
      max-width: 350px;
    }
    .title {
      font-size: 5em;
    }
    .title2 {
      font-size: 2.5em;
    }
    }

    @media (max-width: 900px) {
    .slide.active {
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 0 10px;
      gap: 20px;
    }
    .img-toads {
      padding: 0;
      max-width: 250px;
      margin: 0 auto;
    }
    .slide-text {
      max-width: 100%;
    }
    .title {
      font-size: 3em;
    }
      .title2 {
      font-size: 2.5em;
    }

    .arrow {
      font-size: 60px;
      top: 50%;
    }
    #slide-conadre {
      height: 300px;
      margin: 0;
    }
    #slide-conadre .slide-text {
      padding: 1rem;
      max-width: 95vw;
    }
    }
    @media (max-width: 600px) {
    .slider {
      padding: 10px 2px;
    }
    .slide.active {
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 0 2px;
      gap: 10px;
      max-width: 100vw;
    }
    .img-toads {
      padding: 0;
      max-width: 120px;
      margin: 0 auto;
    }
    .img-toads img {
      max-height: 120px;
    }
    .slide-text {
      max-width: 100vw;
      padding: 0 2px;
    }
    .title {
      font-size: 1.5em;
      letter-spacing: 2px;
    }
  .title2 {
      font-size: 4.5em;
    .banner-buttons button {
      padding: 10px 12px;
      font-size: 0.9em;
      margin: 4px 6px;
    }
    .arrow {
      font-size: 36px;
      top: 60%;
      left: 4px;
      right: 4px;
    }
    #slide-conadre {
      height: 120px;
      margin: 0;
    }
    #slide-conadre .slide-text {
      padding: 0.5rem;
      font-size: 0.9em;
      max-width: 98vw;
    }
    .toad {
      height: 50px;
    }
    }
 
  }
    /*seccion de categorias*/
  .categorias {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 40px 0;
  background-color: #fff;
  flex-wrap: wrap;
  border-bottom: 10px solid transparent;
  border-image: linear-gradient(to right, #fff,#4b4bef, #fff) 1;/*1 linear gradient*/
     
  }
  
  .categoria {
  text-align: center;
  max-width: 300px;
  margin: 0px 10px;
  }
  
  .categoria img {
  width: 100%;
  height: 200px; /* Establece una altura fija */
  object-fit: cover; /* Asegura que la imagen se recorte proporcionalmente para llenar el espacio */
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background-color: #dff3ff;
    
  }
  
  .categoria h3 {
  margin: 15px 0 10px;
  font-size: 1.2rem;
  color: #333;
  }
  
  .categoria button {
  background-color: #a12d63;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 8px 16px;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 10px auto; /* Centra el botón horizontalmente */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Añade una transición suave */
  }

  .categoria button:hover {
  transform: scale(1.05) rotate(1deg); /* Escala y rota ligeramente al pasar el mouse */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
  }

  .categoria button:active {
  transform: scale(1) rotate(0deg); /* Vuelve a su lugar al hacer clic */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  }
  
  
  .flecha {
  background: none;
  border: 1px solid; 
  font-size: 2rem;
  cursor: pointer; /* Cambia el cursor al pasar sobre el elemento */
  color: white;
  border-radius: 50%; /* Hace que el botón sea circular */
  background-color: #a12d63; /* Color de fondo plomo */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; 
  height: 40px; 
  margin: 80px 10px; 
  }

  /*===Parte de explora===*/
.explora {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background-image: url('Imagenes/Imagen-explora.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex-wrap: wrap;
}
.Content-explora {
  background-color: white;
  margin: -15px 880px -15px -20px;
  padding: 0px 0px 30px 0px;
}
.img-explora1 {
  width: 100%;
  max-width: 500px;
  height: auto;
  padding: 80px 0px 0px 50px;
}
.txt-explora {
  margin-top: 1px;
  font-size: 1.2em;
  color: rgb(0, 0, 0);
  padding: 10px 150px 50px 120px;
  text-align: center;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.btn-ver {
  background-color: #ffa500;
  color: white;
  display: block;
  margin: 0 auto;
  margin-bottom: 50px;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.2em;
  transform: scale(1.05) rotate(1deg);
  box-shadow: 0 8px 16px rgb(0, 0, 0);
  position: relative;
  transition: transform 0.3s ease, left 0.3s ease, top 0.3s ease;
}

.btn-ver:hover {
  transform: scale(1.1) rotate(3deg);
  left: 5px;
  top: -5px;
}

.btn-ver:active {
  transform: scale(1) rotate(0deg);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

/* Responsive styles for explora section */
@media (max-width: 1200px) {
  .explora {
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }
  .Content-explora {
    margin: 10px 0 10px 0;
    padding: 0 0 20px 0;
    width: 100%;
    max-width: 700px;
  }
  .img-explora1 {
    max-width: 350px;
    padding: 40px 0 0 0;
    margin: 0 auto;
  }
  .txt-explora {
    padding: 10px 40px 30px 40px;
    font-size: 1em;
  }
}

@media (max-width: 900px) {
  .explora {
    flex-direction: column;
    align-items: center;
    padding: 8px;
  }
  .Content-explora {
    margin: 8px 0 8px 0;
    padding: 0 0 16px 0;
    width: 100%;
    max-width: 95vw;
  }
  .img-explora1 {
    max-width: 220px;
    padding: 20px 0 0 0;
    margin: 0 auto;
  }
  .txt-explora {
    padding: 8px 10px 20px 10px;
    font-size: 0.98em;
  }
  .btn-ver {
    font-size: 1em;
    padding: 8px 14px;
    margin-bottom: 20px;
  }
}

@media (max-width: 600px) {
  .explora {
    flex-direction: column;
    align-items: center;
    padding: 4px;
  }
  .Content-explora {
    margin: 4px 0 4px 0;
    padding: 0 0 10px 0;
    width: 100%;
    max-width: 99vw;
  }
  .img-explora1 {
    max-width: 120px;
    padding: 10px 0 0 0;
    margin: 0 auto;
  }
  .txt-explora {
    padding: 4px 2px 10px 2px;
    font-size: 0.95em;
  }
  .btn-ver {
    font-size: 0.95em;
    padding: 6px 10px;
    margin-bottom: 10px;
  }
}

/*=====Promocion=======*/
.promo-banner {
  display: flex;
  border: 2px solid #c0c0c0;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  background-image: url('Imagenes/Fondo-prom.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-image: linear-gradient(to right, #fff, #a0522d, #fff) 1;
  flex-wrap: wrap;
}
#descuento {
  flex: 1;
  text-align: center;
  width: 350px;
  height: 350px;
}
#descuento img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.detalle {
  display: block;
  margin-left: 340px;
  font-size: 20px;
  color: white;
  margin-top: -190px;
  background-color: rgba(255, 0, 0, 0.3);
  padding: 5px 1px 5px 5px;
  border-radius: 8px;
}

.promo-text {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  text-align: left;
}

.promo-text h2 {
  font-size: 40px;
  font-family: "Titan One";
  color: white;
  font-style: italic;
  font-weight: 300;
  margin-left: 50px;
}

.promo-text p {
  font-size: 1.3rem;
  color: yellow;
  margin-left: 50px;
  margin-top: -20px;
  border-bottom: #ff6f00 solid 2px;
  font-family: Lilita One;
}

.subtexto {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn-promo {
  background-color: #ffcc5c;
  color: black;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background 0.3s;
  display: inline-block;
  margin: 30px 40px 20px 50px;
}

.btn-promo:hover {
  background-color: #ffe38a;
  transform: scale(1.05) rotate(1deg);
  box-shadow: 0 8px 16px rgba(0,0,0,0.5);
}

.promo-imagen {
  flex: 1;
  text-align: center;
}
.promo-imagen img {
  margin: 0 auto;
  max-width: 80%;
  height: auto;
}

/* --- Responsive styles for promo-banner --- */
@media (max-width: 1200px) {
  .promo-banner {
    flex-direction: column;
    align-items: center;
    padding: 15px;
  }
  #descuento {
    width: 250px;
    height: 250px;
    margin-bottom: 10px;
  }
  .detalle {
    margin-left: 0;
    margin-top: 0;
    font-size: 16px;
    position: static;
    background-color: rgba(255, 0, 0, 0.3);
    padding: 4px 1px 4px 4px;
  }
  .promo-text {
    max-width: 100%;
    min-width: 180px;
    text-align: center;
  }
  .promo-text h2,
  .promo-text p {
    margin-left: 0;
    text-align: center;
  }
  .btn-promo {
    margin: 20px auto 10px auto;
    display: block;
  }
}

@media (max-width: 900px) {
  .promo-banner {
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }
  #descuento {
    width: 320px;
    height: 280px;
    margin-bottom: 8px;
  }
  .promo-text {
    max-width: 100%;
    min-width: 120px;
    text-align: center;
  }
  .promo-text h2 {
    font-size: 1.5em;
    margin-left: 0;
  }
  .promo-text p {
    font-size: 1em;
    margin-left: 0;
    margin-top: -10px;
  }
  .btn-promo {
    font-size: 1em;
    padding: 8px 16px;
    margin: 12px auto 8px auto;
  }
  .promo-imagen img {
    max-width: 400px;
  }
}

@media (max-width: 600px) {
  .promo-banner {
    flex-direction: column;
    align-items: center;
    padding: 4px;
  }
  #descuento {
    width: 180px;
    height: 170px;
    margin-bottom: 4px;
  }
  .promo-text {
    max-width: 100vw;
    min-width: 60px;
    text-align: center;
  }
  .promo-text h2 {
    font-size: 1em;
    margin-left: 0;
  }
  .promo-text p {
    font-size: 0.95em;
    margin-left: 0;
    margin-top: -6px;
  }
  .btn-promo {
    font-size: 0.95em;
    padding: 6px 10px;
    margin: 8px auto 4px auto;
  }
  .promo-imagen img {
    max-width: 250px;
  }
}


/*mas vendidos*/
.mas-vendido {
  padding: 20px;
  font-family: Arial, sans-serif;
  margin-left: 0px;
}

.titulo-con-linea {
  display: flex;
  align-items: center;
  margin: 10px 0;
}

.titulo-con-linea h2 {
  font-family: 'Georgia', serif;
  font-size: 4rem;
  font-weight: normal;
  margin: 0;
  white-space: nowrap;
}

.titulo-con-linea .linea {
  flex-grow: 1;
  height: 2px;
  background-color: black;
  margin-left: 20px;
}

.contenedor-vendido {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  padding: 50px 0px 0px 0px;
}

.productos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  flex: 1;
  min-width: 300px;
}

.producto-card {
  background: #eee;
  padding: 10px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 4px 6px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  background: hsla(30, 80%, 50%, 0.9);
  padding: 1rem;
  transition: transform 0.3s, box-shadow 0.3s;
  outline: 2px dashed #fff;
  outline-offset: -10px;
  transform: rotate(0deg);
  cursor: pointer;
}

.producto-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

.producto-card img {
  width: 100%;
  max-width: 250px;
  height: auto;
}

.producto-card .nombre {
  font-weight: bold;
  margin-top: 5px;
  text-decoration: underline;
  font-size: 0.95rem;
}

.producto-card .precio {
  font-size: 0.9rem;
  margin-top: 5px;
  margin-bottom: 5px;
  display: block;
  width: 100%;
  justify-content: center;
}

.producto-card:hover {
  transform: scale(1.05);
}

.producto-destacado {
  flex: 1;
  min-width: 300px;
  background: linear-gradient(to right, #50c9c3, #2962ff);
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
  outline: 2px dashed #fff;
  outline-offset: -10px;
  transform: rotate(0deg);
  cursor: pointer;
}

.producto-destacado:hover {
  transform: scale(1.05) translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

.producto-destacado img {
  width: 100%;
  max-width: 500px;
  height: auto;
  margin-bottom: 5px;
}

.destacado {
  outline: 4px solid #9e77ff;
}
.producto-destacado .nombre{
  color: #ff6f00;
  background: linear-gradient(90deg, #bd00ff 10%, #ff6f00 50%, #35c4f0 90%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    2px 2px 0 #fff9dd,
    4px 4px 8px #393f4a,
    0 0 16px #ff6f00;
  font-size: 4em;
  font-family: "WDXL Lubrifont TC", sans-serif;
  font-weight: 900;
  font-style: normal;
  margin: 0 auto;
  letter-spacing: 4px;
  animation: title-pop 1.2s cubic-bezier(.68,-0.55,.27,1.55) both;
  transition: text-shadow 0.3s, transform 0.3s;
  cursor: pointer;
  text-align: center;        /* Centra el texto */
  display: block;
  width: 100%;
}
.producto-destacado .precio {
  font-size: 2rem;
  color: #000000;
  margin-top: 18px;
  text-align: center;
  background: linear-gradient(90deg, #ff9800 30%, #ffd740 100%);
  font-family: lilita one, sans-serif;
  border-radius: 18px;
  padding: 10px 28px;
  box-shadow: 0 4px 16px rgba(255, 193, 7, 0.18);
  letter-spacing: 2px;
  display: inline-block;
  transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
}
.producto-destacado .precio:hover {
  background: linear-gradient(90deg, #ffd740 10%, #ff9800 90%);
  box-shadow: 0 8px 24px rgba(255, 193, 7, 0.28);
  transform: scale(1.05) rotate(-2deg);
}

/*======Parte visita nuestra tienda=========*/
.visita-tienda {
  background-color: #f6ec36;
  padding: 35px;
}

.contenedor-visita {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.promo-img {
  flex: 1;
  min-width: 250px;
}

.promo-img img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.galeria {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fila-superior img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  padding: 0px 10px 10px 0px;
}

.fila-inferior {
  display: flex;
  gap: 10px;
}

.fila-inferior img {
  width: 100%;
  height: 370px;
  object-fit: cover;
  border-radius: 10px;
}

.mapa {
  width: 100%;
  height: 370px;
  border: 0;
  border-radius: 10px;
  padding-left: 10px;
}

/* Responsive styles for visita-tienda */
@media (max-width: 1200px) {
  .visita-tienda {
    padding: 18px;
  }
  .promo-img img {
    max-width: 300px;
  }
  .fila-superior img {
    height: 120px;
  }
  .fila-inferior img {
    height: 180px;
  }
  .mapa {
    height: 180px;
  }
}

@media (max-width: 900px) {
  .contenedor-visita {
    flex-direction: column;
    gap: 10px;
  }
  .promo-img {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .promo-img img {
    max-width: 180px;
    margin: 0 auto;
    display: block;
  }
  .fila-superior img {
    height: 80px;
    padding: 0 4px 4px 0;
  }
  .fila-inferior img {
    height: 90px;
  }
  .mapa {
    height: 90px;
    padding-left: 0;
  }
}

@media (max-width: 600px) {
  .visita-tienda {
    padding: 8px;
  }
  .contenedor-visita {
    gap: 4px;
  }
  .promo-img {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .promo-img img {
    max-width: 100px;
    margin: 0 auto;
    display: block;
  }
  .fila-superior img,
  .fila-inferior img {
    height: 60px;
    padding: 0 2px 2px 0;
  }
  .fila-inferior img {
    height: 60px;
  }
  .mapa {
    height: 60px;
    padding-left: 0;
  }
}

/*pie de pagina*/

 .footer {
  background-color: #111;
  color: white;
  padding: 20px 10px;
  position: relative;
  font-family: Arial, sans-serif;
}

.footer-contenedor {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-col h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.footer-col p,
.footer-col li,
.footer-col a {
  font-size: 14px;
  color: #ccc;
  text-decoration: none;
}

.footer-col ul {
  list-style: circle;
  padding-left: 20px;
  line-height: 1.8; /* Incrementa el espacio entre líneas */
}

.footer-redes a {
  font-size: 18px;
  color: white;
  margin-right: 10px;
  margin-left: 0; /* Ajusta el margen izquierdo para alinearlos más a la izquierda */
}

.footer-redes a:hover {
  color: #ffcc00;
}

.libro-reclamaciones img {
  width: 80px;
  margin-top: 10px;
  margin-left: 80px;
}


/* WhatsApp flotante */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  border-radius: 50px;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  z-index: 1000;
  font-size: 14px;
}

.whatsapp-float i {
  font-size: 20px;
}

.footer-copy {
  text-align: center;
  font-size: 12px;
  color: #aaa;
  margin-top: 20px;
}


/*---------------ESTILOS PARA LA PAGINA DE PRODUCTOS-------------------------*/
/* Botón volver al inicio */
#logo-ini {
  width: 100px;
  margin-left: 10px;
  height: auto;
  transition: transform 0.3s ease, translate 0.3s ease; /* Añade una transición suave */
}

#logo-ini:hover {
  transform: translateX(10px); /* Mueve el logo 10px hacia la derecha al pasar el mouse */
}

/* Categorías tipo círculo */
.categorias-circulares {
  display: flex;
  flex-direction: row;
  justify-content: right;
  gap: 1.5rem;
  padding: 1rem 8rem;
  background-color: #4fc3f7;
}

.categoriap {
  text-align: center;
  cursor: pointer;
  font-family: 'Comic Sans MS', 'Comic Sans', 'Lilita One', cursive, sans-serif;
}

.categoriap img {
  width: 150px;
  height: 150px; /* Establece una altura fija */
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #ffc73e;
  background-color: rgb(232, 224, 195);
  margin: 0px 30px;
  transition: filter 0.3s, box-shadow 0.3s;
}

/* Efecto de brillo al pasar el mouse */
.categoriap:hover img {
  filter: none;
  box-shadow: 0 0 30px 10px #e9dd99;
  z-index: 2;
}

/* Sombrea las demás categorías cuando una está en hover */
.categorias-circulares:hover .categoriap img {
  filter: brightness(0.6) grayscale(0.2);
  box-shadow: none;
}

.categoriap:hover img {
  filter: brightness(1.3) drop-shadow(0 0 20px #d5cea6);
  box-shadow: 0 0 30px 10px #d9d09f;
}

/* Evita que la imagen activa se vea sombreada */
.categorias-circulares:hover .categoriap:hover img {
  filter: brightness(1.3) drop-shadow(0 0 20px #dad3ab);
  box-shadow: 0 0 30px 10px #d4cda3;
}

.categoriap span {
  display: block;
  margin-top: 0.5rem;
  font-weight: 500;
}

/* Contenedor principal */
.contenedor-principal {
  display: flex;
  gap: 2rem;
  padding: 2rem;
}

/* --- Media Queries para adaptar a diferentes pantallas --- */
@media (max-width: 1200px) {
  .categorias-circulares {
    padding: 1rem 2rem;
    gap: 1rem;
  }
  .contenedor-principal {
    gap: 1rem;
    padding: 1rem;
  }
}

@media (max-width: 900px) {
  .categorias-circulares {
    flex-wrap: wrap;
    justify-content: center;
    padding: 1rem;
    gap: 1rem;
  }
  .categoriap img {
    width: 120px;
    height: 120px;
    margin: 0 10px;
  }
  .contenedor-principal {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem;
  }
}

@media (max-width: 600px) {
  .categorias-circulares {
    flex-direction: column;
    align-items: center;
    padding: 0.5rem;
    gap: 0.5rem;
  }
  .categoriap img {
    width: 90px;
    height: 90px;
    margin: 0 0 10px 0;
  }
  .contenedor-principal {
    flex-direction: column;
    gap: 1rem;
    padding: 0.5rem;
  }
}

/* Filtros laterales */
.filtros {
  flex: 1;
  max-width: 200px;
  background-color: #b0bacf;
  padding: 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
}

.filtros h3 {
  margin-top: 1rem;
  color: #333;
}

.filtros ul {
  list-style: none; /* Elimina los puntos de la lista */
  padding: 0;
}

.filtros ul li {
  margin-bottom: 0.5rem;
}

/* Lista de productos */
.productos {
  flex: 3;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 3rem;
  user-select: none; /* Evita la selección de texto */
  color: #000; /* Cambia el color de texto a negro */

}

.producto {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 1.2rem 1.5rem 0.8rem 1.5rem;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s;
  display: flex;
  flex: 1 1 70%;
  flex-wrap: wrap;
  gap: 10px;
  user-select: none; /* Evita la selección de texto */
  color: #000; /* Cambia el color de texto a negro */
  margin: 0px;
  
  
}

.producto:hover {
  transform: translateY(-5px);
}

.producto img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
     
}

.precio-original {
  text-decoration: line-through;
  color: #999;
  font-size: 0.9rem;
  margin-left: 0.5rem;
  user-select: none; /* Evita la selección de texto */
  color: #e18616; 
}


/*----------PAGINA DE SET SELECCIONADOS-----------*/

/*lado izquierdo miniaturas*/

.miniaturas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
  background: none;
  box-shadow: none;
  padding: 0;
  margin: 0 0 0 100px;
  max-width: 100px;
  height: 350px;

}

.miniaturas img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid #ccc;
  cursor: pointer;
  transition: border 0.2s, box-shadow 0.2s;
}

.miniaturas img.selected,
.miniaturas img:hover {
  border: 2px solid #ff6f00;
  box-shadow: 0 0 8px #ff6f00;
}
   .miniatura.active {
      border: 2px solid #007bff;
      box-sizing: border-box;
    }
/*lado centro*/

.producto-detalle {
  display: flex;
  gap: 30px;
  margin: 20px 20px 20px 20px;
  color: #333;
  justify-content: center;
  align-items: center;
  background-color: rgb(203, 191, 164);
  padding: 10px 30px 0px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  max-width: 1000px;
}
.galeria-producto{
  display: flex;
  gap: 20px;
}

.imagen-producto {
  display: flex;
  align-items: center;
  justify-content: center;
    
}

.imagen-producto img {
  width: 500px;
  border-radius: 10px;
  display: block;
  max-width: 100%;
   
}

.info-producto {
  display: flex;
  flex:1;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 100px;
}

.info-producto h2 {
  font-size: 1.2em;
  color: #666;
  margin-bottom: 5px;
}

.info-producto h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.codigo-producto {
  font-size: 0.9em;
  color: gray;
  margin-bottom: 10px;
}

.valoracion {
  font-size: 1em;
  color: #ffaa00;
  margin-bottom: 15px;
}

.precio {
  font-size: 1.5em;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.precio-actual {
  font-weight: bold;
  color: green;
  margin-right: 10px;
}

.precio-anterior {
  text-decoration: line-through;
  color: #999;
  margin-right: 10px;
}

.descuento {
  background-color: red;
  color: white;
  padding: 3px 8px;
  border-radius: 5px;
}

.btn-comprar {
  background-color: #393f4a;
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 1em;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 10px;
  align-self: flex-start;
}

.metodos-entrega {
  margin-top: 20px;
  list-style: none;
  padding-left: 0;
}

.metodos-entrega li {
  margin-bottom: 5px;
}

/* Centrado de pestañas */
.producto-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

/* Botones de pestañas */
.producto-tabs button {
  background-color: #fff;
  color: #444;
  border: 2px solid #444;
  border-radius: 8px 8px 0 0;
  padding: 10px 30px;
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border 0.2s;
  margin-bottom: -2px;
  outline: none;
  text-align: center;
}

.producto-tabs button.active,
.producto-tabs button:focus {
  background-color: #444;
  color: #fff;
  border-bottom: 2px solid #fff;
}

/* Contenido de pestañas */
.tab-content {
  display: block;
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
}

/*=========== Estilos para la login=======*/
.acerca-container .title2 {
  font-size: 5em;
  color: #115ae3;
  font-family: "Lilita One", sans-serif;
  margin-bottom: 10px;
}
.login-main {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #f0f0f0;
  padding: 0 10px;
  flex-wrap: wrap;
}

.login-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 540px;
  margin: -100px 20px -100px -50px;
  
}

.login-image img {
  width: 100%;
  max-width: 740px;
  height: auto;
  border-radius: 12px;
}

.login-form-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 200px;
  max-width: 320px;
  width: 100%;
  padding: 30px 0;
}

.login-form-section h1 {
  margin-bottom: 16px;
  font-size: 4em;
  color: #393f4a;
  font-family: "Lilita One", sans-serif;
}

#login-mensaje {
  text-align: left;
  margin-top: 12px;
  margin-bottom: 12px;
  font-size: 1em;
  color: #ec0c0c;
  font-family: 'Arial', sans-serif;
}

.login-form-section label {
  margin-bottom: 6px;
  font-weight: bold;
  color: #393f4a;
  display: block;
}

.login-form-section input[type="email"],
.login-form-section input[type="password"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 14px;
  border: 1px solid #ff9100;
  border-radius: 4px;
  font-size: 1em;
  box-sizing: border-box;
}

.login-form-section button[type="submit"] {
  margin-top: 12px;
  width: 100%;
  padding: 10px;
  background: #ff6f00;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  font-size: 1em;
}

.login-form-section button[type="submit"]:hover {
  background: #767c83;
}

/* Responsive styles */
@media (max-width: 900px) {
  .login-main {
    flex-direction: column;
    padding: 15px 0;
  }
  .login-image {
    max-width: 180px;
    margin: 0 auto 15px auto;
  }
  .login-image img {
    max-width: 140px;
  }
  .login-form-section {
    max-width: 100%;
    min-width: 140px;
    width: 95%;
    padding: 10px 8px;
  }
}

@media (max-width: 600px) {
  .login-main {
    flex-direction: column;
    padding: 0;
  }
  .login-image {
    max-width: 100px;
    margin: 0 auto 8px auto;
  }
  .login-image img {
    max-width: 80px;
  }
  .login-form-section {
    max-width: 100%;
    min-width: 80px;
    width: 98%;
    padding: 0 4px;
  }
  .login-form-section h2 {
    font-size: 1.1em;
  }
}

/* =======Estilo para registro===== */
.registro-section {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  padding: 30px;
  background-color: #f0f0f0;
}

/* Formulario a la izquierda */
.registro-container {
  flex: 1 1 320px;
  max-width: 400px;
}

#registro-form {
  display: flex;
  flex-direction: column;
  width: 100%;
}

#registro-form h2 {
  font-size: 3em;
  margin-bottom: 18px;
  font-family: "WDXL Lubrifont TC", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: hwb(280 12% 21%);
  text-shadow: 2px 2px 6px #ffd580, 0 1px 0 #fff;
  letter-spacing: 1px;
  font-weight: 400; /* Más delgado */
}

#registro-form label {
  font-weight: bold;
  margin-top: 12px;
  color: #195fe1;
}

#registro-form input {
  padding: 10px;
  margin-top: 4px;
  border: 1px solid #ff9100;
  border-radius: 4px;
}

/* Botón */
#registro-form button {
  margin-top: 20px;
  padding: 10px;
  background-color: #ff6f00;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#registro-form button:hover {
  background-color: #d55a00;
}

/* Aside a la derecha */
.registro-aside {
  flex: 1 1 280px;
  max-width: 360px;
  text-align: left;
}

.registro-aside img {
  width: 100%;
  max-width: 300px;
  border-radius: 10px;
  margin-bottom: 12px;
}

.registro-aside h3 {
  font-size: 1 em;
  color: #d10f0f;
  margin-bottom: 8px;
  text-align: left;
}

.registro-aside ul {
  list-style: none;
  font-size: 1em;
  text-align: left;
  color: #555;
}

/* Responsive para pantallas pequeñas */
@media (max-width: 768px) {
  .registro-section {
    flex-direction: column;
    align-items: center;
  }

  .registro-aside,
  .registro-container {
    max-width: 95%;
  }

  .registro-aside {
    text-align: center;
  }

  .registro-aside ul {
    text-align: left;
  }
}

/* ===ESTILOS PARA SERVICIOS=====*/
 .servicios-main {
  padding: 2rem 1rem;
  max-width: 1100px;
  margin: auto;
  font-family: 'Roboto', sans-serif;
  text-align: center;
}

.servicios-main h1 {
  font-size: 2.5rem;
  color: #ff6f00;
  font-family: 'Lilita One', cursive;
  margin-bottom: 2rem;
}

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.servicio-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.servicio-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.servicio-card img {
  width: 100px;
  height: auto;
  margin-bottom: 1rem;
  transition: transform 0.4s ease;
}

.servicio-card:hover img {
  transform: rotate(8deg) scale(1.1);
}

.servicio-card h3 {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.servicio-card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}




/* ===ESTILOS PARA ACERCA DE */
.acerca-main {
  background: #f6cfb1;
  padding: 32px 0 60px 0; /* Aumenta el padding-bottom para separar del footer */
}

.acerca-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.acerca-articulos {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.acerca-tarjeta {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 18px 0 rgba(30, 90, 160, 0.09);
  padding: 22px 26px 18px 26px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.acerca-tarjeta img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 7px;
}
.acerca-tarjeta h2 {
  margin: 0 ;
  font-size: 1.8em;
  font-family: "WDXL Lubrifont TC", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: hwb(280 12% 21%);
  text-shadow: 2px 2px 6px #ffd580, 0 1px 0 #fff;
}

.acerca-tarjeta ul {
  padding-left: 16px;
  font-family: 'Comic Sans MS', 'Comic Sans', cursive, sans-serif;
}
.acerca-tarjeta p {
font-family: 'Comic Sans MS', 'Comic Sans', cursive, sans-serif;
}
.acerca-sidebar {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.acerca-widget {
  background: #fdf6e7;
  border-radius: 12px;
  box-shadow: 0 2px 10px 0 rgba(30, 90, 160, 0.08);
  padding: 18px 18px 14px 18px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.acerca-widget img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  margin-bottom: 6px;
  object-fit: cover;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.acerca-widget h3 {
  margin: 0 0 7px 0;
  color: #1976d2;
  font-size: 1.13em;
  text-align: center;
}
.acerca-widget ul {
  padding-left: 0;
  font-family: 'Comic Sans MS', 'Comic Sans', cursive, sans-serif;
  list-style: none;
  text-align: center;
}

@media (max-width: 900px) {
  .acerca-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 0 14px;
  }
  .acerca-articulos,
  .acerca-sidebar {
    flex: unset;
  }
}

@media (max-width: 600px) {
  .acerca-main {
    padding: 12px 0 40px 0; /* También aumenta el padding-bottom en móvil */
  }
  .acerca-tarjeta,
  .acerca-widget {
    padding: 12px 9px 9px 9px;
  }
}

.testimonios-lista {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 8px;
}

.testimonio-card {
  display: flex;
  flex-direction: row;
  gap: 14px;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 8px;
  padding: 15px 10px;
  box-shadow: 0 2px 10px 0 rgba(30,90,160,0.06);
}

.testimonio-user {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 66px;
  margin-right: 2px;
}

.user-inicial {
  width: 40px;
  height: 40px;
  background: #50a99e;
  color: #fff;
  font-size: 1.3em;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3px;
}

.testimonio-fecha {
  font-size: 0.95em;
  color: #888;
}

.testimonio-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonio-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}
.stars {
  color: #ffc107;
  font-size: 1.06em;
  letter-spacing: 1px;
}
.compra-verificada {
  color: #27ae60;
  font-size: 0.98em;
  font-weight: 500;
}
.testimonio-titulo {
  font-size: 1.04em;
  margin: 2px 0 1px 0;
}
.testimonio-texto {
  color: #222;
  font-size: 0.98em;
  margin-bottom: 4px;
}
.btn-util {
  border: 1px solid #bdbdbd;
  border-radius: 5px;
  background: #fafafa;
  color: #333;
  padding: 4px 14px;
  font-size: 0.97em;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: background 0.2s, border 0.2s;
}
.btn-util:hover {
  background: #ededed;
  border-color: #888;
}



/* ====ESTILOS PARA LA SECCION CONTACTO=== */
.contacto-main {
  padding: 2rem 1rem;
  max-width: 600px;
  margin: auto;
  text-align: center;
}

.contacto-titulo {
  font-size: 4.5rem;
  margin-bottom: 0.5rem;
  font-family: "WDXL Lubrifont TC", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: hwb(280 12% 21%);
  text-shadow: 2px 2px 6px #ffd580, 0 1px 0 #fff;
}

.contacto-descripcion {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  color: #666;
}

.formulario-contacto {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-control {
  padding: 0.8rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.btn-yellow {
  background-color: #ffc107;
  color: #393f4a;
  padding: 0.8rem;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-yellow:hover {
  background-color: #e0a800;
}

/* Responsive para la sección de contacto */
@media (max-width: 900px) {
  .contacto-titulo {
    font-size: 2.5rem;
  }
  .contacto-main {
    padding: 1.2rem 0.5rem;
    max-width: 98vw;
  }
}

@media (max-width: 600px) {
  .contacto-titulo {
    font-size: 1.5rem;
  }
  .contacto-main {
    padding: 0.5rem 0.2rem;
    max-width: 100vw;
  }
  .formulario-contacto {
    gap: 0.5rem;
  }
  .form-control {
    font-size: 0.95rem;
    padding: 0.5rem;
  }
  .btn-yellow {
    font-size: 0.95rem;
    padding: 0.5rem;
  }
}

/* Estilos para la mi cuenta */
.main-container { 
  font-size: 1em;
  max-width: 750px;
  margin: 10px auto; /* Aquí se centra horizontalmente */
  background-color: #fff;
  padding: 30px 15px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  font-family: "WDXL Lubrifont TC", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: hwb(280 12% 21%);
  text-shadow: 2px 2px 6px #ffd580, 0 1px 0 #fff;
  letter-spacing: 1px;
}

/* Título centrado */
.main-container h1 {
  font-size: 3em;
  margin-bottom: 20px;
  text-align: center;
  font-family: "WDXL Lubrifont TC", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: hwb(280 12% 21%);
  text-shadow: 2px 2px 6px #ffd580, 0 1px 0 #fff;
  letter-spacing: 1px;
}

/* Secciones del perfil */
.account-details, .account-actions {
  border: 1px solid #eee;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 20px;
}

.account-details p {
  font-size: 1.1em;
  line-height: 1.8;
}

.account-details strong {
  color: #e55300;
}



.account-actions a,
.boton-micuenta {
  display: inline-block;
  margin: 10px;
  padding: 10px 15px;
  background-color: #ffc107;
  color: #000;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s;
  font-family: inherit;
  font-size: 1em;
  cursor: pointer;
}

.account-actions a:hover,
.boton-micuenta:hover {
  background-color: #ffda73;
}

.main-container input[type="text"],
.main-container input[type="email"],
.main-container input[type="password"] {
  width: 80%;
  padding: 10px 15px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: Arial;
  font-size: 1em;
  background-color: #f9f9f9;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.main-container input:focus {
  border-color: #ffc107;
  outline: none;
  box-shadow: 0 0 5px rgba(255, 193, 7, 0.5);
}

.main-container label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #444;
}


    
