/*Roots*/
:root{
     --blanco:#ffffff;
     --negro:#000000;
     --gris:#52606d;
     --gris-claro:#f2f2f2;
     --naranja:#e47b02;
     --verde:#018d05bf;
     --rojo:#ff2e2ebf;
     --link:#3671ed;
     --naranja-notificaciones:#f7d0a3;
     }
/* Estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Asegurarse de que html y body ocupen todo el viewport */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body{
    width: 100%;
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    flex-direction: column;
    min-height: 100vh; /* Mínimo 100% del viewport height */
}

a{
  text-decoration: none;
}

.link{
    color: var(--link);
    text-decoration: none;
     }

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: white;
    border-bottom: 5px solid var(--naranja);
}

header .logo .logo-web {
    width: 180px;
    display: block;
}

header .logo .logo-movil{
  display: none;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 5px;
    justify-content: center;
    align-items: center;
}

nav ul li{
          margin-left: 10px;
          padding: 5px;
          border-radius: 5px;
         }

nav ul li a {
             text-decoration: none;
             color: var(--negro);
             padding-left: calc(1.8em / 2);
             padding-right: calc(1.8em / 2);
             font-size: 15px;
             font-weight: bold;
            }

nav ul li a:hover{
                  color: var(--naranja);
                 }

/* Slider */
/* Contenedor principal del slider */
.slider {
    position: relative;
    max-width: 100%;
    height: 600px;
    overflow: hidden;
}

/* Cada diapositiva individual */
.slides {
    display: none; /* Oculta todas las diapositivas por defecto */
    position: absolute;
    width: 100%;
    height: 100%;
}

/* Imágenes dentro de las diapositivas */
.slides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-bottom: 5px solid var(--naranja);
}

/* Estilos para el texto sobre las imágenes */
.slider-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 5px;
}

.slider-text h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.slider-text .button {
    background-color: orange;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

/* Estilo del botón */
.button {
  width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 10px;
    background-color: #f7a43a;
    color: white;
    text-decoration: none;
    margin-left: 10%;
    margin-right: 10%;
    border-radius: 5px;
    margin-top: 5px;
    float: left;
}

.button:hover {
    background-color: #e68928;
}


.button .texto-visitar{
                        float: left;
                        text-align: center;
                      }

.button img.icono-tienda{
                         width: 45px;
                         height: auto;
                         float: right;
                         margin-top: -2px;
                         background: none;
                        }



.contenedor-de-acciones-favoritos{
                                  width: 80%;
                                  float: left;
                                  display: flex;
                                  align-items: center;
                                  text-align: center;
                                  justify-content: center;
                                  margin-left: 10%;
                                  margin-right: 10%;
                                  margin-top: -15px;
                                  flex-direction: column;
                                 }

.icono-tienda{
  width: 40px;
  display: inline-block;
  padding: 5px 10px;
  text-decoration: none;
  border-radius: 5px;
  margin-right: 5px;
  float: left
                 }

.icono-tienda:hover{
                    background-color: #e68928;
                    cursor: pointer;
                   }


.icono-tienda img{
                  width: 25px !important;
                  height: auto !important;
                  float: right !important;
                  margin-left: 5px;
                 }

button.delete{
              width: auto;
display: inline-block;
padding: 5px 5px;
color: white;
float: right;
margin-left: 3.5%;
margin-top: -45px;
background: var(--blanco);
position: absolute;
  border: 2px solid var(--negro);
text-decoration: none;
border-radius: 5px;

              }

button.delete:hover{
                    cursor: pointer;
                    background: none;
                   }



.button img.icono-quitarFavorito{
                    width: 25px;
                    height: auto;
                    float: left;
                  }

/* Sección de tiendas */

/* Estilo para el título "MIS TIENDAS" */
.container-mis-tiendas{
                       width: 90%;
                       margin-left: 5%;
                       margin-right: 5%;
                       max-width: 1920px;
                       padding: 20px;
                       float: left;
                       margin-bottom: 25%;
                     }

.mis-tiendas-title {
    width: 100%;
    float: left;
    text-align: center;
    font-size: 2.5em;
    font-weight: 700;
    color: #333333;
    margin: 20px 0 0px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding-bottom: 10px;
    position: relative;
    font-family: 'Arial', sans-serif; /* Ajusta según la fuente que uses en la web */

    /* Línea decorativa debajo del título */
    display: inline-block;
}

.mis-tiendas-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: #FF6600; /* Color naranja acorde al logo */
    margin: 8px auto 0;
    border-radius: 2px;
}


.stores{
        width: 100%;
        float: left;
        padding: 20px;
        background-color: #f0a94a;
       }

.titulo-algunas-tiendas{
  display: flex;
  justify-content: space-around;
  margin-top: 5%;
  padding: 5px;
  color: var(--blanco);
  background-color: #f0a94a;
}

.titulo-algunas-tiendas h1{
  width: 100%;
  float: left;
  text-align: center;
  margin-top: 10px;
}

.store {
    text-align: center;
    background-color: #ffe8d6;
    border-radius: 10px;
}



.store img{
           width: 100%;
           height: 250px;
           display: block;
           transition: opacity .1s linear;
           object-fit: cover;
           object-position: top;
          }

.store h3{
          text-decoration: none;
          color: var(--negro);
          margin: 10px 0;
         }

.store-item h3{
           width: 90%;
         margin-left: 5%;
         margin-right: 5%;
         float: left;
         font-weight: 600;
         margin-bottom: 5px;
         margin-top: 5px;
         font-size: 20px;
         height: 60px;
                  }
.store .button {
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 8px 12px;
    background-color: orange;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}


.store-item-mis-tiendas{
  width: 15.66%;
      margin-bottom: 10px;
      padding: 3px;
      border-radius: 5px;
      margin-left: 0.5%;
      margin-right: 0.5%;
      float: left;
      text-align: center;
      border: 2px solid var(--negro);
      background-color: var(--gris-claro);
           }

.store-item-mis-tiendas:hover{
                  cursor: pointer;
                  border: 2px solid var(--verde);
                 }

                 .store-item-mis-tiendas img{
                                 width: 100%;
                                 height: 200px;
                                 display: block;
                                 transition: opacity .1s linear;
                                 object-fit: cover;
                                 object-position: top;
                                }

.store-item-mis-tiendas p{
                          color: var(--negro);
                          font-weight: bold;
                         }

.store-item-mis-tiendas p span{
                              color: var(--verde);
                              font-weight: bold;
                             }


  .store-item-mis-tiendas .icono-tienda{
    width: 80%;
display: flex;
padding: 10px 20px;
background-color: #f7a43a;
color: white;
text-decoration: none;
border-radius: 5px;
margin-left: 5%;
margin-right: 5%;
margin-top: 5px;
float: left;
text-align: center;
justify-content: center;
align-items: center;
}

