/*
===============================================
WEBFLOW REPLACEMENT CSS
Reemplaza todas las dependencias de Webflow con CSS nativo
===============================================
*/

/* =================================== */
/* COLOR VARIABLES (from Webflow) */
/* =================================== */
:root {
    --_primitives---colors--theeye-blue: #004E96;
    --_primitives---colors--theeye-blue-dark: #1648bb;
    --_primitives---colors--theeye-blue-light: #004E96;
    --_primitives---colors--theeye-blue-lighter: #d1defa;
    --_primitives---colors--theeye-blue-lightest: #e8eefc;
    --_primitives---colors--white: #fff;
    --_primitives---colors--neutral-darkest: #000;
}

/* =================================== */
/* QUOTE SECTION */
/* =================================== */
.quote_component {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 200vh;
    max-height: 90rem;
    position: relative;
}

.quote_content {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-rows: auto;
    grid-template-columns: 40% max-content 40%;
    grid-auto-columns: 1fr;
    place-content: center;
    place-items: center;
    height: 100vh;
    padding-left: 5%;
    padding-right: 5%;
    display: grid;
    position: sticky;
    top: 0;
    overflow: hidden;
}

.quote_heading {
    z-index: 1;
    color: var(--_primitives---colors--theeye-blue-lighter);
    letter-spacing: -4px;
    white-space: nowrap;
    font-family: Gothamrnd Book, Arial, sans-serif;
    font-size: 4rem;
    position: relative;
}

.quote_heading.heading-1 {
    letter-spacing: -3px;
    font-family: "Subset Inter 24 Pt", Arial, sans-serif;
    font-size: 4rem;
    font-weight: 300;
}

.quote_heading.heading-2 {
    letter-spacing: -4px;
    font-family: "Subset Inter 24 Pt", Arial, sans-serif;
    font-weight: 800;
}

.quote_heading.show-mobile-landscape {
    display: none;
}

.quote_image-wrapper {
    justify-content: center;
    align-items: center;
    width: 100%;
    min-width: 4rem;
    max-width: 24rem;
    display: flex;
    position: relative;
}

.quote_image {
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 0;
    width: 100%;
    height: 100%;
}

.quote_circle {
    z-index: -1;
    background-color: var(--_primitives---colors--theeye-blue);
    border-radius: 0;
    width: 4vh;
    height: 4vh;
    position: absolute;
}

.quote_ix-trigger {
    z-index: -1;
    margin-top: 100vh;
    position: absolute;
    inset: 0%;
}

/* Responsive styles for quote section */
@media screen and (max-width: 991px) {
    .quote_content {
        height: 100svh;
    }

    .quote_heading {
        font-size: 4rem;
    }
}

@media screen and (max-width: 767px) {
    .quote_component {
        height: 190vh;
    }

    .quote_content {
        grid-column-gap: 1rem;
        grid-row-gap: 1rem;
        grid-template-columns: 60%;
    }
}

@media screen and (max-width: 479px) {
    .quote_content {
        grid-row-gap: 1rem;
    }
}

/* Hide desktop rotating text on mobile to prevent duplication */
@media screen and (max-width: 767px) {

    /* Hide desktop "gana" heading to prevent duplication */
    .quote_heading.heading-1 {
        display: none !important;
    }

    .quote_heading.heading-2.title-change {
        display: none !important;
    }

    /* Show mobile version */
    .quote_heading.show-mobile-landscape {
        display: block !important;
    }
}