@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #eee;
    font-family: Poppins;
    font-size: 12px;
    overflow-x: hidden;
}

/* Início preloader */
.preloader {
    width: 100%;
    height: 100%;
    position: fixed;
    /* Use fixed instead of absolute */
    top: 0;
    left: 0;
    background-color: #1E1F20;
    z-index: 10000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.5s ease;
    /* Add transition for fade-out */
}

.preloader-logo {
    width: 100px;
    height: 100px;
}

.preloader1 {
    animation: animateOne 0.4s linear infinite alternate;
}

.preloader2 {
    animation: animateTwo 1s linear infinite alternate;
}

@keyframes animateOne {
    0% {
        opacity: 0;
        fill: #ffffff;
    }

    100% {
        opacity: 1;
        fill: #66FCF1;
    }
}

@keyframes animateTwo {
    0% {
        opacity: 0;
        fill: #ffffff;
    }

    100% {
        opacity: 1;
        fill: #66fcf1;
    }
}

/* Fim preloader */


a {
    text-decoration: none;
}

header {
    width: 100%;
    max-width: 80%;
    margin: auto;
    height: 50px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 100;
}

header a {
    color: #eee;
    margin: 5px 0 0 15px;
}

.logo img {
    width: 130px;
    height: auto;
    margin-top: 25px;
}

.menu {
    margin-top: 15px;
}

/* carousel */
.carousel {
    height: 100vh;
    margin-top: -50px;
    width: 100vw;
    overflow: hidden;
    position: relative;
    z-index: 99;
}

.carousel .list .item {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0 0 0 0;
}

.carousel .list .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel .list .item .content {
    position: absolute;
    top: 20%;
    width: 100%;
    max-width: 80%;
    left: 50%;
    transform: translateX(-50%);
    padding-right: 30%;
    box-sizing: border-box;
    color: #fff;
    text-shadow: 0 5px 10px #0004;
}

.carousel .list .item .author {
    font-weight: bold;
    letter-spacing: 10px;
}

.carousel .list .item .title,
.carousel .list .item .topic {
    font-size: 5em;
    font-weight: bold;
    line-height: 1.3em;
}

.carousel .list .item .topic {
    color: #66FCF1;
}

/*Botão whatsApp Portfolio */
.carousel .buttons {
    display: grid;
    grid-template-columns: repeat(2, 130px);
    grid-template-rows: 40px;
    gap: 15px;
    margin-top: 20px;
    justify-content: left;
}

.carousel .buttons a {
    text-decoration: none;
    display: grid;
    width: 100%;
}

.carousel .buttons button {
    border: none;
    font-family: Poppins, sans-serif;
    font-weight: 500;
    border-radius: 10px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, color 0.3s, border 0.3s, transform 0.3s;
    padding: 0 10px;
    /* Adicionando padding para dar espaço extra se necessário */
    letter-spacing: 2px;
}

.carousel .buttons button i {
    margin-right: 4px;
}

.carousel .buttons .whatsapp-button {
    background-color: #66FCF1;
    color: #000;
}

.carousel .buttons .whatsapp-button:hover {
    background-color: #25D366;
    /* Cor oficial do WhatsApp */
    color: #fff;
    transform: scale(1.05);
}

.carousel .buttons .portfolio-button {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
}

.carousel .buttons .portfolio-button:hover {
    background-color: transparent;
    color: #66FCF1;
    border: 1px solid #66FCF1;
    transform: scale(1.05);
}

/* thumbail */
.thumbnail {
    position: absolute;
    bottom: 50px;
    left: 50%;
    width: max-content;
    z-index: 100;
    display: flex;
    gap: 20px;
}

.thumbnail .item {
    width: 150px;
    height: 220px;
    flex-shrink: 0;
    position: relative;
}

.thumbnail .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.thumbnail .item .content {
    color: #fff;
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
}

.thumbnail .item .content .title {
    font-weight: 500;
}

.thumbnail .item .content .description {
    font-weight: 300;
}

/* arrows */
.arrows {
    position: absolute;
    top: 80%;
    right: 52%;
    z-index: 100;
    width: 300px;
    max-width: 30%;
    display: flex;
    gap: 10px;
    align-items: center;
}

.arrows button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #eee4;
    border: none;
    color: #fff;
    font-family: monospace;
    font-weight: bold;
    transition: .5s;
}

.arrows button:hover {
    background-color: #fff;
    color: #000;
}

/* animation */
.carousel .list .item:nth-child(1) {
    z-index: 1;
}

/* animation text no primeiro item */

