@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700&display=swap');

:root {
    --background-color: #161616;
    --white-text: #FFFFFF;
    --span-color: #EDFF00;
    --font-size: 16px;
    --padding: 0px 120px;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html{
    scroll-behavior: smooth;
}

body{
    background-color: var(--background-color);
    color:var(--white-text) ;
    font-size: 16px;
    letter-spacing: 0.8px;
    display: flex;
    flex-direction: column;
    gap: 72px;
    align-items: center;
    text-align: center;
    width: 100%;
}

a{
    text-decoration: none;
    color: var(--white-text);
    transition: color 0.3s ease;
}

span{
    color: var(--span-color);
}

::-webkit-scrollbar {
    width: 8px; /* Largura da barra de rolagem */
    height: 8px;
    border-radius: 50%;
    color: black;
    border-radius: 10px;
}

::-webkit-scrollbar-track ,
::-webkit-scrollbar-thumb {
    background: #f1f1f1; /* Cor de fundo da trilha */
    border-radius: 10px;
}

::-webkit-scrollbar-button {
    display: none; /* Oculta os botões de seta */
}

::-webkit-scrollbar-thumb {
    background: var(--span-color); /* Cor do polegar */
    border-radius: 6px; /* Borda arredondada do polegar */
}

/*------------------------------------------------------------------------------------------------------------------------------------------------------*/
header{
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    background-image: url('assets/192e2c1c327385e32df1b625dee87f82.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

header .logo{
    width: 180px;
}


.header-text{
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 10px;
    padding: var(--padding);
    width: 800px;
    text-align: left;
}

.language-selector {
    position: absolute;
    top: 50px;
    right: 70px;
    background-color: #161616;
    padding: 6px;
    border-radius: 6px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background: none;
    border: none;
    font-size: 1em;
    padding: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.dropbtn img {
    margin-right: 5px;
    width: 25px;
    height: 20px;
}

.dropbtn span{
    color: var(--white-text);
    font-size: 0.8em;
}

.dropbtn .fas {
    margin-left: 15px;
    font-size: 0.8em;
    color: var(--span-color);
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    font-size: 0.8em;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.dropdown-content a img {
    margin-right: 10px;
    width: 25px;
    height: 20px;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/*-------------------------------------------*/
.services-section{
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: var(--padding);
}

.services-section h3{
    font-weight: 700;
    font-size: 2em;
    width: 100%;
    text-align: left;
}

.services-div{
    display: flex;
    gap: 18px;
    justify-content: center;
}

.service-box{
    width: 25%;
    min-height: 300px;
    min-width: 280px;
    padding: 24px;
    background-color: #262626;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.fa-solid {
    font-size: 3em;
    color: var(--span-color);
}

.service-box span{
    font-size: 1.25em;
    font-weight: 700;
}

.service-box p{
    font-size: 1em;
    font-weight: 400;
}

/*-------------------------------------------*/

.text-section{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 80px;
    text-align: center;
    gap: 36px;
}

.text-section h3{
    font-weight: 700;
    font-size: 2em;
    width: 65%;
    margin: auto;
}

.text-section .contact-btn{
    background-color: var(--span-color);
    padding: 12px 64px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 1em;
    color: #000000;
    width: fit-content;
    border: none;
    cursor: pointer;
    transition: transform 250ms ease-out;
}

.text-section .contact-btn:hover{
    transform: scale(1.05);
}

/*-------------------------------------------*/

.info-section{
    padding: var(--padding);
}

.info-div{
    display: flex;
    justify-content: space-around;
    height: fit-content;
    align-items: center;
    padding: 32px 0px;
}

.picture-info-div{
    width: 45%;
    border-radius: 16px;
}

.text-info-div{
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 40%;
    align-items: flex-start;
    text-align: start;
}

.text-info-div ul{
    margin-left: 10px;
    list-style-position: inside;  
}

.text-info-div li{
    margin-bottom: 10px;
}
.info-section h3{
    color: var(--span-color);
    font-weight: 700;
    font-size: 2em;
}

/*-------------------------------------------*/

.technologies-section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 48px;
}

.technologies-section h3{
    padding: 10px;
    display: flex;
    justify-content: center;
    text-align: center;
    width: 100%;
    gap: 10px;
    font-weight: 700;
    font-size: 2em;
}

.technologies-div{
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
    align-items: center;
    justify-content: center;
    max-width: 50%;
}
.icon-tech{
    width: 2.5em;
    height: 2.5em;
}

.icon-tech.node{
    width: 6.5em;
    height: 2em;
}
.icon-tech.docker{
    width: 3.2em;
    height: 2.5em;
}
.icon-tech.mysql{
    width: 5em;
    height: 3em;
}
.icon-tech.mongoDB{
    width: 7em;
    height: 2em;
}

/*-------------------------------------------*/

.clients-section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 48px;
    padding: 48px;
}

.clients-section h3{
    padding: 10px;
    display: flex;
    justify-content: center;
    text-align: center;
    width: 100%;
    gap: 10px;
    font-weight: 700;
    font-size: 2em;
}
.clients-div{
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
    align-items: center;
    justify-content: center;
    max-width: 50%;
}

.clients-div img{
    max-width: 250px;
}

/*-------------------------------------------*/

.separator{
    width: 90%;
    border-bottom: 1px solid var(--span-color);
}

.footer-section{
    padding: 48px 0px;
    display: flex;
    flex-direction: column;
    gap:32px;
    align-items: center;
    justify-content: space-between;
    max-width: 1000px;
}

.footer-section .logo{
    width: 175px;
}

.footer-section h3{
    padding: 10px;
    display: flex;
    justify-content: center;
    text-align: center;
    width: 100%;
    gap: 10px;
    font-weight: 700;
    font-size: 2em;
}

.footer-section h5{
    font-size: 1.25em;
    font-weight: 400;
}

.footer-section span{
    font-weight: 700;
    font-size: 1.25em;
}

.contact-div{
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 26px;
}

#phone {
    display: flex;
    gap: 0.4em;
}

#phone a{
    display: flex;
    align-items: center;
}
.bx {
    font-size: 1.3em;
    color: rgb(1, 177, 1);
    font-weight: 400;
}

.social-links{
    font-size: 1.5em;
}

/*-------------------------------------------*/

.hidden {
    display: none;
}

@media screen and (max-width: 1440px) {
    
    :root {
        --background-color: #161616;
        --white-text: #FFFFFF;
        --span-color: #EDFF00;
        --font-size: 16px;
        --padding: 10px 80px;
    }
    header {
        height: 450px;
        background-position: 40% 0%; /* Foca em um ponto específico da imagem */
        background-size: 160%;
    }
    .header-text{
        width: 600px;
    }

    .header-text .logo{
        width: 150px;
    }
    .header-text{
        font-size: 0.6em;
    }
    .header-text span{
        font-size: 1.5em;
    }

    .services-div{
        display: flex;
        flex-wrap: wrap;
        gap: 48px;
        
    }

    .technologies-div{
        display: flex;
        flex-wrap: wrap;
        gap: 48px;
        justify-content: center;
        width: 100%;
        align-items: center;
    }
    .picture-info-div{
        width: 40%;
    }

    .language-selector {
        position: absolute;
        top: 50px;
        right: 60px;
        background-color: #161616;
        padding: 6px;
        border-radius: 6px;
    }
}   

@media screen and (max-width: 1100px) {
    
    :root {
        --background-color: #161616;
        --white-text: #FFFFFF;
        --span-color: #EDFF00;
        --font-size: 16px;
        --padding: 10px 80px;
    }

    body{
        gap: 60px;
    }
    
    .services-div{
        display: flex;
        flex-wrap: wrap;
        gap: 48px;
        
    }

    .technologies-section{
        padding: 0px 0px;
    }
    .technologies-div{
        display: flex;
        flex-wrap: wrap;
        gap: 48px;
        justify-content: center;
        width: 100%;
        align-items: center;
    }
    .text-section h3{
        width: 90%;
    }
    .info-div.left{
        display: flex;
        flex-direction: column-reverse;
        gap: 36px;
    }
    .info-div.right{
        display: flex;
        flex-direction: column;
        gap: 36px;
    }
    .picture-info-div{
        width: 80%;
    }
    .text-info-div{
        width: 100%;
    }
    .language-selector {
        position: absolute;
        top: 50px;
        right: 45px;
        background-color: #161616;
        padding: 6px;
        border-radius: 6px;
    }
}  

@media screen and (max-width: 800px) {
    :root {
        --background-color: #161616;
        --white-text: #FFFFFF;
        --span-color: #EDFF00;
        --font-size: 16px;
        --padding: 10px 60px;
    }
    body{
        gap: 50px;
        font-size: 12px;
    }
    
    header {
        height: 380px;
        background-position: 55% 0%; /* Foca em um ponto específico da imagem */
        background-size: 200%;
    }
    .header-text{
        width: 500px;
    }


    .services-div{
        display: flex;
        flex-wrap: wrap;
        gap: 48px;
    }
    .service-box{
        min-height: 260px;
        min-width: 250px;
    }

    .text-section h3{
        width: 95%;
    }
    .info-div.left{
        display: flex;
        flex-direction: column-reverse;
        gap: 36px;
    }
    .info-div.right{
        display: flex;
        flex-direction: column;
        gap: 36px;
    }
    .picture-info-div{
        width: 80%;
    }
    .text-info-div{
        width: 100%;
    }
    .technologies-section{
        padding: 0px 0px;
    }
    .technologies-div{
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
        align-items: center;
        justify-content: center;
        max-width: 70%;
    }
    .footer-section h3{
        width: 80%;
    }

    .language-selector {
        position: absolute;
        top: 50px;
        right: 35px;
        background-color: #161616;
        padding: 6px;
        border-radius: 6px;
    }
}


@media screen and (max-width: 600px) {
    
    :root {
        --background-color: #161616;
        --white-text: #FFFFFF;
        --span-color: #EDFF00;
        --font-size: 16px;
        --padding: 10px 60px;
    }
    body{
        gap: 40px;
    }
    .language-selector {
        position: absolute;
        top: 40px;
        right: 30px;
        background-color: #161616;
        padding: 6px;
        border-radius: 6px;
    }
    
    header {
        height: 350px;
        background-position: 55% 0%; /* Foca em um ponto específico da imagem */
        background-size: 200%;
    }
    .header-text{
        width: 400px;
    }
    .header-text .logo{
        width: 120px;
    }
    .header-text{
        font-size: 0.6em;
    }
    .header-text span{
        font-size: 1.5em;
    }

    .footer-section h3{
        font-size: 1.6em;
    }
    .footer-section .logo{
        width: 150px;
    }

}

@media screen and (max-width: 500px) {
    
    :root {
        --background-color: #161616;
        --white-text: #FFFFFF;
        --span-color: #EDFF00;
        --font-size: 16px;
        --padding: 10px 50px;
    }

    body{
        font-size: 12px;
    }
    header {
        height: 350px;
        background-position: 55% 0%; /* Foca em um ponto específico da imagem */
        background-size: 240%;
    }
    .header-text{
        width: 350px;
    }
    .header-text .logo{
        width: 110px;
    }
    .header-text{
        font-size: 0.6em;
    }
    .header-text span{
        font-size: 1.5em;
    }

    .language-selector {
        top: 30px;
        right: 20px;
        padding: 4px;
    }
    
    .dropbtn img {
        width: 20px;
        height: 15px;
    }
    .footer-section h3{
        font-size: 1.6em;
    }
    .footer-section .logo{
        width: 150px;
    }
}

@media screen and (max-width: 400px) {
    
    :root {
        --background-color: #161616;
        --white-text: #FFFFFF;
        --span-color: #EDFF00;
        --font-size: 16px;
        --padding: 10px 40px;
    }

    body{
        font-size: 12px;
    }
    header {
        height: 300px;
        background-position: 55% 0%; /* Foca em um ponto específico da imagem */
        background-size: 240%;
    }
    .header-text{
        width: 320px;
    }
    .header-text .logo{
        width: 100px;
    }
    .header-text{
        font-size: 0.6em;
    }
    .header-text span{
        font-size: 1.6em;
    }

    .language-selector {
        top: 30px;
        right: 20px;
        padding: 4px;
    }
    
    .dropbtn img {
        width: 20px;
        height: 15px;
    }

    .footer-section h3{
        font-size: 1.6em;
    }
    .footer-section .logo{
        width: 150px;
    }
}