@import url(variables.css);

/* ======== COMPONENTS ======== */

/* PRIMARY */
.btn-primary {
    background-color: var(--neutral-white);
    padding: var(--s-2) var(--s-5);
    max-width: fit-content;
    transition: all .3s ease-in-out;
    display: flex;
    align-items: center;
}

.btn-primary:hover {
    background-color: var(--secondary-700);
}

.btn-primary>a {
    color: var(--primary-700);
    font-family: var(--ff-secondary);
    font-weight: var(--fw-bold);
    font-size: var(--fs-8);
    text-decoration: none;
    line-height: 120%;
    transition: color .3s ease-in-out;
}

.btn-primary:hover>a {
    color: var(--neutral-white);
}

/* SECONDARY */
.btn-secondary {
    border: solid 2px var(--secondary-200);
    border-radius: var(--br-s-0-5);
    padding: var(--s-2) var(--s-5);
    max-width: fit-content;
    transition: all .3s ease-in-out;
}

.btn-secondary>a {
    color: var(--primary-200);
    font-family: var(--ff-secondary);
    font-weight: var(--fw-bold);
    font-size: var(--fs-8);
    text-decoration: none;
    transition: color .3s ease-in-out;
}

.btn-secondary:hover {
    background-color: var(--secondary-200);
}

.btn-secondary:hover>a {
    color: var(--secondary-800);
}

/* SECTION LINK */
.section-link {
    color: var(--neutral-white);
    display: flex;
    align-items: center;
    gap: var(--s-2);
    font-family: var(--ff-secondary);
    font-weight: var(--fw-medium);
    font-size: var(--fs-7);
    text-decoration: none;
    text-underline-offset: 0.3em;
    background-image: linear-gradient(var(--neutral-white), var(--neutral-white));
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    transition: gap 0.3s ease-in-out, background-size 0.3s ease-in-out;
}

.section-link:hover {
    gap: var(--s-3);
    background-size: 100% 2px;
}

.section-link>img {
    max-width: 16px;
}

/* COMPRAR */
.btn-comprar {
    border-radius: var(--br-s-0-5);
    padding: var(--s-1) var(--s-4);
    background-color: var(--neutral-white);
    color: var(--secondary-950);
    font-family: var(--ff-secondary);
    font-weight: var(--fw-bold);
    font-size: var(--fs-7);
    text-decoration: none;
    transition: all .3s ease-in-out;
    width: 100%;
    text-align: center;
}

.btn-comprar:hover {
    background-color: var(--primary-300);
    color: var(--neutral-white);
    transition: all .3s ease-in-out;
}


/* MODAL */
.btn-modal {
    border: solid 2px var(--neutral-white);
    border-radius: var(--br-s-0-5);
    padding: var(--s-1) var(--s-4);
    color: var(--neutral-white);
    font-family: var(--ff-secondary);
    font-weight: var(--fw-bold);
    font-size: var(--fs-7);
    text-decoration: none;
    transition: all .3s ease-in-out;
    width: 100%;
    text-align: center;
}

.btn-modal:hover {
    background-color: var(--primary-500);
    border: solid 2px var(--neutral-white);
    color: var(--neutral-white);
    transition: all .3s ease-in-out;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    height: 88px;
    transition: all 0.3s ease-in-out;
    padding: 0 80px;
}

.navbar_content {
    width: 100%;
    max-width: 1440px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}

.navbar-interactive {
    display: flex;
    align-items: center;
    gap: var(--s-8);
}

.navbar_links {
    display: flex;
    gap: var(--s-8);
    align-items: center;
}

.navbar_logo {
    position: relative;
    display: block;
    width: 56px;
    height: 56px;
}

.navbar_logo img {
    height: 100%;
    width: 100%;
    transition: all 0.3s ease-in-out;
}

/* Logo states */
.logo-default { opacity: 1; }
.logo-hover, .logo { display: none; }

