.landing-page .navbar {
    background: transparent !important;
}

/* ============================================= */
/* background custom
/* ============================================= */

.landing-page {
    position: relative;
    background: var(--color-background);
    min-height: 100vh;
    overflow: hidden; 
    padding: 0 !important;
}

.gradient-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.gradients-container {
    position: absolute;
    width: 100%;
    height: 150vh; 
    top: -20vh;
    left: 0;
    filter: blur(90px);
}

.g1, .g2, .g3, .g4, .g5, .g6, .g7 {
    position: absolute;
    background: radial-gradient(circle at center, rgba(var(--blob-color-1), 0.8) 0%, transparent 50%);
    mix-blend-mode: screen;
    border-radius: 50%;
    transform-origin: center center;
}

.g1 {
    width: 60vw;
    height: 60vw;
    max-width: 1200px;
    max-height: 1200px;
    top: -10vh;
    left: 5%;
    opacity: 0.6;
    animation: float1 45s ease-in-out infinite;
}

.g2 {
    width: 50vw;
    height: 50vw;
    max-width: 1000px;
    max-height: 1000px;
    top: 5vh;
    left: 60%;
    background: radial-gradient(circle at center, rgba(var(--blob-color-2), 0.7) 0%, transparent 50%);
    opacity: 0.7;
    animation: rotateSlow 40s linear infinite reverse;
}

.g3 {
    width: 70vw;
    height: 70vw;
    max-width: 1400px;
    max-height: 1400px;
    top: -15vh;
    left: -10%;
    background: radial-gradient(circle at center, rgba(var(--blob-color-3), 0.6) 0%, transparent 50%);
    opacity: 0.5;
    animation: float2 50s ease-in-out infinite;
}

.g4 {
    width: 45vw;
    height: 45vw;
    max-width: 900px;
    max-height: 900px;
    top: 10vh;
    left: 80%;
    background: radial-gradient(circle at center, rgba(var(--blob-color-4), 0.8) 0%, transparent 50%);
    opacity: 0.6;
    animation: float3 38s ease-in-out infinite;
}

.g5 {
    width: 55vw;
    height: 55vw;
    max-width: 1100px;
    max-height: 1100px;
    top: 20vh;
    left: 20%;
    background: radial-gradient(circle at center, rgba(var(--blob-color-5), 0.5) 0%, transparent 50%);
    opacity: 0.5;
    animation: rotateSlow 35s linear infinite;
}

.g6 {
    width: 65vw;
    height: 65vw;
    max-width: 1300px;
    max-height: 1300px;
    top: 0vh;
    left: 50%;
    background: radial-gradient(circle at center, rgba(var(--blob-color-2), 0.6) 0%, transparent 50%);
    opacity: 0.6;
    animation: float1 42s ease-in-out infinite reverse;
}

.g7 {
    width: 50vw;
    height: 50vw;
    max-width: 1000px;
    max-height: 1000px;
    top: 25vh;
    left: 10%;
    background: radial-gradient(circle at center, rgba(var(--blob-color-4), 0.7) 0%, transparent 50%);
    opacity: 0.5;
    animation: float2 48s ease-in-out infinite;
}

.interactive {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at center, rgba(var(--blob-interactive), 0.6) 0%, transparent 50%);
    mix-blend-mode: screen;
    opacity: 0.5;
    pointer-events: none;
    transform: translate(0px, 0px); 
    z-index: 1; 
}
@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes float1 {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(15vh) translateX(5vw); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-12vh) translateX(-8vw); }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(10vh) translateX(10vw); }
}

.landing-page > nav,
.landing-page > section,
.landing-page > footer {
    position: relative;
    z-index: 10;
}