.store-item-mis-tiendas .icono-tienda:hover{
                                            background-color: #e68928;
                                           }


.store-item-mis-tiendas .icono-tienda img{
                                          width: 25px !important;
                                          height: auto !important;
                                          float: left !important;
                                         }

.contenedor-de-acciones-mis-tiendas{
                                    width: 90%;
                                    float: left;
                                    display: flex;
                                    align-items: center;
                                    text-align: center;
                                    justify-content: center;
                                    margin-left: 5%;
                                    margin-right: 5%;
                                   }

/* Sección de cómo funciona */
.how-it-works{
              width: 80%;
              margin-left: 10%;
              margin-right: 10%;
              justify-content: space-around;
              padding: 40px 0;
              background-image: linear-gradient(135deg, var(--gris-claro) 0%, rgb(238, 225, 216) 100%);
              float: left;
              margin-top: 3%;
              margin-bottom: 3%;
              border-radius: 5px;
              box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
             }

.how-it-works h1{
                  width: 100%;
                  float: left;
                  font-size: 35px;
                  margin-bottom: 2%;
                  text-align: center;
                  color: var(--naranja);
                }

.how-it-works .column{
                     text-align: center;
                     width: 33.33%;
                     float: left;
                    }

.how-it-works .column img{
                          width: 100px;
                          height: 100px;
                         }

.how-it-works .column h3{
                         margin: 0px;
                        }

.how-it-works .column p{
                        width: 80%;
                        margin-left: 10%;
                        margin-right: 10%;
                        font-size: 13px;
                      }

.how-it-works .button{
                     background-color: orange;
                     color: white;
                     padding: 10px 20px;
                     text-decoration: none;
                     border-radius: 5px;
                            }


.llamado-accion-planes{
  width: 80%;
  margin-left: 10%;
  margin-right: 10%;
  justify-content: space-around;
  padding: 40px 0;
  float: left;
  margin-bottom: 3%;
  border-radius: 5px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.llamado-accion-planes h1{
width: 100%;
float: left;
font-size: 35px;
margin-bottom: 2%;
text-align: center;
color: var(--naranja);
}

.llamado-accion-planes .textos-llamado-a-accion{
  width: 60%;
  float: left;
}

.llamado-accion-planes .img-llamado-a-accion{
  width: 40%;
  float: left;
}

.llamado-accion-planes .img-llamado-a-accion img{
  width: 50%;
  margin-left: 25%;
  margin-right: 25%;
  float: left;
}


.llamado-accion-planes p{
  width: 90%;
      margin-left: 5%;
      margin-right: 5%;
      display: block;
      float: left;
        font-size: 25px;
      font-style: italic;
      text-align: center;
      margin-bottom: 1%;
}


.llamado-accion-planes samp{
  width: 80%;
  margin-left: 10%;
  margin-right: 10%;
  display: block;
  float: left;
  text-align: left;
  font-size: 20px;
  margin-top: 1%;
  margin-bottom: 1%;
  font-family: "Poppins", sans-serif;
}

.conocer-mas{
  width: 30%;
      margin-left: 0%;
      margin-right: 5%;
      display: flex;
      text-align: center;
      align-items: center;
      justify-content: center;
      float: right;
      font-weight: bold;
      padding: 5px;
      font-size: 25px;
      border-radius: 40px;
      border: 2px solid var(--negro);
      background: var(--naranja);
      color: var(--blanco);
}


/* Buscador */
.search-box{
            width: 100%;
            text-align: center;
            float: left;
            padding: 5px;
            background: var(--gris-claro);
           }

.search-box label{
                  width: 100%;
                  float: left;
                  font-size: 13px;
                  font-weight: bold;
                  text-align: left;
                  }

.search-box input{
                  width: 100%;
                  padding: 10px;
                  width: 50%;
                  border: 2px solid #ccc;
                  border-radius: 5px;
                  font-size: 16px;
                  float: left;
                 }

/* Departamentos */
.department-filter{
                  width: 100%;
                  float: left;
                  padding: 5px;
                  background: var(--gris-claro);
                  border-radius: 5px;
                  margin-top: 5px;
                 }

.department-filter label{
                         width: 100%;
                         float: left;
                         font-size: 13px;
                         font-weight: bold;
                         text-align: left;
                        }

select#department-select{
  width: 100%;
padding: 10px;
margin-bottom: 15px;
border: 1px solid #ccc;
border-radius: 5px;
box-sizing: border-box;
                       }

/* Filtro por categorías */
.category-filter{
                width: 100%;
                margin-bottom: 20px;
                text-align: center;
                float: left;
                padding: 5px;
                display: block;
                background: var(--gris-claro);
                border-radius: 5px;
                margin-top: 5px;
               }

.category-filter h3{
                    width: 90%;
                    margin-left:0%;
                    margin-right: 10%;
                    float: left;
                    padding: 5px;
                    margin-bottom: 5px;
                    text-align: left;
                    font-size: 13px;
                    background: var(--gris-claro);
                   }

.category-filter ul{
                    width: auto;
                    height: auto;
                    list-style: none;
                    padding: 0;
                    float: left;
                   }

.category-filter ul li{
                      display: inline-block;
                      margin: 0 10px;
                     }

.category-filter ul li a {
    background-color: orange;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    float: left;
}

.category-dropdown{
  display: none;
}

#productos-list{
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    height: 100%;
    list-style: none;
    max-width: 1920px;
    float: left;
               }

#productos-list a{
                  margin: 15px;
                  float: left;
                 }

.product-item{
  width: 100%;
  height: 100%;
max-width: 200px;
min-height: 0px;
padding: 3px;
float: left;
border-radius: 5px;
text-align: center;
border: 2px solid orange;
background-color: var(--gris-claro);
             }

.product-item img{
                  width: 190px;
                  height: 190px;
                  align-items: center;
                  justify-content: center;
                  display: flex;
                  transition: opacity .1s linear;
                  object-fit: cover;
                  object-position: center;
                 }

.product-item img:hover{
  padding: 1px;
}

.product-item .precio-producto{
                               width: 80%;
                               margin-left: 10%;
                               margin-right: 10%;
                               font-size: 20px;
                               font-weight: bold;
                               color: var(--verde);
                              }

                              .categorias-moviles-tiendas{
                              display: none;
                                                     }

.categorias-moviles-productos{
    display: none;
}
/*Tiendas*/
.tiendas-list{
              width: 100%;
              float: left;
             }

.tiendas-list a{

}

div#tiendas-list{
                 width: 100%;
                 padding: 10px;
                 float: left;
                }


.productos-list{
                width: 100%;
                float: left;
               }