.navbar_logo:hover .logo-default { opacity: 0.5; }

/* Logo cuando está scrolled */
.navbar.scrolled .logo-default { display: none; }
.navbar.scrolled .logo { display: block; opacity: 1; }
.navbar.scrolled .logo-hover { display: none; opacity: 0; position: absolute; top: 0; left: 0; }

.navbar.scrolled .navbar_logo:hover .logo { display: none; }
.navbar.scrolled .navbar_logo:hover .logo-default { opacity: 0; }
.navbar.scrolled .navbar_logo:hover .logo-hover { display: block; opacity: 1; }

/* Estilos para links del navbar */
.navbar_link a {
    text-decoration: none;
    font-size: var(--fs-4);
    color: var(--neutral-white);
    transition: all 0.3s ease-in-out;
}

.navbar_link>a:hover {
    opacity: 0.5;
}

/* Botón navbar */
.btn-navbar {
    padding: var(--s-1) var(--s-4);
    border: solid 2px var(--neutral-white);
    border-radius: var(--br-s-0-5);
    background-color: transparent;
    text-decoration: none;
    color: var(--neutral-white);
    font-size: var(--fs-6);
    font-weight: var(--fw-bold);
    font-family: var(--ff-secondary);
    transition: all 0.3s ease-in-out;
}

.btn-navbar:hover {
    background-color: var(--neutral-white);
    color: var(--primary-700);
}

/* Estilos cuando está scrolled */
.navbar.scrolled {
    background-color: var(--neutral-white);
    border-bottom: solid 1px var(--primary-100);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all .3s ease-in-out;
}

.navbar.scrolled .navbar_link>a {
    color: var(--primary-700);
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    opacity: 1;
}

.navbar.scrolled .navbar_link>a:hover {
    color: var(--primary-500);
    opacity: 1;
}

.navbar.scrolled .btn-navbar {
    border-color: var(--primary-700);
    color: var(--primary-700);
}

.navbar.scrolled .btn-navbar:hover {
    background-color: var(--primary-700);
    border-color: var(--primary-700);
    color: var(--neutral-white);
}

/* Filtros para los logos en estado scrolled */
.navbar.scrolled .logo-default,
.navbar.scrolled .logo-hover {
    filter: brightness(0) saturate(100%) invert(19%) sepia(9%) saturate(1985%) hue-rotate(213deg) brightness(94%) contrast(88%);
}

/* Elementos móviles ocultos por defecto */
.navbar_mobile,
.mobile-links,
.mobile-overlay {
    display: none;
}

/* HERO SECTION */

.hero {
    height: 100%;
    padding: var(--m-6) var(--m-5);
    position: relative;
    overflow: hidden;
}

/* Gradiente como capa separada sobre la imagen de fondo */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(252.97deg, rgba(0, 0, 0, 0) 46.87%, #0E0F1A 100%);
    z-index: 0;
    pointer-events: none;
}

/* El elemento de fondo se crea dinámicamente con JavaScript */
.hero .hero-bg,
.hero .hero-bg-new {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    transition: opacity 0.5s ease-in-out;
    will-change: opacity;
}

