@charset 'UTF-8';

:root {

    --cor-1: #0D0D0D;
    --cor-2: #F2F2F2;
    --cor-3: #BFBFBF;
    --cor-detalhe: #8B5CF6;
    --cor-hover: #9064f7;
    --cor-sub-detalhe: #3B82F6;
    --cor-nav: #0d0d0dbe;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--cor-1);
    font-family: 'Inter', Arial, Helvetica, sans-serif;
}

h1, h2, h3 {
    font-family: 'Sora', Arial, Helvetica, sans-serif;
}

section {
    scroll-margin-top: 70px;
}


/* Nav bar */
a {
    text-decoration: none;
    color: var(--cor-3);
}

a.ctf {
    background-color: var(--cor-detalhe);
    padding: 15px 50px;
    border-radius: 5px;
    color: var(--cor-2);
    font-weight: bold;
    transition: 0.3s;
}

a.ctf:hover {
    background-color: var(--cor-hover);
    box-shadow: 1px 0px 5px var(--cor-hover);
    color: var(--cor-2);
}

a.ctf.ativo {
    color: var(--cor-2);
    padding-bottom: 8px;
}

a.ativo {
    color: var(--cor-detalhe); 
    border-bottom: 2px solid var(--cor-detalhe); 
    padding-bottom: 5px;
}

img#logo {
    border-radius: 3px;
}

header {
    position: sticky;
    top: 0;
    z-index: 999;
}

nav {
    background-color: var(--cor-nav);

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0 10px;
    height: 70px;
    border-bottom: 1px solid #bfbfbf41;
}

nav ul {
    gap: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: var(--cor-1);
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    width: 75%;
    max-width: 350px;
    height: 100vh;
    padding: 80px 40px 40px 40px;
    box-shadow: -10px 0 20px rgba(0, 0, 0, 0.7);
    z-index: 1000;

    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.35s ease, visibility 0.35s ease;
}

nav li {
    list-style-type: none;
}

nav a:hover {
    color: var(--cor-hover);
    transition: 0.3s;
}

img#logo-menu {
    position: absolute; 
    top: 12px; 
    left: 40px; 
    width: 26px; 
    border-radius: 3px;
}


#btn-menu {
    position: fixed; 
    top: 23px;
    right: 20px;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1002;
}

#btn-menu .linha {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--cor-3);
    transition: all 0.3s ease-in-out;
}

#btn-menu .linha:nth-child(1) { top: 0px; }
#btn-menu .linha:nth-child(2) { top: 10px; }
#btn-menu .linha:nth-child(3) { top: 20px; }

#btn-menu.ativo-mobile .linha:nth-child(1) {
    top: 10px;
    transform: rotate(45deg);
}

#btn-menu.ativo-mobile .linha:nth-child(2) {
    opacity: 0;
}

#btn-menu.ativo-mobile .linha:nth-child(3) {
    top: 10px;
    transform: rotate(-45deg);
}


#btn-menu.ativo-mobile .linha {
    background-color: #fff;
}

nav ul.ativo-mobile {
    transform: translateX(0);
    visibility: visible;
}

nav ul li a {
    color: var(--cor-2);
    font-size: 1.1rem;
    font-weight: normal;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
}
nav ul li a.ativo {
    color: var(--cor-detalhe);
    font-weight: bold;
}

nav ul li a.ativo::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 80%;
}

nav ul li {
    width: 100%;
    margin-bottom: 25px;
}

nav ul li:last-child {
    margin-top: auto;
    margin-bottom: 0;
}

nav ul li a.ctf {
    display: block;
    width: 100%;
    text-align: center;
    padding: 16px 0;
    border-radius: 6px;
    font-weight: bold;
    font-size: 1.1rem;
}

nav ul li a:hover {
    color: var(--cor-hover);

}

nav ul li a.ctf:hover {
    color: var(--cor-2);
}
/* Fim da nav bar! */

/* Home */
section#home {
  background-image: 
        linear-gradient(to bottom, transparent 60%, var(--cor-1) 100%), 
        linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 100%), 
        url('../imagens/home.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    height: 87vh;
}

