@charset "UTF-8";

/* ==== RESPONSIVENESS ==== */
@import url('responsiveness/max-600.css');
@import url('responsiveness/max-1024.css');
@import url('responsiveness/max-1920.css');
@import url('responsiveness/max-3440.css');
@import url('responsiveness/mobile/max-430.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
    font-family: 'Figtree', sans-serif;
}

body {
    background: #eeeeee;
    overflow: hidden;
    overflow-y: scroll;
}

header {
    background: transparent;
    transition: background 0.3s ease, color 0.3s ease;
    /* border-bottom: 1px solid #72727275; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 50px 10px 50px;
    /* border-bottom: 1px solid #eeeeee; */
    margin: 0;
    position: fixed;
    top: 0;
    z-index: 145;
    width: 100%;
    box-sizing: border-box;
    .logo {
        transition: all 1s;
        img {
            height: 50px;
            object-fit: cover;
            filter: invert(1);
            transform: scale(1.2);
        }
    }
    .activeOptions {
        display: none;
    }
    .options {
        transition: all .5s;
        display: flex;
        align-items: center;
        gap: 20px;
        padding: 15px 40px 15px 40px;
        border-radius: 10px;
        position: relative;
        .option {
            color: var(--secondary-color);
            font-size: 14px;
            font-weight: 400;
            cursor: pointer;
            transition: color 0.3s;
            opacity: .7;
            &.active {
                opacity: 1;
                color: var(--secondary-color);
                filter: invert(1);
                font-weight: 600;
            }
        }
        .marker {
            position: absolute;
            bottom: 9px;
            width: auto;
            height: calc(80% - 10px);
            background: var(--secondary-color);
            border-radius: 10px;
            transition: left 0.3s;
        }
    }
    .buttons {
        button {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: #eee;
            border-radius: 10px;
            border: none;
            padding: 5px 5px 5px 10px;
            gap: 10px;
            span {
                font-weight: 400;
                color: var(--secondary-color);
                filter: invert(1);
            }
            i {
                padding: 5px;
                border-radius: 5px;
                background: var(--brand);
                color: #fff;
            }
        }
    }
    
}


header.is-no-0 {
    background: linear-gradient(to bottom, #0B1F33, #00000000);
}

header.is-dark-bg {
  filter: invert(0);
}

header.is-light-bg {
    background: 0;
  .logo {
    filter: invert(1);
    opacity: 0;
  } .options {
        transform: translateX(-131%);
        background: #eee;
        border-radius: 15px;
        border: 1px solid #00000054;
        .option {
            filter: invert(1);
            &.active {
                filter: invert(0);
            }
        }
        .marker {
            filter: invert(1);
        }
  } .buttons {
    opacity: 0;
  }
}

main {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 142;
    width: 100%;
    padding-top: 28px;
    overflow: hidden;
    border-bottom: 1.5px solid #808080a4;
    height: 100%;
    .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        .content-text {
            margin-top: 7%;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            width: 100%;
            .tag {
                display: flex;
                align-items: center;
                gap: 10px;
                padding-left: 10px;
                border-radius: 8em;
                color: var(--secondary-color);
                font-weight: 600;
                .btn-dynamic-main {
                    overflow: hidden;
                    padding: 2px 10px;
                    border-radius: 8em;
                    border: 1px solid var(--secondary-color);
                    .dynamic-btn-word {
                        display: inline-block;
                        transition: transform 0.6s ease, opacity 0.6s ease;
                        will-change: transform, opacity;
                        font-weight: 700;
                        color: var(--secondary-color);
                        backdrop-filter: blur(5px);
                    }
                }
            }
            .title {
                display: flex;
                flex-direction: column;
                align-items: center;
                text-align: center;
                position: relative;
                color: var(--secondary-color);
                font-size: 4em;
                font-weight: 600;
                gap: 20px;
                div {
                    display: flex;
                    align-items: center;
                    span {
                        /* font-family: "Archivo Black", sans-serif; */
                    }
                    b {
                        position: relative;
                        color: var(--secondary-color);
                        /* font-family: "Archivo Black", sans-serif; */
                        &::after {
                            content: '';
                            position: absolute;
                            bottom: 10px;
                            left: 0;
                            width: 0;
                            height: 20px;
                            background: var(--brand);
                            z-index: -1;
                            transition: 1s ease;
                        }
                        &.risk::after {
                            width: 100%;
                        }
                    }
                    &:first-child {
                        gap: 20px;
                    }
                }
            }
            .subtitle {
                margin-top: 0px;
                color: var(--secondary-color);
            }
            .text {
                color: #eeeeeea2;
                max-width: 550px;
                margin-top: 10px;
            }
            .content-start {
                margin-top: 20px;
                display: flex;
                align-items: center;
                height: 35px;
                input {
                    width: 310px;
                    height: 100%;
                    border: 1px solid var(--secondary-color);
                    border-right: 0;
                    outline: 0;
                    background: none;
                    padding: 10px;
                    border-radius: 10px 0px 0px 10px;
                    color: var(--secondary-color);
                    font-weight: 700;
                    backdrop-filter: blur(5px);
                    transition: all 1s ease;
                    &::placeholder {
                        color: var(--secondary-color);
                        font-weight: 400;
                    }
                    &:not(:placeholder-shown) {
                        width: 195px;
                    }
                }
                .btn-agendar {
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    background: none;
                    border-radius: 0px 10px 10px 0px;
                    border: 1px solid var(--secondary-color);
                    border-left: 0;
                    padding: 5px 5px 5px 10px;
                    gap: 10px;
                    backdrop-filter: blur(5px);
                    i {
                        padding: 5px;
                        border-radius: 5px;
                        background: var(--brand);
                        color: #fff;
                    }
                }
            }
            
        }
    }
    .carousel {
        margin: 10px auto;
        width: 750px;
        overflow: hidden;
        background: transparent; 
        padding: 20px 0;
        position: relative;
        .track {
            display: flex;
            gap: 60px;
            width: max-content;
            animation: scrollWords 18s linear infinite;
            &:hover {
                animation-play-state: paused;
            }
            span {
                font-family: 'Inter', system-ui, sans-serif;
                font-size: 1em;
                font-weight: 600;
                white-space: nowrap;
                color: var(--secondary-color);
                opacity: 0.85;
                transition: opacity 0.3s ease, transform 0.3s ease;
                cursor: default;
                background-color: #ffffff2d;
                backdrop-filter: blur(5px);
                padding: 5px 10px;
                border-radius: 10px;
                box-shadow: 2px 2px 20px #00000015;
                &:hover {
                    opacity: 1;
                    transform: scale(1.08);
                }
            }
        }
    }
}

