@charset "UTF-8";
/*!
 * SailPoint | HTML Product Landing Page
 * Version: 1.0.0
 * Created: 01 Feb 2020
 * Last Update: 01 Feb 2020
 * Author: Web_Trendy
 * Copyright 2019 © Web_Trendy (https://codecanyon.net/user/web_trendy/portfolio)
 * Licensed under Envato (https://codecanyon.net/licenses/standard)
 *
 * "Life is balance of holding on and letting go." --Rumi
 *
 */
/*------------------------------------------------------------------
[Table of contents]

1.0 Variables
2.0 Google Fonts
3.0 Set Font-families
4.0 Custom Cursor Styles
5.0 General Styles
6.0 Home Page
7.0 About Page
8.0 Services Page
9.0 Works Page
10.0 Contact Page
11.0 Media Queries

-------------------------------------------------------------------*/
/*--------------------------------------------------------------
1.0 Variables
--------------------------------------------------------------*/
/*--------------------------------------------------------------
2.0 Google Fonts
--------------------------------------------------------------*/
/*To change the fonts, get the font link from (https://www.google.com/fonts) and replace with this line, then update the font-family section below.*/
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&amp;display=swap");
/*--------------------------------------------------------------
3.0 Set Font-families
--------------------------------------------------------------*/

*,
:after,
:before {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x: ;
    --tw-pan-y: ;
    --tw-pinch-zoom: ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position: ;
    --tw-gradient-via-position: ;
    --tw-gradient-to-position: ;
    --tw-ordinal: ;
    --tw-slashed-zero: ;
    --tw-numeric-figure: ;
    --tw-numeric-spacing: ;
    --tw-numeric-fraction: ;
    --tw-ring-inset: ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / 0.5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur: ;
    --tw-brightness: ;
    --tw-contrast: ;
    --tw-grayscale: ;
    --tw-hue-rotate: ;
    --tw-invert: ;
    --tw-saturate: ;
    --tw-sepia: ;
    --tw-drop-shadow: ;
    --tw-backdrop-blur: ;
    --tw-backdrop-brightness: ;
    --tw-backdrop-contrast: ;
    --tw-backdrop-grayscale: ;
    --tw-backdrop-hue-rotate: ;
    --tw-backdrop-invert: ;
    --tw-backdrop-opacity: ;
    --tw-backdrop-saturate: ;
    --tw-backdrop-sepia: ;
    --tw-contain-size: ;
    --tw-contain-layout: ;
    --tw-contain-paint: ;
    --tw-contain-style: ;
}

:root {
    --primary-color: #000000;
    --secondary-color: #05618A;
    --accent-color: #f0b625;
    --light-color: #f8f9fa;
    --dark-color: #212529;

    --even3-blue: #f0b625;
    /* Azul primário do Even3 */
    --even3-green: #05618A;
    /* Verde de destaque do Even3 */
    --even3-dark: #37474F;
    /* Cinza escuro para textos e footer */
    --even3-text-light: #546E7A;
    /* Cinza mais claro para textos secundários */
    --even3-light-gray: #ECEFF1;
    /* Cinza bem claro para fundos de seções */
    --even3-white: #ffffff;
    --even3-border: #CFD8DC;
    /* Cor da borda para elementos de input */
}

body {
    font-family: 'DM Sans', sans-serif !important;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #f2f2f2;
    overflow-x: hidden;

}



/*--------------------------------------------------------------
4.0 Custom Cursor Styles
--------------------------------------------------------------*/
.custom-cursor {
    cursor: none;
    --top: 0;
    --left: 0;
    --cursor-width: 30px;
    --color: #000000;
    --blending-mode: normal;
}

