/*Resetted labels*/
*, p {hyphens: none !important;}
a,
a:hover { text-decoration: none; }
a img   { border: none; outline: none; }
input   { outline: none; }
img     { max-width: 100%; }
p{hyphens: none !important;}
figure{
	margin: 0;
}


/* Resets & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    background-color: #101010;
    color: #ffffff;
    font-family: "Inter", sans-serif;
    margin: 0;
    padding: 0;
}

/* Sections height: 100vh for 1-5 */
.main-full {
    width: 100%;
    clear: both;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
    box-sizing: border-box;
}

.wrapper-main {
    max-width: 1280px;
    width: 100%;
    padding: 0 20px;
}

.center {
    margin: 0 auto;
}

.clear-fix::after {
    content: "";
    clear: both;
    display: block;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.layout-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
    position: relative;
    z-index: 3;
}

/* Side Track & Progress Line Animation */
.side-track {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    min-width: 70px;

    .num {
        color: #00AAFF;
        font-size: 14px;
        font-weight: 400;
        margin-bottom: 2px;
        font-family: 'Space Mono', monospace;
    }

    /* INTRO, CREATIVIDAD, etc. en Bebas Neue con letter-spacing 2px */
    .lbl {
        color: #ffffff;
        font-size: 13px;
        font-weight: 400;
        letter-spacing: 2px;
        text-transform: uppercase;
        font-family: 'Bebas Neue', sans-serif;
    }

    .line {
        width: 2px;
        height: 100px;
        background: rgba(0, 136, 255, 0.2);
        position: relative;
        margin: 12px 0 12px 6px;

        &::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0%;
            background: #0088ff;
            box-shadow: 0 0 10px rgba(0, 136, 255, 0.8);
            transition: height 3.8s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .dot {
            position: absolute;
            top: 0%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 8px;
            height: 8px;
            background: #0088ff;
            border-radius: 50%;
            box-shadow: 0 0 12px #0088ff, 0 0 20px #0088ff;
            transition: top 3.8s cubic-bezier(0.25, 1, 0.5, 1);
            z-index: 2;
        }
    }

    .range {
        color: #556677;
        font-size: 10px;
        letter-spacing: 1px;
        font-family: 'Space Mono', monospace;
    }

    &.active {
        .line {
            &::before {
                height: 100%;
            }

            .dot {
                top: 100%;
            }
        }
    }
}

/* Typography & Titles */
.sec-cnt {
    max-width: 500px;
    min-width: 450px;
    &.full-width {
        max-width: 100%;
    }

    .tag {
        color: #6B7A99;
        font-size: 12px;
        font-weight: 400;
        letter-spacing: 2px;
        text-transform: uppercase;
        display: block;
        margin-bottom: 18px;
        font-family: 'Space Mono', monospace;

        .blue {
            color: #0088ff;
            margin-right: 5px;
        }
    }

    .title {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 74px;
        font-weight: 400;
        line-height: 60.64px;
        letter-spacing: 2px;
        margin: 0 0 20px 0;
        text-transform: uppercase;

        &.inline-title {
            white-space: nowrap;
            margin: 0;
        }

        /* Glow Exact Specs from Figma (4 Multilayered Drop Shadows) */
        .glow {
            color: #00AAFF;
            text-shadow: 
                0 0 15px rgba(0, 170, 255, 0.90),
                0 0 25px rgba(0, 85, 255, 0.70),
                0 0 50px rgba(0, 85, 255, 0.60),
                0 0 100px rgba(0, 85, 255, 0.30);
        }
    }

    .desc {
        font-family: "Inter", sans-serif;
        font-weight: 300;
        // color: #94a3b8;
        color: #fff;
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 30px;
    }
}

.numbers {
    color: #00AAFF;
    font-size: 14px;
    font-weight: 400;
    display: inline-block;
    vertical-align: top;
}
.card-left{
    margin-left: 0;
    margin-right: auto;
}
.sec-dev .sec-cnt{
    max-width: 420px;
    min-width: 380px;
}
/* ==========================================================================
   BUTTONS & PILLS
   ========================================================================== */