.hero_content {
    max-width: 1440px;
    padding: var(--m-5) 0;
    display: flex;
    flex-direction: column;
    gap: 66px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero_p {
    max-width: 50%;
    display: block;
}

.hero_p>h3 {
    color: var(--neutral-white);
    font-family: var(--ff-secondary);
    font-weight: var(--fw-regular);
    font-size: var(--fs-8);
    line-height: 120%;
    text-overflow: ellipsis;
}

.hero_title>h2 {
    color: var(--neutral-white);
    font-family: var(--ff-primary);
    font-weight: var(--fw-regular);
    font-size: var(--fs-6);
    line-height: 150%;
}

.hero_title>h1 {
    color: var(--neutral-white);
    font-family: var(--ff-primary);
    font-weight: var(--fw-black);
    font-size: var(--fs-15);
    line-height: 100%;
}

@keyframes fadeUpIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero_body .hero_title h2 {
    animation: fadeUpIn 0.8s ease-out both;
}

.hero_body .hero_title h1 {
    animation: fadeUpIn 0.8s ease-out 0.2s both;
}

.hero_body .hero_p h3 {
    animation: fadeUpIn 0.8s ease-out 0.4s both;
}

.hero_body .hero_btn {
    animation: fadeUpIn 0.8s ease-out 0.6s both;
}

.hero_body {
    display: flex;
    flex-direction: column;
    gap: var(--s-4);
}

.hero_btn {
    display: flex;
    gap: var(--s-6);
    align-items: center;
}

.hero_slide {
    width: 100%;
    height: 100%;
    display: flex;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 1;
}

.hero_slides_container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero_slide:not(.active) {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}

.hero_slide.active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
}
.hero_thumbs {
    position: relative;
    left: 0;
    z-index: 2;
    width: 724px;
    height: 220px;
    overflow: visible;
}

.hero_thumbs_content {
    position: absolute;
    display: flex;
    flex-direction: row-reverse;
    gap: 20px;
    width: 100%;
    height: 100%;
}

.hero_thumb {
    width: 150px;
    /* (957px - (5 * 24px gap)) / 5.5 tarjetas ≈ 150px */
    height: 100%;
    position: relative;
    border: none;
    padding: 0;
    cursor: pointer;
    opacity: 1;
    transform: scale(1);
    transition-property: transform, opacity;
    transition-duration: 0.3s;
    transition-timing-function: ease-out;
    transform-origin: center;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    flex-shrink: 0;
    border-radius: var(--br-s-5);
    overflow: hidden;
}

.hero_thumb:hover {
    transform: scale(1.1);
    z-index: 3;
}

.hero_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 80% center;
    border-radius: var(--br-s-5);
    transition: all 0.3s ease-out;
    backface-visibility: hidden;
}

.hero_thumb h4 {
    position: absolute;
    bottom: 16px;
    left: 0;
    width: 100%;
    color: var(--neutral-white);
    margin: 0;
    font-family: var(--ff-secondary);
    font-size: var(--fs-6);
    font-weight: var(--fw-extrabold);
    z-index: 2;
    text-align: center;
    padding: 0 16px;
}
.hero_thumb::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
    border-radius: var(--br-s-5);
    z-index: 1;
}

.hero_thumb.active {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    visibility: hidden;
}

/* ========= PERSONALIZAR SECTION ========= */

.personalizar {
    background: url(../assets/img/bg/bg-abstract-01.webp) no-repeat center;
    background-size: cover;
    width: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--m-8) var(--m-5);
}

.personalizar_content {
    display: flex;
    gap: var(--m-5);
    max-width: 1440px;
    align-items: center;
}

.personalizar_img {
    max-width: 512px;
    min-width: 444px;
    padding: 0 var(--s-9);
}

.personalizar_body {
    display: flex;
    flex-direction: column;
    gap: var(--s-7);
}

.personalizar_text {
    display: flex;
    flex-direction: column;
    gap: var(--s-3);
}

.personalizar_title {
    font-family: var(--ff-primary);
    font-weight: var(--fw-extrabold);
    font-size: var(--fs-13);
    line-height: 120%;
    align-items: center;
    color: var(--neutral-white);
}

.personalizar_p {
    font-family: var(--ff-secondary);
    font-weight: var(--fw-regular);
    font-size: var(--fs-7);
    line-height: 130%;
    align-items: center;
    color: var(--neutral-white);
}

.personalizar_btn {
    display: flex;
    gap: var(--s-5);
}

/* ========= COLORES SECTION ========= */

.colores {
    padding: var(--m-8) var(--m-5);
}