.custom-cursor .cursor>div {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.custom-cursor .cursor div,
.custom-cursor .cursor img,
.custom-cursor .cursor svg {
    position: fixed;
    pointer-events: none;
    z-index: 999999;
    mix-blend-mode: var(--blending-mode);
}

/*Cursor 1*/
.cursor-1 .cursor .cursor-el1 {
    width: var(--cursor-width);
    height: var(--cursor-width);
    border: calc(var(--cursor-width)/25) solid var(--color);
    border-radius: 50%;
    top: calc(var(--cursor-width)/-2);
    left: calc(var(--cursor-width)/-2);
    -webkit-transition: all 200ms cubic-bezier(0.18, 0.89, 0.32, 1.28);
    transition: all 200ms cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

.cursor-1 .cursor .cursor-el2 {
    width: calc(var(--cursor-width)/5);
    height: calc(var(--cursor-width)/5);
    border-radius: 50%;
    background-color: var(--color);
    top: calc(var(--cursor-width)/-10);
    left: calc(var(--cursor-width)/-10);
}

.cursor-1.onlink .cursor .cursor-el1 {
    opacity: 0;
}

.cursor-1.onlink .cursor .cursor-el2 {
    opacity: 0;
}

/*--------------------------------------------------------------
5.0 General Styles
--------------------------------------------------------------*/
.btn-link {
    position: relative;
    color: #f9a806;
}

.btn-link:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: #00e6bf;
    -webkit-transition: all 600ms ease;
    transition: all 600ms ease;
}

.btn-link:hover,
.btn-link:focus {
    text-decoration: none;
    color: #00e6bf;
}

.btn-link:hover:before,
.btn-link:focus:before {
    width: 100%;
}

.color-primary {
    color: #f9a806;
}

.btn-round {
    border-radius: 0.5rem !important;
    padding: 15px;
    transition: transform 0.5s ease, color 0.5s ease;
    color: #ffffff;
}

.btn-round:hover {
    transform: translateY(-5px);
    color: #ffffff;
}



/*--------------------------------------------------------------
6.0 Page Styles
--------------------------------------------------------------*/
/*Intro Section*/
.intro .product-wrapper {
    position: relative;
    display: inline-block;
}

.intro .product-wrapper img {
    width: 300px;
}

.intro .product-wrapper .scroll-stable {
    position: relative;
    z-index: 99;
    width: 350px;
}

.intro .scroll-move {
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -150px;
}

/*Info Section*/
.info .img-wrapper {
    position: relative;
}

.info .img-wrapper .absolute {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.info .max-vh-80 {
    max-height: 80vh;
}

/*Call to Action Section*/
.cta {
    min-height: 80vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    background-image: url(../img/background-900x500.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.cta:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgb(0, 0, 0), transparent);
}

/*Specs Section*/
.specs .img-wrapper {
    position: relative;
}

.specs .img-wrapper .absolute {
    position: absolute;
    left: 0;
    top: 30px;
    z-index: -1;
}

/*Footer*/
footer .app-btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 1.2;
    text-align: left;
    font-size: 80%;
}

footer .btn-warning:hover,
footer .btn-warning:focus {
    color: #0d0d0d;
}

footer .social-media a {
    text-decoration: none;
}

footer a:not(.btn) {
    color: #f9a806;
}

footer a:not(.btn):hover,
footer a:not(.btn):focus {
    color: #00e6bf;
}

footer .cp {
    border-top: 1px solid #262626;
}

/*--------------------------------------------------------------
11.0 Media Queries
--------------------------------------------------------------*/
@media only screen and (max-width: 991px) {
    .intro .display-1 {
        font-size: 3rem;
    }

    .intro .product-wrapper img {
        width: 160px;
    }

    .intro .product-wrapper .scroll-stable {
        width: 220px;
    }

    .intro .scroll-move {
        position: absolute;
        bottom: 0;
        left: 50%;
        margin-left: -80px;
    }

    .mb-sm-large {
        margin-bottom: 250px;
    }

    .cursor {
        display: none;
    }
}

#desc {
    background-color: #ffffff;
    color: #000000;
}

.lead {
    line-height: 2;
    font-weight: 400;
    font-size: 18px;
    color: #555555;
    text-align: left;
}

#features {
    background-color: #F9FAFB;
    color: #000000;
}

.how-to-know {
    background-color: #eeeff0 !important;
    color: #111827 !important;
}