.section-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: sticky;
    top: 0px;
    margin-top: -200px;
    background: #eee;
    transform: translateY(20px);
    width: 100%;
    z-index: 10;
    padding-top: 50px;
    padding-bottom: 600px;
    h2 {
        position: relative;
        text-align: center;
        margin: 0 auto 0px;
        font-size: 3em;
        font-weight: 700;
        color: var(--brand-fund);
    }
    p {
        margin: 0 auto 140px;
        opacity: .6;
        color: var(--brand-fund);
    }
     canvas {
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        inset: 0;
    }
    .cards-wrapper {
        position: relative;
        height: 400px;
        .card {
            position: absolute;
            top: 0;
            left: 50%;
            width: 260px;
            height: 340px;
            background:#fff;
            border-radius: 20px;
            border: 1px solid #56595c42;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            transform: translateX(-50%);
            transition: none;
            overflow: hidden;
            padding: 10px;
            h3 {
                margin: 10px auto;
                font-size: 1em;
            }
            p {
                font-size: 0.95em;
            }
            &:hover video {
                height: 100%;
                transform: scale(1.2);
            }
            video {
                transition: all 1s;
                width: 100%;
                height: 50%;
                object-fit: cover;
                border-radius: 10px;
            }
        }
        .mascote {
            opacity: 0;
            position: absolute;
            top: 0;
            right: 0;
            width: 240px;
            transform: translateY(-230px) translateX(470px);
            transition: .5s;
        }
    }

}

.frequently-asked-questions {
    position: relative;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
    padding-bottom: 100px;
    background-color: var(--brand-fund);
    border-top: 2px solid #3b3b3b49;
    overflow: hidden;
    height: 130vh;
    h2 {
        font-size: 2.9em;
        color: #eee;
    }
    p {
        color: #eee;
    }
    .list-questions {
        position: relative;
        margin-top: 100px;
        width: 80%;
        display: flex;
        flex-direction: column;
        align-items: center;
        .marker {
            position: absolute;
            top: 0;
            left: 15%;
            width: 70%;
            height: calc(50px + 1em);
            z-index: -1;
            background-color: #eee;
            transition: .5s ease;
            opacity: 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            padding: 0 80px 0 80px;
            video {
                width: 100px;
                height: 30px;
                border-radius: 8em;
                object-fit: cover;
            }
            
        }
        .question {
            position: relative;
            border-bottom: 1px solid #ffffff25;
            max-width: 70%;
            overflow: hidden;
            height: calc(50px + 1em);
            transition: .5s ease;
            &:hover {
                .title {
                    color: #000;
                }
                i {
                    color: #000;
                }
            }
            &.active-visible-overview-hM:hover {
                .title {
                    color: #eee;
                }
                i {
                    color: #eee;
                }
            }
            i {
                position: absolute;
                top: 1.5em;
                right: 15px;
                color: #eee;
                transition: .5s ease;   
            }
            .title {
                font-weight: 700;
                padding: 15px;
                margin-top: .5em;
                color: #eee;
                transition: .5s ease;
                text-align: center;
            }
            .text {
                padding: 15px;
                opacity: .7;
                font-size: 1em;
                color: #eee;
            }

        }
    }
}

