@charset "utf-8";

/* SCROLLBAR */

::-webkit-scrollbar{
    width: 10px;
    background: var(--cinza)
}

::-webkit-scrollbar-thumb{
    background: linear-gradient(100deg, var(--cinza), var(--roxo));

}


/* ROOT CORES */
:root {
    --roxo-escuro: #2d1447;
    --roxo: #492073;
    --cinza: #202020;
    --amarelo: #f1b442;
}


/* formatação padrao */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Asap", sans-serif;
}

/* Rolagem suave */
html {
    scroll-behavior: smooth;
}


/* CORPO */
body{
    background: var(--cinza) ;
}

/* CABEÇALHO NAVBAR*/


header {
    width: 80vw;
    position: fixed;
    top: 1em;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--cinza);
    border-radius: 3em;
    padding: 10px 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 9;
}

.header.scrolled {
    box-shadow: inset 0 0 15px 5px rgb(44, 44, 44);
    transition: box-shadow 0.3s ease;
}

/* LOGO  */

.logo{
    color: white;
    font-family: sans-serif;
    font-size: 1em;
}

.navbar a {
    position: relative;
    margin-left: 2em;
    font-size: 1em;
    font-family: sans-serif;
    text-decoration: none;
    color: white;
    transition: all .5s ease-in-out;
}

/* ANIMAÇÃO NAVBAR TEXTO */

.navbar a::after {
    content: "";
    width: 0%;
    height: 1px;
    background-color: white;
    box-shadow: 0 0 10px white;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: .5s ease-in-out;
}

.navbar a:hover::after {
    width: 100%;
}

/* FIM ANIMAÇÃO NAVBAR TEXTO */
/* --------FINAL BOTÃO NAVBAR */


/* MENU MOBILE */

.menu-mobile{
    background-color: black;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99999;
    width: 0%;
    overflow: hidden;
    transition: .5s;
}



/* CONFIG MENU ABRIR */
.menu-mobile.abrir-menu{
width: 70%;
}

.menu-mobile.abrir-menu ~ .overlay-menu{
    display: block;
}


/* ANIMAÇÃO NAVBAR TEXTO */

.menu-mobile nav a{
    text-align: right;
    text-decoration: none;
    font-size: 1.8em;
    padding: 20px 10%;
    display: block;
    color: white;
    transition: all .5s ease-in-out;
}

.menu-mobile nav a:hover{
    background-color: var(--roxo-escuro);
    color: white;
}

/* BOTAO DE FECHAR O MOBILE */

.menu-mobile .btn-fechar{
    padding: 10px 4%;
}

.menu-mobile .btn-fechar i{
color: var(--amarelo);
font-size: 2.5em;
cursor: pointer;
transition: all .5s;
display: flex;
justify-content: end;
}

.menu-mobile .btn-fechar i:hover{
    color: red;
}

/* BOTAO ABRIR MENU */
.btn-abrir-menu i{
    color: white;
    font-size: 40px;
    visibility: hidden;
    cursor: pointer;
    transition: all .5s;
    display: flex;
    justify-content: end;
    text-align: end;
}

.btn-abrir-menu i:hover{
    color: var(--amarelo);
}

/* OVERLAY MENU */
.overlay-menu{
    background-color: rgba(0, 0, 0, 0.473);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 88888;
    display: none;
}

/* FORMATAÇÃO CELULAR HEADER E MENU MOBILE */

@media screen and (max-width: 1020px) {
    header {
    width: 100vw;
}

    /* MENU MOBILE */
    .navbar{
        display: none;
    }

    .btn-abrir-menu i{
        color: white;
        font-size: 40px;
        visibility: visible;
        display: flex;
        justify-content: end;
        text-align: end;
    }

   
    }
    
/* FIM MOBILE */

/* SLOGAN */

/* ANIMAÇÃO */

.absolute{
    position: relative;
    /* top: -100em; */
    inset: 0;
    justify-content: center;
    display: flex;
    flex-direction: row;
}