.colores_content {
    display: flex;
    flex-direction: column;
    max-width: 1440px;
    gap: var(--m-3);
    align-items: center;
    margin: 0 auto;
}

.colores_text {
    display: flex;
    flex-direction: column;
    gap: var(--s-3);
    padding: 0 var(--s-9);
    align-items: center;
}

.colores_title {
    font-family: var(--ff-primary);
    font-weight: var(--fw-extrabold);
    font-size: var(--fs-13);
    line-height: 120%;
    text-align: center;
    color: var(--secondary-950);
}

.colores_p {
    font-family: var(--ff-secondary);
    font-weight: var(--fw-regular);
    font-size: var(--fs-7);
    line-height: 130%;
    text-align: center;
    color: var(--secondary-950);
}

.colores_img {
    display: flex;
    gap: var(--s-8);
    width: 100%;
    max-width: 1440px;
    justify-content: center;
    flex-wrap: wrap;
}

.colores_img>img {
    flex: 1 1 300px;
    min-width: 0;
    max-width: 460px;
    height: auto;
}

/* ========= BOLSOS SECTION ========= */

.bolsos {
    background: url(../assets/img/bg/bg-abstract-02.webp) no-repeat center;
    background-size: cover;
    width: 100%;
    min-height: 100vh;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--m-8) var(--m-5);
}

.bolsos_content {
    display: flex;
    flex-direction: column;
    gap: var(--m-3);
    max-width: 1440px;
}

.bolsos_cards-pagination {
    display: flex;
    flex-direction: column;
    gap: var(--m-3);
    align-items: center;
}

.bolsos_cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 32px;
    margin: 0 auto;
    max-width: 100%;
}

.bolso_card {
    display: flex;
    flex-direction: column;
    min-width: 380px;
    max-width: 458px;
    padding-bottom: 22px;
    gap: var(--s-4);
    background-color: var(--primary-950);
    justify-content: space-between;
}

.card-body {
    display: flex;
    flex-direction: column;
    gap: var(--s-4);
    padding: 0 22px;
}

.card-text {
    display: flex;
    flex-direction: column;
    gap: var(--s-1);
}

.card-title {
    font-family: var(--ff-primary);
    font-weight: var(--fw-medium);
    font-size: var(--fs-10);
    color: var(--neutral-white);
}

.card-p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    font-family: var(--ff-secondary);
    font-weight: var(--fw-regular);
    font-size: var(--fs-4);
    color: var(--neutral-white);
}

.precio-card {
    color: var(--neutral-white);
    font-family: var(--ff-secondary);
    font-size: var(--fs-8);
    font-weight: var(--fw-bold);
}

.precio-card > span {
    font-size: var(--fs-4);
    font-weight: var(--fw-regular);
}

.card-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--s-3);
}

.bolsos_pagination {
    display: flex;
    gap: var(--s-7);
    align-items: center;
}

.cards-page {
    font-family: var(--ff-secondary);
    font-weight: var(--fw-semibold);
    font-size: var(--fs-8);
    display: flex;
    align-items: center;
    gap: var(--s-7);
}

.cards-page-active {
    font-family: var(--ff-secondary);
    font-weight: var(--fw-semibold);
    font-size: var(--fs-10);
    color: var(--primary-500);
}

/* Estilos de paginación */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
}

.pagination-btn {
    background: none;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--ff-secondary);
}

.pagination-btn.number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-700);
    background-color: transparent;
    font-size: var(--fs-8);
}

.pagination-btn.number:hover {
    background-color: var(--secondary-700);
    color: var(--neutral-white);
}

.pagination-btn.number.active {
    background-color: var(--primary-700);
    color: var(--neutral-white);
}