.section-trilhas {
    position: relative;
    background: #eee;
    padding: 120px 0 150px;
    z-index: 50;
    display: flex;
    flex-direction: column;
    align-items: center;

    .content-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;

        h2 {
            font-size: 3em;
            font-weight: 700;
            color: var(--brand-fund);

            span {
                color: var(--brand);
            }
        }

        p {
            margin-top: 10px;
            opacity: .6;
            color: var(--brand-fund);
        }

        .tags {
            margin-top: 20px;
            display: flex;
            gap: 12px;

            span {
                font-size: .85em;
                padding: 6px 14px;
                border-radius: 20px;
                background: #fff;
                color: #000;
                font-weight: 500;
                border: 1px solid #0000003a;
                &:nth-child(2) {
                    background: var(--color-4);
                    color: #fff;
                    border: 1px solid #0000003a;
                }
                &:nth-child(3) {
                    background: var(--color-2);
                    color: #fff;
                    border: 1px solid #0000003a;
                }
                &:nth-child(4) {
                    background: #000;
                    color: #fff;
                    border: 1px solid #0000003a;
                }

            }
        }
    }

    .cards-grid {
        margin-top: 80px;
        width: 80%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;

        .card {
            background: #fff;
            border-radius: 20px;
            padding: 28px;
            border: 1px solid #56595c42;
            box-shadow: 0 20px 40px rgba(0,0,0,.12);
            transition: all .3s ease;
            display: flex;
            flex-direction: column;
            justify-content: space-between;

            h3 {
                font-size: 1.2em;
                color: var(--brand);
            }

            small {
                font-size: .8em;
                opacity: .6;
                margin-top: 2px;
            }

            p {
                margin: 18px 0 24px;
                font-size: .95em;
                line-height: 1.5;
                color: #444;
            }

            a {
                font-weight: 600;
                font-size: .9em;
                color: var(--brand);
                text-decoration: none;
            }

            &:hover {
                box-shadow: 0 28px 90px var(--brand);
                transition: .3s ease;
            }
        }
    }

    @media (max-width: 900px) {
        .cards-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 600px) {
        .cards-grid {
            grid-template-columns: 1fr;
            width: 90%;
        }
    }
}