/* Feature Box (inspirado nos cards de funcionalidade do Even3) */
.feature-box {
    text-align: left;
    padding: 10px;
    border-radius: 1rem;
    background-color: var(--even3-white);
    box-shadow: none;
    border: 1px solid rgb(243 244 246/var(--tw-border-opacity));
    /* Borda sutil */
    transition: transform 0.5s ease, color 0.5s ease;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 24px;
    /* Tamanho do ícone */
    color: #f8f9fa;
    /* Ícone na cor primária */
    margin-bottom: 25px;
    transition: color 0.2s ease;
    background: linear-gradient(135deg, #003146, var(--secondary-color));
    width: 60px;
    height: 60px;
    border-radius: 12px;
    transition: transform 0.5s ease, color 0.5s ease;
}

/* How It Works Section (mais alinhado ao Even3) */
.how-it-works {
    position: relative;
    padding-left: 80px;
    /* Espaço para o ícone/número */
    margin-bottom: 40px;
    display: flex;
    align-items: flex-start;
    /* Alinha o texto com o topo do ícone */
}

#features .step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    /* Menor e mais discreto */
    height: 60px;
    background: linear-gradient(135deg, #b27701, var(--even3-blue));
    /* Cor flat */
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    box-shadow: none;
    /* Sem sombra */
    transition: transform 0.5s ease, color 0.5s ease;
}

.text-step {
    transition: transform 0.5s ease, color 0.5s ease;
}

.how-it-works:hover .text-step {
    transform: translateY(-5px);
    /* Animação sutil */
}

.how-it-works:hover .step-number {
    transform: scale(1.2);
    /* Animação sutil */
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    margin-bottom: 8px;
    color: var(--even3-dark);
}

#desc img {
    border-radius: 0.5rem;
}

.feature-icon i {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    /* ou um valor fixo, se necessário */
}



.feature-box:hover .feature-icon {
    transform: scale(1.2);
    background: linear-gradient(135deg, var(--secondary-color), #003146);
}



.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--even3-dark);
}

#specs .bg-dark {
    background: linear-gradient(135deg, #00161f, #002433);
}

#specs .container {
    padding: 30px !important;
}

#specs .bg-warning {
    background: linear-gradient(135deg, var(--secondary-color), #003146);

}



#specs .step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 45px;
    /* Menor e mais discreto */
    height: 45px;
    background-color: rgba(255, 255, 255, 0.2) !important;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    box-shadow: none;
    /* Sem sombra */
    transition: transform 0.5s ease, color 0.5s ease;
}

#specs .step-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px !important;
    color: rgb(195, 195, 195);
}

#specs .text-step {
    transition: transform 0.5s ease, color 0.5s ease;
}

#specs .how-it-works:hover .text-step {
    transform: translateY(-5px);
    /* Animação sutil */
}

#specs .how-it-works {
    position: relative;
    padding-left: 60px;
    /* Espaço para o ícone/número */
    margin-bottom: 1px !important;
    display: flex;
    align-items: flex-start;
    /* Alinha o texto com o topo do ícone */
}

#specs .card {
    background-color: rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 8px 16px rgba(64, 64, 64, 0.092);
    padding: 40px;
}

#specs label {
    color: rgb(233, 233, 233);
}

#specs .form-control {
    background: transparent !important;
    border-color: #003146;
    height: 55px;
    color: rgb(233, 233, 233);
}

#specs textarea {
    height: auto !important;
}




p,
a,
.lead,
.text-muted,
label {
    font-size: 16px !important;
    line-height: 2rem !important;
}

h2 {
    font-size: 36px !important;
    font-weight: 700 !important;
    color: #111827;
}

.info h2,
.specs h2,
.cta h2 {
    color: #ffffff;
}

.info p.lead,
#specs p.lead {
    color: #d9d9d9;
}

.service-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--even3-blue);
    /* Preço na cor primária */
    margin: 20px 0;
    text-align: center;
}

.service-card .price span {
    font-size: 1rem;
    color: var(--even3-text-light);
    font-weight: 400;
}

.service-card .list-unstyled {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.service-card .list-item {
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    font-size: 1rem;
    color: var(--even3-dark);
}

.service-card .list-item:before {
    content: '\f00c';
    /* Check icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--even3-green);
    /* Checkmark verde */
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 1rem;
}



input::placeholder,
textarea::placeholder {
    color: #dcdbdb !important;
    /* Cor do placeholder */
    opacity: 1 !important;
    /* Garante visibilidade total no Firefox */
}

.modal-text,
h5 {
    color: #111827 !important;
}



#mukanda {
    background: linear-gradient(135deg, var(--primary-color), var(--even3-dark));
}

