/* Paleta de colores */
:root {
    --white: #ffffff;
    --black: #000000;
    --grey: #757575;
    --greyLight: #dfe4ea;
    --greyBlue: #22205F;
    --greyNight: #0B141F;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@font-face {
    font-family: "Fs_r";
    src: url("../asset/fonts/fs_r.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
}
body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    letter-spacing: 1px;
}
/* ==========================
        HERO CONTACTO
============================= */
.hero_contacto {
    position: relative;
    top: -94px;
    width: 100%;
    height: 101vh;
    display: flex;
    align-items: end;
    justify-content: flex-start;
    padding-left: 0;
    color: white;
    overflow-x: hidden;
    z-index: 0;
}

.hero_contacto::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 34%,rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.hero_contacto img {
    width: 105%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    object-position: top;
    top: 0;
    left: 0;
    z-index: 1;
    filter: brightness(0.9);
    transform: translateX(-3.7%);
}



.hero_contacto h1 {
    font-weight: bold;
    margin-bottom: 140px;
    z-index: 1;
    margin-left: 200px;
    font-size: 6rem;
    font-weight: 600;
    font-family: 'TGSPerfectCondensed';
    text-shadow: rgba(0, 0, 0, 0.5) 2px 2px 4px;
}


/* ==========================
    SECCIÓN CONTACTO
============================= */
.contacto_container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding: 60px 10%;
    margin-top: -94px;
}

/* Columna Izquierda */
.contacto_info {
    width: 40%;
    background-color: #22205F;
    color: white;
    border-radius: 5px;
    overflow: hidden;
}

.contacto_info img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.contacto_detalles {
    padding: 30px;
}

.contacto_detalles h3 {
    font-style: italic;
    font-size: 1.3rem;
    color: #FFCC05;
    margin-bottom: 10px;
}

.contacto_detalles p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.info_item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.info_item i {
    font-size: 1.5rem;
    background-color: #FFCC05;
    color: white;
    padding: 10px;
    border-radius: 5px;
}

.info_item strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 5px;
}

/* Columna Derecha - Formulario */
.contacto_formulario {
    width: 55%;
    background: white;
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.contacto_formulario h4 {
    font-style: italic;
    font-size: 1.2rem;
    color: #FFCC05;
}

.contacto_formulario h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #22205F;
}

.contacto_formulario p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* Estilos del formulario */
.form_grupo {
    display: flex;
    gap: 20px;
}

.input_box {
    width: 100%;
    margin-bottom: 15px;
}

.input_box label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #22205F;
}

.input_box span {
    color: red;
}

.input_box input, .input_box textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.input_box textarea {
    height: 252px;
    resize: none;
}

button {
    width: 100%;
    background-color: #FFCC05;
    color: white;
    padding: 15px;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

button i {
    font-size: 1.2rem;
}

/* Nota de privacidad */
.nota_privacidad {
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
    text-align: center;
}

/* ==========================
    MEDIA QUERIES
============================= */

/* Tablets y dispositivos medianos */
@media screen and (max-width: 1024px) {
    .hero_contacto h1 {
        font-size: 4rem;
        margin-left: 100px;
    }

    .contacto_container {
        flex-direction: column;
        padding: 40px 5%;
    }

    .contacto_info, .contacto_formulario {
        width: 100%;
    }

    .contacto_info {
        margin-bottom: 30px;
    }
}

/* Tablets pequeñas */
@media screen and (max-width: 768px) {
    .hero_contacto {
        height: auto;
        min-height: 50vh;
    }

    .hero_contacto h1 {
        font-size: 3rem;
        margin-left: 50px;
        margin-bottom: 100px;
    }

    .contacto_container {
        padding: 30px 5%;
    }

    .contacto_detalles {
        padding: 20px;
    }

    .form_grupo {
        flex-direction: column;
        gap: 0;
    }
}

/* Móviles */
@media screen and (max-width: 480px) {
    .hero_contacto h1 {
        font-size: 2.5rem;
        margin-left: 30px;
        margin-bottom: 80px;
    }

    .contacto_formulario {
        padding: 20px;
    }

    .contacto_formulario h2 {
        font-size: 1.8rem;
    }

    .contacto_formulario p {
        font-size: 1rem;
    }

    .info_item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .info_item i {
        font-size: 1.2rem;
        padding: 8px;
    }

    .info_item strong {
        font-size: 0.9rem;
    }

    .info_item p {
        font-size: 0.9rem;
    }

    button {
        font-size: 1rem;
        padding: 12px;
    }
}
