
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  html, body {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(45deg, #00aef4, #00df66);
    font-family: 'Source Sans Pro', sans-serif;
    color: aliceblue;
    overflow-x: hidden; /* Oculta el scroll horizontal */
  }

  .container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
  }

  .image {
    margin-top: 20px;
    width: 350px;
    height: auto;
  }

  .form-consulta {
    max-width: 400px;
    padding: 25px;
    color: aliceblue;
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    margin-top: 20px;
  }

  .campo-form {
    width: 100%;
    height: 36px;
    margin: 6px 0;
    padding-left: 6px;
    border-radius: 3px;
    border: 1px solid white;
    background: none;
    color: white;
  }

  textarea {
    min-height: 150px!important;
  }
  

  .btn-form {
    display: inline-block;
    background: #00aef4;
    height: 46px;
    line-height: 46px;
    padding: 0 20px;
    border-radius: 6px;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;
    border: none;
    width: 100%;
  }

  .btn-form:hover {
    background: #00df66;
  }

  label span {
    color: #EAEAEA;
  }

  a {
    color: #00df66;
  }

  .info {
    margin-top: 20px;
    max-width: 444px;
    text-align: center;
    padding: 20px;
  }

  #footer {
    text-align: center;
    padding: 10px;
    background: rgba(0, 0, 0, 0.3);
    width: 100%;
    margin-top: auto;
  }

  #cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px;
    text-align: center;
    z-index: 1000;
  }

  #cookie-banner button {
    margin-left: 10px;
    padding: 5px;
    cursor: pointer;
  }

