/* Estilos generales */
body {
    font-family: Arial, sans-serif;
    margin: 85px 0 60px 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

header {
    background: linear-gradient(to right, RED, GREEN, BLUE);
    color: #fff;
    padding: 5px 30px 5px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    width: 95%;
    height: 6%;
}

header h1 {
  color: white;
  text-shadow: 0 0 10px yellow;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 5%;
    background-color: #333;
    color: #888;
    text-align: center;
    padding: 0;
}

.btnelm {
  width: auto;
  background-image: linear-gradient( to top, RED, BLUE);
}

.logo img {
    height: 50px; /* Ajusta el tamaño según tu logo */
}

.menu-btn {
  font-size: 30px;
  background-color: transparent;
  padding: 10px;
}

main {
  padding: 20px;
}

main h3{
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Estilos para el formulario de agregar producto */
form {
    max-width: 500px;
    margin: 0 auto;
}

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

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

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

button {
    padding: 10px 20px;
    background-color: transparent;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: transparent;
}

/* Estilos para ocultar el menú */
.hidden {
    display: none;
}

/* Estilos para el contenedor de productos */
.productos-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Estilos para el contenedor del producto */
.producto-container {
    width: 300px;
    margin: 50px auto;
    padding: 20px;
    border: 2px solid #ccc;
    text-align: center;
    border-radius: 20px;
}

/* Estilos para la imagen del producto */
.producto-img {
    width: 200px;
    height: 200px;
    margin-bottom: 10px;
    border-radius: 50px 0 50px 0;
}

/* Estilos para el título del producto */
.producto-title {
    font-size: 20px;
    margin-bottom: 10px;
}

/* Estilos para el precio del producto */
.producto-price {
    font-size: 18px;
    margin-bottom: 10px;
}

/* Estilos para la descripción del producto */
.producto-description {
    margin-bottom: 20px;
}

/* Estilos para los botones */
.boton {
    display: inline-block;
    width: 250px;
    padding: 10px 20px;
    margin: 10px 0 0 0;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 0 20px 0 20px;
    text-decoration: none;
}

.draw {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0 5px 0;
  background-color: TRANSPARENT;
  position: fixed; /* Fija la posición del elemento en la pantalla */
  top: 6.3%; /* Fija el elemento en la parte inferior de la pantalla */
  left: 0; /* Fija el elemento a la izquierda de la pantalla */
  right: 0; /* Fija el elemento a la derecha de la pantalla */
}

.draw1 {
  display: flex;
  width: 100%;
  height: auto;
  flex-direction: column; /* Ordena los elementos de arriba a abajo */
  justify-content: center; /* Centra horizontalmente */
  align-items: center; /* Centra verticalmente */
  position: fixed; /* Fija la posición del elemento */
  top: 6%; /* Distancia desde la parte superior */
  right: 0; /* Distancia desde la derecha */
  background-color: transparent; /* Fondo transparente */
  padding: 10px; /* Espaciado interno */
}

/* Estilos para el contenido dentro de .draw1 */
.draw1 .content {
  text-align: center; /* Centra el texto horizontalmente */
  color: white; /* Color del texto */
}

.btndraw {
  display: inline-block;
    width: 70px;
    height: 25px;
    padding: 20px;
    margin: 0 0 0 -1px;
    background-image: linear-gradient( to top, BLACK, GREY, BLACK);
    color: white;
    font-weight: bold;
    /*border: 2px solid black;*/
    border: none;
    cursor: pointer;
    border-radius: 0;
    text-decoration: none;
    text-align: center;
    flex: 1;
}

.btnstc {
  display: inline-block;
    width: 70px;
    height: 25px;
    padding: 20px;
    margin: 0 0 0 -1px;
    background-image: linear-gradient( to top, BLACK, BLACK );
    color: white;
    font-weight: bold;
    font-size: 20px;
    border: none;
    cursor: pointer;
    border-radius: 0;
    text-decoration: none;
    text-align: center;
    flex: 1;
}

.btndraw1 {
  display: inline-block;
    width: 100%;
    height: 20px;
    padding: 8px;
    margin: 0 0 0 -1px;
    background-color: #000000BF;
    color: white;
    font-weight: bold;
    /*border: 2px solid black;*/
    border: none;
    cursor: pointer;
    border-radius: 0;
    text-decoration: none;
    text-align: center;
    flex: 1;
}

.btnstc1 {
  display: inline-block;
    width: 100%;
    height: 20px;
    padding: 8px;
    margin: 0 0 0 -1px;
    background-image: linear-gradient( to top, #000000, #000000B9, #000000 );
    color: white;
    font-weight: bold;
    font-size: 20px;
    border: none;
    cursor: pointer;
    border-radius: 0;
    text-decoration: none;
    text-align: center;
    text-shadow: 0 0 10px yellow;
    flex: 1;
}

/* Estilos para el contenedor de las redes sociales */
.redes-container {
    margin-top: 10%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

/* Estilos para cada red social */
.red-social {
    width: 200px;
    margin: 20px;
    text-align: center;
}

.red-social img {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
}

.red-social h2 {
    font-size: 18px;
    margin-bottom: 5px;
}

.red-social p {
    font-size: 14px;
    margin-bottom: 10px;
}

.red-social a {
    display: block;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

.modal {
    max-width: 80%;
    max-height: 80%;
}

#modalImg {
    max-width: 100%;
    max-height: 100%;
}

.gallery {
    display: flex;
    flex-wrap: wrap; /* Permite que los elementos se envuelvan en varias líneas */
    justify-content: center; /* Centra los elementos horizontalmente */
    gap: 10px; /* Espacio entre las imágenes */
}

.gallery img {
    width: 120px; /* Tamaño de ancho fijo para las imágenes */
    height: 120px; /* Tamaño de alto fijo para las imágenes */
    object-fit: cover; /* Escala la imagen para cubrir el contenedor manteniendo la relación de aspecto */
    margin-bottom: 10px; /* Espacio inferior entre las imágenes */
}

/* Estilos para los paneles */
.panel {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 20px;
}

.panel a {
  color: WHITE;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
}

.blue {
    background-color: #3498db;
    color: #fff;
}

.green {
    background-color: #2ecc71;
    color: #fff;
}

.pink {
    background-color: #e74c3c;
    color: #fff;
}

.grey {
    background-color: #95a5a6;
    color: #fff;
}

.contpag {
  margin-top: 10%;
}

/*imagen pagina en construccion*/

.m405 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%; /* Establece la altura del cuerpo al 100% del viewport */
  margin: 0; /* Elimina el margen predeterminado del cuerpo */
}

.m405 img {
  width: 90%; /* Ancho automático para ajustar el tamaño de la imagen */
}
