/* =====================================================
   VARIABLES
===================================================== */

:root {

    --background: #08090d;
    --background-secondary: #0d0f14;
    --background-card: #11141b;

    --text: #f2f3f5;
    --text-secondary: #9da3ae;
    --text-muted: #656b76;

    --accent: #7c5cff;
    --accent-light: #9a83ff;
    --accent-dark: #6045d8;

    --border: rgba(255,255,255,.08);

    --radius-small: 9px;
    --radius-medium: 18px;
    --radius-large: 28px;

    --container: 1180px;

    --transition: .3s ease;

}


/* =====================================================
   RESET
===================================================== */

* {

    margin: 0;
    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    background:
        var(--background);

    color:
        var(--text);

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    line-height: 1.6;

    overflow-x: hidden;

}


body.lightbox-open {

    overflow: hidden;

}


a {

    color: inherit;

    text-decoration: none;

}


button {

    font: inherit;

}


img {

    max-width: 100%;

    display: block;

}


/* =====================================================
   CONTAINER
===================================================== */

.section-container {

    width:
        min(
            calc(100% - 48px),
            var(--container)
        );

    margin-inline:
        auto;

}


/* =====================================================
   NAVBAR
===================================================== */

.navbar {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 76px;

    z-index: 1000;

    background:
        rgba(8,9,13,.78);

    border-bottom:
        1px solid var(--border);

    backdrop-filter:
        blur(18px);

    -webkit-backdrop-filter:
        blur(18px);

}


.nav-container {

    width:
        min(
            calc(100% - 48px),
            var(--container)
        );

    height: 100%;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.logo {

    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 18px;

    font-weight: 700;

    letter-spacing: -.03em;

}


.logo-symbol {

    color:
        var(--accent);

}


.nav-links {

    display: flex;

    align-items: center;

    gap: 32px;

    color:
        var(--text-secondary);

    font-size: 13px;

}


.nav-links a {

    position: relative;

    transition:
        var(--transition);

}


.nav-links a:hover,
.nav-links a.active {

    color:
        var(--text);

}


.nav-links a.active::after {

    content: "";

    position: absolute;

    bottom: -9px;
    left: 0;

    width: 100%;
    height: 2px;

    background:
        var(--accent);

}


.nav-button {

    display: flex;

    align-items: center;

    gap: 8px;

    padding:
        10px 17px;

    border:
        1px solid var(--border);

    border-radius:
        var(--radius-small);

    font-size: 12px;

    transition:
        var(--transition);

}


.nav-button:hover {

    background:
        var(--accent);

    border-color:
        var(--accent);

}


/* =====================================================
   HERO
===================================================== */

.project-hero {

    position: relative;

    min-height: 780px;

    display: flex;

    align-items: center;

    overflow: hidden;

    padding-top: 76px;

}


.hero-background {

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 70% 50%,
            rgba(124,92,255,.22),
            transparent 35%
        );

}


.hero-image {

    position: absolute;

    inset: 0;

}


.hero-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    opacity: .42;

    filter:
        saturate(.85)
        contrast(1.05);

}


.hero-overlay {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            90deg,
            rgba(8,9,13,.98) 0%,
            rgba(8,9,13,.88) 35%,
            rgba(8,9,13,.48) 70%,
            rgba(8,9,13,.72) 100%
        ),

        linear-gradient(
            0deg,
            rgba(8,9,13,.9),
            transparent 40%,
            rgba(8,9,13,.45)
        );

}


.hero-content {

    position: relative;

    z-index: 2;

    width:
        min(
            calc(100% - 48px),
            var(--container)
        );

    margin:
        0 auto;

    padding:
        100px 0;

}


.project-logo {

    width: 145px;
    height: 145px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 28px;

    padding: 18px;

    border:
        1px solid rgba(255,255,255,.13);

    border-radius:
        22px;

    background:
        rgba(8,9,13,.45);

    backdrop-filter:
        blur(14px);

    box-shadow:
        0 20px 60px rgba(0,0,0,.3);

}


.project-logo img {

    width: 100%;
    height: 100%;

    object-fit: contain;

}


.hero-label {

    display: flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 17px;

    color:
        var(--accent-light);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .17em;

}


.online-dot {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background:
        var(--accent);

    box-shadow:
        0 0 15px
        rgba(124,92,255,.9);

}


.hero-content h1 {

    font-size:
        clamp(
            60px,
            9vw,
            110px
        );

    line-height: .9;

    letter-spacing: -.07em;

    font-weight: 800;

}


.hero-content h1 span {

    color:
        var(--accent-light);

}