.store-item{
            width: 15.66%;
            margin-bottom: 10px;
            padding: 3px;
            border-radius: 5px;
            float: left;
            margin-left: 0.5%;
            margin-right: 0.5%;
            text-align: center;
            border: 2px solid #000000;
            background-color: var(--gris-claro);
           }

.store-item:hover{
                  cursor: pointer;
                  border: 2px solid var(--verde);
                 }

.store-item img{
                width: 100%;
                height: 200px;
                display: block;
                transition: opacity .1s linear;
                object-fit: cover;
                object-position: top;
               }

.store-item img:hover{
padding: 1px;
}

/* tienda */
.banner-tienda {
    width: 100%;
    height: 600px; /* Puedes ajustar la altura del banner según prefieras */
    background-size: cover;  /* Para que la imagen cubra todo el banner */
    background-position: center center; /* Centrar la imagen del banner */
    background-repeat: no-repeat; /* Evitar que la imagen se repita */
    position: relative; /* Posicionar elementos dentro del banner */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white; /* El texto en blanco */
    text-align: center;
    border-bottom: 5px solid var(--naranja);
}

.banner-tienda h1 {
    font-size: 48px; /* Tamaño del texto del nombre de la tienda */
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Sombra para mejorar la legibilidad del texto sobre la imagen */
}

.tienda-info{
             width: 100%;
             float: left;
             background: var(--gris-claro);
             padding: 10px;
             border-radius: 5px;
             box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
            }

.tienda-info p{
               width: 100%;
               /* float: left; */
               font-size: 22px;
               padding: 5px;
               float: left;
               text-align: justify;
              }

.tienda-info p img{
                   width: 30px;
                   height: 30px;
                   float: left;
                   margin-right: 5px;
                  }

p.tienda-whatsapp{
                 width: 40px;
                 float: left;
                 margin-left: 10px;
                 border-radius: 5px;
                }

p.tienda-favorito{
              width: 40px;
              float: left;
              margin-left: 10px;
              border-radius: 5px;
             }

p.tienda-instagram{
                    width: 40px;
                    float: left;
                    margin-left: 10px;
                    border-radius: 5px;
                  }

p.tienda-whatsapp:hover{
                        cursor: pointer;
                       }

p.tienda-favorito:hover{
                        cursor: pointer;
                       }

p.tienda-instagram:hover{
                         cursor: pointer;
                        }

.mapa-tienda{
             width: 100%;
             float: left;
            }

.mapa-tienda iframe{
                    width: 100%;
                   }

/* Paginación */
.pagination{
            width: 100%;
            height: auto;
            text-align: center;
            margin: 20px 0;
            float: left;
            margin-top: 60%;
            padding: 20px;
            background: var(--gris-claro);
           }

.pagination a, .pagination span {
    padding: 10px 15px;
    margin: 0 5px;
}

.pagination .active{
                    border-radius: 5px;
                    background-color: orange;
                    color: white;
                    border: 1px solid orange;
                   }

/*Registro*/
.registro-container {
    width: 100%;
    max-width: 400px;
    margin: 50px auto 50px;
    padding: 20px;
    background-color: white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}


.recuperar-container{
  width: 100%;
  max-width: 400px;
  margin: 250px auto 250px;
  padding: 20px;
  background-color: white;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

#registroForm{
              margin-top: 25px;
              margin-bottom: 25px;
             }

#registroForm small{
                    width: 100%;
                    background: var(--gris-claro);
                    float: left;
                    padding: 5px;
                    margin-bottom: 20px;
                    border-radius: 5px;
                    text-align: justify;
                   }

h2 {
    text-align: center;
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #0056b3;
}


.inicios-automaticos{
                     width: 100%;
                     float: left;
                    }

.inicios-automaticos a{
                       text-decoration: none;
                      }

.google-btn{
            width: 50%;
            float: left;
            color: var(--negro);
            background: var(--gris-claro);
            padding: 10px;
            border-radius: 5px;
            margin-top: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--blanco);
           }

.google-btn:hover{
                  border: 1px solid var(--gris);
                 }

.google-btn img{
                width: 25px;
                float: left;
                margin-right: 5px;
               }

.apple-btn{
           width: 50%;
           float: left;
           color: var(--negro);
           background: var(--gris-claro);
           padding: 10px;
           border-radius: 5px;
           margin-top: 5px;
           display: flex;
           align-items: center;
           justify-content: center;
           border: 1px solid var(--blanco);
          }


.apple-btn:hover{
                  border: 1px solid var(--gris);
                 }

.apple-btn img{
              width: 25px;
              float: left;
              margin-right: 5px;
              }

/*Login*/
/* Estilos generales para el contenedor del formulario de login */
.login-container {
    width: 50%;
    margin-left: 25%;
    margin-right: 25%;
    margin-top: 5%;
    margin-bottom: 5%;
    float: left;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.login-container p{
                   width: 100%;
                   text-align: center;
                   margin-top: 5px;
                   padding: 10px;
                   float: left;
                  }

#loginForm{
           margin-top: 25px;
           margin-bottom: 25px;
          }

/* Estilo del título */
.login-container h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

/* Estilos de las etiquetas de los campos */
.login-container label {
    display: block;
    text-align: left;
    font-size: 14px;
    margin-bottom: 8px;
    color: #333;
}

/* Estilos para los campos de entrada */
.login-container input[type="text"],
.login-container input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

/* Estilos del botón */
.login-container button {
    width: 100%;
    padding: 12px;
    background-color: var(--naranja);
    border: none;
    text-align: center;
    display: block;
    color: white;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.login-container button:hover {
    background-color: var(--verde);
}

/* Estilo para el checkbox que permite mostrar/ocultar la contraseña */
.login-container label input[type="checkbox"] {
    margin-right: 10px;
    cursor: pointer;
}

/* Pequeña animación para mostrar un poco de "rebote" en el botón al hacer hover */
.login-container button:active {
    transform: scale(0.98);
}

button.google-btn{
  width: 50%;
    float: left;
    color: var(--negro);
    background: var(--gris-claro);
    padding: 10px;
    border-radius: 5px;
    margin-top: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--blanco);
}

button.apple-btn{
  width: 50%;
    float: left;
    color: var(--negro);
    background: var(--gris-claro);
    padding: 10px;
    border-radius: 5px;
    margin-top: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--blanco);
}

/* Avatar */
.avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
    vertical-align: middle;
}

/* Estilo del dropdown (menú desplegable) */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown .dropbtn {
  color: #000;
background: #f2f2f2;
font-size: 13px;
border: none;
cursor: pointer;
padding: 5px;
border-radius: 5px;
display: flex;
align-items: center;
}

.dropdown .arrow {
    margin-left: 5px;
    font-size: 12px;
}

