/* Estilos generales */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
  }
  
  h1, h2, h3 {
    font-weight: bold;
  }
  
  .logo {
    max-width: 200px; /* Ajusta el ancho máximo del logotipo según tus necesidades */
    height: auto; /* Ajusta la altura automáticamente en base al ancho */
    display: block; /* Asegura que el logotipo se muestre como un bloque */
  }
  
  
  /* Estilos del encabezado y menú de navegación */
  header {
    background-color: #f9f9f9;
    color: #333;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  
  .menu {
    list-style: none;
    display: flex;
  }
  
  .menu li {
    margin-left: 10px;
  }
  
  .menu a {
    color: #333;
    text-decoration: none;
  }
  
  /* Estilos del menú desplegable para pantallas pequeñas */
  .menu-icon {
    font-size: 20px;
    cursor: pointer;
    display: none;
  }
  
  #menu-toggle {
    display: none;
  }
  
  .menu-responsive {
    display: none;
  }
  /* Estilos del héroe */
  .hero {
    background-image: url('hero-background.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .hero-content {
    text-align: center;
    color: #333;
  }
  
  .hero h2 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .hero p {
    font-size: 18px;
    margin-bottom: 30px;
  }
  
  .btn {
    display: inline-block;
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
  }
  
  .btn:hover {
    background-color: #555;
  }
  
  /* Estilos de las características */
  .features {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px;
  }
  
  .feature {
    justify-content: center;
    text-align: center;
    margin: 0 20px;
  }
  
  .feature img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
  }
  
  .feature h3 {
    justify-content: center;
    text-align: center;
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .feature p {
    font-size: 16px;
    justify-content: center;
    text-align: center;
  }
  
  /* Estilos adicionales */
  .section {
    padding: 50px;
  }
  

  /* Estilos para el formulario de contacto en escritorio */
  #contacto form {
    display: grid;
    gap: 10px;
    margin: 20px;
  }

  #contacto label {
    font-weight: bold;
    margin-left: 60px;
  }
  #contacto h2, p{
    margin-left: 60px;
  }
  

  #contacto input,
  #contacto textarea {
    width: 70%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-bottom: 10px;
    display: block;
    justify-content: space-between;
    align-items: center;
    margin-left: 60px;  
  }

  #contacto button[type="submit"] {
    background-color: #4CAF50;
    color: #f9f9f9;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 4px;
    width: 70%;
    margin-left: 60px;
  }


  .whatsapp-button {
    position: fixed;
    bottom: 72px;
    right: 8px;
    background-color: #25D366;
    color: #f9f9f9;
    padding: 10px 5px;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }
  
  .whatsapp-button i {
    margin-right: 10px;
  }

  
    /* Estilos del footer */
  footer {
      background-color: #333;
      color: #fff;
      padding: 20px;
    }
    
    .footer-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    .footer-menu {
      list-style: none;
      display: flex;
    }
    
    .footer-menu li {
      margin-left: 10px;
    }
    
    .footer-menu a {
      color: #fff;
      text-decoration: none;
    }
    
    /* Estilos adicionales */
    .section {
      padding: 50px;
    }
    
    /* Media query para ajustar los estilos en dispositivos móviles */
  
    .menu {
      transform: translateY(-100%);
      transition: transform 0.3s ease-in-out;
    }
    

    /* galleta */
    #cookie-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: #ccc;
      padding: 10px;
      text-align: center;
    }
    
    #cookie-banner p {
      margin: 0;
    }
    
    #cookie-banner a {
      color: #333;
      text-decoration: underline;
    }
    
    #accept-cookies {
      background-color: #25D366;
      color: #fff;
      border: none;
      padding: 8px 16px;
      cursor: pointer;
    }

    

    @media (max-width: 768px) {
    .logo {
      display: block;
      
      max-width: 280px; /* Ajusta el ancho máximo del logotipo según tus necesidades */
      height: auto; /* Ajusta la altura automáticamente en base al ancho */
      display: inline-block; /* Asegura que el logotipo se muestre como un bloque */
    }
  

    header {
      background-color: #f9f9f9;
      color: #333;
      padding: 20px;
      display: block;
      justify-content: space-between;
      align-items: center;
      margin: 0px;
      
    }

     .menu {
      display: none;
      position: relative;
      font-size: 22px;
      background-color: #f9f9f9;
      color: #333;
     
      top: 100%;
      
      padding: 5px;
      transform: translateY(-100%);
      transition: transform 0.3s ease-in-out;

      flex-direction: column;
      align-items: center;

    }
   
    
   
    .menu-icon {
      display: block;
      

    
    }
  
    #menu-toggle:checked ~ .menu {
      transform: translateY(0%);
    }
   
    .hero h2 {
      font-size: 28px;
    }
  
    .hero p {
      font-size: 16px;
    }
  
    .features {
      flex-direction: column;
      align-items: center;
    }
  
    .feature {
      margin-bottom: 30px;
    }

    #contacto label {
      font-weight: bold;
      margin-left: 30px;
    }

    #contacto h2, p{
      margin-left: 30px;

    }

    #contacto form {
      display: block;
      margin-left: 30px;
    }
  
    #contacto input,
    #contacto textarea {
      width: 88%;
      padding: 12px;
      border: 1px solid #ccc;
      border-radius: 4px;
      box-sizing: border-box;
      margin-bottom: 10px;
      display: block;
      justify-content: space-between;
      align-items: center;
      margin-left: 30px;
      
    }
  
    #contacto button[type="submit"] {
      width: 88%;
      padding: auto;
      border-radius: 4px;
      margin-bottom: 30px;
      margin-left: 30px;
      
    }

  }
  