.hero-description {

    max-width: 600px;

    margin-top: 30px;

    color:
        var(--text-secondary);

    font-size: 16px;

    line-height: 1.8;

}


.hero-tags {

    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-top: 25px;

}


.hero-tags span {

    display: flex;

    align-items: center;

    gap: 7px;

    padding:
        7px 11px;

    border:
        1px solid var(--border);

    border-radius: 7px;

    background:
        rgba(255,255,255,.035);

    color:
        var(--text-secondary);

    font-size: 10px;

}


.hero-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 30px;

}


.btn {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    padding:
        13px 19px;

    border-radius: 9px;

    font-size: 13px;

    font-weight: 700;

    transition:
        var(--transition);

}


.btn:hover {

    transform:
        translateY(-3px);

}


.btn-primary {

    background:
        var(--accent);

    color:
        white;

}


.btn-primary:hover {

    background:
        var(--accent-light);

}


/* BOTÓN DE LA WEB DEL SERVIDOR */

.btn-site {

    border:
        1px solid rgba(124,92,255,.45);

    background:
        rgba(124,92,255,.10);

    color:
        var(--accent-light);

}


.btn-site:hover {

    background:
        var(--accent);

    border-color:
        var(--accent);

    color:
        white;

}


.btn-secondary {

    border:
        1px solid var(--border);

    background:
        rgba(255,255,255,.025);

    color:
        var(--text-secondary);

}


.btn-secondary:hover {

    border-color:
        rgba(255,255,255,.2);

    color:
        var(--text);

}


.hero-number {

    position: absolute;

    right: 50px;
    bottom: 45px;

    z-index: 3;

    color:
        rgba(255,255,255,.3);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .2em;

}


/* =====================================================
   SECTION LABEL
===================================================== */

.section-label {

    display: flex;

    align-items: center;

    gap: 12px;

    color:
        var(--text-muted);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .18em;

}


.section-label span:first-child {

    color:
        var(--accent);

}


.section-label div {

    width: 35px;
    height: 1px;

    background:
        var(--border);

}


/* =====================================================
   INTRO
===================================================== */

.project-intro {

    padding:
        125px 0;

}


.intro-grid {

    display: grid;

    grid-template-columns:
        1fr .8fr;

    gap: 100px;

    margin-top: 50px;

}


.intro-grid h2,
.role-grid h2,
.technology-intro h2,
.systems-header h2,
.timeline-header h2,
.gallery-header h2 {

    font-size:
        clamp(
            38px,
            5vw,
            65px
        );

    line-height: 1.04;

    letter-spacing: -.055em;

}


.intro-grid h2 span,
.role-grid h2 span,
.technology-intro h2 span,
.systems-header h2 span,
.timeline-header h2 span,
.gallery-header h2 span {

    color:
        var(--accent-light);

}


.intro-text p {

    margin-bottom: 22px;

    color:
        var(--text-secondary);

    font-size: 15px;

    line-height: 1.9;

}


/* =====================================================
   STATS
===================================================== */

.stats-section {

    border-top:
        1px solid var(--border);

    border-bottom:
        1px solid var(--border);

    background:
        var(--background-secondary);

}


.stats-grid {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

}


.stat {

    min-height: 150px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 25px;

    border-right:
        1px solid var(--border);

}


.stat:first-child {

    border-left:
        1px solid var(--border);

}


.stat-number {

    color:
        var(--text);

    font-size: 24px;

    font-weight: 800;

    letter-spacing: -.04em;

}


.stat-label {

    margin-top: 5px;

    color:
        var(--text-muted);

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: .1em;

}


/* =====================================================
   ROLE
===================================================== */

.role-section {

    padding:
        125px 0;

}


.role-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 100px;

    margin-top: 50px;

}


.role-content > p {

    margin-bottom: 30px;

    color:
        var(--text-secondary);

    font-size: 15px;

}


.role-list {

    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 12px;

}


.role-item {

    display: flex;

    align-items: center;

    gap: 13px;

    padding: 16px;

    border:
        1px solid var(--border);

    border-radius: 11px;

    background:
        rgba(255,255,255,.015);

    opacity: 0;

    transform:
        translateY(20px);

    transition:
        opacity .6s ease,
        transform .6s ease,
        border-color var(--transition);

}


.role-item.visible {

    opacity: 1;

    transform:
        translateY(0);

}


.role-item:hover {

    border-color:
        rgba(124,92,255,.35);

}


.role-icon {

    width: 38px;
    height: 38px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border-radius: 9px;

    background:
        rgba(124,92,255,.1);

    color:
        var(--accent-light);

}