/* Contenido del dropdown (oculto por defecto) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    right: 0; /* Alineado a la derecha */
}

.dropdown-content a {
    color: black;
    padding: 6px 10px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 13px;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown-content a img{
                          width: 15px;
                          float: left;
                          margin-right: 5px;
                       }

/* Mostrar el dropdown al pasar el cursor */
.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: #3e8e41;
    color: white;
}

/*Editar Perfil*/
.editar-perfil-container {
  width: 80%;
  margin-left: 10%;
  margin-right: 10%;
  float: left;
    max-width: 1920px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.editar-perfil-container h3{
                            background: var(--gris-claro);
                            padding: 5px;
                            text-align: center;
                           }

.avatar-section, .password-section {
    margin-bottom: 30px;
}

.avatar-section img.avatar {
  display: block;
   width: 150px;
   height: 150px;
   border-radius: 50%;
   margin: 0 auto; /* Centra la imagen horizontalmente */
   margin-bottom: 10px;
}

input[type="file"] {
    margin: 10px 0;
}

h3 {
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
    float: left;
    font-weight: 600;
    margin-bottom: 5px;
    margin-top: 5px;
    font-size: 20px;
}

.editar-perfil-container select{
  display: block;
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.editar-perfil-container textarea{
  display: block;
  width: 100%;
  height: 100px;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  max-width: 100%
                                 }

label {
    font-weight: 500;
}

button {
    width: auto;
    background: var(--naranja);
    color: white;
    padding: 10px 20px;
    border: none;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    margin: auto; /* Centra horizontalmente */
    margin-top: 20px; /* Ajusta el valor para centrar verticalmente */
    margin-bottom: 50px;
}

button:hover {
    background-color: var(--verde);
}

input[type="password"], input[type="file"] {
    display: block;
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Estilo para el modal */
.modal {
    display: none; /* Ocultar por defecto */
    position: fixed; /* Fijo en la pantalla */
    z-index: 1000; /* Encima de otros elementos */
    left: 0;
    top: 0;
    width: 100%; /* Ancho completo */
    height: 100%; /* Alto completo */
    overflow: auto; /* Permitir scroll si es necesario */
    background-color: rgba(0, 0, 0, 0.7); /* Fondo semitransparente */
}

/* Contenido del modal */
.modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* Centrarlo vertical y horizontalmente */
    padding: 20px;
    border: 1px solid #888;
    width: 100%; /* Ancho del modal */
    max-width: 1920px; /* Ancho máximo */
    max-height: 1280px
}

/* Estilo del botón para cerrar el modal */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Botón de recortar y guardar */
#cropButton {
    display: block;
    width: 100%;
    padding: 10px;
    background: var(--naranja);
    color: white;
    border: none;
    cursor: pointer;
    margin-top: 15px;
}

#cropButton:hover {
    background-color: #218838;
}

.cropper-container.cropper-bg{
  width: 100% !important;
}

/*COMPRAS*/
/* Contenedor principal */
.container{
           width: 90%;
           margin-left: 5%;
           margin-right: 5%;
           max-width: 1920px;
           /* margin: 0 auto; */
           padding: 20px;
           float: left;
           margin-bottom: 25%;
          }

/* Sección de compras */
.mis-compras {
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
    margin-top: 1%;
    display: block;
}

.container-mis-compras{
width: 90%;
margin-left: 5%;
margin-right: 5%;
max-width: 1920px;
/* margin: 0 auto; */
padding: 20px;
float: left;
margin-bottom: 15%;
}

.compra {
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 1%;
    transition: background-color 0.3s ease;
}

.compra:hover {
    background-color: #f1f1f1;
}

.compra img {
    width: 35px;
    height: 35px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 20px;
}

.compra p {
    margin: 0;
    padding: 0 10px;
}

.compra p:nth-child(1) {
  display: flex;
    font-weight: bold;
    justify-content: center;
    align-items: center;
    margin-right: -15px;
}

.compra p:nth-child(3) {
    color: #333;
}

.compra p:nth-child(4){
                       font-size: 0.9em;
                       color: #888;
                      }

p.mis-compras-saldo-disponible{
                              width: auto;
                              font-weight: bold;
                              color: var(--negro);
                              background: var(--gris-claro);
                              padding: 10px;
                              margin-bottom: 10px;
                              border-radius: 5px;
                              font-size: 18px;
                             }

.mis-compras-saldo-disponible span{
                                  font-weight: bold;
                                   color: var(--verde);
                                  }

.total-compras{
              width: 100%;
              float: left;
              text-align: left;
              padding: 5px;
              color: var(--blanco);
              background: var(--rojo);
              }

.saldo-a-favor{
               width: 100%;
               float: left;
               text-align: left;
               padding: 5px;
               color: var(--blanco);
               background: var(--verde);
              }


/*Mis saldos*/
.mis-saldos{
  width: 80%;
  margin-left: 10%;
  margin-right: 10%;
  margin-bottom: 20%;
  float: left;
  margin-top: 1%;
  display: block;
}

.saldo {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 1%;
    transition: background-color 0.3s ease;
}

.saldo:hover {
    background-color: #f1f1f1;
}

.saldo img {
    width: 35px;
    height: 35px;
    margin-left: 4px;
    object-fit: cover;
    border-radius: 8px;
}

.saldo p {
    margin-left: 5px;
    padding: 0 10px;
}