.landing-page nav {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

[data-theme="dark"] .landing-page nav {
    background: rgba(18, 18, 18, 0.85);
}

/* Dark mode */
[data-theme="dark"] .g1,
[data-theme="dark"] .g2,
[data-theme="dark"] .g3,
[data-theme="dark"] .g4,
[data-theme="dark"] .g5,
[data-theme="dark"] .g6,
[data-theme="dark"] .g7,
[data-theme="dark"] .interactive {
    opacity: 0.5;
    mix-blend-mode: soft-light;
}

.landing-page nav {
    box-shadow: none;
    /* border-bottom: 1px solid rgb(158, 158, 158); */
    margin-bottom: 30px;
    /* background: var(--color-background); */
}

.login-btn {
    padding: 8px 16px;
    border-radius: 10px;
    color: #fff !important;
    background: var(--color-primary);
}

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

.landing-page .section-1 {
    width: 100%;
    padding: 0px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}


.landing-page .section-1 h1 {
    font-size: 50px !important;
    font-weight: bolder;
    margin-bottom: 10px;
    text-align: center;
    max-width: 70%;
}

span.focus {
    color: var(--color-primary);
}

.landing-page .section-1 p {
    text-align: center;
    font-size: 20px;
    max-width: 60%;
}

.landing.big-icon {
    padding: 0;
    margin-bottom: 15px;
    height: 500px;
    width: 500px;
    margin-top: -30px;
}

.landing.big-icon dotlottie-wc {
    height: 100%;
    width: 100%;
}

.landing-page .section-1 .btn-col {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 20px;
    margin-bottom: 30px;
}

.landing-page .section-1 .btn-col .default-button {
    background: var(--color-primary);
    color: var(--color-white);
}

.landing-page .section-1 .btn-col .default-button:hover {
    background: var(--color-primary-hover);
}

.landing-page .section-2 {
    width: 100%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    /* background: linear-gradient(270deg, #a6d6a8, #8cb98e); */
    /* background-size: 400% 400%;

    -webkit-animation: AnimationName 30s ease infinite;
    -moz-animation: AnimationName 30s ease infinite;
    animation: AnimationName 30s ease infinite; */
    background: var(--color-clean-opacity);
}

@-webkit-keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@-moz-keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}

.landing-page .section-2 h2 {
    font-size: 30px !important;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    color: #fff;
}

.landing-page .section-2 .card-list {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.landing-page .section-2 .card-list .card {
    height: 450px;
    width: 350px;
    background: transparent;
}

.landing-page .section-2 .card-list .card .card-body {
    background: var(--color-white);
    height: 100%;
    border-radius: 20px;
    box-sizing: border-box;
    display: flex;
    /* flex-direction: column; */
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.landing-page .section-2 .card-list .card .card-body .card-title {
    text-align: center;
}

.landing-page .section-2 .card-list .card .card-body .card-icon {
    height: 150px;
    width: 150px;
    box-sizing: border-box;
    padding: 15px;
    border-radius: 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.landing-page .section-2 .card-list .card .card-body .card-icon svg {
    height: 100%;
    color: var(--color-primary);
}

.landing-page .section-3 {
    width: 100%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 0px;
    background: var(--color-background);
}

.landing-page .section-3 h2 {
    font-size: 30px !important;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    color: var(--color-text);
}

.landing-timeline li .item {
    padding: 20px;
    border-radius: 15px;
    background: var(--color-white);
    max-width: 600px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.landing-timeline li .item span {
    font-size: 18px;
    font-weight: bold;
    color: var(--color-primary);
}

.landing-timeline li .item .italic {
    font-style: italic;
}


.landing-timeline li .timeline-start.item {
    margin-right: 15px;
}

.landing-timeline li .timeline-end.item {
    margin-left: 15px;
}

.timeline-start {
    text-align: right !important;
}

.timeline-snap-icon .timeline-middle svg {
    background-color: var(--color-primary);
    border-radius: 50%;
    padding: 8px;
    fill: var(--color-white);
}

.timeline-snap-icon .timeline-middle svg.h-5.w-5 {
    width: 24px !important;
    height: 24px !important;
}

.landing-footer {
    background: var(--color-background);
    color: var(--color-text);
}



@media (max-width: 768px) {
    .timeline-snap-icon .timeline-middle svg.h-5.w-5 {
        width: 20px !important;
        height: 20px !important;
        padding: 6px;
    }
}

/* Ajustes de cor para tema escuro */
[data-theme="dark"] .timeline-snap-icon .timeline-middle svg {
    background-color: var(--color-primary);
    fill: var(--color-white);
}

@media (max-width: 1399px) {
    .landing-page .section-1 h1 {
        font-size: 40px !important;
    }

    .landing-page .section-1 p {
        font-size: 18px;
    }
}

@media (max-width: 1368px) {
    .landing-page .section-2 .card-list .card {
        height: 450px;
        width: 300px;
    }
}

@media (max-width: 900px) {
    .landing-page .section-2 .card-list {
        flex-direction: column;
    }
    .landing-page .section-2 .card-list .card {
        height: auto;
        width: 80%;
        max-width: 90%;
    }
    .landing-page .section-2 .card-list .card .card-body {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .landing-page .section-1 h1 {
        font-size: 30px !important;
    }

    .landing-page .section-1 p {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .landing.big-icon {
        display: none;
    }

    .landing-page .section-1 .btn-col {
        flex-direction: column;
    }

    .landing-page .section-2 {
        padding: 50px 30px;
    }

    .landing-page .section-2 .card-list .card {
        width: 100%;
        max-width: none;
    }
    .landing-page .section-2 .card-list .card .card-body {
        width: 100%;
    }

    .landing-page .section-3 {
        padding: 30px 15px;
    }

    .landing-timeline {
        width: 100%;
        max-width: 100%;
    }

    .landing-timeline li .item {
        font-size: 13px;
    }
}