@font-face {
    font-weight: normal;
    font-style: normal;
}


body {
    font-family: 'Inter', sans-serif;

    /* font-family: 'Oswald', sans-serif; */
    position: relative;
    margin: 0;
    padding: 0;
    /* height: 100%;
    min-height: 100vh;

    display: flex;
    flex-direction: column;
    min-height: 100vh; */
}

:root {
    --cor-principal: #131520;
    --cor-secundaria: #5A3799;
    --bg-purple: #6A45B6;
    --cor-terceira: #1F1F2E;
    --cor-text-white: #d7d7d7;

}

/*computador*/
@media screen and (min-width:1000px) {

    /*baner page initial*/
    .resume-baner-container .list-inline .list-inline-item {
        font-size: 1.10em;
    }


    .main-body .section-static {
        padding: 100px 40px;
        max-width: 1900px;
        margin: 0 auto;
    }

    /* about */
    .main-body .about h1 {
        font-size: 70px;
        line-height: 80px;
    }

    .btn-send {
        width: 50%;
    }

    /*section sobre*/
    .about-section {
        padding: 100px 0px;
    }

    .hero-section {
        height: 100vh;
    }

    .services-section {
        padding: 100px 0px;
    }

    .portfolio-section {
        padding: 100px 0px;
    }

    .testimonials-section {
        padding: 100px 0px;

    }

    .contact-section {
        padding: 100px 0px;

    }

    .plans-section {
        padding: 100px 0px;

    }

    .faq-section {
        padding: 100px 0px;

    }

    .footer {
        padding: 100px 0px;

    }

    /* .animation .animation-body .op {
        background-color: rgba(59, 17, 114, 0.5);
        position: absolute;
        left: 0px;
        width: 100%;
        height: 250px;
        filter: blur(10px);
       

    } */

}


/*celular*/
@media screen and (max-width:1000px) {

    /*baner page initial*/
    .resume-baner-container .list-inline .list-inline-item {
        font-size: 0.8em;
    }


    .main-body .section-static {
        padding: 35px 20px;
    }

    /* about */
    .main-body .about h1 {
        font-size: 40px;
    }

    /*dev*/
    .dev .dev-body .img-left img {
        display: none;
    }

    /* footer */
    .footer .row-footer {
        text-align: center;
    }

    /*contato*/
    .contact .img-contact img {
        display: none;
    }

    /*section sobre*/
    .about-section {
        padding: 50px 0px;
    }

    .hero-section {
        padding: 100PX 0px 50px 0PX;
    }

    .services-section {
        padding: 50px 0px;
    }

    .portfolio-section {
        padding: 50px 0px;
    }

    .testimonials-section {
        padding: 50px 0px;

    }

    .contact-section {
        padding: 50px 0px;

    }

    .plans-section {
        padding: 50px 0px;

    }


    .faq-section {
        padding: 50px 0px;

    }


    /* .animation .animation-body .op {
        display: none;
    } */
}


/* Estilização geral da seção hero */
.hero-section {
    background-color: var(--cor-principal);
}

.hero-section h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.3;
}


.hero-section h1 span {
    color: #8b5cf6;
    /* Roxo destaque */
}

.hero-section .list-unstyled li {
    color: rgb(223, 223, 223);
    font-weight: 500;
}

.hero-section .list-unstyled i {
    color: #8b5cf6;
    /* Roxo destaque */
}

.text-glow-wrapper {
    position: relative;
    z-index: 1;
}

.text-glow {
    position: relative;
    color: #8b5cf6;
    z-index: 2;
}

.text-glow::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-30%, -30%);
    width: 350px;
    height: 200px;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.4) 0%, transparent 70%);
    filter: blur(35px);
    z-index: 1;
    pointer-events: none;
}

.hero-section p.lead {
    font-size: 1.25rem;
    color: #ffffffe6;
}

.hero-section ul {
    padding-left: 0;
    list-style: none;
}

.hero-section ul li {
    font-size: 1rem;
    display: flex;
    align-items: center;
    color: #bfbfbf;
}

.hero-section ul li i {
    color: #22c55e;
    /* Verde check */
    margin-right: 8px;
}