.carousel .list .item:nth-child(1) .content .author,
.carousel .list .item:nth-child(1) .content .title,
.carousel .list .item:nth-child(1) .content .topic,
.carousel .list .item:nth-child(1) .content .des,
.carousel .list .item:nth-child(1) .content .buttons {
    transform: translateY(50px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent .5s 1s linear 1 forwards;
}

@keyframes showContent {
    to {
        transform: translateY(0px);
        filter: blur(0px);
        opacity: 1;
    }
}

.carousel .list .item:nth-child(1) .content .title {
    animation-delay: 1.2s !important;
}

.carousel .list .item:nth-child(1) .content .topic {
    animation-delay: 1.4s !important;
}

.carousel .list .item:nth-child(1) .content .des {
    animation-delay: 1.6s !important;
}

.carousel .list .item:nth-child(1) .content .buttons {
    animation-delay: 1.8s !important;
}

/* create animation no proximo click */
.carousel.next .list .item:nth-child(1) img {
    width: 150px;
    height: 220px;
    position: absolute;
    bottom: 50px;
    left: 50%;
    border-radius: 30px;
    animation: showImage .5s linear 1 forwards;
}

@keyframes showImage {
    to {
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
}

.carousel.next .thumbnail .item:nth-last-child(1) {
    overflow: hidden;
    animation: showThumbnail .5s linear 1 forwards;
}

.carousel.prev .list .item img {
    z-index: 100;
}

@keyframes showThumbnail {
    from {
        width: 0;
        opacity: 0;
    }
}

.carousel.next .thumbnail {
    animation: effectNext .5s linear 1 forwards;
}

@keyframes effectNext {
    from {
        transform: translateX(150px);
    }
}

/* running time */

.carousel .time {
    position: absolute;
    z-index: 1000;
    width: 0%;
    height: 3px;
    background-color: #66FCF1;
    left: 0;
    top: 0;
}

.carousel.next .time,
.carousel.prev .time {
    animation: runningTime 3s linear 1 forwards;
}

@keyframes runningTime {
    from {
        width: 100%
    }

    to {
        width: 0
    }
}


/* prev click */

.carousel.prev .list .item:nth-child(2) {
    z-index: 2;
}

.carousel.prev .list .item:nth-child(2) img {
    animation: outFrame 0.5s linear 1 forwards;
    position: absolute;
    bottom: 0;
    left: 0;
}

@keyframes outFrame {
    to {
        width: 150px;
        height: 220px;
        bottom: 50px;
        left: 50%;
        border-radius: 20px;
    }
}

.carousel.prev .thumbnail .item:nth-child(1) {
    overflow: hidden;
    opacity: 0;
    animation: showThumbnail .5s linear 1 forwards;
}

.carousel.next .arrows button,
.carousel.prev .arrows button {
    pointer-events: none;
}

.carousel.prev .list .item:nth-child(2) .content .author,
.carousel.prev .list .item:nth-child(2) .content .title,
.carousel.prev .list .item:nth-child(2) .content .topic,
.carousel.prev .list .item:nth-child(2) .content .des,
.carousel.prev .list .item:nth-child(2) .content .buttons {
    animation: contentOut 1.5s linear 1 forwards !important;
}

@keyframes contentOut {
    to {
        transform: translateY(-150px);
        filter: blur(20px);
        opacity: 0;
    }
}

@media screen and (max-width: 678px) {
    .body {
        overflow-x: hidden;
    }

    .carousel .list .item .content {
        padding-right: 0;
        padding-left: 0;
    }

    .carousel .list .item .content .title {
        font-size: 30px;
    }

}

/* Animação específica para seções */
.heading h2, 
.services h2, 
.portfolio h2, 
.evolucao h2, 
.aplicativos h2, 
.logotipos h2, 
.trafego h2, 
.videos h2, 
.saas h2,
.section-padding h2,
.faq h2 {
    animation: hu__hu__ infinite 2s ease-in-out;
}

@keyframes hu__hu__ {
    50% { 
        transform: translateY(30px); 
    }
}
/* Animação específica para seções */


/* Estilos da seção Heading */
.heading {
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px;
    background: #1E1F20;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.heading-content {
    text-align: center;
    margin-bottom: 40px;
    margin-top: 40px;
}

.heading-content h2 {
    font-size: 3.5em;
    color: #eee;
}

.heading-content .divider {
    width: 60%;
    height: 2px;
    /* Ajuste a altura do traço conforme necessário */
    background-color: #66FCF1;
    margin: 20px auto;
    /* Centraliza o traço e adiciona espaçamento vertical */
}

.heading-content h3 {
    font-size: 2em;
    color: #66FCF1;
    margin-top: 40px;
}

.heading-content p {
    font-size: 1.3em;
    color: #eee;
}

.strong .verde {
    color: #66FCF1;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.column {
    flex: 1;
    min-width: calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    padding: 10px;
    box-sizing: border-box;
}

.item-box {
    background: #1E1F20;
    padding: 70px 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 5);
    transition: transform 0.3s ease;
    border: 2px solid #66FCF1;
    /* Adiciona a borda aqui */

}

.item-box .divider {
    width: 60%;
    height: 2px;
    /* Ajuste a altura do traço conforme necessário */
    background-color: #66FCF1;
    margin: 40px auto;
    /* Centraliza o traço e adiciona espaçamento vertical */
}

.item-box:hover {
    transform: translateY(-10px);
    background: #000;
}

.item-box .icon {
    margin-bottom: 10px;
}

.item-box .icon img {
    width: 7.5rem;
    height: auto;
}

.item-box h4 {
    font-size: 2em;
    color: #eee;
    margin-bottom: 10px;
}

.item-box p {
    font-size: 1.1em;
    color: #f9f9f9;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .heading-content {
        margin-bottom: 40px;
    }

    .row {
        flex-direction: column;
    }

    .column {
        min-width: 100%;
        max-width: 100%;
        padding: 0;
        margin-bottom: 20px;
    }

    .item-box p {
        font-size: 1.2em;
        color: #f9f9f9;
    }
}