.btn-offmap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    font-weight: 400; /* Sin negrilla */
    letter-spacing: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    outline: none;
    line-height: 1;
    box-sizing: border-box;
    text-transform: uppercase;

    /* Landing Solid Blue Button */
    &.btn-solid {
        background: #0055ff;
        color: #ffffff !important;
        padding: 14px 34px;
        border-radius: 30px;
        box-shadow: 0 0 20px rgba(0, 85, 255, 0.6);

        &:hover {
            background: #0044cc;
            box-shadow: 0 0 32px rgba(0, 85, 255, 0.95);
            transform: translateY(-1px);
        }
    }

    /* Modal Outline Button */
    &.btn-outline {
        background: #061844;
        color: #ffffff !important;
        padding: 16px 38px;
        border-radius: 8px;
        border: 1.5px solid #0066ff;
        box-shadow: 0 0 16px rgba(0, 102, 255, 0.45), inset 0 0 12px rgba(0, 102, 255, 0.15);

        &:hover {
            background: #071936;
            border-color: #3388ff;
            box-shadow: 0 0 28px rgba(0, 102, 255, 0.85), inset 0 0 18px rgba(0, 102, 255, 0.25);
            transform: translateY(-1px);
        }
    }
}

.btn-back {
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    font-family: 'Space Mono', monospace;
    cursor: pointer;
    padding: 10px 0;
    transition: color 0.3s ease;

    &:hover {
        color: #0088ff;
    }
}

.pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 30px;

    .pill {
        font-family: 'Space Mono', monospace;
        letter-spacing: 1.5px;
        border: 1px solid rgba(0, 136, 255, 0.7);
        background: rgba(0, 136, 255, 0.05);
        // color: #6B7A99;
        color: #fff;
        padding: 6px 16px;
        border-radius: 20px;
        font-size: 10px;
        font-weight: 400;
    }
}
.main-estrategia{
    .sec-cnt{
        max-width: 430px;
    }
}

/* HEADER WITH ACTIVE STATE */
.hdr {
    background: linear-gradient(to bottom, #101010 10%, transparent 100%);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 20px 0;
    // background: #101010;
    // backdrop-filter: blur(8px);

    .logo img {
        max-width: 160px;
        display: block;
    }

    .nav {
        ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            gap: 35px;
        }

        a {
            color: #ffffff;
            font-size: 12px;
            letter-spacing: 2px;
            font-weight: 400; /* Menu Space Mono weight 400 */
            font-family: 'Space Mono', monospace;
            transition: all 0.3s ease;
            position: relative;

            &:hover,
            &.active {
                color: #0088ff;
                text-shadow: 0 0 12px rgba(0, 136, 255, 0.8), 0 0 20px rgba(0, 136, 255, 0.4);

                &::after {
                    content: "";
                    position: absolute;
                    bottom: -6px;
                    left: 0;
                    width: 100%;
                    height: 2px;
                    background: #0088ff;
                    box-shadow: 0 0 8px #0088ff;
                    border-radius: 2px;
                }
            }
        }
    }
}