.nombre-y-imagen-tienda-saldos {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contenedor-saldoyhora {
    display: flex;
    justify-content: center;
    align-items: center;
}

/*Notificaciones*/
.container-notificaciones{
  width: 90%;
margin-left: 5%;
margin-right: 5%;
max-width: 1920px;
padding: 20px;
float: left;
text-align: center;
margin-bottom: 25%;
                         }

.notificaciones-icon {
    position: relative;
}

.notificaciones-icon img{
                          width: 20px;
                          height: 20px;
                        }

.badge {
    position: absolute;
    top: -10px;
    background-color: red;
    color: white;
    padding: 1px 6px;
    border-radius: 50%;
    font-size: 10px;
}


.notificaciones-list {
    width: 60%;
    margin-left: 20%;
    margin-right: 20%;
    list-style-type: none;
    padding: 0;
    margin-top: 5%;
    margin-bottom: 5%;
    float: left;
}



.notificaciones-list li {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}
.notificaciones-list li.leido{
                              width: 100%;
                             background: var(--naranja-notificaciones);
                             border-radius: 5px;
                             margin-bottom: 5px;
                             float: left;
                            }

.notificaciones-list li.no-leido {
    font-weight: bold;
}

.leido h3 img{
              width: 25px;
              float: left;
              margin-right: 5px;
             }

.leido p{
         text-align: justify;
        }

.asunto-notificacion{
                  width: 100%;
                  text-align: center;
                  display: flex;
                  justify-content: center;
                  align-items: center;
                  margin-left: 0%;
                 }

.descripcion-notificacion{
                          width: 100%;
                          text-align: justify;
                          float: left;
                         }

.saldo-notificacion{
  width: auto;
  font-size: 12px;
  padding: 5px;
  margin-right: 10px;
  border-radius: 5px;
  margin-top: 10px;
  float: left;
  background: var(--blanco);
  color: var(--negro);
                   }

.tienda-notificacion{
  font-size: 12px;
  padding: 5px;
  margin-right: 10px;
  border-radius: 5px;
  margin-top: 10px;
  float: left;
  background: var(--blanco);
  color: var(--negro);
                    }

.fecha-notificacion {
    font-size: 12px;
    padding: 5px;
    margin-right: 10px;
    border-radius: 5px;
    margin-top: 10px;
    float: left;
    background: var(--blanco);
    color: var(--negro);
}


/* Footer */
footer{
       width: 100%;
       height: auto;
       float: left;
       display: block;
       position: relative;
       bottom: 0;
       background: var(--blanco);
       border-bottom: 5px solid var(--naranja);
       border-top: 5px solid var(--naranja);
      }

footer .suscribete{
                   width: 100%;
                   height: auto;
                   float: left;
                   padding: 15px;
                   background: var(--blanco);
                  }

footer .suscribete span{
                        width: 50%;
                        height: auto;
                        float: left;
                        text-align: right;
                        font-weight: bold;
                        font-size: 20px;
                        padding: 18px;
                        }

footer .suscribete form{
                        width: 50%;
                        height: auto;
                        float: left;
                        padding: 5px;
                       }

footer .footer{
               width: 90%;
               margin-left: 5%;
               margin-right: 5%;
               height: auto;
               float: left;
               padding: 10px;
               text-align: left;
              }

footer .footer nav{
                   width: 25%;
                   height: auto;
                   float: left;
                   padding: 10px;
                   text-align: left;
                  }

footer nav span{
                width: 80%;
                height: auto;
                float: left;
                font-size: 15px;
                padding: 5px;
                color: var(--negro);
                font-weight: bold;
                text-align: left;
                border-bottom: 1px solid var(--blanco);
               }

footer nav a{
             width: 90%;
             color: var(--gris);
             text-decoration: none;
             margin-right: 10px;
             line-height: normal;
             font-size: 13px;
             font-weight: bold;
             float: left;
             padding: 5px;
             text-align: left;
            }

footer nav a:hover{
                   color: var(--link);
                   cursor: pointer;
                  }

footer nav p{
             width: 80%;
             color: var(--blanco);
             text-decoration: none;
             margin-right: 10px;
             line-height: normal;
             font-size: 13px;
             font-weight: bold;
             float: left;
             padding: 5px;
             text-align: left;
            }

footer .copy{
             width: 100%;
             height: auto;
             float: left;
             text-align: center;
             padding: 10px;
             font-size: 12px;
             font-weight: bold;
             background: var(--negro);
             color: var(--blanco);
             border-top: 1px solid var(--gris);
            }

footer .copy span a{
                    color: var(--naranja);
                    text-decoration: none;
                   }

                   .mensaje-sin-datos{
                                       width: 80%;
                                       margin-left: 10%;
                                       margin-right: 10%;
                                       border-radius: 5px;
                                       float: left;
                                       font-size: 25px;
                                       margin-top: 20%;
                                       margin-bottom: 800px;
                                       text-align: center;
                                       padding: 5px;
                                       background: var(--gris-claro);
                                     }

.eliminar-cuenta{
                 width: auto;
                 padding: 5px;
                 border-radius: 5px;
                 text-decoration: none;
                 float: left;
                 margin-top: 2%;
                 background: var(--rojo);
                 color: var(--blanco);
                }


/*PLANES*/
/* Estilos de tabla comparativa */
.planes-tabla-comparativa {
  width: 100%;
    margin-top: 30px;
    overflow-x: auto;
    float: left;
}

.tabla-comparativa {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    font-family: Arial, sans-serif;
}

.tabla-comparativa th, .tabla-comparativa td {
    border: 1px solid #ddd;
    padding: 15px;
}

.tabla-comparativa th {
    background-color: #f8f8f8;
    font-weight: bold;
    color: #333;
}

.tabla-comparativa .col-feature {
    text-align: left;
    background-color: #f8f8f8;
    font-weight: bold;
}

.tabla-comparativa .col-plan {
    background-color: #fff;
}

.tabla-comparativa .col-plan-precio {
    font-size: 18px;
    font-weight: bold;
    color: #007BFF;
}

.tabla-comparativa .ok {
    color: #28a745; /* Verde */
    font-weight: bold;
}

.tabla-comparativa .not-ok {
    color: #dc3545; /* Rojo */
    font-weight: bold;
}

.tabla-comparativa .boton-plan{
                              display: inline-block;
                              padding: 10px 20px;
                              background-color: var(--naranja);
                              color: #fff;
                              text-decoration: none;
                              border-radius: 5px;
                              font-size: 14px;
                              font-weight: bold;
                              transition: background-color 0.3s;
                             }

.tabla-comparativa .boton-plan:hover{
                                    background-color: var(--naranja-notificaciones);
                                   }

.tabla-comparativa .destacado{
                              background-color: #e3f2fd;
                              font-weight: bold;
                             }

                             .faq-section {
                                 max-width: 1920px;
                                 width: 100%;
                                 float: left;
                                 margin-top: 5%;
                             }

 .faq-section h1{
                             width: 100%;
                               float: left;
                               text-align: center;
                               font-size: 2.5em;
                               font-weight: 700;
                               color: #333333;
                               margin: 20px 0 0px;
                               text-transform: uppercase;
                               letter-spacing: 1.5px;
                               padding-bottom: 10px;
                               position: relative;
                               font-family: 'Arial', sans-serif;
                               display: inline-block;
}

                             .faq-item {
                               width: 60%;
                               float: left;
                               background-color: var(--blanco);
                                 margin-left: 20%;
                                 margin-right: 20%;
                                 margin-bottom: 10px;
                                 border-radius: 5px;
                                 overflow: hidden;
                             }

                             .faq-question {
                                 padding: 15px;
                                 cursor: pointer;
                                 display: flex;
                                 justify-content: space-between;
                                 align-items: center;
                             }


                             .faq-answer {
                                 display: none;
                                 padding: 15px;
                                 border-top: 1px solid #444444;
                             }

                             .faq-answer p{
                               margin-bottom: 10px;;
                             }

                             .faq-toggle {
                                 font-size: 24px;
                             }

.h-captcha{
  width: 100%;
  float: left;
}

.h-captcha .iframe{
  display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .planes-tabla {
      grid-template-columns: 1fr;
  }

  .plan-titulo, .plan-precio {
      font-size: 1rem;
  }

.llamado-accion-planes .textos-llamado-a-accion{
  width: 95%;
  margin-left: 2.5%;
  margin-right: 2.5%;
}

.llamado-accion-planes .img-llamado-a-accion{
  width: 100%;
}

.llamado-accion-planes .img-llamado-a-accion img{
  width: 40%;
  margin-left: 30%;
  margin-right: 30%;
  margin-top: 1%;
}


}

@media only screen and (max-width: 1700px) {
  #productos-list{
                  display: grid;
                  grid-template-columns: repeat(6, 1fr);
                  height: 100%;
                  list-style: none;
                  max-width: 1500px;
                  float: left;
                 }
}