/* Estilo para o texto verde */
.verde {
    color: #66FCF1;
}
/* texto que coloquei entre as frases */


/* Estilos da seção Serviços */
.services {
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px;
    background: #1E1F20;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.services-content {
    text-align: center;
    margin-bottom: 40px;
    margin-top: 40px;
}

.services-content h2 {
    font-size: 3.5em;
    color: #eee;
}

.services-content .divider {
    width: 60%;
    height: 2px;
    /* Ajuste a altura do traço conforme necessário */
    background-color: #66FCF1;
    margin: 20px auto;
    /* Centraliza o traço e adiciona espaçamento vertical */
}

.services-content h3 {
    font-size: 2em;
    color: #66FCF1;
    margin-top: 40px;
}

.services-content p {
    font-size: 1.3em;
    color: #eee;
}

.services .item-box .icon img {
    width: 3.5rem;
    height: auto;
}

/* Estilos para a coluna "devs" */
.column.devs .item-box {
    background: #66FCF1;
    padding: 20px;
    /* Ajuste conforme necessário */
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 2px solid #66FCF1;
    /* Borda preta */
}

.column.devs h4,
.column.devs p,
.column.devs .icon img {
    color: #1E1F20;
    /* Cor do texto */
}

.column.devs .divider {
    width: 60%;
    height: 2px;
    /* Ajuste a altura do traço conforme necessário */
    background-color: #1E1F20;
    margin: 20px auto;
    /* Centraliza o traço e adiciona espaçamento vertical */
    margin-top: 40px;
    margin-bottom: 40px;
}

.column.devs .item-box {
    padding: 70px 20px;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .services-content {
        margin-bottom: 40px;
    }
}

/* Estilo Portfólio */
.portfolio {
    max-width: 100%;
    margin: auto;
    padding: 50px 20px;
    margin-bottom: 40px;
    text-align: center;
    margin-bottom: 40px;
    margin-top: 40px;
}

.portfolio h2 {
    font-size: 3.5em;
    color: #eee;
}

.portfolio .divider {
    width: 60%;
    height: 2px;
    /* Ajuste a altura do traço conforme necessário */
    background-color: #66FCF1;
    margin: 20px auto;
    /* Centraliza o traço e adiciona espaçamento vertical */
}

.portfolio h3 {
    font-size: 2em;
    color: #66FCF1;
    margin-top: 40px;
}

.portfolio p {
    font-size: 1.3em;
    color: #eee;
}

section.portfolio {
    padding: 80px 4%;
    box-shadow: 0 0 40px 10px #ffffff1d;
}

section.portfolio .flex {
    justify-content: space-around;
    display: flex;
}

.img-portfolio {
    width: 360px;
    height: 460px;
    background-size: cover;
    background-position: 100% 0%;
    transition: 8s;
    cursor: pointer;
    border-radius: 10px;
    position: relative;
    margin-top: 40px;

}

.img-portfolio:hover {
    background-position: 100% 100%;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0000005a;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    opacity: 0;
    transition: 5s;
}

.overlay:hover {
    opacity: 1;
}

/* Estilo Carrosel Designers */
.carousel-designers-container {
    width: 100%;
    overflow: hidden;
    height: 500px; /* Ajuste conforme necessário */
    margin-top: 50px;
    position: relative;
}

.carousel-designers {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
}

.carousel-designers-item {
    min-width: 295px;
    height: 280px;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.carousel-designers-item img {
    width: 295px;
    height: 281px;
    object-fit: cover;
    border-radius: 10px;
}

.carousel-content {
    margin-top: 20px;
}

.carousel-content h3 {
    font-size: 1.6em;
    color: #eee;
    font-weight: bold;
    margin: 10px 0;
}

.carousel-content h4 {
    font-size: 1.2em;
    font-weight: 600;
    color: #999;
    margin: 5px 0;
}

.carousel-content p {
    font-size: 1.3em;
    color: #999;
    margin: 5px 0 30px;
}

.carousel-btn {
    display: inline-block;
    padding: 8px 16px;
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 14px;
    transition: background-color 0.3s;
    letter-spacing: 2px;
}

.carousel-btn:hover {
    background-color: transparent;
    color: #66FCF1;
    border: 1px solid #66FCF1;
    transform: scale(1.05);
}

/* Carrossel Botoes Avancar e Voltar */
.carousel-btn-prev, .carousel-btn-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    z-index: 10;
}