#kiyetu {
    background: linear-gradient(135deg, var(--primary-color), #0A9CFB);
}

#kudiya {
    background: linear-gradient(135deg, var(--primary-color), var(--even3-blue));
}

footer {
    background: linear-gradient(135deg, var(--primary-color), #111827);

}

footer p {
    color: #828282;
}

footer .social-media a {
    color: rgb(156 163 175 / var(--tw-text-opacity));
    --tw-bg-opacity: 1;
    background-color: rgb(31 41 55 / var(--tw-bg-opacity));
    border: 2px solid #192641;
    border-radius: 9999px;
    width: 50px;
    height: 50px;
    transition: transform 0.5s ease, color 0.5s ease;
}



footer .social-media a:hover {
    transform: translateY(-5px);
    color: rgb(156 163 175 / var(--tw-text-opacity));
    /* Animação sutil */
}

footer .social-media a i {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    font-weight: 900;
    /* ou um valor fixo, se necessário */
}


/* Flutuação + Gradiente Animado */
.ultimate-animated-logo {
    animation: float 6s ease-in-out infinite, gradientShift 8s linear infinite;
    transform-origin: center;
    filter: drop-shadow(0 0 10px rgba(10, 156, 251, 0.5));
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

@keyframes gradientShift {
    0% {
        filter: hue-rotate(0deg);
    }

    100% {
        filter: hue-rotate(360deg);
    }
}

/* Novas Keyframes */
@keyframes autoRotate {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.05);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

@keyframes pulseScale {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@keyframes glitch {
    0% {
        filter: drop-shadow(0 0 5px #0a9cfb);
    }

    25% {
        filter: drop-shadow(-5px 0 5px #3ce861);
    }

    50% {
        filter: drop-shadow(0 0 0 transparent);
    }

    75% {
        filter: drop-shadow(5px 0 5px #f75b37);
    }

    100% {
        filter: drop-shadow(0 0 5px #0a9cfb);
    }
}

.ultimate-animated-logo {
    transform-style: preserve-3d;
    /* Ativa 3D */
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0a9cfb;
    filter: blur(1px);
    pointer-events: none;
    z-index: -1;
}

.ultimate-animated-logo {
    animation: glitch 4s linear infinite;
}

/* Aplicação ao logo */
.ultimate-animated-logo {
    animation:
        float 6s ease-in-out infinite,
        gradientShift 8s linear infinite,
        autoRotate 20s linear infinite,
        pulseScale 4s ease-in-out infinite;
}

/* Estilo para as partículas da seção */
.section-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

/* Ajuste para as partículas do logo */
.logo-container .particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: -1;
}

/* Estilo base das partículas */
.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(1px);
    z-index: -1;
}

/* Garantir que a seção tenha posição relativa */
.intro {
    position: relative;
    overflow: hidden;
}

/* Partículas (serão controladas via JS) */


.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    filter: blur(1px);
}

#banner p,
.orcamento {
    color: white !important;
}

center {
    display: none;
}

@media (max-width: 991.98px) {

    #desc .container,
    #features .container,
    .info .container,
    #banner .container,
    footer .container {
        padding: 40px !important;
    }

    #desc,
    #desc p,
    .feature,
    .info p {
        text-align: justify;
        text-align-last: center;
        letter-spacing: normal;
        word-spacing: normal;
    }

    .feature p {
        text-align: center;
        text-align-last: center;
    }

    .l-none {
        display: none;
    }

    center {
        display: block;
    }

    .how-to-know h2,
    .how-to-know .text-muted,
    .how-to-know-text,
    .feature-text,
    #banner,
    .specs h2,
    .specs .text-muted,
    .specs .lead,
    .feature-title {
        text-align: center;
        text-align-last: center;
    }

    #specs .card {
        padding: 10px;
    }

    #features .text-step {
        text-align: left;
        text-align-last: left;
        letter-spacing: normal;
        word-spacing: normal;
    }




    .info,
    .info p {
        text-align: center !important;
    }


}

.col-lg-4 {
    margin-bottom: 30px;
}

#link {
    text-align: center !important;
}

#loading-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.toast {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

.loading-text {
    font-size: 18px;
    color: #333;
    font-weight: 500;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