.justify-center{
    justify-content: center;
    height: 5vh;
    top: -15em;
    z-index: -10;
}

.bg-shape1 {
    width: 400px;
    height: 400px;
    border-radius: 99999px;
    position: relative;
    animation: one 10s infinite;
}

.bg-shape2 {
    width: 300px;
    height: 300px;
    border-radius: 99999px;
    position: relative;
    animation: two 10s infinite;
}

.bg-shape4 {
    width: 350px;
    height: 350px;
    border-radius: 99999px;
    position: relative;
    animation: one 10s infinite;
}

@keyframes one{
    0%{  left: 0px; top: 0px; }
    25%{ left: -100px; top: 70px;}
    50%{left: 20px; top: 150px;}
    75%{left: 50px; top: -100px;}
    100%{left: 0px; top: 0px;}
}

@keyframes two{
    0%{  left: 0px; top: 0px; }
    25%{ left: 50px; top: 10px;}
    50%{left: -10px; top: 50px;}
    75%{left: 50px; top: 100px;}
    100%{left: 0px; top: 0px;}
}

@keyframes tree{
    0%{  left: 0px; top: 0px; }
    25%{ left: 40px; top: 10px;}
    50%{left: 10px; top: 50px;}
    75%{left: 50px; top: 90px;}
    100%{left: 0px; top: 0px;}
}

.opacity-50{
    opacity: 0.6;
}

.bg-blur{
    filter: blur(100px);
}

.bg-primary{
       background-color: var(--roxo);
}

.bg-teal{
    background-color: var(--roxo-escuro);
}

.bg-purple{
    background-color: var(--roxo);
}

.bg-red{
    background-color: var(--roxo-escuro);
}

  
/* SLOGAN */
  .slogan-content{
    font-size: 2em;
    /* line-height: 1.2; */
    color: white;
    text-align: center;
    margin-top: 14em;
  } 

  /* MOBILE SLOGAN */
@media screen and (max-width: 480px) {
  .slogan-content {
    font-size: 1.5em;
    margin-top: 12em;
    padding: 0 1em;
  }

  .btn-chat {
    font-size: 1.1em;
    padding: 10px 20px;
  }
}

  /* BOTAO SITE CHATBOT */

.container-chat{
    display: flex;
    justify-content: center;
    text-align: center;
    margin-top: 8em;
}

.btn-chat {
    padding: 15px 24px;
    background-color: var(--roxo);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.4em;
    transition: all .3s ease-in-out;
}

.btn-chat:hover {
    box-shadow:  0 0 10px 3px var(--roxo);
}
  
  /* QUEM SOMOS */

  .container-sobre{
    display: flex;
  }

  .sobre{
    /* display: flex; */
    margin: 3em; 
  }

  .box-sobre{
    text-align: center;
    color: white;
    padding: 3em;
    /* background: var(--roxo-escuro); */
    box-shadow: inset 0 0 25px 2px var(--roxo);
  }

  /* MOBILE SOBRE */

  @media screen and (max-width: 1020px) {
   .container-sobre{
    display: flex;
    flex-direction: column;
  }
    }

  /* OBJETIVO */
  
  .objetivo{
    text-align: center;
    color: white;
    /* border: solid var(--roxo);
    box-shadow: 10px 1px 10px 1px var(--roxo); */
    margin: 5em;
    padding: 2em;
    font-size: 1.5em;
  }

@media screen and (max-width: 1020px) {
   .objetivo{
    margin: 1em;
    padding: 0;
    font-size: 1.5em;
  }
    }

  .titulo-obj h2{   
    background: var(--roxo-escuro);
    padding: 1em;
    border-radius: 1em 0 2em 1em;
    font-size: 2em;
}

/* CONTAINER ROXO */
.container-roxo{
    background-color: var(--roxo);
    padding: 1em;
}