.carousel-btn-prev {
    left: 10px;
}

.carousel-btn-next {
    right: 10px;
}

.carousel-btn-prev:hover, .carousel-btn-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}


/* Responsivo Carrossel */
@media (max-width: 768px) {
    .carousel-designers-container {
        height: 550px; /* Ajuste conforme necessário */
    }
    .carousel-content {
        width: 100%;
        max-width: 368px;
    }
    .carousel-designers-item img {
        width: 368px;
        height: auto;
    }   
}

/*Botão whatsApp Portfolio */
.portfolio .buttons {
    display: grid;
    grid-template-columns: repeat(2, 130px);
    grid-template-rows: 40px;
    gap: 15px;
    margin-top: 70px;
    justify-content: center;
}

.portfolio .buttons a {
    text-decoration: none;
    display: inline-block;
    width: 100%;
}

.portfolio .buttons button {
    border: none;
    font-family: Poppins, sans-serif;
    font-weight: 500;
    border-radius: 10px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, color 0.3s, border 0.3s, transform 0.3s;
    padding: 0 10px;
    /* Adicionando padding para dar espaço extra se necessário */
    letter-spacing: 2px;
}

.portfolio .buttons button i {
    margin-right: 4px;
}

.portfolio .buttons .whatsapp-button {
    background-color: #66FCF1;
    color: #000;
}

.portfolio .buttons .whatsapp-button:hover {
    background-color: #25D366;
    /* Cor oficial do WhatsApp */
    color: #fff;
    transform: scale(1.05);
}

.portfolio .buttons .transparente-button {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
}

.portfolio .buttons .transparente-button:hover {
    background-color: transparent;
    color: #66FCF1;
    border: 1px solid #66FCF1;
    transform: scale(1.05);
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .section.portfolio {
        margin-bottom: 40px;
    }

    .flex {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

/* Estilo Linha de Evolução */
.evolucao {
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px;
    background: #1E1F20;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

}

.evolucao-content {
    text-align: center;
    margin-bottom: 40px;
    margin-top: 40px;
}

.evolucao-content h2 {
    font-size: 3.5em;
    color: #eee;
}

.evolucao-content .divider {
    width: 60%;
    height: 2px;
    /* Ajuste a altura do traço conforme necessário */
    background-color: #66FCF1;
    margin: 20px auto;
    /* Centraliza o traço e adiciona espaçamento vertical */
}

.evolucao-content h3 {
    font-size: 2em;
    color: #66FCF1;
    margin-top: 40px;
}

.evolucao-content p {
    font-size: 1.3em;
    color: #eee;
}

.evolucao .item-box {
    border: 2px solid #000;
}

.evolucao .item-box .icon img {
    width: 15rem;
    height: auto;
    border-radius: 50%;
    border: 2px solid #66FCF1;
}

.evolucao .item-box .icon-ev img {
    width: 3.5rem;
    height: auto;
}


/* Estilo Aplicativos */
.aplicativos {
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px;
    margin-bottom: 40px;
    margin-top: 40px;
    background-color: #1E1F20;
}

.aplicativos h2 {
    font-size: 3.5em;
    color: #eee;
    text-align: center;
}

.aplicativos .divider {
    width: 60%;
    height: 2px;
    background-color: #66FCF1;
    margin: 20px auto;
}

.aplicativos h3 {
    font-size: 2em;
    color: #66FCF1;
    margin-top: 40px;
}

.aplicativos p {
    font-size: 1.3em;
    color: #eee;
    margin-bottom: 20px;
}

.aplicativos .content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: left;
}

.aplicativos .text-content {
    flex: 1;
    padding: 20px;
    min-width: 300px;
}

.aplicativos .image-content {
    flex: 1;
    padding: 20px;
    text-align: center;
}

.aplicativos .image-content img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .aplicativos .content {
        flex-direction: column;
        text-align: center;
    }

    .aplicativos .text-content,
    .aplicativos .image-content {
        max-width: 100%;
        padding: 10px;
    }
}

/* seção Counters estilos básicos */
.counters-section {
    max-width: 1200px;
    margin: auto;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 50px 20px;
    text-align: center;
    color: #fff;
    margin-top: -40px;
}

.counters-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    /* escurecido 50% */
    z-index: 1;
}

.counters-section .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
}