/* Botões */
.hero-section .btn-primary {
    background-color: var(--cor-secundaria);
    border-color: var(--cor-secundaria);
    font-weight: 600;
}

.hero-section .btn-outline-light {
    color: #ffffff;
    border-color: #ffffff;
    font-weight: 600;
}

.hero-section .btn-outline-light:hover {
    background-color: #ffffff;
    color: #0f0f1a;
}

/* Imagem e badges */
.hero-section img {
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-section .badge {
    background: rgba(0, 0, 0, 0.7);
    font-size: 0.875rem;
    line-height: 1.3;
    text-align: left;
}

.hero-section .badge small {
    font-size: 0.75rem;
    color: #bbbbbb;
}

.image-overlay-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #191A27;
    opacity: 0.6;
    /* ajuste a intensidade do filtro aqui */
    z-index: 1;
    pointer-events: none;
}


.text-secondary {
    color: var(--cor-text-white) !important;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.text-xl {
    font-size: 1.125rem;

}

/*section sobre*/
.about-section {
    background-color: var(--cor-terceira);
}

.text-purple {
    color: #8b5cf6;
}

.bg-dark-glass {
    background-color: rgba(25, 26, 39, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.bg-glass-card {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.icon-circle {
    background: #8b5cf6;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container-right-about .text-right-about {
    color: var(--cor-text-white);
}


/*section servicos*/
.services-section {
    background-color: var(--cor-principal);
}

/* Botões */
.services-section .btn-primary {
    background-color: var(--cor-secundaria);
    border-color: var(--cor-secundaria);
    font-weight: 500;
}



.btn-primary {
    transition: 0.3s ease-in-out all;
}

.btn-primary:hover {
    transform: translateX(5px)
}

.cta-services {
    background-color: var(--cor-secundaria);
}


/*section servicos*/
.portfolio-section {
    background-color: var(--cor-terceira);
}

.container-card-portfolio .card {
    background-color: var(--cor-principal);
}

.container-card-portfolio .container-img-portfolio {
    height: 300px;
    overflow: hidden;
}

.container-card-portfolio img {
    object-fit: contain;
    object-position: center;
}

.container-card-portfolio {
    transition: 0.2s ease-in-out all;
}

.container-card-portfolio:hover {
    transform: translateY(-10px);
}

.portfolio-section .btn-outline-primary {
    border-color: var(--cor-secundaria);
    /* font-weight: 500; */
    color: var(--cor-secundaria);

}

.portfolio-section .btn-outline-primary:hover {
    color: white;
}

.img-scale-transform {
    transition: 0.3s ease-in-out all;
    transform: scale(1);
    box-shadow: none;
}

.img-scale-transform:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(185, 185, 185, 0.3);
    /* sombra vindo de trás */
}

.bg-purple {
    background-color: var(--bg-purple);

}

.development-process-section {
    background-color: var(--cor-principal);
}

.development-process-section p {
    font-size: 0.85em;
}

.process-step {
    background-color: #8b5cf6;
    color: #fff;
    font-weight: bold;
    font-size: 1.1rem;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

/*seção de avaliação*/
.testimonials-section {
    background-color: var(--cor-terceira);
}


.testimonials-section .card {
    background-color: var(--cor-terceira);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.testimonials-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.25);
}

/*seção de contato*/
.contact-section {
    background-color: var(--cor-principal);
}

.contact-section .btn-primary {
    background-color: var(--cor-secundaria);
    border-color: var(--cor-secundaria);
    font-weight: 500;
}

.container-right-contact {
    background-color: var(--cor-principal);
}

.container-left-contact .bg-card {
    background-color: var(--cor-principal);
}


/*seção de duvidas*/
.faq-section {
    background-color: var(--cor-terceira);
}

/*/*section plans*/
.plans-section {
    background-color: var(--cor-principal);
}

/* Botões */
.plans-section .btn-primary {
    background-color: var(--cor-secundaria);
    border-color: var(--cor-secundaria);
    font-weight: 500;
    width: 300px;
}


/*loader*/
.span-loader {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 5;
}

.loader {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #393939;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto;

}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}


.navbar-header-main {
    background-color: var(--cor-principal);
}

.navbar-header-main .nav-item .nav-link {
    text-transform: capitalize;
    color: rgb(193, 193, 193);
    font-weight: 500;
}

.navbar-header-main .nav-item .nav-link:hover {
    color: var(--cor-secundaria);
}

.navbar-header-main .btn {
    text-transform: capitalize;
    background-color: var(--cor-secundaria);
    border-color: var(--cor-secundaria);
    font-weight: 500;
    transition: 0.2s ease-in-out;

}

.navbar-header-main .btn:hover {
    color: white;
    transform: translateX(5px)
}

/* Tela inicial */
.video-container {
    position: relative;
    width: 100%;
    height: 95vh;
    /* Preenche toda a tela */
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.main-baner .baner {
    position: relative;
    height: 700px;
    /* Ajuste conforme necessário */
    display: flex;
    align-items: center;
    padding-left: 20px;
    /* Ajuste para afastar o texto da borda esquerda */
}

.baner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Faz a imagem cobrir toda a área do banner */
    z-index: 0;
    /* Mantém a imagem atrás do texto */
}

.baner-text {
    position: relative;
    color: white;
    font-size: 24px;
    text-align: left;
    /* Alinhamento do texto à esquerda */
    z-index: 1;
    /* Garante que o texto fique acima da imagem */
}

.baner h3 {
    margin-bottom: 10px;
    /* Espaçamento entre o título e o parágrafo */
}

.baner p {
    font-size: 18px;
}



.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Garante que o vídeo cubra toda a área da tela */
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
}

/*baner*/
.resume-baner-container {
    background-color: #151824;
    background-image: linear-gradient(7deg, #151824 0%, #14162b 40%, #131833 100%);
}

.resume-baner-container .list-inline .list-inline-item {
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    margin: 0px 15px;
}

.main-body {
    background-image: linear-gradient(to right top, #051937, #171228, #190a1a, #12040d, #000000);

}

.main-body .section-static {
    color: white;
}

.main-body .about {
    color: white;
    max-width: 900px;
    margin: 0px auto;
    /* padding: 80px 0px; */
}

.main-body .about h1 {

    /* text-transform: uppercase; */
    letter-spacing: 2px;
    font-weight: 700;
    color: #cccccc;
    word-wrap: break-word;
}

.main-body .about .mk {
    color: #6A45B6;
}

.main-body .about .about-description {
    font-size: 1.25em;
    line-height: 30px;
    font-family: 'Rubik', sans-serif;
    color: rgb(223, 223, 223);

}




.section-static .title .section-title {
    position: relative;
    display: inline-block;
    margin-right: 30px;
    text-transform: uppercase;

}


.section-static .title .section-title::after {
    content: '';
    position: absolute;
    top: 35px;
    left: 80px;
    width: 50%;
    /* Ajuste para definir a largura da borda */
    border-bottom: 3px solid var(--cor-secundaria);
    /* Escolha a cor que você preferir */
}

.character .character-body .card {
    overflow: hidden;
    position: relative;
    border: none;
    border-radius: 10px;
    margin-bottom: 30px;
    border-radius: 1px;
    /* Para espaçamento entre os cartões */
}

.character .character-body .card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.character .character-body .card:hover img {
    transform: translateY(-100%);
}

.character .character-body .card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.character .character-body .card:hover .card-body {
    opacity: 1;
}

.animation {
    position: relative;
}

.animation .animation-box {
    background-image: linear-gradient(to right top, #33236045, #3c255a47, #43275541, #472a503d, #4a2e4c36);

}

.animation .animation-body .card {
    height: 230px;

    position: relative;
    width: 100%;

    /* Preenche toda a tela */
    overflow: hidden;
    margin: 0;
    padding: 0;
    border: 0px;
    border-radius: 0px;
}

/* .animation .animation-body {
    position: relative;
} */



.animation .animation-body .card img {
    height: 100%;
}

.animation .animation-body .card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Garante que o vídeo cubra toda a área da tela */
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
}

.animation .animation-body .card {
    cursor: pointer;
}

.dev .dev-body .service-dev-item {
    transition: 0.5s ease-in-out all;
    border-radius: 10px;
}

.dev .dev-body .service-dev-item .service-dev-item-title {
    color: white;

}

.dev .dev-body .service-dev-item .service-dev-item-description {
    font-family: 'Rubik', sans-serif;

}

.dev .dev-body .service-dev-item:hover {
    background-color: #3c255a;
    padding: 10px;
    transform: translateX(10px);
}

.btn-budget a {
    text-transform: uppercase;

}

.btn-view-rojects a {
    text-transform: uppercase;

}

.dev {
    position: relative;
}

.dev .img-line {
    position: absolute;
    border: 2px;
    left: 0;
    width: 100%;
    background-position: bottom;
    z-index: 0px;
    bottom: 150px;
}

.dev .project-dev .item-project-dev {}

.item-project-dev {
    position: relative;
    overflow: hidden;
    object-fit: cover;
    border-radius: 10px;
}

.item-project-dev img {
    width: 100%;
    height: auto;

}

.dev .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: rgba(0, 0, 0, 0.702);
    display: flex;
    justify-content: center;
    align-items: center;
}

.dev .overlay .overlay-box {
    text-transform: uppercase;
    text-align: center;
}

.dev .item-project-dev:hover .overlay {
    opacity: 1;
}

.dev .project-name {
    color: white;
    font-size: 20px;
    text-align: center;
}

.link {
    text-decoration: none;
    color: white;
}

#footer {
    font-size: 0.9em;
    /* font-size: 0.8em; */
    color: white;
    background-image: var(--cor-principal) !important
}


.footer a {
    transition: 0.1s ease-in-out all;
}



.footer a:hover {
    color: var(--cor-secundaria) !important;
}

.box-midia a {
    transition: all 0.3s ease;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
    background-color: transparent;
    padding: 0px;
}

.box-midia a:hover {
    background-color: var(--cor-secundaria);
    transform: scale(1.2);
}

.box-midia a:hover i {
    color: white;
    /* opcional, para mudar a cor do ícone ao passar o mouse */
}

.box-midia i {
    vertical-align: middle;
}

#modalVideo {
    width: 100%;
}