.grid {
    display: grid;
    grid-template-columns: 30px 1fr 30px;
}

.container {
    grid-column: 2 / 3;
    align-self: center;
}

.titulo {
    color: var(--cor-2);
    font-weight: bold;
    font-size:xx-large;
    margin-bottom: 20px;
}

.container > div.conteudo-home > p {
    color: var(--cor-3);
    text-align: justify;
    margin-bottom: 25px;
}

.container > div.conteudo-home {
    max-width: 600px;
}

div.butao {
    display: flex;
    gap: 15px;
}

a.btn-sec {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--cor-2);
    padding: 15px 35px;
    border-radius: 5px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

a.btn-sec:hover {
    background-color: rgba(255, 255, 255, 0.2); 
    backdrop-filter: blur(4px);
}
/* Fim da Home */

/* Como Funciona */
section#como-funciona {
    background-color: var(--cor-1);
    min-height: 80vh;
}

.container-2 {
    grid-column: 2 / 3;
    justify-items: center;
}

.conteudo-como-funciona {
    max-width: 600px;
    text-align: center;
    margin-top: 70px;
}

.conteudo-como-funciona > p {
    color: var(--cor-3);
    max-width: 500px;
    margin: auto;
    line-height: 1.5;
}

.conteudo-como-funciona > .layout-colunas > .texto-box {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 5px;
    background-color: #1A1A1A;
    color: var(--cor-2);
    margin-top: 30px;
    margin-bottom: 70px;
    padding: 10px;

    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

.conteudo-como-funciona > .layout-colunas > .texto-box > div.item-passo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: justify;
    padding: 15px;
    gap: 15px;

    border-radius: 8px;
    width: 100%; 
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.conteudo-como-funciona > .layout-colunas > .texto-box > div.item-passo:hover {
    background-color: rgba(255, 255, 255, 0.05); 
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.4); 
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.conteudo-como-funciona >  .layout-colunas > .texto-box > div > span {
    margin-right: 10px;
    color: var(--cor-detalhe);
}

.micro-texto > h3 {
    margin-bottom: 5px;
}

.micro-texto > p {
    color: var(--cor-3);
}

.imagem-box {
    max-width: 600px;
    margin-top: 30px;
}

.imagem-box img {
    width: 100%;
    height: 300px;
    
    border-radius: 12px; 
    
    object-fit: cover;
    display: block;
}
/* Fim do Como Funciona */

/* Serviços   */
#servicos {
    min-height: 90vh;
    width: 100vw;
    padding-bottom: 40px;
}

.secao-grid-animado {
    background-color: rgb(61, 61, 61); 
    
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.7) 2px, transparent 2px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.7) 2px, transparent 2px);
        
    background-size: 40px 40px; 
    
    animation: moverDiagonal 3s linear infinite;

    min-height: 500px;
}

@keyframes moverDiagonal {
    0% {
        background-position: 0px 0px;
    }
    100% {
        background-position: 40px 40px;
    }
}

div.container-3 {
    grid-column: 2 / 3;
}

div.conteudo-servicos {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    margin-top: 10px;
}

.cabecalho-seco {
    background-color: rgba(0, 0, 0, 0.4); 
    backdrop-filter: blur(6px); 
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--cor-3);
    
    padding: 15px 45px;
    border-radius: 16px;
 
    max-width: 800px;
    margin-bottom: 40px;
    text-align: center;
}

div.conteudo-servicos > .cabecalho-seco > h2{
    color: var(--cor-2);
    font-weight: bolder;
    font-size: xx-large;
    text-align: center;

    margin-bottom: 5px;
}

div.mini-box {
    color: var(--cor-2);
    background-color: rgba(26, 11, 46, 0.85); 
    backdrop-filter: blur(8px);
    border: 1px solid rgba(138, 75, 255, 0.15);
    border-radius: 5px;

    padding: 10px;
    margin-bottom: 20px;
}

div.mini-box > span {
    margin-bottom: 20px;
}

div.mini-box > h3 {
    color: #F1F5F9;
    margin-bottom: 7px;
}

div.mini-box > p {
    color: #CBD5E1;
    line-height: 1.5;
}
/* Fim do Serviços */