.role-item div {

    display:
        flex;

    flex-direction:
        column;

}


.role-item strong {

    font-size: 12px;

}


.role-item div span {

    margin-top: 2px;

    color:
        var(--text-muted);

    font-size: 10px;

}


/* =====================================================
   TECHNOLOGY
===================================================== */

.technology-section {

    padding:
        125px 0;

    background:
        var(--background-secondary);

    border-top:
        1px solid var(--border);

    border-bottom:
        1px solid var(--border);

}


.technology-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 100px;

    margin-top: 50px;

}


.technology-intro p {

    max-width: 450px;

    margin-top: 25px;

    color:
        var(--text-secondary);

    font-size: 14px;

    line-height: 1.8;

}


.technology-list {

    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 12px;

}


.technology-card {

    display: flex;

    align-items: center;

    gap: 13px;

    padding: 18px;

    border:
        1px solid var(--border);

    border-radius: 12px;

    background:
        rgba(255,255,255,.015);

    opacity: 0;

    transform:
        translateY(20px);

    transition:
        opacity .6s ease,
        transform .6s ease,
        border-color var(--transition);

}


.technology-card.visible {

    opacity: 1;

    transform:
        translateY(0);

}


.technology-card:hover {

    border-color:
        rgba(124,92,255,.35);

}


.technology-icon {

    width: 40px;
    height: 40px;

    display: grid;

    place-items: center;

    border-radius: 9px;

    background:
        rgba(124,92,255,.1);

    color:
        var(--accent-light);

}


.technology-card div:last-child {

    display: flex;

    flex-direction: column;

}


.technology-card strong {

    font-size: 13px;

}


.technology-card span {

    color:
        var(--text-muted);

    font-size: 10px;

}


/* =====================================================
   SYSTEMS
===================================================== */

.systems {

    padding:
        125px 0;

}


.systems-header {

    display: flex;

    align-items: end;

    justify-content: space-between;

    gap: 50px;

    margin-top: 45px;

    margin-bottom: 50px;

}


.systems-header p {

    max-width: 360px;

    color:
        var(--text-muted);

    font-size: 13px;

}


.systems-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 12px;

}


.system-card {

    position: relative;

    min-height: 220px;

    padding: 28px;

    border:
        1px solid var(--border);

    border-radius: 15px;

    background:
        var(--background-card);

    opacity: 0;

    transform:
        translateY(20px);

    transition:
        opacity .6s ease,
        transform .6s ease,
        border-color var(--transition);

}


.system-card.visible {

    opacity: 1;

    transform:
        translateY(0);

}


.system-card:hover {

    border-color:
        rgba(124,92,255,.35);

}


.system-number {

    position: absolute;

    top: 20px;
    right: 22px;

    color:
        rgba(255,255,255,.18);

    font-size: 10px;

    font-weight: 700;

}


.system-card > i {

    color:
        var(--accent-light);

    font-size: 19px;

}


.system-card h3 {

    margin-top: 28px;

    font-size: 17px;

}


.system-card p {

    margin-top: 8px;

    color:
        var(--text-secondary);

    font-size: 12px;

    line-height: 1.7;

}


/* =====================================================
   TIMELINE
===================================================== */

.timeline-section {

    padding:
        125px 0;

    background:
        var(--background-secondary);

    border-top:
        1px solid var(--border);

    border-bottom:
        1px solid var(--border);

}


.timeline-header {

    margin-top: 45px;

    margin-bottom: 65px;

}


.timeline-header p {

    margin-top: 18px;

    color:
        var(--text-muted);

    font-size: 13px;

}


.timeline {

    position: relative;

    max-width: 850px;

    margin:
        0 auto;

}


.timeline::before {

    content: "";

    position: absolute;

    top: 0;
    bottom: 0;
    left: 27px;

    width: 1px;

    background:
        var(--border);

}


.timeline-item {

    position: relative;

    display: grid;

    grid-template-columns:
        55px 1fr;

    gap: 25px;

    margin-bottom: 45px;

    opacity: 0;

    transform:
        translateY(20px);

    transition:
        opacity .6s ease,
        transform .6s ease;

}


.timeline-item.visible {

    opacity: 1;

    transform:
        translateY(0);

}


.timeline-marker {

    position: relative;

    z-index: 2;

    width: 55px;
    height: 55px;

    display: grid;

    place-items: center;

    border:
        1px solid rgba(124,92,255,.35);

    border-radius: 50%;

    background:
        var(--background-secondary);

    color:
        var(--accent-light);

    font-size: 10px;

    font-weight: 700;

}


.timeline-content {

    padding-top: 7px;

}


