.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100vw;
    justify-content: space-between;
    padding: 10px 20px;
    position: relative;
    margin: 0;
}

.header__logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header__logo img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 150px;
}


.contact-info {
    height: 4rem;
    background-color: #0552f6;
    color: #ffffff;
    text-align: center;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-banner {
    width: 100%;
    aspect-ratio: 16 / 4;  /* ajusta según el diseño */
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.banner-header img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}