body{
    font-family: sans-serif;
    margin: 0;
    
  }
  
  
  
  
  :root {
  --primary-color: #31790d;
  --background-color: white;
  --background-color:black
  --dark-color: #151515;
  }
  
  html {
  font-size: 62.5%;
  font-family: 'Poppins', sans-serif;
  }
  
  * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  }
  
  /* ********************************** */
  /*             UTILIDADES             */
  /* ********************************** */
  .container {
  max-width: 120rem;
  margin: 0 auto;
  }
  
  .heading-1 {
  text-align: center;
  font-weight: 500;
  font-size: 3rem;
  }
  
  /* ********************************** */
  /*               HEADER               */
  /* ********************************** */
  .container-hero {
  background-color: var(--background-color);
    
  }
  
  .hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3rem 0;
  }
  
  .customer-support {
  display: flex;
  align-items: center;
  gap: 2rem;
  }
  
  .customer-support i {
  font-size: 1px;
  
  }
  
  .content-customer-support {
  display: flex;
  flex-direction: column;
  }
  
  .container-logo {
  display: flex;
  align-items: center;
  font-size: 2px;
    
  }
  
  
  .fotodelogo {
    font-size: 5px;
  }
  
  
  
  
  .container-logo i {
  font-size: 3rem;
  }
  
  .container-logo h1 a {
  text-decoration: none;
  color: #000;
  font-size: 3rem;
  text-transform: uppercase;
  letter-spacing: -1px;
  }
  
  .container-user {
  display: flex;
  gap: 1rem;
  cursor: pointer;
  }
  
  .container-user .fa-user {
  font-size: 3rem;
  color: var(--primary-color);
  padding-right: 2.5rem;
  border-right: 1px solid #e2e2e2;
  }
  
  .container-user .fa-basket-shopping {
  font-size: 3rem;
  color: var(--primary-color);
  padding-left: 1rem;
  }
  
  .content-shopping-cart {
  display: flex;
  flex-direction: column;
  }
  
  
  
  /* ************* NAVBAR ************* */
  .container-navbar {
  background-color: var(--primary-color);
  }
  
  .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  }
  
  .navbar .fa-bars {
  display: none;
  }
  
  .menu {
  display: flex;
  gap: 2rem;
  }
  
  .menu li {
  list-style: none;
  }
  
  .menu a {
  text-decoration: none;
  font-size: 1.3rem;
  color: var(--dark-color);
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  }
  
  .menu a::after {
  content: '';
  width: 1.5rem;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translate(-50%, 50%);
  opacity: 0;
  transition: all 0.3s ease;
  }
  
  .menu a:hover::after {
  opacity: 1;
  }
  
  .menu a:hover {
  color: #fff;
  }
  
  .search-form {
  position: relative;
  display: flex;
  align-items: center;
  border: 2px solid #fff;
  border-radius: 2rem;
  background-color: #fff;
  height: 4.4rem;
  overflow: hidden;
  }
  
  .search-form input {
  outline: none;
  font-family: inherit;
  border: none;
  width: 25rem;
  font-size: 1.4rem;
  padding: 0 2rem;
  color: #777;
  cursor: pointer;
  }
  
  .search-form input::-webkit-search-cancel-button {
  appearance: none;
  }
  
  .search-form .btn-search {
  border: none;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 1rem;
  }
  
  .btn-search i {
  font-size: 2rem;
  color: #fff;
  }
  
  



/*carrito foto */
.carritofoto {
	height: 20px;
	width: 30px;
	left: 30px;
}










/* Contenedor del formulario */
.formulariolabase {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Altura completa de la ventana */
    

}

/* Caja del formulario */
.corner-widget {
    background-color: whitesmoke;
    border-radius: 15px;
    box-shadow: 5px 25px 20px black;
    padding: 10px;
    width: 100%;
    max-width: 600px;
    text-align: center;
}

/* Título del formulario */
h4 {
    margin-bottom: 20px;
    font-size: 2.5em;
    color: black;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
}

/* Estilos para etiquetas */
label {
    display: block;
    margin-bottom: 5px;
    color: #555;
    font-size: 2em;
    text-align: left;
}

/* Campos de entrada y textarea */
input, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 2em;
    transition: border-color 0.3s;
}

input:focus, textarea:focus {
    border-color: #007BFF;
    outline: none;
}

textarea {
    resize: none;
    height: 100px;
}

/* Botones */
button {
    width: 48%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

button[type="button"] {
    background-color: darkgreen;
    color: #fff;
    letter-spacing: 4px;
    font-size: 16px;
   

}

button[type="button"]:hover {
    background-color: green;
    letter-spacing: 6px;
}

button[type="reset"] {
    background-color: #dc3545;
    color: #fff;
    letter-spacing: 4px;
    font-size: 16px;
}

button[type="reset"]:hover {
    background-color: #a71d2a;
    letter-spacing: 6px;
}

adads  







footer {
    background-color: #333;
    color: #fff;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    flex: 1 1 250px;
    margin: 10px;
}

.footer-column h3 {
    margin-bottom: 15px;
    font-size: 18px;
    border-bottom: 2px solid red;
    display: inline-block;
    padding-bottom: 5px;
}

.footer-column p, .footer-column ul {
    font-size: 14px;
    line-height: 1.8;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    text-decoration: none;
    color: green;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #fff;
}

.social-media a {
    margin: 0 10px;
    display: inline-block;
}

.social-media img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.social-media img:hover {
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    border-top: 1px solid #555;
    padding-top: 10px;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        text-align: center;
    }
}