@media only screen and (max-width: 1500px) {
  #productos-list{
                  display: grid;
                  grid-template-columns: repeat(5, 1fr);
                  height: 100%;
                  list-style: none;
                  max-width: 1500px;
                  float: left;
                 }
}
                 @media only screen and (max-width: 1300px) {
                   #productos-list{
                                   display: grid;
                                   grid-template-columns: repeat(4, 1fr);
                                   height: 100%;
                                   list-style: none;
                                   max-width: 1500px;
                                   float: left;
                                  }
}
                                  @media only screen and (max-width: 1000px) {
                                    #productos-list{
                                                    display: grid;
                                                    grid-template-columns: repeat(3, 1fr);
                                                    height: 100%;
                                                    list-style: none;
                                                    max-width: 1500px;
                                                    float: left;
                                                   }
                                          }
/* Responsive for Tablets (768px - 1024px) */
@media only screen and (max-width: 1200px) {
header{
       padding: 5px 10px;
      }

header .logo img{
                 width: 150px;
                }

.container{
           padding: 10px;
          }

.stores{
        display: inline-block;
       }

.store-item{
            width: 32.33%;
           }

    /* Ajuste del buscador en tablet */
    .search-box input {
        width: 70%; /* Más espacio para el buscador */
        font-size: 14px;
    }

    .category-filter ul{
      display: none;
    }

    .category-list {
         display: none;
     }

     .store-item img{
                     height: 200px;
                    }

.store-item-mis-tiendas{
                        width: 32.33%;
                       }

                       .categorias-moviles-tiendas{
                         width: 100%;
                       padding: 10px;
                       margin-bottom: 15px;
                       border: 1px solid #ccc;
                       border-radius: 5px;
                       box-sizing: border-box;
                         display: block;
                       }

.categorias-moviles-productos{
  width: 100%;
padding: 10px;
margin-bottom: 15px;
border: 1px solid #ccc;
border-radius: 5px;
box-sizing: border-box;
  display: block;
}

.category-dropdown {
  width: 100%;
border-radius: 5px;
padding: 5px;
margin-top: 10px;
border: 2px solid #000000;
color: var(--negro);
float: left;
display: block;
     }

    /* Ajuste de la paginación en tablet */
    .pagination a, .pagination span{
                                   padding: 8px 12px;
                                   font-size: 14px;
                                  }

                                  button.delete {
                                      width: auto;
                                      display: inline-block;
                                      padding: 5px 5px;
                                      color: white;
                                      float: right;
                                      margin-left: 8.5%;
                                      margin-top: -40px;
                                      background: var(--blanco);
                                      position: absolute;
                                      border: 2px solid var(--negro);
                                      text-decoration: none;
                                      border-radius: 5px;
                                  }

footer .footer nav{
                   width: 50%;
                  }

}

/* Responsive for Mobile Phones (Menor a 768px) */
@media only screen and (max-width: 780px) {


.button img.icono-tienda{
  width: 35px;
}

div#tiendas-list{
  width: 100%;
        display: block;
        float: left;
        margin-bottom: 120%;
}

.container-mis-tiendas{
  margin-bottom: 800px;
  padding: 5px;
}

    .container {
        padding: 5px;
    }

    header .logo .logo-web {
        width: 180px;
        display: none;
    }

    header .logo .logo-movil{
      width: 50px;
      display: block;
    }

.dropdown .dropbtn{
                    font-size: 14px;
                  }

nav ul li a{
            padding-left: 0;
            padding-right: calc(0.7em);
            font-size: 12px;
           }

nav ul li{
padding: 0px;
}

nav ul{
  gap:3px;
}

.slider{
  height: 250px;
}

.slider-text h1{
  font-size: 0.7rem;
}

.slider-text .button{
  padding: 5px 10px;
}

.titulo-algunas-tiendas h1{
                      font-size: 25px;
                          }

.how-it-works h1{
  font-size: 25px;
}

.how-it-works{
  width: 90%;
  margin-left: 5%;
  margin-right: 5%;
}

.how-it-works .column{
  width: 100%;
}

.how-it-works .column img{
                          width: 50px;
                          height: 50px;
                          margin-top: 10px;
                         }

.how-it-works .column h3{
                        font-size: 15px;
                        margin-bottom: 0;
                        }

.how-it-works .column p{
                        width: 80%;
                        margin-left: 10%;
                        margin-right: 10%;
                        font-size: 13px;
                        padding: 5px;
                        }

.stores{
        display: block;
        float: left;
       }

.store-item{
            width: 32.33%;
            float: left;
           }

.store-item img{
                height: 100px;
              }

    /* Ajuste del buscador en móvil */
    .search-box input {
        width: 90%; /* Mayor ancho para el buscador */
        font-size: 14px;
    }



    /* Ajuste del filtro de categorías en móvil */
    .category-filter ul {
        padding-left: 0;
        text-align: center;
    }

    .category-filter ul li {
        display: block; /* Cambia el filtro a lista vertical */
        margin: 10px 0;
    }

    .category-filter ul li a {
        font-size: 14px;
        padding: 10px 20px;
        display: block; /* Que ocupe todo el ancho disponible */
    }

.product-item .precio-producto{
  font-size: 12px;
}

    /* Ajuste de los elementos de tienda en móvil */

.contenedor-de-acciones-favoritos{
                                  margin-left: 15%;
                                  margin-right: 5%;
                                 }

.icono-tienda img{
                  width: 15px !important;
                 }

.button img.icono-quitarFavorito{
                                 width: 12px !important;
                                }

.store-item h3{
              font-size: 10px;
              text-decoration: none;
              color: var(--link);
              height: 30px;
              }

.button{
        padding: 5px 5px;
        font-size: 10px;
       }

.mis-tiendas-title{
  font-size: 25px;
}


.mis-compras{
             width: 100%;
             float: left;
             margin-top: 5%;
             margin-bottom: 75%;
             margin-left: 0%;
             margin-right: 0%;
           }