.section-animated-title {
    position: sticky;
    top: -100px;
    left: 0;
    background: var(--brand-fund);
    padding: 120px 20px 50px 20px;
    z-index: 150;
    display: flex;
    align-items: top;
    justify-content: center;
    height: 130vh;
    gap: 20px;
    overflow: hidden;
    .light {
        position: absolute;
        top: 0;
        left: 0;
        width: 850px;
        height: 850px;
        border-radius: 50%;
        background: #000;
        box-shadow: 0px 0px 60px #000;
        filter: blur(120px);
        z-index: -1;
        opacity: .2;
        
    }
    .content-main {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        h2 {
            font-size: 2.7em;
            font-weight: 700;
            line-height: normal;
            color: var(--secondary-color);
        }
        .content-cards {
            position: relative;
            margin: -50px 0px 0 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
            transform: translateY(50px);
            z-index: 100000000000000;
            .top {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 10px;
                .card {
                    width: 180px;
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    gap: 20px;

                    mask-image: linear-gradient(
                        to top,
                        rgba(0,0,0,1) 0%,
                        rgba(0,0,0,0) 100%
                    );

                    -webkit-mask-image: linear-gradient(
                        to top,
                        rgba(0,0,0,1) 0%,
                        rgba(0,0,0,0) 100%
                    );
                    .content-type-just-edge {
                        display: flex;
                        align-items: center;
                        justify-content: space-between;
                        border: 2px solid #CBD2D9;
                        border-radius: 20px;
                        padding: 5px;
                        div {
                            color: var(--secondary-color);
                            font-weight: 600;
                            font-size: 1.2em;
                            margin: 5px 10px;
                            &:last-child {
                                font-size: 0.7em;
                                font-weight: 400;
                            }
                        }
                    }
                    img {
                        width: 100%;
                        height: 230px;
                        border-radius: 20px;
                        object-fit: cover; 
                    }
                    &:nth-child(2) {
                        transform: translateY(-50px);
                        mask-image: linear-gradient(
                            to top,
                            rgba(0,0,0,1) 0%,
                            rgba(0, 0, 0, 0) 90%,
                            rgba(0,0,0,0) 100%
                        );

                        -webkit-mask-image: linear-gradient(
                            to top,
                            rgba(0,0,0,1) 0%,
                            rgba(0, 0, 0, 0) 90%,
                            rgba(0,0,0,0) 100%
                        );
                        
                    }
                }
            }
            .bottom {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 10px;
                .card {
                    width: 180px;
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    gap: 5px;

                    mask-image: linear-gradient(
                        to bottom,
                        rgba(0,0,0,1) 0%,
                        rgba(0,0,0,0) 100%
                    );

                    -webkit-mask-image: linear-gradient(
                        to bottom,
                        rgba(0,0,0,1) 0%,
                        rgba(0,0,0,0) 100%
                    );
                    .content-type-just-edge {
                        display: flex;
                        align-items: center;
                        justify-content: space-between;
                        border: 2px solid #CBD2D9;
                        border-radius: 20px;
                        padding: 5px;
                        margin-top: 15px;
                        div {
                            color: var(--secondary-color);
                            font-weight: 600;
                            font-size: 1.2em;
                            margin: 5px 10px;
                            &:last-child {
                                font-size: 0.7em;
                                font-weight: 400;
                            }
                        }
                    }
                    img {
                        width: 100%;
                        height: 230px;
                        border-radius: 20px;
                        object-fit: cover;                        
                    }
                    &:nth-child(1) { 
                        margin-top: -50px;
                    }
                    &:nth-child(3) { 
                        margin-top: -50px;
                    }
                    &:nth-child(2) {
                        transform: translateY(-40px);
                    }
                    
                }
            }
        }
    }
    .info {
        width: 100%;
        display: flex;
        flex-direction: column;
        margin-top: 50px;
        .text {
            display: flex;
            flex-direction: column;
            h3 {
                font-size: 2em;
                font-weight: 300;
                color: var(--secondary-color);
                margin-bottom: 20px;
            }
            p {
                color: var(--secondary-color);
                font-weight: 100;
                opacity: .8;
            }
        }
        .content {
            display: flex;
            align-items: top;
            color: var(--secondary-color);
            padding-top: 30px;
            .left {  
                width: 100%;
                display: flex;
                flex-direction: column;
                h3 {
                    font-size: 2em;
                    font-weight: 300;
                    margin-bottom: 20px;
                }
                ul {
                    display: flex;
                    flex-direction: column;
                    gap: 10px;
                    opacity: .5;
                    li {
                        color: var(--secondary-color);
                        font-weight: 100;
                        font-size: .9em;
                        margin-left: 20px;
                        max-width: 80%;
                    }
                }  
            }
            .right {  
                width: 100%;
                display: flex;
                flex-direction: column;
                h3 {
                    font-size: 2em;
                    font-weight: 300;
                    margin-bottom: 20px;
                }
                ul {
                    display: flex;
                    flex-direction: column;
                    gap: 10px;
                    opacity: .5;
                    li {
                        color: var(--secondary-color);
                        font-weight: 100;
                        font-size: .9em;
                        margin-left: 20px;
                        max-width: 80%;
                    }
                }  
            }
        }
    }
}