.counters-section .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.counters-section .counter-column {
    flex: 1;
    min-width: calc(25% - 20px);
    max-width: calc(25% - 20px);
    padding: 10px;
    box-sizing: border-box;
}

.counters-section .facts-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 5);
    transition: transform 0.3s ease;
}

.counters-section .facts-item:hover {
    transform: translateY(-10px);
}

.counters-section .facts-item .icon {
    margin-bottom: 10px;
}

.counters-section .facts-item .icon img {
    width: 50px;
    height: auto;
}

.counters-section .facts-item h3 {
    font-size: 2em;
    margin-bottom: 5px;
    color: #fff;
}

.counters-section .facts-item h4 {
    font-size: 1.2em;
    color: #66FCF1;

}

/* Estilos responsivos */
@media (max-width: 768px) {
    .counters-section .row {
        flex-direction: column;
        background-position: center;
    }

    .counters-section .counter-column {
        min-width: 100%;
        max-width: 100%;
        padding: 0;
        margin-bottom: 20px;
    }
}

/* Estilo Logotipos */
.logotipos {
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px;
    margin-bottom: 40px;
    text-align: center;

    background-color: #1E1F20;
}

.logotipos h2 {
    font-size: 3.5em;
    color: #eee;
}

.logotipos .divider {
    width: 60%;
    height: 2px;
    /* Ajuste a altura do traço conforme necessário */
    background-color: #66FCF1;
    margin: 20px auto;
    /* Centraliza o traço e adiciona espaçamento vertical */
}

.logotipos h3 {
    font-size: 2em;
    color: #66FCF1;
    margin-top: 40px;
}

.logotipos p {
    font-size: 1.3em;
    color: #eee;
}

/* Estilo Carrosel Logotipos */
.carousel-logotipos-container {
    width: 100%;
    overflow: hidden;
    height: 150px;
}

.carousel-logotipos {
    display: flex;
    gap: 40px;
    /* Espaço entre os itens */
    margin-top: 40px;
}

.carousel-logotipos-item {
    min-width: 200px;
    flex: 1 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-logotipos-item img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {

    .carousel-logotipos-item {
        min-width: 100%;
    }
}

/* Estilos da seção Trafego pago */
.trafego {
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px;
    background: #1E1F20;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

}

.trafego-content {
    text-align: center;
    margin-bottom: 40px;
    margin-top: 40px;
}

.trafego-content h2 {
    font-size: 3.5em;
    color: #eee;
}

.trafego-content .divider {
    width: 60%;
    height: 2px;
    /* Ajuste a altura do traço conforme necessário */
    background-color: #66FCF1;
    margin: 20px auto;
    /* Centraliza o traço e adiciona espaçamento vertical */
}

.trafego-content h3 {
    font-size: 2em;
    color: #66FCF1;
    margin-top: 40px;
}

.trafego-content p {
    font-size: 1.3em;
    color: #eee;
}

.trafego .item-box .icon img {
    width: 3.5rem;
    height: auto;
}

/* Estilo CTA (Call-to-Action) */
.cta-section {
    background-image: url('image/22.png');
    background-size: cover;
    background-position: center;
    width: 100%;
    max-width: 1200px;
    min-height: auto;
    margin: auto;
    padding: 50px 20px;
    text-align: center;
    align-items: center;
    color: white;
    position: relative;
}

.cta-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.5em;
    margin-bottom: 30px;
}

.cta-section .buttons {
    display: grid;
    /*Estilo Borão WhastApp Footer */
    grid-template-columns: repeat(1, 130px);
    grid-template-rows: 40px;
    gap: 15px;
    margin-top: 10px;
    justify-content: center;
}

.cta-section .buttons a {
    text-decoration: none;
    display: flex;

}

.cta-section .buttons button {
    border: none;
    font-family: Poppins, sans-serif;
    font-weight: 500;
    border-radius: 10px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, color 0.3s, border 0.3s, transform 0.3s;
    padding: 0 10px;
    /* Adicionando padding para dar espaço extra se necessário */
    letter-spacing: 2px;
}

.cta-section .buttons button i {
    margin-right: 4px;
}

.cta-section .buttons .whatsapp-button {
    background-color: transparent;
    border: 1px solid #66FCF1;
    color: #66FCF1;
}

.cta-section .buttons .whatsapp-button:hover {
    background-color: #25D366;
    /* Cor oficial do WhatsApp */
    color: #fff;
    border: none;
    transform: scale(1.05);
}

.cta-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-links a {
    text-decoration: none;
    color: white;
    font-size: 1rem;
    margin-top: 20px;
}

.cta-links a:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .cta-section {
        background-position: center;
        padding: 80px 0;

    }

    .cta-content h1 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .cta-links a {
        font-size: 1rem;
    }
}