.pagination-btn.prev,
.pagination-btn.next {
    background-color: transparent;
    border: none;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-btn.prev img,
.pagination-btn.next img {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.pagination-btn.prev:hover img { transform: translateX(-3px); }
.pagination-btn.next:hover img { transform: translateX(3px); }

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-btn:disabled:hover img { transform: none; }

/* KONT.TRAST SECTION */

.konttrast {
    background-color: var(--primary-950);
    padding: var(--m-8) var(--m-5);
}

.konttrast_content {
    max-width: 1440px;
    display: flex;
    gap: var(--m-2);
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
}

.konttrast_avatar {
    width: 100%;
}

.konttrast_text {
    display: flex;
    flex-direction: column;
    gap: var(--s-7);
    width: 100%;
}

.konttrast_title {
    font-family: var(--ff-primary);
    font-weight: var(--fw-extrabold);
    font-size: var(--fs-13);
    color: var(--neutral-white);
}

.konttrast_p {
    font-family: var(--ff-secondary);
    font-weight: var(--fw-regular);
    font-size: var(--fs-7);
    color: var(--neutral-white);
    line-height: 130%;
}

/* CONTACT SECTION */

.contacto {
    padding: var(--m-8) var(--m-5);
    position: relative;
    overflow: hidden;
}

.contacto-bg {
    position: absolute;
    width: 1008px;
    left: -22px;
    z-index: 1;
}

.contacto-bg > img {
    width: 100%;
    filter: blur(12px);
    opacity: .3;
}

.contacto_content {
    max-width: 1440px;
    display: flex;
    gap: 48px;
    padding: 44px 0;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
}

.contacto_instagram {
    display: flex;
    flex-direction: column;
    gap: 62px;
    align-items: center;
    z-index: 10;
    flex: 1;
    min-width: 0;
}

.contacto_instagram > img {
    transform: scaleX(-1);
    max-width: 100%;
}

.contact-link {
    color: var(--neutral-black);
    display: flex;
    align-items: center;
    gap: var(--s-2);
    font-family: var(--ff-secondary);
    font-weight: var(--fw-medium);
    font-size: var(--fs-7);
    text-decoration: none;
    line-height: 150%;
    text-underline-offset: 0.3em;
    background-image: linear-gradient(var(--neutral-black), var(--neutral-black));
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    transition: gap 0.3s ease-in-out, background-size 0.3s ease-in-out;
}

.contact-link:hover {
    gap: var(--s-3);
    background-size: 100% 2px;
}

.contact-link>img {
    max-width: 16px;
}

.contacto_instagram-text {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 12px;
}

.contacto_title {
    font-family: var(--ff-primary);
    font-weight: var(--fw-extrabold);
    font-size: var(--fs-12);
    text-align: center;
    color: var(--primary-950);
    line-height: 120%;
}

.contacto_p {
    font-family: var(--ff-secondary);
    font-weight: var(--fw-regular);
    font-size: var(--fs-5);
    text-align: center;
    color: var(--primary-950);
    line-height: 130%;
}

.contacto_p > a {
    text-decoration: none;
    color: var(--primary-500);
    font-weight: var(--fw-bold);
    background-image: linear-gradient(var(--primary-300), var(--primary-300));
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    transition: background-size 0.3s ease-in-out, color 0.3s ease-in-out;
}

.contacto_p > a:hover {
    color: var(--primary-300);
    background-size: 100% 2px;
}

.contacto_correo {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    z-index: 10;
    flex: 1;
    width: 50%;
    min-width: 0;
}

.contacto_text {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: var(--s-3);
}

.contacto_form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    width: 100%;
}

.namemail {
    display: flex;
    gap: 32px;
    align-items: center;
    width: 100%;
}

.name, .mail {
    width: 100%;
    display: flex;
    justify-content: space-between;
    border: solid var(--br-s-0-5) var(--primary-500);
    padding: 8px 12px;
}

#message {
    padding: 8px 12px;
    border: solid var(--br-s-0-5) var(--primary-500);
    height: 142px;
    width: 100%;
}