section.location {
    position: relative;
    background: var(--secondary-color);
    padding-top: 100px;
    z-index: 150;
    .content-text {
        position: absolute;
        top: 90px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 130;
        display: flex;
        flex-direction: column;
        align-items: center;
        h2 {
            font-size: 3em;
            color: var(--brand-fund);
        }
        p {
            font-size: 1em;
            color: var(--brand-fund);
            text-align: center;
        }
    }
    .content-main {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 40px 0 0 0;
        gap: 20px;     
        .content-iframe {
            position: relative;
            overflow: hidden;
            width: 100%;
            height: 100vh;
            margin-top: 10px;
            .text-description {
                position: absolute;
                bottom: 50px;
                left: 10px;
                z-index: 130;
                max-width: 500px;
                text-align: center;
                padding: 10px;
                border-radius: 10px;
                border: 1px solid var(--brand-fund);
                backdrop-filter: blur(5px);
                webkit-backdrop-filter: blur(5px);
                color: #000;
                font-size: .9em;
            }
            .info {
                position: absolute;
                top: 7px;
                left: 7px;
                background: var(--brand-fund);
                z-index: 122;
                width: 282px;
                height: 130px;
                border-radius: 10px;
                box-sizing: border-box;
                padding: 15px 20px 10px 15px;
                h3 {
                    color: var(--secondary-color);
                    font-size: 1em;
                }
                p {
                    color: var(--secondary-color);
                    opacity: .8;
                    font-size: .8em;
                    font-weight: 300;
                    margin: 5px 0 0 0;
                }
                .routes {
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    text-wrap: nowrap;
                    gap: 10px;
                    background: var(--brand-fund);
                    border: 2px solid var(--brand-fund);
                    border-radius: 10px;
                    position: absolute;
                    bottom: -19.8px;
                    left: 0px;
                    transform: translateY(100%);
                    color: var(--secondary-color);
                    padding: 2px 10px;
                    padding-right: 2px;
                    z-index: 111;
                    i {
                        font-weight: 500;
                        background: var(--secondary-color);
                        color: var(--brand-fund);
                        border-radius: 10px;
                        padding: 5px;
                    }
                }
                .enlarge {
                    background: none;
                    border: 2px solid var(--brand-fund);
                    border-radius: 0 10px 10px 0;
                    border-left: 0;
                    position: absolute;
                    bottom: -20px;
                    left: 60px;
                    transform: translateY(100%);
                    color: var(--brand-fund);
                    padding: 5px 10px;
                    padding-left: 30px;
                    backdrop-filter: blur(5px);
                    z-index: 110;
                    cursor: pointer;
                }
                .routes-in-map {
                    display: flex;
                    align-items: center;
                    text-wrap: nowrap;
                    gap: 10px;
                    position: absolute;
                    bottom: -20px;
                    left: 170px;
                    transform: translateY(100%);
                    color: var(--secondary-color);
                    padding: 5px 10px;
                    font-weight: 700;
                    background: var(--brand-fund);
                    border: 2px solid var(--brand-fund);
                    border-radius: 10px;
                    cursor: pointer;
                }
                .api-tag {
                    display: flex;
                    align-items: center;
                    position: absolute;
                    bottom: 0;
                    right: 0;
                    font-size: .6em;
                    color: var(--brand-fund);
                    background: var(--secondary-color);
                    padding: 5px;
                    border-radius: 10px 0 10px 0;
                }
                
            }
            iframe {
                position: absolute;
                top: 0;
                z-index: 0;
                width: 100%;
                height: 120%;
                border: 0;
                z-index: 10;
            }
            &::after {
                content: '';
                position: absolute;
                inset: 0;
                pointer-events: none;
                z-index: 100;
                background: var(--secondary-color);
/* 
                backdrop-filter: blur(5px);
                -webkit-backdrop-filter: blur(5px); */

                mask-image: linear-gradient(
                    to top,
                    rgba(0,0,0,0) 25%,
                    rgba(0, 0, 0, 0.137) 50%,
                    rgba(0,0,0,1) 100%
                );

                -webkit-mask-image: linear-gradient(
                    to top,
                    rgba(0,0,0,0) 25%,
                    rgba(0, 0, 0, 0.137) 50%,
                    rgba(0,0,0,1) 100%
                );
            }
        }
    }
}


.footer {
    position: relative;
    background: var(--brand-fund);
    color: var(--secondary-color);
    padding: 4rem 1.5rem 2rem;
    font-family: inherit;
    z-index: 200;
    overflow: hidden;
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
        .footer-col {
            a {
                color: #C9D6E3;
                text-decoration: none;
                transition: color 0.3s ease;
                &:hover {
                    color: var(--brand);
                }
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.1rem;
            }
            h2, h3 {
                color: #FFFFFF;
                margin-bottom: 1rem;
                font-weight: 600;
                line-height: 1.2;
            }
            p {
                font-size: 0.95rem;
                line-height: 1.6;
                color: #C9D6E3;
            }
            ul {
                list-style: none;
                padding: 0;
                margin: 0;
                li {
                    margin-bottom: 0.6rem;
                    font-size: 0.95rem;
                    color: #C9D6E3;
                }
            }
        }
        address {
            font-style: normal;
            p {
                margin-bottom: 0.6rem;
            }

        }
    }
    .footer-bottom {
        margin-top: 3rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
        p {
            font-size: 0.85rem;
            color: #9FB2C7;
            &:nth-child(2) {
                margin: 5px 0 0 0;
                b {
                    a {
                        color: #fff;
                    }
                }
            }
        }
    }
}


