 main {
    margin-top: 0 !important;        
}

.landing-section {
    position: relative;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    overflow: hidden;
}

.landing-section::after {
    display: none;
}

.top-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100vw;
    padding: 35px 15px;
    background: linear-gradient(180deg, #000000 0%, var(--main-color) 50%, #000000 100%);
    min-height: 725px;
    max-width: 1280px;
}

.landing-section::after, .top-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100vw;
    height: 195px;
    background: linear-gradient(180deg, transparent 15%, #000000 60%);
    z-index: 2;
}

.top-section .main-logo-wrapper {
    z-index: 1;
}

.top-section .main-logo {
    width: 240px;
    z-index: 1;
}

.top-section .content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
    z-index: 3;
}

.top-section .content-container .button {
    box-shadow: 0px 3px 18px #00000080;
}

.top-section .content-container .banner-img {
    width: 330px;
    z-index: 2;
}

.top-section .content-container .text-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 5px;
}

.top-section .content-container .text-container .text-wrapper {
    display: flex;
    flex-direction: column;
    color: #ffffff;
    text-align: center;
}

.top-section .content-container .text-container .text-wrapper h2 {
   font-family: var(--roboto-regular-condensed);
   font-size: 20px;
   background-color: unset;
   padding: 0;
   margin: 0;
   line-height: normal;
   color: #ffffff;
}

.top-section .content-container .text-container .text-wrapper p {
   font-family: var(--roboto-regular);
   font-size: 15px;
   margin: 0;
}

.top-section.bienvenida .gloria-wrapper {
    position: absolute;
    display: flex;
    bottom: 45px;
    width: 425px;
    left: -60px;
    /*z-index: 2;*/
}

.top-section.bienvenida .gloria-wrapper .gloria-img {
    position: relative;
    width: 100%;
    bottom: 75px;
    z-index: 2;
}

.top-section.bienvenida .gloria-wrapper .chits-img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 0;
}

.top-section.bienvenida .hexagon-white-img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -160px;
    width: 200px;
    z-index: 0;
}

.top-section.bienvenida .hexagon-1-img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -255px;
    width: unset;
    z-index: 1;
}

.top-section.bienvenida .hexagon-2-img {
    position: absolute;
    bottom: -440px;
    right: 45px;
}

.top-section .gloria-wrapper {
    position: absolute;
    display: flex;
    bottom: 330px;
    width: 230px;
    left: -18px;
}

.top-section .gloria-wrapper .gloria-img {
    position: relative;
    width: 100%;
    z-index: 2;
}

.top-section .gloria-wrapper .chits-img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 0;
}

.top-section .hexagon-white-img {
    position: absolute;
    top: 95%;
    transform: translateY(-50%);
    left: -160px;
    width: 285px;
    z-index: 0;
}

.top-section .hexagon-1-img {
    position: absolute;
    top: 15%;
    right: 0;
    width: 200px;
    z-index: 1;
}

.top-section .hexagon-2-img {
    position: absolute;
    bottom: 130px;
    right: -280px;
    width: 375px;
}

.bottom-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 880px;
    background-color: #C10069;
    color: #ffffff;
    font-family: var(--roboto-regular);
    padding: 20px;
    z-index: 3;
}

.bottom-section h1 {
    font-family: var(--roboto-bold-condensed);
    text-align: center;
}

.background {
    position: fixed;
    top: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    background-color: rgba(0, 0, 0, 0.3);
}

@media(min-width: 768px) {
    .landing-section {
        background: linear-gradient(180deg, #000000 0%, var(--main-color) 50%, #000000 100%);
    }
    
    .top-section {
        justify-content: start;
        gap: 60px;
        background: unset;
    }
    
    .top-section::after {
        display: none;
    }
    
    .landing-section::after {
        display: block;
        height: 50%;
        background: linear-gradient(180deg, transparent 15%, #000000 60%);
    }
    
    .landing-section:has(.top-section.bienvenida)::after {
        display: block;
        height: 70%;
        background: linear-gradient(180deg, transparent 15%, #000000 40%);
    }
    
    .bottom-section {
        position: relative;
        bottom: 70px;
    }
    
    .top-section .content-container .banner-img {
        width: 420px;
    }
    
    .top-section .gloria-wrapper {
        bottom: 200px;
        width: 320px;
    }
    
    .top-section .gloria-wrapper .chits-img {
        bottom: 0;
        left: 35%;
    }
    
    .top-section .content-container .text-container {
        flex-direction: row;
        margin-top: 40px;
    }
    
    .top-section .hexagon-white-img, .top-section.bienvenida .hexagon-white-img {
        left: 50px;
        top: 195px;
    }
    
    .top-section .hexagon-1-img {
        top: 40%;
        transform: translateY(-50%);
        right: -185px;
        width: 400px;
        z-index: 1;
    }
    
    .top-section .hexagon-2-img {
        position: absolute;
        bottom: -440px;
        right: 45px;
        width: unset;
    }
}

@media(min-width: 1024px) {
    .top-section .gloria-wrapper, .top-section.bienvenida .gloria-wrapper {
        bottom: -90px;
        width: 535px;
    }
    
    .top-section .hexagon-white-img, .top-section.bienvenida .hexagon-white-img {
        left: 225px;
        top: 180px;
        width: 285px;
    }
    
    .top-section .hexagon-1-img {
        top: 50%;
        right: -255px;
        width: unset;
    }
}