body {
    font-family: 'K2D', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff; /* Color de fondo del cuerpo */
  }
  
  header {
    background-image: url('IMAGENES/VERDE.jpg');
    background-size: cover;
    color: #ffffff;
    text-shadow: #000000;
    text-align: center;
    padding: 50px;
  }
  
  .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-logo img {
    width: 150px; /* Cambia el tamaño del logo según sea necesario */
  }

  .logo img {
    width: 200px; /* Cambia el tamaño del logo según sea necesario */
  }
  
  .company-info {
    text-align: left;
    text-align-last: center;
  }
  
  section {
    padding: 50px;
    text-align: center;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #fcbf4e; /* Color de fondo del pie de página */
  }
  
  .contact-info {
    text-align: left;
  }
  
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
  }
  
  .popup {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 70%; /* Ajustamos el ancho del formulario */
    max-width: 400px; /* Establecemos un ancho máximo */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Centramos el formulario */
  }
  
  .popup form {
    text-align: left;
  }
  
  .popup input,
  .popup textarea,
  .popup button {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
  }
  
  .popup textarea {
    height: 150px; /* Ajustamos la altura del campo de texto */
  }
  
  .popup button {
    background-color: orange;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  .product {
    margin-bottom: 30px; /* Agregamos margen inferior para separar los productos */
  }
  
   .product img {
    height: 250px;
   }
  .product button {
    background-color: #ffa500; /* Naranja claro */
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 15px 20px; /* Aumentamos el tamaño del botón */
  }



  /* Estilos para la página de confirmación */
.confirmation-body {
    background-color: #ffffff; /* Color de fondo de la página */
  }
  
  header {
    background-color: #fff; /* Color de fondo del encabezado */
    padding: 20px;
    text-align: center;
  }
  
  .logo1 img {
    width: 200px; /* Cambia el tamaño del logo según sea necesario */
  }
  
  .confirmation-content {
    text-align: center;
    padding: 50px;
  }
  
  .confirmation-content h1 {
    color: #ffffff; /* Color del texto */
  }
  
  .button {
    background-color: #ffa500; /* Naranja claro */
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    text-decoration: none;
    margin-top: 20px;
    display: inline-block;
  }