p.mis-compras-saldo-disponible{
  text-align: center;
}


.compra{
  display: block;
  float: left;
}

.compra p{
  font-size: 12px;
  float: left;
}

.compra img{
  width: 15px;
  height: 15px;
  margin-right: 10px;
}

.compra p:nth-child(1){
  width: 35%;
display: block;
display: flex;
font-weight: bold;
justify-content: center;
align-items: center;
margin-right: -15px;
                    }

.compra p:nth-child(3){
  width: 100%;
  font-size: 10px;
  margin-left: 10px;
}

.mis-saldos{
  width: 90%;
  margin-left: 5%;
  margin-right: 5%;
  margin-bottom: 60%;
}

.saldo{
       width: 100%;
       display: block;
       float: left;
       padding: 5px;
       text-align: center;
      }

      .nombre-tienda-mis-saldos{
        font-size: 15px !important;
        margin-top: 3%;
      }

.saldo p{
  float: left;
  font-size: 11px;
  padding: 0px;
}

.nombre-y-imagen-tienda-saldos{
  width: 100%;
  float: left;
  display: block;
}



.saldo img{
          float: left;
          }


.contenedor-saldoyhora{
          width: 70%;
          float: left;
          display: block;
                      }

.saldo-fecha strong{
  float: left;
}

.saldo-monto{

            }

.saldo-fecha{

            }

.notificaciones-list {
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
    list-style-type: none;
    padding: 0;
    margin-bottom: 20px;
    float: left;
}

.asunto-notificacion{
  font-size: 13px;
}

.leido p{
  font-size: 12px;
}

.saldo-notificacion{
  width: 80%;
  text-align: left;
  font-size: 11px;
}

.tienda-notificacion{
  width: 80%;
  text-align: left;
  font-size: 11px;
}

.fecha-notificacion{
  width: 80%;
  text-align: left;
  font-size: 11px;
}

    /* Ajuste de la paginación en móvil */
    .pagination {
        font-size: 14px;
    }

    .pagination a, .pagination span {
        padding: 8px 12px;
        margin: 0 3px;
    }

    .login-container {
        width: 80%;
        margin-left: 10%;
        margin-right: 10%;
    }

    .login-container h2 {
        font-size: 22px;
    }

    .login-container button {
        font-size: 15px;
    }

.store-item-mis-tiendas{
                        width: 32.33%;
                        float: left;
                       }

.store-item-mis-tiendas img{
                            height: 100px;
                           }

.store-item-mis-tiendas .icono-tienda img{
  width: 20px !important;
}

.store-item-mis-tiendas h3{
  font-size: 10px;
        text-decoration: none;
        color: var(--link);
}

.store-item-mis-tiendas .icono-tienda{
  width: 80%;
    display: flex;
    padding: 3px 3px;
    background-color: #f7a43a;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-left: 10%;
    margin-right: 10%;
    margin-top: 5px;
    float: left;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.product-item{
              width: 90%;
              margin-left: 5%;
              margin-right: 5%;
             }




.banner-tienda{
  height: 250px;
}

.tienda-info{
            margin-top: -3%;
            }

.tienda-info p{
  font-size: 16px;
}

#productos-list{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 100%;
  list-style: none;
  max-width: 900px;
}

#productos-list a{
  margin: 5px;
}

.product-item{
              width: 160px;
              min-height: 230px;
             }

.product-item img{
                  width: 150px;
                  height: 150px;
                 }

.product-item h3{
        font-size: 10px;
        text-decoration: none;
        color: var(--link);
        text-decoration: none;
}

.product-item p{
                font-size: 10px;
                text-align: center;
               }

.mapa-tienda iframe{
  height: 300px;
}

.store-item-mis-tiendas p span{
                              font-size: 14px;
                              }

.tienda-info p img{
                   width: 25px;
                   height: 25px;
                  }

h2.productos-tienda{
  font-size: 18px;
}

button.delete {
    width: auto;
    display: inline-block;
    padding: 3px 3px;
    color: white;
    float: right;
    margin-left: 5%;
    margin-top: -22px;
    background: var(--blanco);
    position: absolute;
      border: 2px solid var(--negro);
    text-decoration: none;
    border-radius: 5px;
}


.llamado-accion-planes h1{
  font-size: 25px;
}

.llamado-accion-planes p{
  font-size: 15px;
}

.llamado-accion-planes samp{
  font-size: 13px;
  text-align: justify;
}

.conocer-mas{
  width: 60%;
  margin-left: 20%;
  margin-right: 20%;
  font-size: 18px;
}

.faq-item{
  width: 95%;
  margin-left: 2.5%;
  margin-right: 2.5%;
  padding: 10px;
}

.faq-section h1{
  font-size: 25px;
}

    footer .footer nav{
      width: 50%;
    }

footer nav span{
                width: 100%;
                text-align: center;
                font-size: 14px;
               }

footer nav a{
              width: 100%;
              text-align: center;
              font-size: 11px;
            }

footer .copy{
             font-size: 10px;
            }

}




/* Para dispositivos muy pequeños (menores de 480px) */
@media only screen and (max-width: 600px) {
  #productos-list{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 100%;
    list-style: none;
    max-width: 900px;
  }

    .container {
        padding: 5px;
    }

    /* Ajuste del buscador en pantallas muy pequeñas */
    .search-box input {
        width: 100%; /* Todo el ancho disponible */
        font-size: 13px;
    }

    /* Ajuste del filtro de categorías en pantallas pequeñas */
    .category-filter ul {
        padding-left: 0;
        text-align: center;
    }

    .category-filter ul li a {
        font-size: 13px;
        padding: 8px 16px;
        display: block; /* Que ocupe todo el ancho disponible */
    }

    .product-item {
        width: 110px;
        min-height: 190px;
    }

    .product-item img {
    width: 100px;
    height: 100px;
}

    /* Ajuste de la paginación en pantallas muy pequeñas */
    .pagination a, .pagination span {
        padding: 6px 10px;
        margin: 0 2px;
        font-size: 13px;
    }
}

.h2-textos{
  width: 90%;
  float: left;
  margin-left: 5%;
  margin-right: 5%;
  text-align: left;
  margin-top: 10px;
  margin-bottom: 5px;
}

strong.ca-naranja{
  color: var(--naranja);
}

.texto-justificado{
                  width: 90%;
                  margin-left: 5%;
                  margin-right: 5%;
                  float: left;
                  text-align: justify;
                  }

h2.productos-tienda{
  width: auto;
  text-align: center;
  margin-bottom: 20px;
  float: left;
  padding: 5px;
  border-radius: 5px;
  margin-top: 20px;
  color: var(--blanco);
  background: var(--naranja);
}

