
body, html {
    height: 100%;
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
  }

  .cal-sans-regular {
    font-family: "Cal Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
  }

  #navegador {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: white; /* o el color que querás */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* opcional, para separar visualmente */
  }
  


  /************************** Contenido sección Inicio *************************/

  #Inicio {
    display: flex;
  }

   .header-images {
    display: flex;
    height: 1000px; /* altura del header */
  }
  
  .header-images div {
    flex: 1; /* que ocupen igual espacio */
    background-size: cover; /* cubrir el espacio */
    background-position: center; /* centrado, puedes cambiarlo */
    background-repeat: no-repeat;
  }
  

  /************************* Contenido sección Nosotros ************************/

  #Nosotros {
    margin-top: 100px;
    margin-bottom: 100px;
    font-size: x-large;
  }

  .us-images {
    display: flex;
  }

  .imagenNosotros {
    width: 50%; /* altura del header */
  }

  #title-us{
    font-weight: 900;
    font-size: smaller;
    justify-content: center;
  }

  .us-margin {
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
    justify-content: center;
  }


  /************************* Contenido sección Productos ************************/

  #ourProduct{
    font-weight: 900;
    font-size: 2.5rem;
  }

  
  .section-title {
    font-weight: 900;
    font-size: xx-large;
    text-align: start;
  }

  #parrafo-1-Vino, #parrafo-1-frutosSecos, #parrafo-1-aceiteDeOliva, #parrafo-1-miel{
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: x-large;
    line-height: 1.6;
    color: #555; /* Un gris suave para que no sea negro puro */
  }

  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  #vino {
    padding-bottom: 50px;
    padding-top: 50px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out forwards;
  } 
  
  #aceiteDeOliva {
    padding-bottom: 50px;
    padding-top: 50px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out forwards;
    
  }
  
  #frutosSecos {
    padding-bottom: 50px;
    padding-top: 50px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out forwards;
    
  } 

  #miel {
    padding-bottom: 50px;
    padding-top: 50px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out forwards;
    
  }


  /************************* Contenido sección contacto ************************/

  .map-bg {
    background: url('https://cdn.pixabay.com/photo/2021/10/29/11/09/container-6751623_1280.jpg') no-repeat center center;
    background-size: cover;
    height: 100vh;
    position: relative;
  }
  
  .contact-card {
    display: flex;
    background-color: white;
    padding: 2rem;
    box-shadow: 0 0 20px rgba(106, 107, 107, 0.791);
    max-width: 700px;
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    gap: 2rem;
    width: 100%;
    border-radius: 5px;
  }
  
  .contact-left, .contact-right {
    flex: 1;
  }
  
  .contact-left h6, .contact-right h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    border-bottom: 2px solid #233868    ;
    display: inline-block;
    padding-bottom: 2px;
  }
  
  .contact-left p, .contact-left a {
    margin-bottom: 1rem;
    display: block;
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #ccc;
    width: fit-content;
    font-size: large;
  }
  
  .btn-orange {
    background-color: #233868;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: background-color 0.3s;
    font-size: large;
  }
  
  .btn-orange:hover {
    background-color: #ffffff;
    color: #233868;
    border: 1px solid #233868;
  }

  .text-align {
    text-align: center;
  }

  #cotiza{
    font-size: x-large;
  }

   /************************* Botón Whatsapp ************************/

  .whatsapp-icon {
    position: fixed !important;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white !important;
    width: 60px !important;
    height: 60px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-size: 30px;
    transition: background-color 0.3s ease;
    text-decoration: none;
    z-index: 9999; /* El WhatsApp debe estar por encima del reCAPTCHA */
}


.whatsapp-icon:hover {
    background-color: #128C7E; /* Cambio de color al pasar el mouse */
}

/************************* After footing ************************/

.delahoz {
background-color: rgb(35, 35, 36); color: rgb(228, 228, 228); 
text-align: center; 
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; 
padding-top: 30px; 
padding-bottom: 30px;
}

a {
color: #d9dad1;
}