/* General Reset */
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}




/* Tipografía y Estilos Globales */
body {
    font-family: Arial, sans-serif;
    line-height: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;

}



/* Header */
header {
    background: White;
    padding: 5px 5px;
  font-family: "Gill Sans", sans-serif;
  font-weight: 100; /* Thin */
  font-size: 18px;
}



 nav   {
    display: flex;
    justify-content: center;
    align-items:  center;
    list-style: none;
    padding: 5px;
    height: 80px;
     width: 100%;
  /*border: 1px solid blue; */
  box-sizing: border-box;
}






  ul  {
    display: flex;

    align-items:  center;
    list-style: none;
    padding: 5px;
    width: 700px;
  height: 80px;
  /*border: 1px solid blue; */
  box-sizing: border-box;
  justify-content: space-around;
}





  ul1  {
    display: flex;
    justify-content: flex-start;
    align-items:  center;
    list-style: none;
    padding: 5px;
    width: 380px;
  height: 80px;

  box-sizing: border-box;
}






 nav ul ul1 li  {
    margin: 10px 10px;
}






 nav ul li a  {
    color: #333;
    text-decoration: none;
    padding: 3px 5px;
    transition: background 0.3s ease;
}




 header nav ul li a:hover {
    color: #ff6612ff;
}




/* Main Content */
main {
    flex: 1;
    padding: 0px;
    background-color: #f4f4f4;
}



main section h2 {
    margin-bottom: 10px;
    color: #333;
}



main section p {
    margin-bottom: 30px;
}



/* Footer */
footer {
    padding: 5px;
    height: 80px;
    justify-content: flex-end;
    align-items:  center;
    background: White;
    color: #333;
    font-family: "Gill Sans", sans-serif;
    font-weight: 100; /* Thin */
    font-size: 18px;
}





p1 {
    justify-content: flex-end;
    align-items:  center;
  
    color: #333;
    padding: 5px 5px;
    font-family: "Gill Sans", sans-serif;
    font-weight: 100; /* Thin */
    font-size: 18px;
}








/* Responsive Design */
@media (max-width: 500px) {
    header nav ul {
        flex-direction: row;

    }











 html, body {
    margin: 0 ;
    padding: 0;
    height: 100vh; /* Ocupa el 100% de la altura del viewport */
    width: 100vw;  /* Ocupa el 100% del ancho del viewport */

}


 header nav ul li {
        margin: 1px 0;
    }

} /* Responsive Design */


 
   
   
   
   
   
           .form-container {
             display: flex;
            flex-direction: column;
             flex-wrap: wrap;
            border: 1px solid blue;  
        }

           .form-menu {
            background: White;
            display: flex;
            width: 100%;
            padding: 0px;
            flex-direction: row;
              flex-wrap: wrap;   /* Permite que bajen a otra fila */
            
        }




.contenedor {
  display: flex;
  flex-wrap: wrap;   /* Permite que bajen a otra fila */
  gap: 20px;
    
}




.caja {
  flex: 1 1 250px;   /* Crece, reduce y base mínima de 250px */
  color: DarkRed;
  padding: 8vw;
  border-radius: 12px;
  border: 1px solid blue;  
}





 
  ul2  {
    display: flex;
    text-align: justify;
    align-items:  end;
    list-style: none;
    padding: 30px;
    flex-wrap: wrap;

  flex-direction: column;

}




  ul3  {
    display: flex;
    list-style: none;
    flex-direction: column;
    border: 1px Solid blue;
}





  ul4  {
    display: flex;
    background-image: url('../images/chocolate.jpeg');; /* Ruta de tu imagen */
    background-size: cover;              /* Ajusta la imagen al tamaño de la pantalla */
    background-position: center;         /* Centra la imagen */
    background-repeat: no-repeat;        /* Evita que se repita */
    width: 360px;
    height: 380px;
    padding: 10px 10px 10px 10px;
     
}




h1 {
    color: black;
      font-family: "Garamond", sans-serif;
  font-weight: 800; /* Thin */
  font-size: 120px;
  padding: clamp(15px, 4vw, 60px);
 border: 1px solid blue;  
}




h2 {
  text-align: center;
  font-family: "Garamond", sans-serif;
  font-weight: 500; /* Thin */
  font-size: 30px;
  padding: 10px;

}




h3, p {

  font-family: "Garamond", sans-serif;
  font-weight: 200; /* Thin */
  font-size: 20px;
  padding: 10px;

}




h4 {
    color: White;
  font-family: "Garamond", sans-serif;
  font-weight: 200; /* Thin */
  font-size: 20px;
  padding: 10px;
}





        .btn-close-popup {
            padding: 12px 24px;
            border: none;
            border-radius: 20px;
            cursor: pointer;
            transition: background-color 0.3s ease, color 0.3s ease;
        }