.btn-send {
    background-color: var(--primary-950);
    padding: 8px 20px;
    font-family: var(--ff-secondary);
    font-weight: var(--fw-semibold);
    font-size: var(--fs-6);
    color: var(--secondary-50);
    transition: all .3s ease-in-out;
    border: 0;
    width: 100%;
    line-height: 100%;
}

.btn-send:hover {
    background-color: var(--secondary-500);
    transition: all .3s ease-in-out;
}

/* FOOTER */

footer {
    padding: var(--m-2) var(--m-5); 
    background-color: var(--primary-950);
    position: relative;
    z-index: 20;
}

.footer_content {
    display: flex;
    justify-content: space-between;
    max-width: 1440px;
    align-items: center;
    margin: 0 auto;
}

.logo-konttrast > img {
    width: 62px;
    height: 62px;
}

.footer_rights, .footer_links > a {
    font-family: var(--ff-secondary);
    font-weight: 500;
    font-size: 16px;
    color: var(--secondary-50);
    text-decoration: none;
    line-height: 150%;
}

.footer_links {
    display: flex;
    gap: 24px;
}

.footer_links > a:hover {
    text-decoration: underline;
}

/* POLITICAS */

.legal {
    padding: var(--m-7) var(--m-5);
}

.legal_content {
    display: flex;
    flex-direction: column;
    gap: 36px;
    max-width: 1440px;
    margin: 0 auto;
}

.legal_title {
    padding: 60px 0;
    font-family: var(--ff-primary);
    font-weight: var(--fw-bold);
    font-size: var(--fs-15);
    line-height: 120%;
    color: var(--primary-950);
    text-align: center;
}

.legal_body {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.legal_text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.text-title {
    font-family: var(--ff-secondary);
    font-weight: var(--fw-bold);
    font-size: var(--fs-10);
    line-height: 120%;
    color: var(--primary-950);
}

.text-p {
    font-family: var(--ff-secondary);
    font-weight: var(--fw-regular);
    font-size: var(--fs-7);
    line-height: 150%;
    color: var(--primary-950);
}

.text-p > a {
    text-decoration: none;
    color: var(--primary-500);
    transition: all .3s ease-in-out;
}

.text-p > a:hover {
    text-decoration: underline;
    color: var(--primary-300);
}

/* Estilos para listas en secciones legales */
.legal_text ul {
    margin: 0;
    padding-left: 35px;
    list-style-type: disc;
}

.legal_text ul li {
    margin-bottom: 8px;
}

/* 404 PAGE */

.page-error {
    background-color: var(--secondary-950);
    overflow-x: hidden;
}

.error {
    padding: 180px 80px;
    position: relative;
    overflow: visible;
}

.error > img {
    position: absolute;
    max-width: 940px;
    top: 0;
    left: 120px;
}

.error_content {
    display: flex;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    margin-top: 88px;
    gap: 40px;
    align-items: center;
    overflow: visible;
    position: relative;
}

.error_body {
    display: flex;
    flex-direction: column;
    gap: var(--br-s-4);
    max-width: 50%;
}

.error_title > h2 {
    font-family: var(--ff-primary);
    font-weight: var(--fw-regular);
    font-size: var(--fs-6);
    line-height: 150%;
    color: var(--neutral-white);
}

.error_title > h1 {
    font-family: var(--ff-primary);
    font-weight: var(--fw-black);
    font-size: var(--fs-15);
    line-height: 100%;
    color: var(--neutral-white);
}

.error_text {
    font-family: var(--ff-secondary);
    font-weight: var(--fw-regular);
    font-size: var(--fs-8);
    line-height: 120%;
    color: var(--neutral-white);
}

.link-error {
    max-width: fit-content;
}

.error_img, .error_body {
    flex: 1 1 0;
    width: 50%;
    box-sizing: border-box;
}

.error_img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.error_img img {
    max-width: 100%;
    height: auto;
    display: block;
}

.error-footer {
    margin-bottom: 0;
}