.timeline-content > span {

    color:
        var(--accent-light);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .15em;

}


.timeline-content h3 {

    margin-top: 7px;

    font-size: 20px;

}


.timeline-content p {

    max-width: 600px;

    margin-top: 8px;

    color:
        var(--text-secondary);

    font-size: 13px;

}


/* =====================================================
   GALLERY
===================================================== */

.gallery-section {

    padding:
        125px 0;

}


.gallery-header {

    display: flex;

    align-items: end;

    justify-content: space-between;

    gap: 30px;

    margin-top: 45px;

    margin-bottom: 45px;

}


.gallery-header p {

    margin-top: 15px;

    color:
        var(--text-muted);

    font-size: 13px;

}


.gallery-count {

    padding:
        8px 11px;

    border:
        1px solid var(--border);

    border-radius: 6px;

    color:
        var(--text-muted);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .12em;

}


.gallery {

    display: grid;

    grid-template-columns:
        repeat(12,1fr);

    grid-auto-rows:
        190px;

    gap: 12px;

}


.gallery-item {

    position: relative;

    overflow: hidden;

    padding: 0;

    border:
        1px solid var(--border);

    border-radius: 13px;

    background:
        var(--background-card);

    cursor: pointer;

}


.gallery-item:nth-child(1) {

    grid-column:
        span 7;

    grid-row:
        span 2;

}


.gallery-item:nth-child(2),
.gallery-item:nth-child(3) {

    grid-column:
        span 5;

}


.gallery-item:nth-child(4),
.gallery-item:nth-child(5),
.gallery-item:nth-child(6) {

    grid-column:
        span 4;

}


.gallery-item:nth-child(7) {

    grid-column:
        span 6;

}


.gallery-item:nth-child(8) {

    grid-column:
        span 6;

}


.gallery-item:nth-child(9) {

    grid-column:
        span 5;

}


.gallery-item:nth-child(10) {

    grid-column:
        span 7;

}


.gallery-item img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .6s ease;

}


.gallery-item:hover img {

    transform:
        scale(1.06);

}


.gallery-overlay {

    position: absolute;

    inset: 0;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    padding: 18px;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.72),
            transparent 50%
        );

    color: white;

    opacity: 0;

    transition:
        opacity var(--transition);

}


.gallery-item:hover .gallery-overlay {

    opacity: 1;

}


.gallery-overlay span {

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .15em;

}


.gallery-overlay i {

    width: 34px;
    height: 34px;

    display: grid;

    place-items: center;

    border:
        1px solid rgba(255,255,255,.2);

    border-radius: 8px;

    background:
        rgba(0,0,0,.3);

}


/* =====================================================
   LIGHTBOX
===================================================== */

.lightbox {

    position: fixed;

    inset: 0;

    z-index: 2000;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 50px;

    background:
        rgba(4,5,8,.96);

    backdrop-filter:
        blur(15px);

    opacity: 0;

    visibility: hidden;

    transition:
        opacity .25s ease,
        visibility .25s ease;

}


.lightbox.active {

    opacity: 1;

    visibility: visible;

}


.lightbox-content {

    width:
        min(
            1200px,
            90vw
        );

    max-height: 90vh;

    display: flex;

    flex-direction: column;

    align-items: center;

}


.lightbox-content img {

    max-width: 100%;

    max-height: 80vh;

    object-fit: contain;

    border-radius: 8px;

    box-shadow:
        0 30px 100px rgba(0,0,0,.5);

}


.lightbox-info {

    width: 100%;

    display: flex;

    justify-content: space-between;

    margin-top: 15px;

    color:
        var(--text-muted);

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: .1em;

}


.lightbox-close,
.lightbox-prev,
.lightbox-next {

    position: fixed;

    z-index: 2001;

    width: 48px;
    height: 48px;

    display: grid;

    place-items: center;

    border:
        1px solid var(--border);

    border-radius: 10px;

    background:
        rgba(255,255,255,.05);

    color: white;

    cursor: pointer;

    transition:
        var(--transition);

}


.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {

    background:
        var(--accent);

    border-color:
        var(--accent);

}


.lightbox-close {

    top: 25px;

    right: 25px;

}


.lightbox-prev {

    left: 25px;

    top: 50%;

    transform:
        translateY(-50%);

}


.lightbox-next {

    right: 25px;

    top: 50%;

    transform:
        translateY(-50%);

}


/* =====================================================
   FINAL
===================================================== */

.final-section {

    padding:
        0 0 125px;

}


