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

/* body,
html {
    height: 100%;
    font-family: 'Helvetica Neue', sans-serif;
} */

.hero {
    margin-top: 0px;
    background-image: url('../../img/banner1.jpg');
    /* cambia por tu imagen */
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.headline {
    font-size: 3em;
    animation: fadeInDown 1s ease-out;
}

.subtext {
    margin-top: 10px;
    font-size: 1.2em;
    opacity: 0.9;
}
.bannerLogo {
    width: 600px;
    height: auto;
    position: absolute;
    top: calc(50% - 150px);
    left: calc(50% - 300px);
}

button {
    margin-top: 160px;
    padding: 12px 60px;
    font-size: 1em;
    background-color: #0054a0;
    border: none;
    color: #fff;
    border-radius: 30px;
    /* <- este valor lo puedes ajustar a tu gusto */
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

button:hover {
    background-color: #0054a0;
    transform: scale(1.05);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive styles */
@media (max-width: 1024px) {
  .hero {
    height: 400px;
  }
  .content {
    height: 400px;
  }
  .headline {
    font-size: 2.2em;
  }
  .bannerLogo {
    width: 350px;
    left: calc(50% - 175px);
    top: calc(50% - 90px);
  }
  button {
    margin-top: 100px;
    padding: 10px 40px;
    font-size: 0.95em;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 300px;
  }
  .content {
    height: 300px;
    padding: 0 10px;
  }
  .headline {
    font-size: 1.5em;
  }
  .subtext {
    font-size: 1em;
  }
  .bannerLogo {
    width: 300px;
    left: calc(50% - 150px);
    top: calc(50% - 150px);
  }
  button {
    margin-top: 60px;
    padding: 8px 24px;
    font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 260px;
  }
  .content {
    height: 180px;
    padding: 0 5px;
  }
  .headline {
    font-size: 1.1em;
  }
  .subtext {
    font-size: 0.9em;
  }
  .bannerLogo {
    width: 160px;
    left: calc(50% - 80px);
    top: calc(50% - 36px);
  }
  button {
    margin-top: 30px;
    padding: 6px 16px;
    font-size: 0.85em;
  }
}