/* Global Styles */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: 'Roboto', sans-serif;
    scroll-behavior: smooth;
}

:root {
    --laranja: #F65A38;
    --fundoLandingPage: #F9F6F7;
    --corpoDoc: #F4EFF0;
    --textoEscuro: #1C1718;
    --fundoCard: #D9D9D9;
    --corEscuraFooter: #232323;
    --textoFooter: #5B5B5B;
    --branco: #FFFFFF;
}

/* Header Styles */

header {
    margin-top: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1000;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 20px 9%;
    background: rgb(249, 246, 247);
    /* background: linear-gradient(180deg, rgba(249, 246, 247, 1) 1%, rgba(255, 255, 255, 0) 100%); */
   border-bottom: 1px solid #e7e7e7;
}

.navlista{
    display: flex;
    justify-content: space-between;
    margin-left: 30px;
    font-size: 15px;
    font-weight: 600;
}

.navlista-links {
    display: flex; /* Exibir os itens da lista em linha */
    align-items: center; /* Alinhar verticalmente no centro */
}

.navlista li {
    padding: 20px; /* Mova o padding de .navlista para os itens da lista aqui */
    margin-right: 20px;
}

.navlista a {
    border-bottom: 2px solid transparent;
    transition: all .55s ease-in;
    color: var(--textoEscuro);
}


.navlista a:hover {
    border-bottom: 2px solid var(--textoEscuro);
}

#numberHeader {
    margin-left: auto;
    color: var(--laranja);
    font-weight: 700;
}

/* Mobile Menu Styles */
.mobile-menu-icon {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 25px;
    cursor: pointer;
}

.bar {
    width: 30px;
    height: 5px;
    background-color: var(--textoEscuro);
    transition: 0.3s;
}


/* Landing Page Styles */

.landingPage {
    height: 100%;
    width: 100%;
    min-height: 80vh;
    background-color: var(--fundoLandingPage);
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 2rem;
    font-size: 1.2vw;
    text-align: center;
}

.landingPage h1{
    color: var(--textoEscuro);
    margin-top: 150px;
    text-align: left;
    margin-left: 18%;
    line-height: 1.5em;
}

.content p {
    margin-left: 18%;
    margin-top: 2%;
    font-size: 0.9vw;
    text-align: left;
}

#btnLP{
    margin-top: 3%;
    border-radius: 10px;
    background-color: var(--laranja);
    color: var(--branco);
    width: 130px;
    height: 45px;
    cursor: pointer;
    font-weight: 500;
    transition: 500ms;
    margin-right: 50%;
}

#btnLP:hover{
    background-color: #FF7749;
    transition: 500ms;
}


#imagemLP {
    width: 650px;
    height: auto;
    margin: 100px;
    margin-top: 180px;
}

#palavraSucesso,
#palavraProspere {
    color: var(--laranja);
}

.gota {
    position: relative;
    display: block;
    margin: 0 auto;
    width: 100vh;
    background: linear-gradient(180deg, rgba(249,246,247,1) 96%, rgba(255,255,255,1) 96%);
    padding: 0;
}

.gota svg path {
    fill: var(--branco);
}


.gota img {
    position: absolute;
    top: 0; /* Defina o topo como 0 para usar margens automáticas verticalmente */
    left: 0; /* Defina a esquerda como 0 para usar margens automáticas horizontalmente */
    right: 0; /* Defina a direita como 0 para usar margens automáticas horizontalmente */
    bottom: 0; /* Defina a parte inferior como 0 para usar margens automáticas verticalmente */
    margin: auto; /* Isso alinhará automaticamente a imagem ao centro vertical e horizontal */
    width: 50px;
    height: 50px;
    z-index: 2;
}


.animated-arrow {
    animation: bounce 1s infinite alternate;
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px); /* Ajuste a distância de animação aqui */
    }
}


#descricaoGeralh1 {
    font-size: 1.5vw;
    color: var(--textoEscuro);
    font-weight: 500;
    text-align: center;
    align-items: center;
    margin-top: 70px;
    margin-bottom: 50px;
}



.descricaoGeralp,
.descricaoFinalp {
    font-size: 1vw;
    color: var(--textoEscuro);
    font-weight: 300;
    text-align: center; /* Alinhar ao centro horizontalmente */
    width: 70%;
    margin: 0 auto;
    position: relative;
}