/* Explicação */
section.explicacao {
    background-color: #15101F;
    background-image: linear-gradient(to bottom, #0D0D0D 0%, #15101F 200px);
}

.conteudo-explicacao {
    margin-top: 140px;
    margin-bottom: 130px;
}

.cabecalho-explicacao {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.cabecalho-explicacao > p {
    color: var(--cor-3);
    line-height: 1.5;
}

.lista-cards-explicacao {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.card-explicacao {
    display: flex;
    flex-direction: column;
    gap: 20px;

    background-color: #1A1A1A;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px;

    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.card-explicacao.revelado {
    opacity: 1;
    transform: translateY(0);
}

.texto-card-explicacao {
    flex: 1;
}

.numero-card {
    display: block;
    color: var(--cor-detalhe);
    font-weight: bold;
    margin-bottom: 10px;
}

.texto-card-explicacao > h3 {
    color: var(--cor-2);
    margin-bottom: 10px;
}

.texto-card-explicacao > p {
    color: var(--cor-3);
    line-height: 1.5;
}

.imagem-card-explicacao {
    flex: 1;
}

.imagem-card-explicacao img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}
/* Fim da Explicação */

/* Call (Agendar) */
section#call {
    min-height: 90vh;
    align-content: center;
}

.card-call {
    display: flex;
    flex-direction: column;
    gap: 40px;

    background-color: #1E1729;
    border: 1px solid rgba(138, 75, 255, 0.15);
    border-radius: 20px;
    padding: 40px 25px;

    margin: 80px 0;
}

.conteudo-call {
    flex: 1;
}

.conteudo-call > p {
    color: var(--cor-3);
    line-height: 1.5;
}

.formulario-call {
    flex: 1;

    display: flex;
    flex-direction: column;
    gap: 18px;
}

.campo-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.campo-form label {
    color: var(--cor-2);
    font-size: 0.9rem;
}

.campo-form input,
.campo-form textarea {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 15px;

    color: var(--cor-2);
    font-family: inherit;
    font-size: 1rem;

    transition: border 0.3s;
}

.campo-form textarea {
    resize: vertical;
}

.campo-form input::placeholder,
.campo-form textarea::placeholder {
    color: #6b6b6b;
}

.campo-form input:focus,
.campo-form textarea:focus {
    outline: none;
    border: 1px solid var(--cor-detalhe);
}

.btn-form {
    background-color: var(--cor-detalhe);
    color: var(--cor-2);
    font-weight: bold;
    font-size: 1rem;

    border: none;
    border-radius: 8px;
    padding: 15px;

    cursor: pointer;
    transition: 0.3s;
}

.btn-form:hover {
    background-color: var(--cor-hover);
    box-shadow: 0px 0px 10px var(--cor-hover);
}
/* Fim do Call */

/* Footer */
footer {
    background-color: var(--cor-1);
    border-top: 1px solid #bfbfbf41;
    padding: 60px 30px 0 30px;
}

.conteudo-footer {
    display: flex;
    flex-direction: column;
    gap: 40px;

    max-width: 1100px;
    margin: 0 auto;
}

.coluna-footer h3 {
    color: var(--cor-2);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.logo-footer {
    color: var(--cor-2);
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.logo-footer span {
    color: var(--cor-detalhe);
}

.coluna-marca > p {
    color: var(--cor-3);
    line-height: 1.6;
    max-width: 320px;
    margin-bottom: 20px;
}

.coluna-footer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.coluna-footer ul a {
    color: var(--cor-3);
    transition: color 0.3s;
}

.coluna-footer ul a:hover {
    color: var(--cor-detalhe);
}

.lista-contato li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--cor-3);
}

.lista-contato .material-symbols-outlined {
    color: var(--cor-detalhe);
    font-size: 20px;
}

.lista-contato .instagram-symbol {
    display: flex;
    align-items: center;
}

.rodape-footer {
    border-top: 1px solid #bfbfbf41;
    margin-top: 50px;
    padding: 25px 0;
    text-align: center;
}

.rodape-footer p {
    color: var(--cor-3);
    font-size: 0.9rem;
}
/* Fim do Footer */

