
#inicio {
    aspect-ratio: 1920 / 1412;
    background-image: url('./src/imgs/fondo/Portada.webp');
    background-color: #003351;
    background-size: cover;
    background-position: center;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
}

#inicio .container_titulo {
    display: flex;
    flex-direction: column;
    height: 50%;
    padding: 12% 0;
    text-align: center;
}

#inicio .container_titulo h1,
h2,
h3 {
    font-family: 'FuturaPTCondensed-ExtraBold', sans-serif;
    text-transform: uppercase;
}

#inicio .container_titulo h1 {
    letter-spacing: -1px;
    font-size: 10vw;
    margin-bottom: -3vw;
}

#inicio .container_titulo h2 {
    font-size: clamp(16px, 5.8vw, 85px);
}

#inicio .container_titulo h3 {
    font-size: 4.5vw;
}

#inicio .container_botones {
    display: flex;
    flex-direction: row;
    height: 30%;
    justify-content: space-around;
    margin-top: 15%;
    padding: 4% 0;
}

#inicio .container_botones .container_boton {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 8px;
}

#inicio .container_botones span {
    font-family: 'FuturaPTCondensed-Book', sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 3rem);
    text-shadow: 0px 0px 1px rgb(0, 0, 0);
}

#inicio .container_botones button {
    border-radius: 20px;
    border: none;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.4);
    cursor: pointer;

    display: flex;
    gap: 8px;
    align-items: center;

    margin: 0 auto;
    padding: 6px 25px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 0.4s ease, box-shadow 0.2s ease;
}

#inicio .container_botones button span {
    font-family: 'FuturaPTCondensed-Bold', sans-serif;
    font-size: clamp(1.5rem, 4.7vw, 4.8rem);
    /* font-size: 55px; */
    /* font-weight: bold; */
    font-weight: 900;
    letter-spacing: 1px;
}

#inicio .container_botones button svg {
    width: clamp(2rem, 6vw, 5.8rem);
    fill: white;
    filter: drop-shadow(0px 0px 0.5px rgb(0, 0, 0));
}

#inicio .container_botones button:hover {
    transform: scale(1.2);
}

#inicio .container_botones .btn_boletos {
    background-color: #fad623;
    color: white;
    /* text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.143); */
}

#inicio .container_botones .btn_asesor {
    background-color: #298387;
    color: white;
    /* text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.117); */
}

@media (max-width: 680px) {
    #inicio .container_botones {
        flex-direction: column;
        justify-content: center;
        gap: 25%;
    }

    #inicio {
        aspect-ratio: 1920 / 2556;

        /* background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 80%, #001a35 100%),
            url('./src/imgs/fondo/Fondo_03.webp'); */

    }
}