/* Estilo Principal para a Seção "Planos" */
.planos {
    max-width: 1200px;
    /* Ajuste de largura */
    margin: auto;
    padding: 50px 20px;
    background: #1E1F20;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.planos-content {
    text-align: center;
    margin-bottom: 40px;
    margin-top: 40px;
}

.planos-content h2 {
    font-size: 3.5em;
    color: #eee;
}

.planos-content .divider {
    width: 60%;
    height: 2px;
    /* Ajuste a altura do traço conforme necessário */
    background-color: #66FCF1;
    margin: 20px auto;
    /* Centraliza o traço e adiciona espaçamento vertical */
}

.planos-content h3 {
    font-size: 2em;
    color: #66FCF1;
    margin-top: 40px;
}

.planos-content p {
    font-size: 1.3em;
    color: #eee;
}

/* Configuração das Colunas e Itens */
.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    /* Espaço entre as colunas */
}

.column {
    flex: 1;
    min-width: calc(33.333% - 20px);
    /* Ajusta largura e mantém espaço */
    max-width: calc(33.333% - 20px);
    padding: 10px;
    box-sizing: border-box;
}

.item-box {
    background: #1E1F20;
    /* Cor de fundo */
    padding: 70px 20px;
    /* Padding consistente */
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /* Sombra suave */
    transition: transform 0.3s ease;
    border: 2px solid #66FCF1;
    /* Borda consistente */
}

/* Marcação da Lista de Produtos*/
.item-box ul {
    list-style: none;
    /* Remove os marcadores padrão da lista */
    padding: 0;
    /* Remove o espaçamento à esquerda */
    margin: 0;
    /* Remove as margens */
}

.item-box ul li {
    margin-bottom: 10px;
    /* Espaçamento entre os itens da lista */
    line-height: 1.5;
    /* Altura da linha para espaçamento entre as linhas */
    font-size: 16px;
    /* Tamanho da fonte */
}

.item-box h4 {
    font-size: 2em;
    color: #eee;
}

.item-box h2 {
    font-size: 3em;
    color: #eee;
}

.item-box .price {
    font-size: 45px;
    color: #66FCF1;
}

.item-box .currency {
    font-size: 16px;
    color: #FFFFFF;
}

/* Adiciona o risco sobre o texto */
.item-box .preco-antigo {
    text-decoration: line-through;
    color: #888;
    /* Cor do preço antigo (geralmente mais clara) */
    font-size: 16px;
}

/* Divider */
.item-box .divider {
    width: 60%;
    height: 2px;
    background-color: #66FCF1;
    margin: 40px auto;
    /* Centraliza o traço */
}

/* Efeito Hover */
.item-box:hover {
    transform: translateY(-10px);
    /* Efeito de hover */
    background: #000;
    /* Altera a cor de fundo */
}

/* Estilo Diferenciado para o Item "Preços Destaques" */
.column.planos .item-box {
    background: #66FCF1;
    /* Cor de fundo diferente */
    padding: 70px 20px;
    /* Padding consistente */
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /* Sombra suave */
    transition: transform 0.3s ease;
    border: 2px solid #1E1F20;
    /* Borda diferente */
}

.column.planos h4,
.column.planos h2,
.column.planos p,
.column.planos .item-box ul li,
.column.planos .price,
.column.planos .icon img {
    color: #1E1F20;
    /* Cor do texto e ícones para "Clássicos" */
}

/* Adiciona o risco sobre o texto */
.column.planos .preco-antigo {
    text-decoration: line-through;
    color: #1E1F20;
    /* Cor do preço antigo (geralmente mais clara) */
    font-size: 16px;
}

/* Divider Preços Destaque*/
.column.planos .divider {
    width: 60%;
    height: 2px;
    /* Ajuste a altura do traço conforme necessário */
    background-color: #1E1F20;
    margin: 20px auto;
    /* Centraliza o traço e adiciona espaçamento vertical */
    margin-top: 40px;
    margin-bottom: 40px;
}

.column.planos .item-box .currency {
    color: #000000;
}

/* Botões Preços */
.planos .buttons .custom-button {
    background-color: transparent;
    border: 1px solid #66FCF1;
    /* Borda contornada */
    color: #FFFFFF;
    /* Cor do texto no estado normal */
    font-family: Poppins, sans-serif;
    font-weight: 500;
    border-radius: 10px;
    width: 60%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, color 0.3s, border 0.3s, transform 0.3s;
    padding: 10px 5px;
    letter-spacing: 2px;
    cursor: pointer;
}

.planos .buttons button {
    border-radius: 10px;
    margin: 40px auto;
    /* Centraliza o botão */
}

.planos .buttons .custom-button:hover {
    background-color: #66FCF1;
    /* Cor de fundo no hover */
    color: #000000;
    /* Cor do texto no hover */
    border: 1px solid #66FCF1;
    transform: scale(1.05);
}

