.inicio_section {
    height: 90dvh;
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--grey);
    padding: 2% 0%;
    z-index: 900;
    opacity: 0;
    animation: inicio_section_animation 1s ease-in-out forwards;
}

@keyframes inicio_section_animation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.inicio_section .inicio_desc {
    width: 49%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;
    text-align: left;
}

.inicio_section .inicio_desc p {
    font-size: 1.2rem;
    color: var(--grey);
}

.inicio_section .inicio_desc h1 {
    font-size: 7rem;
    font-weight: 300;
    color: var(--white);
    background-image: linear-gradient(45deg, var(--white) 15%, var(--grey) 82%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 300;
}

.inicio_section .inicio_info {
    width: 25%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding: 2%;
}

.inicio_section .inicio_info p {
    font-size: 1.1rem;
    color: var(--white);
    z-index: 500;
    margin-bottom: 3rem;
    border-radius: 20px;
    padding: 2%;
    border-radius: 12px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.inicio_section .inicio_info .btn {
    padding: 5%;
}

@media (max-width: 1500px) {
    .inicio_section .inicio_desc h1 {
        font-size: 5rem;
        text-align: left;
        width: 100%;
    }
        .inicio_section .inicio_info p {
        font-size: 0.9rem;
        text-align: left;
        margin-bottom: 10dvh;
    }

    .inicio_section .inicio_info .btn {
        padding: 0.7em 1.2em;
        font-size: 1rem;
        width: 75%;
    }
}

@media (max-width: 900px) {
    .inicio_section {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 98vw;
        height: 90dvh;
        min-height: unset;
        padding: 0 0 2rem 0;
        border-bottom: 1px solid var(--grey);
        gap: 1.2rem;
    }

    .inicio_section .inicio_desc {
        width: 100%;
        height: 30dvh;
        align-items: center;
        text-align: start;
        padding: 0 2vw;
    }

    .inicio_section .inicio_desc h1 {
        font-size: 3.2rem;
        margin-top: 10dvh;
        text-align: center;
        width: 70%;
    }

    .inicio_section .inicio_desc p {
        font-size: 1.1rem;
        text-align: center;
    }

    .inicio_section .inicio_info {
        width: 100%;
        align-items: center;
        justify-content: start;
        padding: 0 2vw;
    }

    .inicio_section .inicio_info p {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .inicio_section .inicio_info .btn {
        padding: 0.7em 1.2em;
        font-size: 0.8rem;
        width: 25%;
    }
}

@media (max-width: 600px) {
    .inicio_section {
        width: 100vw;
        padding: 2%;
        gap: 0.7rem;
        align-items: start;
        justify-content: start;
        flex-direction: column;
    }

    .inicio_section .inicio_desc {
        padding: 0 1vw;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        height: 30dvh;
    }

    .inicio_section .inicio_desc h1 {
        font-size: 2.5rem;
        margin-top: 10dvh;
        text-align: center;
        width: 100%;
    }

    .inicio_section .inicio_desc p {
        font-size: 0.8rem;
        text-align: center;
    }

    .inicio_section .inicio_info {
        padding: 0 1vw;
        align-items: center;
        justify-content: start;
        flex-direction: column;
    }

    .inicio_section .inicio_info p {
        font-size: 0.93rem;
        margin-bottom: 1rem;
        padding: 5%;
        border-radius: 12px;
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        text-align: center;
    }

    .inicio_section .inicio_info .btn {
        font-size: 0.8rem;
        padding: 0.5em 0.8em;
        width: 35%;
    }
}

@media (max-height: 700px){
        .inicio_section .inicio_info p {
        font-size: 0.8rem;
    }
}