.descricaoGeralp::after {
    content: ""; /* Conteúdo vazio */
    display: inline-block;
    width: 100%; /* Ocupar todo o espaço disponível */
}

.descricaoFinalp{
    color: var(--corEscuraFooter);
    font-weight: 400;
}


/* Adicione estas regras ao seu CSS existente */
.grid-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 colunas por linha */
    gap: 20px;
    max-width: 75%; /* Ocupar até 70% da largura da tela */
    margin: 0 auto; /* Centralizar horizontalmente */
    margin-top: 20px;
}

.grid-list li {
    display: flex;
    flex-direction: column;
    align-items: center; /* Alinhar conteúdo ao centro */
    text-align: center;
    width: 80%; /* Ocupar até 70% da largura */
    margin: 0 auto; /* Centralizar horizontalmente */
    padding: 20px;
}

.grid-list p {
    font-weight: 300;
    color: var(--textoFooter);
}

.grid-list h3 {
    margin-bottom: 15px;
    color: var(--corEscuraFooter);
}


#aspas {
    width: calc(100% - 400px); /* Largura calculada relativa à margem */
    max-width: 40px;
    height: auto;
    margin-left: 400px;
    margin-top: 10vh;
    margin-bottom: 5vh;
}


#frase {
    width: 50%;
    margin: 0 auto;
    height: 150px;
    text-align: center;
    overflow: auto;
    font-weight: 500;
    font-size: 2rem;
    color: var(--textoEscuro);
}

#autorMostra {
    width: 50%;
    margin: 0 auto;
    height: 50px;
    text-align: right;
    font-weight: 500;
    font-size: 1.7rem;
    color: var(--textoEscuro);
}

#sairCK {
    display: inline-block;
    color: var(--fundoLandingPage);
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 10px 20px;
    background-color: var(--laranja);
    border-radius: 5px;
}

.enviar-button,
.newsletter button {
    display: inline-block;
    background-color: var(--laranja);
    color: var(--fundoLandingPage);
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.enviar-button:hover,
.newsletter button:hover {
    background-color: #FF7749;
}

/* Footer Styles */

footer {
    background-color: var(--laranja);
    min-height: 35vh;
    padding: 20px;
    color: var(--textoFooter);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.footer-content {
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1000px;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.footer-bottom {
    max-width: 1000px;
    width: 90%;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logoFooter img {
    width: 200px;
    height: auto;
    margin-top: 55px;
}

.services,
.social,
.newsletter {
    flex-basis: calc(25% - 20px);
}

.social a,
.services a {
    color: var(--textoFooter);
    display: block;
    margin-top: 10px;
}


.social h3,
.services h3 {
    color: var(--textoFooter);
}

.newsletter {
    text-align: center;
}

#textoNewsletter{
    font-size: 20px;
    color: var(--textoFooter);
    font-weight: 500;
    text-align: center; /* Alinhar ao centro horizontalmente */
    width: 100%;
    margin: 0 auto;
    position: relative;
    white-space: nowrap; /* Impede que o texto quebre em várias linhas */
}

.newsletter h3 {
    margin-top: 20px;
}

.newsletter input {
    padding: 6px;
    background-color: transparent;
    border-radius: 50px;
    border: 1px solid var(--corEscuraFooter);
    color: var(--corEscuraFooter);
    width: 100%;
    max-width: 250px;
    margin-top: 10px;
}

.newsletter input:focus {
    outline: none;
    box-shadow: none;
}

.newsletter button {
    border-radius: 50px;
    cursor: pointer;
    padding: 5px;
    width: 100%;
    max-width: 120px;
    margin-top: 10px;
    color: var(--corpoDoc);
    background-color: var(--corEscuraFooter);
}

.newsletter button:hover {
    background-color: #313131;
}

.divider {
    width: 100%;
    height: 1px;
    background-color: #232323;
    border: none;
    margin-top: 60px;
}

.computec {
    display: flex;
    align-items: center; /* Alinhar verticalmente no centro */
}

.computec img {
    width: 40px; /* Ajuste o tamanho conforme necessário */
    height: auto;
    margin-right: 10px; /* Adicione um espaço entre a imagem e o cabeçalho */
}

.computec h3 {
    margin: 0; /* Remova as margens padrão */
    color: var(--textoEscuro);
    font-size: 18px; /* Ajuste o tamanho conforme necessário */
    font-weight: 600;
}

/* Posicionamento do logotipo "computec" */
#logoComputec {
    margin-right: auto;
    margin-left: 9%;
}

/* Posicionamento do botão "right" */
#right {
    margin-left: auto;
    margin-right: 9%;
}

/* Floating WhatsApp Icon Styles */

i.fas.fa-user {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}

.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #fff;
    font-size: 44px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    z-index: 800;
}