/* Estilo Diferenciado para o Item "Preços Destaques" */
.column.planos .buttons .custom-button {
    border: 2px solid #1E1F20;
    /* Borda contornada */
    color: #1E1F20;
    /* Cor do texto no estado normal */
}

.column.planos .buttons .custom-button:hover {
    background-color: #1E1F20;
    /* Cor de fundo no hover */
    color: #ffffff;
    /* Cor do texto no hover */
    border: 1px solid #1E1F20;
    transform: scale(1.05);
}

/* Estilos Responsivos */
@media (max-width: 768px) {
    .row {
        flex-direction: column;
    }

    .column {
        min-width: 100%;
        max-width: 100%;
        padding: 0;
        margin-bottom: 20px;
    }
}


/* Estilos da seção Vídeos */
.videos {
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px;
    background: #1E1F20;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.videos-content {
    text-align: center;
    margin-bottom: 40px;
    margin-top: 40px;
}

.videos-content h2 {
    font-size: 3.5em;
    color: #eee;
}

.videos-content .divider {
    width: 60%;
    height: 2px;
    /* Ajuste a altura do traço conforme necessário */
    background-color: #66FCF1;
    margin: 20px auto;
    /* Centraliza o traço e adiciona espaçamento vertical */
}

.videos-content h3 {
    font-size: 2em;
    color: #66FCF1;
    margin-top: 40px;
}

.videos-content p {
    font-size: 1.3em;
    color: #eee;
}

.videos .item-box .icon img {
    width: 3.5rem;
    height: auto;
}

/*---------------------------------------
  Depoimentos               
-----------------------------------------*/
.section-padding {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.container {
    margin: auto;
    text-align: center;
}

.reviews-content {
    text-align: center;
    margin-bottom: 40px;
    margin-top: 40px;
}

.reviews-content h2 {
    font-size: 3.5em;
    color: #eee;
}

.reviews-content .divider {
    width: 60%;
    height: 2px;
    /* Ajuste a altura do traço conforme necessário */
    background-color: #66FCF1;
    margin: 20px auto;
    /* Centraliza o traço e adiciona espaçamento vertical */
}

.reviews-content h3 {
    font-size: 2em;
    color: #66FCF1;
    margin-top: 40px;
}

.reviews-content p {
    font-size: 1.3em;
    color: #eee;
}

/* Carrossel */
.reviews-carousel {
    overflow: hidden;
    position: relative;
    align-items: center;
}

.reviews-carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
}

.reviews-thumb {
    flex: 0 0 calc(30% - 20px); /* 3 itens no desktop */
    max-width: calc(30% - 20px);
    background: #2C2D30;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    color: #eee;
}

.reviews-stars {
    font-size: 1.8em;
    color: gold;
}
.text-primary {
    font-size: 1.5em;
}

.reviews-text {
    margin: 10px 0;
}

.reviews-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 10px 0;
}

.reviews-btn-prev,
.reviews-btn-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

.reviews-btn-prev {
    left: 10px;
}

.reviews-btn-next {
    right: 25px;
}

.reviews-btn-prev:hover,
.reviews-btn-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Responsividade */
@media (max-width: 768px) {
    .reviews-thumb {
        flex: 0 0 90%; /* Apenas 1 item no responsivo */
        max-width: 90%;
    }
    .reviews-btn-next {
        right: 10px;
    }
}

/* Estilo SaaS */
.saas {
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px;
    margin-bottom: 40px;
    margin-top: 40px;
    background-color: #1E1F20;
}

.saas h2 {
    font-size: 3.5em;
    color: #eee;
    text-align: center;
}

.saas .divider {
    width: 60%;
    height: 2px;
    background-color: #66FCF1;
    margin: 20px auto;
}

.saas h3 {
    font-size: 2em;
    color: #66FCF1;
    margin-top: 40px;
}

.saas p {
    font-size: 1.3em;
    color: #eee;
    margin-bottom: 20px;
}

.saas .content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: left;
}

.saas .text-content {
    flex: 1;
    padding: 20px;
    min-width: 300px;
}

.saas .image-content {
    flex: 1;
    padding: 20px;
    text-align: center;
}

.saas .image-content img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .saas .content {
        flex-direction: column;
        text-align: center;

    }

    .saas .text-content,
    .saas .image-content {
        max-width: 100%;
        padding: 10px;
    }
}