.final-box {

    position: relative;

    overflow: hidden;

    padding:
        75px 40px;

    text-align: center;

    border:
        1px solid var(--border);

    border-radius:
        var(--radius-large);

    background:

        radial-gradient(
            circle at 50% 20%,
            rgba(124,92,255,.13),
            transparent 45%
        ),

        var(--background-card);

}


.final-logo {

    width: 90px;
    height: 90px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin:
        0 auto 25px;

}


.final-logo img {

    width: 100%;
    height: 100%;

    object-fit: contain;

}


.final-box > span {

    color:
        var(--accent-light);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .18em;

}


.final-box h2 {

    max-width: 650px;

    margin:
        15px auto 0;

    font-size:
        clamp(
            38px,
            5vw,
            60px
        );

    line-height: 1;

    letter-spacing: -.05em;

}


.final-box h2 span {

    color:
        var(--accent-light);

}


.final-box p {

    max-width: 520px;

    margin:
        20px auto 0;

    color:
        var(--text-secondary);

    font-size: 13px;

}


.final-actions {

    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 30px;

}


/* =====================================================
   FOOTER
===================================================== */

.footer {

    padding-top: 50px;

    border-top:
        1px solid var(--border);

}


.footer-content {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-bottom: 45px;

}


.footer-brand p {

    margin-top: 6px;

    color:
        var(--text-muted);

    font-size: 10px;

}


.footer-links {

    display: flex;

    gap: 25px;

    color:
        var(--text-muted);

    font-size: 11px;

}


.footer-links a:hover {

    color:
        var(--text);

}


.footer-bottom {

    display: flex;

    justify-content: space-between;

    padding:
        20px 0;

    border-top:
        1px solid var(--border);

    color:
        var(--text-muted);

    font-size: 9px;

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {


    .nav-links {

        display: none;

    }


    .intro-grid,
    .role-grid,
    .technology-grid {

        grid-template-columns: 1fr;

        gap: 45px;

    }


    .systems-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .stats-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .stat:nth-child(2) {

        border-right: none;

    }


    .stat:nth-child(3) {

        border-top:
            1px solid var(--border);

    }


    .stat:nth-child(4) {

        border-top:
            1px solid var(--border);

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {


    .section-container,
    .nav-container,
    .hero-content {

        width:
            calc(100% - 32px);

    }


    .navbar {

        height:
            68px;

    }


    .nav-button {

        display: none;

    }


    .project-hero {

        min-height:
            720px;

    }


    .hero-content {

        padding:
            80px 0;

    }


    .project-logo {

        width:
            105px;

        height:
            105px;

        padding:
            13px;

    }


    .hero-content h1 {

        font-size:
            clamp(
                55px,
                17vw,
                80px
            );

    }


    .hero-description {

        font-size:
            13px;

    }


    .hero-number {

        right:
            20px;

        bottom:
            25px;

    }


    .project-intro,
    .role-section,
    .technology-section,
    .systems,
    .timeline-section,
    .gallery-section {

        padding:
            85px 0;

    }


    .stats-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .stat {

        min-height:
            120px;

        padding:
            18px;

    }


    .role-list,
    .technology-list {

        grid-template-columns:
            1fr;

    }


    .systems-header,
    .gallery-header {

        align-items:
            flex-start;

        flex-direction:
            column;

    }


    .systems-grid {

        grid-template-columns:
            1fr;

    }


    .timeline::before {

        left:
            22px;

    }


    .timeline-item {

        grid-template-columns:
            45px 1fr;

        gap:
            18px;

    }


    .timeline-marker {

        width:
            45px;

        height:
            45px;

    }


    .gallery {

        display: grid;

        grid-template-columns:
            1fr 1fr;

        grid-auto-rows:
            160px;

    }


    .gallery-item:nth-child(n) {

        grid-column:
            span 1;

        grid-row:
            span 1;

    }


    .gallery-item:first-child {

        grid-column:
            span 2;

        grid-row:
            span 2;

    }


    .lightbox {

        padding:
            20px;

    }


    .lightbox-prev {

        left:
            10px;

    }


    .lightbox-next {

        right:
            10px;

    }


    .lightbox-close {

        top:
            10px;

        right:
            10px;

    }


    .lightbox-prev,
    .lightbox-next {

        width:
            40px;

        height:
            40px;

    }


    .footer-content {

        align-items:
            flex-start;

        flex-direction:
            column;

        gap:
            30px;

    }


    .footer-links {

        flex-wrap:
            wrap;

    }


    .footer-bottom {

        flex-direction:
            column;

        gap:
            8px;

    }

}


/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {


    *,
    *::before,
    *::after {

        animation-duration:
            .01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            .01ms !important;

    }

}