.whatsapp-icon i {
    line-height: 1;
}

.whatsapp-icon:hover {
    background-color: #1eac52;
}



/* Media Queries */
@media screen and (max-width: 1024px) {
    header {
        padding: 20px 5%;
    }

    .navlista a {
        margin-left: 15px;
    }

    .landingPage {
        font-size: 3vw;
    }

    #imagemLP {
        width: 100%;
        margin: 20px 0;
    }

    #icon1,
    #icon2,
    #icon3 {
        width: 30px;
    }

    #icon1 {
        top: 20%;
        left: 5%;
    }

    #icon2 {
        top: 40%;
        right: 5%;
    }

    #icon3 {
        bottom: 20%;
        left: 5%;
    }

    .grid-list {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .services,
    .social,
    .newsletter {
        margin-top: 20px;
        flex-basis: calc(50% - 10px);
    }

    .services h3,
    .social h3 {
        margin-top: 10px;
    }
}


@media screen and (max-width: 768px) {
    header {
        padding: 20px 5%;
    }

    .landingPage {
        min-height: 50vh;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .landingPage h1 {
        margin-top: 150px;
        font-size: 18px;
        margin-bottom: 20px;
    }

    .landingPage h1 {
        font-size: 4.0vw;
    }

    #btnLP {
        width: 40%; /* Ocupa 100% da largura disponível */
        margin-top: 20px; /* Adapte a margem superior conforme necessário */
        margin-right: 25%; /* Remova a margem direita para ocupar toda a largura */
    }

    .landingPage p {
        font-size: 2.2vw;
    }

    #imagemLP {
        width: 60%;
        max-width: 400px;
    }

    #numberHeader {
        display: none;
    }

    #autorMostra, #frase{
        font-size: 0.7rem;
        height: 20px;
    }

    #descricaoGeralh1 {
        font-size: 6vw;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .descricaoGeralp,
    .descricaoFinalp {
        font-size: 3vw;
    }

    .grid-list {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .navlista {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        background-color: var(--fundoLandingPage);
        padding: 20px;
        z-index: 999;
    }

    .navlista.active {
        display: flex;
    }

    .mobile-menu-icon {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 25px;
        cursor: pointer;
        position: absolute;
        top: 20px;
        right: 20px;
        z-index: 1000;
    }

    .bar {
        width: 30px;
        height: 5px;
        background-color: var(--textoEscuro);
        transition: 0.3s;
    }

    .navlista li {
        margin: 10px 0;
    }

    .gota {
        width: 100%;
        background: linear-gradient(180deg, rgba(249,246,247,1) 90%, rgba(255,255,255,1) 90%);
    }

    .gota img {
        width: 30px;
        height: 30px;
    }

    #icon1,
    #icon2,
    #icon3 {
        width: 25px;
    }

    #icon1 {
        top: 23%;
        left: 28%;
    }

    #icon2 {
        top: 29%;
        right: 11%;
    }

    #icon3 {
        bottom: 56%;
        left: 15%;
    }

    #descricaoGeralh1 {
        font-size: 5vw;
    }

    #descricaoGeralp {
        font-size: 4vw;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom {
        align-items: center;
        margin-top: 10px;
    }

    .footer-bottom h3 {
        margin-right: 10px;
    }

    .logoFooter img {
        margin-top: 20px;
    }

    .services,
    .social {
        flex-basis: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .social a,
    .services a {
        color: var(--textoFooter);
        display: block;
        margin-top: 10px;
        text-align: left;
    }

    .social h3,
    .services h3 {
        color: var(--textoFooter);
        text-align: left;
    }

    .services,
    .social,
    .newsletter {
        flex-basis: 100%;
    }

    .newsletter input,
    .newsletter button {
        max-width: 100%;
    }

    .newsletter h3 {
        margin-top: 10px;
        width: 2vw;
    }

    #aspas {
        margin-left: 107px;
        margin-bottom: 10px;
    }
}