/* FAQ Perguntas Frequentes */
.faq {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.container {
    margin: auto;
    text-align: center;
}

.faq-content {
    text-align: center;
    margin-bottom: 40px;
    margin-top: 40px;
}

.faq-content h2 {
    font-size: 3.5em;
    color: #eee;
}

.faq-content .divider {
    width: 60%;
    height: 2px;
    /* Ajuste a altura do traço conforme necessário */
    background-color: #66FCF1;
    margin: 20px auto;
    /* Centraliza o traço e adiciona espaçamento vertical */
}

.faq-content h3 {
    font-size: 2em;
    color: #66FCF1;
    margin-top: 40px;
}

.faq-content p {
    font-size: 1.3em;
    color: #eee;
}

/* Estilo do Acordeon */
.faq-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    background-color: #000;
    padding: 20px;
  }
  
  .faq-column {
    flex: 1;
    max-width: calc(50% - 10px); /* Define duas colunas no desktop */
  }
  
  .faq-item {
    margin-bottom: 10px;
  }
  
  .faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #111;
    color: #fff;
    border: none;
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    text-align: left;
  }
  
  .faq-question .icon {
    font-size: 20px;
  }
  
  .faq-answer {
    background-color: #2C2D30;
    color: #fff;
    padding: 10px;
    margin-top: 5px;
    display: none;
  }
  
  .faq-answer.open {
    display: block;
  }
  
  /* Modo responsivo: Ajusta para uma única coluna */
  @media (max-width: 768px) {
    .faq-container {
      flex-direction: column; /* Muda o layout para uma coluna */
      gap: 0; /* Define um espaçamento uniforme entre os itens */
    }
  
    .faq-column {
      max-width: 100%; /* Cada coluna ocupa toda a largura */
    }
}
  


/*Footer */
.footer {
    background-color: #000;
    color: #fff;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    /* Adiciona alinhamento central para o texto */
}

.footer-logo {
    width: 200px;
    height: auto;
}

.footer h3 {
    color: #66FCF1;
    font-size: 1.7em;
}

.footer a {
    color: #fff;
    text-decoration: none;
    display: block;
    margin: 5px 0;
    transition: color 0.3s, transform 0.3s;
    font-size: 1.3em;
}

.footer a:hover {
    color: #66FCF1;
    transform: scale(1.05);
}

.footer .contact a {
    color: #fff;
    display: flex;
    align-items: center;
}

.footer .contact a img {
    margin-left: 10px;
}

.footer .contact a i {
    margin-right: 10px;
}

/*Estilo Borão WhastApp Footer */
.footer .buttons {
    display: grid;
    grid-template-columns: repeat(1, 130px);
    grid-template-rows: 50px;
    gap: 15px;
    margin-top: 10px;
    justify-content: center;
}

.footer .buttons a {
    text-decoration: none;
    display: flex;

}

.footer .buttons button {
    border: none;
    font-family: Poppins, sans-serif;
    font-weight: 500;
    border-radius: 10px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, color 0.3s, border 0.3s, transform 0.3s;
    padding: 0 10px;
    /* Adicionando padding para dar espaço extra se necessário */
    letter-spacing: 2px;
}

.footer .buttons button i {
    margin-right: 4px;
}

.footer .buttons .whatsapp-button {
    background-color: #66FCF1;
    color: #000;
}

.footer .buttons .whatsapp-button:hover {
    background-color: #25D366;
    /* Cor oficial do WhatsApp */
    color: #fff;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .footer {
        flex-direction: column;
    }
}



/* Estilo para a seção de copyright */
.copyright {
    flex: 0 0 100%;
    /* Ocupa 100% da largura */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 0 30px 0;
    background-color: #000;
}

.copyright p {
    margin: 5px 40px;
    color: #fff;
    font-size: 1.3em;
}

.copyright i.fa-heart {
    color: #66FCF1;
    /* Cor do ícone de coração */
}

.copyright a {
    color: #66FCF1;
    /* Cor do link */
    text-decoration: none;
}

.copyright a:hover {
    text-decoration: underline;
    /* Adiciona sublinhado ao passar o mouse */
}


/* Estilo para o botão Voltar ao Topo */
.back-to-top {
    display: none;
    /* Oculta o botão inicialmente */
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
     /* Cor de fundo do botão */
    background-color: #66FCF1;
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 98;
    /* Garantir que o botão fique no topo */
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hover para o botão Voltar ao Topo */
.back-to-top:hover {
    background-color: #1E1F20;
    /* Cor de fundo no hover */
}

/* Ajustes responsivos */
@media (max-width: 768px) {
    .back-to-top {
        width: 40px;
        height: 40px;
    }
}

/* Estilo da Animação dos Linguagens */
.word-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px; /* Distância entre as palavras */
    margin-bottom: 50px;
}

.word {
    font-size: 2rem;
    color: #aaa; /* Cinza para as palavras não destacadas */
    transition: color 0.3s ease;
}

.word.highlighted {
    color: #66fcf1; /* Preto para a palavra destacada */
    font-weight: bold;
    font-size: 3.5rem;
}


/*Palavras de Invista em */
.animated-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.heroText {
    font-size: 3.5rem;
}

/* Ajustes responsivos */
@media (max-width: 768px) {
    .animated-text {
        display: inline-block;
        margin-left: 40px;
    }
}