/*time*/

.container-time {
    background-image: linear-gradient(to right top, #33236045, #3c255a47, #43275541, #472a503d, #4a2e4c36);
}

.time .group-card img {
    object-fit: cover;
    object-position: center;
    height: 350px;
    width: 100%;
}

.time .group-card .box-info {
    text-transform: uppercase;
    padding: 2px;
    font-weight: 400;
}

.time .group-card .box-info .title {
    font-size: 0.8em;
}

.time .group-card .box-info .description {
    font-size: 0.7em;
    color: rgb(206, 206, 206);
}



/* Depoimentos */
.depoimentos {
    color: #fff;
}

.depoimento-item {
    padding: 20px;
    border-radius: 8px;
    background: var(--cor-secundaria);
    margin-bottom: 20px;
    text-align: center;

}

.depoimento-icon {
    font-size: 3rem;
    color: var(--cor-principal);
    margin-bottom: 15px;
}

.depoimento-text {
    font-style: italic;
    margin-bottom: 10px;
}

.depoimento-nome {
    font-weight: bold;
}

/* Processo de Desenvolvimento */
.processo-item {
    background: var(--cor-secundaria);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.processo-item i {
    color: var(--cor-principal);
}

/*pagina com os detalhes do projeto*/

@keyframes floatUpDown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0);
    }
}

.float-badge {
    animation: floatUpDown 3s ease-in-out infinite;
}

.title-float-badge {
    color: #8b5cf6
}

.glass-blur {
    background-color: rgba(0, 0, 0, 0.4);
    /* Escuro translúcido */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    /* Safari support */
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    color: #fff;
}
.bg-dark-effmax {
  background-color: #1c1c1e;
}

.logo-bubble {
  background-color: #fff;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
  transition: transform 0.3s;
}

.logo-bubble img {
  max-width: 90%;
  max-height: 90%;
}

.logo-bubble:hover {
  transform: scale(1.05);
}