/* SECTION 1 */
.sec-intro {
    .side-scroll {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;

        .scroll-txt {
            writing-mode: vertical-rl;
            color: #fff;
            font-size: 9px;
            letter-spacing: 3px;
            font-weight: 400;
            font-family: 'Space Mono', monospace;
        }

        .power-icon {
            width: 22px;
            height: 22px;
            border: 2px solid #ffffff;
            border-radius: 50%;
            box-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
        }
    }
}
.capa-gradient {
    background: linear-gradient(180deg, transparent 0%, #101010 50%, transparent 100%);
    // background: linear-gradient(180deg, transparent 0%, #101010 35%, #101010 65%, transparent 100%);
    width: 100%;
    position: absolute;
    height: 150px;
    left: 0;
    right: 0;
    bottom: -75px;
    z-index: 9;
    
}

/* SECTION 2 */
.sec-creativity {
    // background: url('../images/bg-section-content.png') no-repeat center center;
    // background-size: cover;
    // background-attachment: fixed;
    .circle-showcase {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        position: relative;

        .circle-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;

            &.item-sm .sphere {
                width: 210px;
                height: 210px;
            }

            &.item-lg .sphere {
                width: 280px;
                height: 280px;
                z-index: 2;
            }
        }

        .sphere {
            border-radius: 50%;
            background: radial-gradient(circle at 30% 30%, #081b33 0%, #020813 70%);
            border: 1.5px solid #0055ff;
            box-shadow: 0 0 30px rgba(0, 85, 255, 0.35), inset 0 0 25px rgba(0, 85, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;

            &-bg {
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
            }
        }
        .sphere-one{
            left: 55px;
            top: -80px;
            position: relative;
        }
        .sphere-cnt {
            display: flex;
            flex-direction: column;
            align-items: center;

            .stat-val {
                font-family: 'Bebas Neue', sans-serif;
                font-size: 38px;
                font-weight: 400;
                color: #0088ff;
                text-shadow: 0 0 15px rgba(0, 136, 255, 0.7);
                line-height: 1;
            }

            .stat-lbl {
                font-size: 10px;
                color: #ffffff;
                letter-spacing: 2px;
                margin: 6px 0 2px 0;
                font-weight: 400;
                font-family: 'Space Mono', monospace;
            }

            .stat-sub {
                font-size: 9px;
                color: #0088ff;
                letter-spacing: 1px;
                font-weight: 400;
                font-family: 'Space Mono', monospace;
            }
        }

        .circle-cap {
            margin-top: 18px;
            font-size: 10px;
            color: #B4BBCB;
            letter-spacing: 2px;
            font-weight: 400;
            text-transform: uppercase;
            font-family: 'Space Mono', monospace;
        }
    }
}

/* SECTION 3 */
.sec-dev {
    .dev-stage {
        position: relative;
        width: 567px;
        height: 540px;
        right: -50px;
        .car-fig {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            margin: 0;
            z-index: 2;
            width: 530px;

            img {
                // max-height: 440px;
                display: block;
                // filter: drop-shadow(0 0 25px rgba(0, 85, 255, 0.35));
            }
        }

        .dev-box {
            position: absolute;
            z-index: 3;
            max-width: 170px;

            h4 {
                display: block;
                color: #00AAFF;
                font-size: 12px;
                font-weight: 400;
                margin: 0 6px 0 0;
                font-family: 'Space Mono', monospace;
            }

            h5 {
                display: inline-block;
                color: #6B7A99;
                font-size: 12px;
                font-weight: 400;
                letter-spacing: 1px;
                margin: 0;
                text-transform: uppercase;
                font-family: 'Space Mono', monospace;
            }

            p {
                color: #94a3b8;
                font-size: 11px;
                line-height: 1.4;
                margin: 5px 0 8px 0;
                font-family: 'Inter', sans-serif;
                text-align: left;
            }

            hr {
                border: none;
                height: 1px;
                background: #0055FF;
                margin: 10px 0;
                opacity: 1;
                max-width: 40px;
            }

            figure {
                margin: 0;

                img {
                    max-width: 100%;
                    display: block;
                    // opacity: 0.85;
                }
            }

            &.box-1 { top: -75px; left: 198px;  text-align: left; 
                figure{
                    max-width: 155px;
                    margin: 0 auto;
                }
            }
            &.box-2 { top: 93px; left: -104px; text-align: left; 
                figure{
                    max-width: 130px;
                    margin: 0 auto;
                }
            }
            &.box-3 { top: 84px; right: -135px; text-align: left; 
                
                
            }
            &.box-4 { bottom: 0; left: -88px; text-align: left; 
                figure{
                    max-width: 125px;                    
                }
            }
            &.box-5 { bottom: 4px; right: -131px; text-align: left; 
                figure{
                    max-width: 130px;
                }
            }
            &.box-6 { 
                max-width: 400px;
                bottom: -40px; right: 47px; text-align: left; 
                figure{
                    float: left;
                    max-width: 120px;
                }
                .details{
                    float: left;
                    margin-left: 15px;
                }
            }
        }
    }
}

/* SECTION 4 */
.sec-strat {
    .strat-stage {
        position: relative;
        width: 680px;
        height: 520px;

        .strat-orb {
            position: absolute;
            top: 40%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 290px;
            // height: 210px;
            // border-radius: 50%;
            // background: radial-gradient(circle, #071933 0%, #010612 80%);
            // border: 2px solid rgba(0, 136, 255, 0.6);
            // box-shadow: 0 0 35px rgba(0, 136, 255, 0.4), inset 0 0 20px rgba(0, 136, 255, 0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;

            .orb-logo img {
                // width: 55px;
                // display: block;
                // filter: drop-shadow(0 0 15px #0088ff);
            }
        }

        .strat-box {
            position: absolute;
            z-index: 3;
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 20px;
            background: rgba(6, 18, 38, 0.85);
            border: 1px solid rgba(0, 136, 255, 0.35);
            border-radius: 12px;
            box-shadow: 0 0 12px rgba(0, 85, 255, 0.15);
            transition: all 0.3s ease;
            cursor: pointer;
            min-width: 170px;
            span {
                color: #ffffff;
                font-size: 11px;
                font-weight: 400;
                letter-spacing: 1px;
                text-transform: uppercase;
                white-space: nowrap;
                font-family: 'Space Mono', monospace;
            }

            .ico {
                margin: 0;
                width: 27px;
                height: 27px;
                img {
                    width: 100%;
                    height: 100%;
                    display: block;
                }
            }

            &:hover {
                border-color: #0088ff;
                box-shadow: 0 0 25px rgba(0, 136, 255, 0.7), inset 0 0 12px rgba(0, 136, 255, 0.3);
                transform: translateY(-3px);
            }

            &.box-1 { top: 45px; left: -40px; }
            &.box-2 { top: 180px; left: -40px; }
            &.box-3 { top: 310px; left: -40px; }
            &.box-4 { top: 45px; right: -40px; }
            &.box-5 { top: 180px; right: -40px; }
            &.box-6 { top: 310px; right: -40px; }
        }

        .strat-car {
            position: absolute;
            bottom: -245px;
            left: 50%;
            transform: translateX(-50%);
            margin: 0;
            z-index: 3;

            img {
                max-width: 180px;
                display: block;
                filter: drop-shadow(0 -10px 20px rgba(0, 85, 255, 0.3));
            }
        }
    }
}
.text-small{
    font-size: 55px;
}

/* SECTION 5: NUESTRO TRABAJO / PROYECTOS */
.sec-work {
    .work-hdr {
        display: flex;
        align-items: center;
        gap: 40px;
        margin-bottom: 40px;
    }

    .swiper-projects {
        width: 100%;
        padding-bottom: 55px;

        .swiper-slide {
            height: auto;

            &:nth-child(odd) .proj-box {
                background: linear-gradient(180deg, #0a2d5e 0%, #020d21 100%);
            }

            &:nth-child(even) .proj-box {
                background: linear-gradient(180deg, #051a3a 0%, #010612 100%);
            }
        }

        .swiper-pagination-bullet {
            background: #1e293b;
            opacity: 1;
            width: 10px;
            height: 10px;
            transition: all 0.3s ease;

            &-active {
                background: #0088ff;
                box-shadow: 0 0 12px #0088ff;
                width: 28px;
                border-radius: 6px;
            }
        }
    }

    .proj-box {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 290px;
        border: 1px solid rgba(0, 136, 255, 0.3);
        border-radius: 5px;
        overflow: hidden;
        transition: all 0.3s ease;
        cursor: pointer;
        margin-top: 30px;
        &:hover {
            border-color: #0088ff;
            box-shadow: 0 0 25px rgba(0, 136, 255, 0.5);
            transform: translateY(-5px);

            .proj-thumb h3 {
                color: #0088ff;
                text-shadow: 0 0 15px rgba(0, 136, 255, 0.8);
            }
        }

        .proj-thumb {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 25px;
            height: 100%;

            h3 {
                font-family: 'Bebas Neue', sans-serif;
                color: #0055ff;
                font-size: 28px;
                letter-spacing: 1.5px;
                text-align: center;
                margin: 0;
                transition: all 0.3s ease;
                text-transform: uppercase;
            }
        }

        .proj-ftr {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 18px;
            background: #101010;
            border-top: 1px solid rgba(0, 136, 255, 0.2);

            .stat {
                background: url('../images/view.png') no-repeat center left;
                padding-left: 25px;
                background-size: 14px;
                color: #6B7A99;
                font-size: 12px;
                font-weight: 400;
                letter-spacing: 1px;
                font-family: 'Space Mono', monospace;
            }

            .cat {
                color: #00AAFF;
                font-size: 9px;
                font-weight: 400;
                letter-spacing: 1.5px;
                text-transform: uppercase;
                font-family: 'Space Mono', monospace;
            }
        }
    }
}

/* FOOTER / SECTION 6 */
.ftr {
    background: linear-gradient(180deg, #101010 0%, #101010 50%, #101138 100%);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(10, 10, 10, 15);
    position: relative;
    .wrapper-main{
        position: relative;
        z-index: 3;
    }
    .ftr-top {
        align-items: flex-start;
    }

    .ftr-left {
        display: flex;
        align-items: flex-start;
        gap: 30px;

        .sec-cnt .title {
            font-size: 74px;
            margin-bottom: 30px;
        }
    }

    .ftr-right {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        text-align: right;

        .ftr-logo img {
            max-width: 220px;
            display: block;
            filter: drop-shadow(0 0 15px rgba(0, 136, 255, 0.6));
        }

        .ftr-tagline {
            color: #475569;
            font-size: 10px;
            letter-spacing: 2.5px;
            font-weight: 400;
            margin: 18px 0 25px 0;
            text-transform: uppercase;
            font-family: 'Space Mono', monospace;
        }

        .socials {
            display: flex;
            gap: 12px;

            .social-ico {
                width: 34px;
                height: 34px;
                border-radius: 50%;
                border: 1px solid rgba(255, 255, 255, 0.15);
                display: flex;
                align-items: center;
                justify-content: center;
                color: #ffffff;
                transition: all 0.3s ease;

                &:hover {
                    border-color: #0088ff;
                    color: #0088ff;
                    box-shadow: 0 0 12px rgba(0, 136, 255, 0.6);
                    transform: translateY(-3px);
                }
            }
        }
    }

    .ftr-btm {
        margin-top: 90px;
        padding-top: 25px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        color: #B0BBD0;
        font-size: 10px;
        font-weight: 400;
        letter-spacing: 1.5px;
        font-family: 'Space Mono', monospace;
    }
}





.hero-fade-left {
  animation: heroFadeLeft 1s ease forwards;
  animation-delay: 300ms;
  opacity: 0;
}
.fade-left {
  animation: heroFadeLeft 1s ease forwards;
  animation-delay: 900ms;
  opacity: 0;
}
@keyframes heroFadeLeft {
  from {
    opacity: 0;
    transform: translate3d(100px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}






/* ==========================================================================
   MULTI-STEP MODAL STYLES (550px Max-Width)
   ========================================================================== */
.mdl-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(2, 6, 12, 0.6);
    backdrop-filter: blur(12px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;

    &.active {
        opacity: 1;
        visibility: visible;

        .mdl-box {
            transform: scale(1);
        }
    }
}
figure.img-galaxy {
    max-width: 200px;
    margin-top: -10px;
}
figure.img-about {
    max-width: 210px;    
}
.mdl-box {
    width: 100%;
    max-width: 550px;
    background: #101010;
    border: 1px solid rgba(0, 136, 255, 0.35);
    border-radius: 16px;
    padding: 35px;
    position: relative;
    box-shadow: 0 0 45px rgba(0, 136, 255, 0.25);
    transform: scale(0.92);
    transition: transform 0.35s ease;
}

.mdl-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: transparent;
    border: none;
    outline: none;
    color: #B4BBCB;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10;
    padding: 0;

    &:hover {
        color: #0088ff;
    }
}

.mdl-hdr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;

    .mdl-logo img {
        max-width: 130px;
        display: block;
    }

    .mdl-progress-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;

        .mdl-step-txt {
            color: #ffffff;
            font-size: 15px;
            font-weight: 400;
            letter-spacing: 1.5px;
            text-align: center;
            font-family: 'Bebas Neue', sans-serif;
        }

        .mdl-bullets {
            display: flex;
            gap: 4px;

            .seg {
                width: 16px;
                height: 3px;
                background: #1e293b;
                border-radius: 2px;
                transition: all 0.3s ease;

                &.active {
                    background: #0088ff;
                    box-shadow: 0 0 10px #0088ff;
                }
            }
        }
    }
}

.mdl-slide-cnt {
    padding: 10px 0 5px;

    .step-gfx {
        margin: 0 auto 20px;
        text-align: center;

        img {
            max-width: 140px;
            display: inline-block;            
        }
    }

    .step-hdr-inline {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 20px;

        .step-icon-badge {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            border: 1px solid rgba(0, 136, 255, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0088ff;
            font-size: 16px;
            flex-shrink: 0;
            background: rgba(0, 136, 255, 0.05);
        }
    }

    .step-title {
        font-family: 'Bebas Neue', sans-serif;
        color: #ffffff;
        font-size: 38px;
        line-height: 43px;
        letter-spacing: 1.5px;
        margin: 0 0 8px 0;
        text-transform: uppercase;

        .glow {
            color: #00AAFF;
            text-shadow: 
                0 0 15px rgba(0, 170, 255, 0.90),
                0 0 25px rgba(0, 85, 255, 0.70),
                0 0 50px rgba(0, 85, 255, 0.60),
                0 0 100px rgba(0, 85, 255, 0.30);
        }
    }

    .step-desc {
        color: #B4BBCB;
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 20px;
        font-family: 'Inter', sans-serif;
    }
}

.field-grp {
    margin-bottom: 20px;
    position: relative;

    label {
        display: block;
        color: #B4BBCB;
        font-size: 12px;
        font-weight: 400;
        letter-spacing: 1.5px;
        margin-bottom: 8px;
        text-transform: uppercase;
        font-family: 'Space Mono', monospace;
    }

    .input-ico-wrap {
        position: relative;

        .input-ico {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #0088ff;
            font-size: 16px;
        }
    }

    .form-input {
        width: 100%;
        background: #02060e;
        // background: rgba(7, 10, 20, 0.7);
        border: 1px solid rgba(0, 136, 255, 0.6);
        border-radius: 8px;
        padding: 14px 16px;
        color: #ffffff;
        font-size: 13px;
        font-family: 'Inter', sans-serif;
        outline: none;
        transition: all 0.3s ease;

        &::placeholder {
            color: #475569;
        }

        &:focus {
            border-color: #0088ff;
            box-shadow: 0 0 15px rgba(0, 136, 255, 0.5);
            background: #040a16;
        }
    }

    .form-textarea {
        resize: none;
    }

    .char-count {
        display: block;
        text-align: right;
        color: #475569;
        font-size: 10px;
        margin-top: 6px;
        font-family: 'Space Mono', monospace;
    }
}

.opt-box {
    background: #030812;
    border: 1px solid rgba(0, 136, 255, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;

    input[type="radio"],
    input[type="checkbox"] {
        display: none;
    }

    &:hover,
    &.selected {
        border-color: #0088ff;
        background: rgba(0, 136, 255, 0.08);
        box-shadow: 0 0 15px rgba(0, 136, 255, 0.3);
    }
}

.orbit-choices {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;

    .choice-node {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 18px;

        .ico {
            color: #0088ff;
            font-size: 16px;
        }

        span {
            color: #ffffff;
            font-size: 11px;
            font-weight: 400;
            letter-spacing: 1px;
            font-family: 'Space Mono', monospace;
        }
    }
}

.cat-tag {
    color: #0088ff;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 15px;
    font-family: 'Space Mono', monospace;
}

.grid-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 25px;

    .opt-box {
        padding: 14px 12px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 85px;

        .box-circle {
            position: absolute;
            top: 10px;
            right: 10px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 1px solid rgba(0, 136, 255, 0.4);
            transition: all 0.3s ease;
        }

        &.selected .box-circle {
            background: #0088ff;
            border-color: #0088ff;
            box-shadow: 0 0 8px #0088ff;
        }

        .srv-ico {
            color: #0088ff;
            margin-bottom: 6px;
        }

        .title {
            color: #ffffff;
            font-size: 11px;
            font-weight: 600;
            font-family: 'Inter', sans-serif;
        }

        .sub {
            color: #ffffff;
            font-size: 10px;
            transition: color 0.3s ease;
            font-family: 'Inter', sans-serif;
        }

        &.selected .sub {
            color: #0088ff;
        }
    }
}

.split-budget {
    display: flex;
    gap: 20px 50px;
    align-items: center;
    margin-bottom: 25px;

    .budget-list {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 8px;

        .budget-row {
            padding: 10px 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;

            span {
                color: #ffffff;
                font-size: 11px;
                font-weight: 400;
                font-family: 'Space Mono', monospace;
            }

            .radio-dot {
                width: 14px;
                height: 14px;
                border-radius: 50%;
                border: 1px solid rgba(0, 136, 255, 0.4);
                position: relative;

                &::after {
                    content: "";
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                    width: 6px;
                    height: 6px;
                    background: #0088ff;
                    border-radius: 50%;
                    opacity: 0;
                }
            }

            &.selected .radio-dot::after {
                opacity: 1;
            }
        }
    }

    .budget-cylinder {
        width: 130px;
        height: 130px;
        border-radius: 50%;
        background: radial-gradient(circle, #082142 0%, #020712 80%);
        border: 1px solid #0088ff;
        box-shadow: 0 0 20px rgba(0, 136, 255, 0.4);
        display: flex;
        align-items: center;
        justify-content: center;

        .euro-orb {
            font-size: 36px;
            font-weight: 900;
            color: #0088ff;
            text-shadow: 0 0 15px #0088ff;
            font-family: 'Inter', sans-serif;
        }
    }
}

.schedule-grid {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;

    .sched-left {
        width: 150px;

        .sched-panel {
            background: #030812;
            border: 1px solid rgba(0, 136, 255, 0.2);
            border-radius: 8px;
            padding: 12px;

            &.mt {
                margin-top: 10px;
            }

            .lbl-sm {
                font-size: 8.5px;
                color: #B4BBCB;
                font-weight: 400;
                display: block;
                margin-bottom: 8px;
                font-family: 'Space Mono', monospace;
            }

            .radio-line {
                display: flex;
                align-items: center;
                gap: 8px;
                padding: 6px 8px;
                margin-bottom: 4px;

                span {
                    font-size: 10px;
                    color: #ffffff;
                    font-family: 'Inter', sans-serif;
                }

                .radio-dot {
                    width: 10px;
                    height: 10px;
                    border-radius: 50%;
                    border: 1px solid #0088ff;
                }

                &.selected .radio-dot {
                    background: #0088ff;
                }
            }

            .sess-time {
                font-size: 11px;
                color: #0088ff;
                font-weight: 400;
                margin: 0 0 2px 0;
                font-family: 'Space Mono', monospace;
            }

            .sess-desc {
                font-size: 9px;
                color: #ffffff;
                margin: 0;
                font-family: 'Inter', sans-serif;
            }
        }
    }

    .calendar-box {
        flex: 1;
        background: #030812;
        border: 1px solid rgba(0, 136, 255, 0.25);
        border-radius: 8px;
        padding: 14px;

        .cal-hdr {
            display: flex;
            align-items: center;
            justify-content: space-between;
            color: #ffffff;
            font-size: 11px;
            font-weight: 400;
            margin-bottom: 12px;
            font-family: 'Space Mono', monospace;
        }

        .cal-weekdays {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            text-align: center;
            color: #475569;
            font-size: 8px;
            font-weight: 400;
            margin-bottom: 8px;
            font-family: 'Space Mono', monospace;
        }

        .cal-days {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 4px;
            text-align: center;
            margin-bottom: 12px;
            font-family: 'Space Mono', monospace;

            span {
                font-size: 10px;
                color: #ffffff;
                padding: 4px 0;
                border-radius: 4px;
                cursor: pointer;

                &.prev, &.next {
                    color: #1e293b;
                    cursor: default;
                }

                &.day:hover {
                    background: rgba(0, 136, 255, 0.2);
                }

                &.day.active {
                    background: #0088ff;
                    box-shadow: 0 0 10px #0088ff;
                    font-weight: 700;
                }
            }
        }

        .cal-times {
            border-top: 1px solid rgba(0, 136, 255, 0.15);
            padding-top: 10px;

            .lbl-sm {
                font-size: 8.5px;
                color: #B4BBCB;
                font-weight: 400;
                display: block;
                margin-bottom: 8px;
                font-family: 'Space Mono', monospace;
            }

            .time-pills {
                display: flex;
                flex-wrap: wrap;
                gap: 6px;

                .time-pill {
                    font-size: 8.5px;
                    padding: 4px 8px;
                    border: 1px solid rgba(0, 136, 255, 0.3);
                    border-radius: 4px;
                    color: #ffffff;
                    cursor: pointer;
                    transition: all 0.3s ease;
                    font-family: 'Space Mono', monospace;

                    &.selected, &:hover {
                        background: #0055ff;
                        border-color: #0055ff;
                        box-shadow: 0 0 8px rgba(0, 85, 255, 0.8);
                    }
                }
            }
        }
    }
}

.mdl-actions {
    display: flex;
    align-items: center;

    &.single {
        justify-content: flex-end;

        .btn-offmap {
            width: 100%;
            text-align: center;
        }
    }

    &.split {
        justify-content: space-between;
    }
}

.text-center {
    text-align: center;
}
.sec-intro{
    

}
video {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/*END Resetted labels*/

// body {
//     font-family: "Montserrat", sans-serif;
//     color: #007cbb;
//     font-size: 16px;
//     &:after{
//         width: 100%;
//         height: 100vh;
//         left: -100%;
//         margin: 0 auto;
//         top: 0;
//         z-index: 8;
//         content: "";
//         position: fixed;
//         transition: all 0.4s ease-out;
//         background: rgba(250, 209, 31, 1);        
//     }
//     &.open-nav-xs{
//         overflow: hidden;
//         header{            
//             border-bottom-color: transparent;
//             nav{
//                 left: 0;
//             }
//         }
//         &:after{
//             left: 0;
//         }
//     }
// }
// #nav-toogle {
//     width: 30px;
//     height: 30px;
//     position: absolute;    
//     transform: rotate(0deg);    
//     transition: 0.5s ease-in-out;
//     cursor: pointer;
//     z-index: 99;
//     border-radius: 50%;
//     border: 0 solid transparent;
//     display: inline-block;
//     vertical-align: top;
//     right: 15px;
//     top: 33px;
//     display: none;
// }
// #nav-toogle span {
//     display: block;
//     position: absolute;
//     height: 3px;
//     width: 100%;
//     background: #15cfec;
//     border-radius: 9px;
//     opacity: 1;
//     left: 0%;    
//     transform: rotate(0deg);    
//     transition: 0.25s ease-in-out;
//     z-index: 99;
// }
// #nav-toogle span:nth-child(1) {
//     top: 11px;
// }
// #nav-toogle span:nth-child(2),
// #nav-toogle span:nth-child(3) {
//     top: 30px;
// }
// #nav-toogle span:nth-child(4) {
//     top: 21px;
// }
// #nav-toogle.open span:nth-child(1) {
//     left: 50%;
//     top: 21px;
//     width: 0%;
// }
// #nav-toogle.open span:nth-child(2) {    
//     transform: rotate(45deg);
//     top: 21px;
// }
// #nav-toogle.open span {
//     background: #fff !important;    
// }
// #nav-toogle.open span:nth-child(3) {    
//     transform: rotate(-45deg);
//     top: 21px;
// }
// #nav-toogle.open span:nth-child(4) {
//     left: 50%;
//     top: 21px;
//     width: 0%;
// }
// header{
//     background-color: #fff;
//     text-align: center;
//     padding: 40px 0 40px 0;
//     figure{
//         max-width: 250px;
//         float: left; 
//         margin-right: 50px;       
//     }
// }
// .menu {           
//     display: inline-block;
//     vertical-align: top;
//   }

//   .redes{
//     float: right;
//     margin-top: 50px;
//     ul{
//         list-style: none;
//         padding: 0;
//         margin: 0;
//         li{
//             display: inline-block;
//             vertical-align: top;
//             max-width: 30px;
//             margin-right: 10px;
//             transition: all 0.3s ease;
//             &:hover{                
//                 transform: translateY(-5px);
//             }
//             a{
//                 display: block;

//             }
//             &:last-child{
//                 margin-right: 0;
//             }
//         }
//     }
//   }
  
//   .menu ul {
//     list-style: none;
//     margin: 0;
//     padding: 0;
//     display: flex;
//     align-items: center;
//     gap: 15px;
//   }
  
//   .menu li {
//     position: relative;
//     display: flex;
//     align-items: center;
//     font-family: 'Gotham-Black';
//   }
  
//   .menu li:not(:first-child)::before {
//     content: "|";
//     color: #00c0eb;
//     font-family: arial;
//     margin-right: 15px;
//   }
  
// .menu a {
//     color: #000;    
//     text-decoration: none;
//     font-size: 16px;
//     &:hover{
//         color: #00c0eb;
//     }
// }

// .banner-home{
//     width: 100%;
//     clear: both;
//     img{
//         width: 100%;
//     }
// }

// .clear-fix {
//     &::after {
//         content: "";
//         clear: both;
//         width: 100%;
//         display: block;
//     }
// }




/*Default styles*/
.relative       { position: relative; }
.full			{ clear: both;width: 100%;}
.clr            { clear: both; float: none; }
.center         { margin: auto; }
.inline         { display: inline-block; vertical-align: top; }
.inline-bottom  { display: inline-block; vertical-align: bottom; }
.left           { float: left; }
.right          { float: right; }
.wrapper-main   { max-width: 1280px; }
/*END Default styles*/