/* TIMELINE */

.titulo-timeline{
    margin-top: 10em;
    box-shadow: 0 0 80px 80px var(--roxo);
    background: var(--roxo);
    text-align: center;
    color: white;
    padding: 1em;
    font-size: 1.5em;
    position: relative;
}

.titulo-timeline::after{
    position: absolute;
    content: "";
    width: 50%;
    height: 4px;
    left: 50%;
    bottom: -5px;
    background-image: linear-gradient(to right, var(--roxo-escuro), white);
    transform: translate(-50%);
    }

/* CORPO TIMELINE */
/* IMG */
.img-timeline {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin: 15px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* FORMTAÇAO TIMELINE */
/* Título da Timeline */
.titulo-timeline{
    margin-top: 10em;
    box-shadow: 0 0 80px 80px var(--roxo);
    background: var(--roxo);
    text-align: center;
    color: white;
    padding: 1em;
    font-size: 1.5em;
    position: relative;
}

.titulo-timeline::after{
    position: absolute;
    content: "";
    width: 50%;
    height: 4px;
    left: 50%;
    bottom: -5px;
    background-image: linear-gradient(to right, var(--roxo-escuro), white);
    transform: translate(-50%);
}

/* Corpo da Timeline */
.timeline {
    width: 90%;
    max-width: 1000px;
    margin: 100px auto;
    position: relative;
}

/* Linha de Conexão da Timeline */
.timeline::after{
    content: "";
    position: absolute;
    right: 50%;
    width: 5px;
    height: 100%;   
    top: 0;
    background: white;
    border-radius: 50px;
    animation: lineAnimacao 5s linear forwards;
}

@keyframes lineAnimacao {
    0% {
        height: 0;
    }
    100% {
        height: 100%;
    }
}

/* Container de cada item da timeline */
.container-timeline{
    width: 50%;
    position: relative;
    color: white;
    padding: 10px 20px;
    animation: lineAnimacao-container 1s linear forwards;
    opacity: 0;    
    animation-delay: var(--dly);
}

@keyframes lineAnimacao-container{
    0%{
        opacity: 0;
        transform: translateY(-30px);
    }   
    100%{
        opacity: 1;
        transform: translateY(0px);
    } 
}

/* Estilo dos elementos da Timeline (posicionamento das bolinhas) */
.container-timeline:nth-child(even){
    right: -50%;
}

.container-timeline:nth-child(even)::before{
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    background: white;
    top: 0;
    left: -12.5px;
    border-radius: 50%;
    z-index: 10;
}

.container-timeline:nth-child(odd)::before{
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    background: white;
    top: 0;
    right: -8px;
    border-radius: 50%;
    z-index: 10;
}

/* Estilo do conteúdo de texto */
.texto-conteudo{
    padding: 20px 30px;
    background: var(--roxo-escuro);
    border-radius: 10px;
    box-shadow: 0 5px 10px var(--cinza);
}

.texto-conteudo h2{
    font-size: 1em;
    font-weight: bolder;
}

.texto-conteudo h2{
    font-size: 22px;
}

.texto-conteudo p{
    font-size: 20px;
    margin-top: 10px;
}

/* RESPONSIVIDADE TIMELINE  */

/* Tela até 1020px */
@media screen and (max-width: 1020px) {
    .timeline {
        width: 90%;
        margin: 50px auto;
    }

    .container-timeline {
        width: 100%;
        padding: 15px 20px;
        margin-bottom: 2em;
    }

    .container-timeline:nth-child(even), 
    .container-timeline:nth-child(odd) {
        right: 0;
    }

    .container-timeline:nth-child(even)::before,
    .container-timeline:nth-child(odd)::before {
        left: 2%;
        transform: translateX(-50%);
    }

    .timeline::after {
        right: 100%;
        transform: translateX(-50%);
    }
}




/* PARALLAX */
.parallax {
    background-image: url(fotos/technowevento.JPG);
    min-height: 100vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

section.parallax:after{
    content: "";
    height: 100%;
    width: 100%;
    z-index: 8; 
    position: absolute;
    background: linear-gradient(to top, rgba(0,0,0,0) 0, rgba(0, 0,0,0) 50%, var(--roxo)) ;
    
    }



    /* EQUIPE */

.titulo-equipe{
    font-family: sans-serif;
    font-size: 2.4em;
    margin-top: 5em;
    text-align: center;
    color: white;
    /* text-shadow: 0 0 10px white; */
    margin-bottom: 4em;
    border-top: solid var(--roxo);
    padding: 1em;
}

.container-equipe {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1em;
    padding: 1em;
    align-items: stretch; /* Adicionado */
}


/* BOX */
.box-equipe {
    background-color: var(--roxo);
    box-shadow: 0 0 10px 10px var(--roxo-escuro);
    text-align: center;
    margin: 1em;
    width: 20%;
    min-width: 200px;
    padding: 1em;
    border-radius: 6px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Distribui espaço entre conteúdo */
    height: 100%; /* Garante uso total da altura */
    min-height: 480px; /* Defina um valor mínimo consistente */
}

/* FOTO */
.box-equipe .foto {
    width: 100%;
    height: 350px;  /* Define uma altura fixa */
    object-fit: cover;  
    border-radius: 10%;
}


/* RESPONSIVIDADE */
@media screen and (max-width: 1020px) {
    .box-equipe {
        width: 30%;
    }
}

@media screen and (max-width: 768px) {
    .box-equipe {
        width: 45%;
    }
}

@media screen and (max-width: 480px) {
    .box-equipe {
        width: 90%;
    }
}

/* BOX TEXTO */

.box-equipe .nome{
    font-size: 2em;
    font-family: sans-serif;
    border-bottom: solid white;
    padding: .4em;
}

.box-equipe .sub{
    font-family: sans-serif;
    font-size: 1.5em;
    margin-top: .5em;
    margin-bottom: .5em;
}

/* ICONS */

.icons-redes i{
    font-size: 2em;
    color: white;
    margin: 5px;
    transition: all .5s ease-in-out;
     background-color: var(--roxo-escuro);
     padding: 10px;
     border-radius: 10%;
}

.icons-redes i:hover{
    box-shadow: 0 0 10px 5px var(--roxo-escuro);
    padding: 5px;
    margin: 10px;
    /* border-radius: 50%; */
}

/* FOOOOOOOTERRR */
.footer {
    background-color: #2c2c2c;
    color: white;
    font-family: sans-serif;
    padding: 2em 0;  /* Espaçamento superior e inferior */
    position: relative;
    z-index: 10;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* Container do footer */
.footer-content {
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;  /* 1fr para as laterais e 3fr para o centro */
    align-items: center;
    width: 100%;
    max-width: 1600px;
    gap: 2em;
    padding: 0 1em;
}

/* Logo */
.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo img {
    width: 100%;
    max-width: 200px;
    height: auto;
}

/* Informações do lado esquerdo */
.footer-left {
    text-align: left;
    font-size: 1.1em;
}

.footer-left span{
    text-decoration: none;
    color: var(--amarelo);
    text-align: left;
    font-size: 1.1em;
}

/* Informações do lado direito */
.footer-right {
    text-align: right;
}

/* Redes sociais */
.footer-redes {
    /* display: flex;
    justify-content: flex-end; */
    gap: 20px;
    margin-top: 1em;
}

.footer-redes a{
    font-size: 2.5em;
    color: white;
    transition: color 0.3s ease-in-out;  
}


.footer-redes a:hover {
    color: var(--amarelo);  
}


/* Responsividade para dispositivos móveis */
@media screen and (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;  /* Organiza os itens verticalmente em telas menores */
        gap: 1.5em;
    }

    .footer-redes {
        justify-content: center;
        gap: 15px;
    }
}

