@font-face {
    font-family: 'FuturaCondensed';
    src: url('../fonts/FuturaLT-Condensed_1.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'FuturaCondensed', sans-serif;
}

.banner {
    width: 100%;
    height: auto;
    display: block;
    padding-top: 0px;
}

#header-container {
    min-width: 100vw;
    position: fixed;
    z-index: 1000;
    /* Asegura que el header esté encima de todo */
}

.logo {
    position: absolute;
    left: 50%;
    top: 100%;
    /* Posiciona el logo justo debajo del banner */
    transform: translate(-50%, -70%);
    width: 450px;
    /* Ajusta según necesidad */
    z-index: 10;
    /* Asegura que el logo esté encima del banner */
}

@media screen and (max-width: 768px) {
    .logo {
        width: 120px;
        /* Ajusta según necesidad */
        z-index: 10;
        /* Asegura que el logo esté encima del banner */
    }

    .banner {
        width: 100%;
        height: auto;
        display: block;
        /* padding-top: 50px; */
    }
}

/* Estilos generales */
body {
    margin: 0;
    padding: 0;
    font-family: 'FuturaCondensed', sans-serif;
}

.contact-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
}

/* Columna izquierda */
.contact-info {
    width: 45%;
}

.contact-info h1 {
    font-size: 28px;
    font-weight: bold;
    font-family: 'FuturaCondensed', sans-serif;
}

.contact-info h2 {
    font-size: 22px;
    font-weight: normal;
    font-family: 'FuturaCondensed', sans-serif;
}

.contact-info p {
    display: flex;
    align-items: center;
    font-size: 16px;
    margin: 30px 0;
    font-family: 'FuturaCondensed', sans-serif;
}

.contact-info .icon {
    width: 20px;
    margin-right: 10px;
}

/* Formulario */
.contact-form {
    width: 50%;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.input-container {
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width: 768px) {
    .input-container {
        display: block;
    }

    .contact-section {
        flex-direction: column;
        align-items: center;
    }

    .contact-info {
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 0 auto 24px auto;
    }

    .contact-form {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
    }

    .contact-form form {
        width: 100%;
        max-width: 400px;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0 auto;
    }
}

.input-group {
    display: flex;
    align-items: center;
    width: 48%;
    border-bottom: 2px solid #ccc;
    margin-bottom: 15px;
    padding-bottom: 5px;
}

.input-group.full-width {
    width: 100%;
}

.input-group img {
    width: 18px;
    margin-right: 8px;
}


.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: none;
    background: none;
    font-size: 16px;
    outline: none;
}

.contact-form textarea {
    height: 80px;

}

.checkbox-container {
    display: flex;
    align-items: space-evenly;
    font-size: 14px;
    margin: 10px 0;
    flex-direction: row;
    justify-content: space-evenly;

}

.submit-button {
    background-color: yellow;
    color: black;
    font-size: 18px;
    font-weight: bold;
    border: none;
    padding: 10px 25px;
    cursor: pointer;
    text-transform: uppercase;
    border-radius: 5px;
    margin-top: 10px;
}

.contact-form input {
    padding: 10px;
    border: none;
    background: none;
    font-size: 16px;
    outline: none;
}