.error404{
  width: 80%;
  margin-left: 10%;
  margin-right: 10%;
  margin-top: 20%;
  margin-bottom: 20%;
  float: left;
}

h1.error-404{
  width: 100%;
  float: left;
  text-align: center;
}

.error404 img{
              width: 60%;
              margin-left: 20%;
              margin-right: 20%;
              margin-top: 5%;
              margin-bottom: 5%;
             }

.error404 p{
            width: 100%;
            float: left;
            text-align: center;
           }

           .product-details{
            display: flex;
            justify-content: center;
            margin: 30px;
           }

           .product-gallery {
            display: flex;
            width: 784px; /* Ancho total del contenedor */
            height: 504px; /* Alto total del contenedor */
            gap: 20px;
            border: 1px solid #ddd;
            border-radius: 5px;
            overflow: hidden;
          }

          .product-gallery .thumbnail-images {
            display: flex;
            flex-direction: column;
            gap: 10px;
            width: 84px; /* Espacio reservado para miniaturas */
            justify-content: center;
            align-items: center;
            padding: 10px 0;
            background-color: #f8f8f8;
            box-sizing: border-box;
          }

          .product-gallery .thumbnail-images img {
            width: 70px;
            height: 70px;
            border-radius: 5px;
            cursor: pointer;
            border: 1px solid #ddd;
            transition: transform 0.3s ease, border-color 0.3s ease;
          }

          .product-gallery .thumbnail-images img:hover {
            transform: scale(1.1);
            border-color: #007aff;
          }

          .product-gallery .main-image {
            width: 100%; /* Ancho exacto de la imagen principal */
            height: auto; /* Alto exacto de la imagen principal */
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #fff;
            box-sizing: border-box;
          }

          .product-gallery .main-image img {
            max-width: 100%;
            max-height: 100%;
            object-fit: cover; /* Ajusta la imagen para que ocupe el espacio sin deformarse */
            border-radius: 5px;
          }
          /* Información del producto */
          .product-info {
          width: 352px; /* Ancho fijo para la información */
          height: 504px; /* Alto fijo para la información */
          display: flex;
          flex-direction: column;
          justify-content: flex-start;
          gap: 20px; /* Espacio entre cada sección */
          padding: 20px;
          background-color: #fff;
          border-radius: 5px;
          border: 1px solid #ddd;
          text-align: center;
          }

          .product-info h1 {
          font-size: 25px;
          font-weight: bold;
          margin: 0;
          }

          .product-info p{
          text-align: justify;
          }

          .product-info .precio-producto{
            width: 100%;
          font-size: 25px;
          text-align: right;
          font-weight: bold;
          color: var(--verde);
          float: right;
          }

          .product-info .description {
          font-size: 16px;
          line-height: 1.5;
          color: #555;
          text-align: left;
          padding: 10px;
          }

          .Stock{
          display: flex;
          justify-content: center;
          font-size: smaller;
          color:var(--gris);
          border: solid 0.1px var(--gris-claro);
          }

          .product-info .buy-buttons {
          display: flex;
          flex-direction: column;
          gap: 20px;
          margin: 10px;

          }

          .product-info .buy-buttons button {
          padding: 15px;
          font-size: 16px;
          font-weight: bold;
          color: #fff;
          background-color: var(--naranja);
          border: none;
          border-radius: 5px;
          cursor: pointer;
          transition: background-color 0.3s ease;
          margin: auto;
          width: 80%;
          justify-content: center;
          }

          .product-info .buy-buttons button:hover {
          background-color: var(--verde);
          }

          .product-info .add-to-cart {
          background-color:var(--naranja);
          }

          .product-info .add-to-cart:hover {
          background-color: var(--verde);
          }


          /* Productos relacionados (Carrusel) */
          .related-products {
          margin-top: 30px;
          }

          .related-products h2 {
            color: var(--gris-claro);
            background: var(--naranja);
            margin-bottom: 10px;
            padding: 10px;
          }

          main.product-container{
            width: 100%;
            float: left;
          }

          .related-products .items {
          display: flex;
          gap: 10px;
          overflow-x: auto; /* Permite el desplazamiento horizontal */
          scroll-snap-type: x mandatory; /* Alineación de los elementos */
          padding: 10px 0;
          }

          .related-products .item {
          background-color: #fff;
          padding: 10px;
          border: 1px solid #ddd;
          text-align: center;
          border-radius: 5px;
          flex-shrink: 0; /* Impide que los items se encojan */
          scroll-snap-align: center; /* Alinea cada elemento al centro */
          transition: transform 0.3s ease;
          }

          .related-products .item img {
          width: 100px;
          height: 100px;
          margin-bottom: 10px;
          object-fit: cover;
          border-radius: 5px;
          }

          .related-products .item h3 {
          font-size: 14px;
          margin-bottom: 5px;
          }

          .related-products .item .price {
          font-size: 16px;
          color: #e74c3c;
          }

          .related-products .items::-webkit-scrollbar {
          height: 8px;
          }

          .related-products .items::-webkit-scrollbar-thumb {
          background-color: #888;
          border-radius: 4px;
          }

          .related-products .items::-webkit-scrollbar-thumb:hover {
          background-color: #555;
          }

          /* Responsividad */
          @media (max-width: 768px) {
          .product-container {
          gap: 20px;
          }

          .product-details {
          flex-direction: column; /* Cambiar a columna en dispositivos pequeños */
          gap: 10px;
          }

          .product-gallery {
          width: 100%; /* La galería de imágenes ocupa el 100% del ancho */
          }

          .product-list{
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            height: 100%;
            list-style: none;
            max-width: 1920px;
            float: left;
            gap: 1px;
          }

          .product-info {
          width: 100%;
          height: auto;
          }

          .related-products .items {
          gap: 15px;
          }
          }

          @media only screen and (max-width: 550px) {
            .container{
              width: 100%;
              margin-left: 0%;
              margin-right: 0%;
            }

            #productos-list{
              display: grid;
              grid-template-columns: repeat(4, 1fr);
              height: 100%;
              list-style: none;
              max-width: 900px;
            }

            .product-item {
    width: 90px;
    min-height: 180px;
}

.product-item img {
    width: 80px;
    height: 80px;
}

.product-item {
    width: 90px;
    min-height: 160px;
}

          }

          @media only screen and (max-width: 480px) {
            #productos-list a{
              margin: 1px;
            }

            #productos-list{
              display: grid;
              grid-template-columns: repeat(4, 1fr);
              height: 100%;
              list-style: none;
            }

            .product-item {
    width: 110px;
    min-height: 180px;
}

.product-item img {
    width: 80px;
    height: 80px;
}

.product-item {
    width: 90px;
    min-height: 160px;
}


          }
