* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;



}

html {
    scroll-behavior: smooth;
    background-color: rgba(2, 0, 36, 1);
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    background-color: rgba(2, 0, 36, 1);
    overflow-x: hidden;
    max-width: 100vw;
}


::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: #1200af;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #0400ff;

}

::-webkit-scrollbar-track {
    background-color: rgb(3, 0, 63);
}



.section {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.section.active {
    display: block;
    opacity: 1;
}


.container-g-c {
    width: 40%;
    color: white;
}

@media (max-width: 1024px) {
    .container-g-c {
        width: 90%;
    }
}


.oferta {
    display: flex;
    font-size: var(--fs-h5);
}

/* Auto-interlinking styles */
.auto-link {
    color: #1200af;
    text-decoration: underline dotted;
    font-weight: 600;
    transition: all 0.3s ease;
}

.auto-link:hover {
    color: #0400ff;
    text-decoration: underline;
    background-color: rgba(18, 0, 175, 0.05);
}

/* --- Page Container Standardization --- */
#page-wrapper {
    position: relative;
    width: 100%;
    /* Enables control over overscroll and allows global effects */
}

/* Flexbox Layout Root to ensure sticky footer */
.layout-root {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Ensure main content expands to push footer down */
.layout-root>main {
    flex: 1 0 auto;
}

/* Ensure generic footer behavior within layout-root */
.layout-root>footer {
    flex-shrink: 0;
}

/* Fix for button missing background color */
.btn-primary {
    background-image: linear-gradient(135deg, #224bff 0%, #112cbc 50%, #5078fa 100%) !important;
    background-color: #224bff !important;
    color: #ffffff !important;
    border: none !important;
}