@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Georgian:wght@100..900&display=swap');
*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: "Noto Sans Georgian", serif;
    text-decoration: none;
}

:root{
    --main-color: #006dff;
    --second-color: #1689F9;
    --third-color: #505050;
    --fourth-color: #000;
    --fifth-color: #fff;
}

/*Header*/
header {
    background: linear-gradient(to right, var(--main-color), var(--second-color));
    display: flex;
    flex-direction: row;
    z-index: 100;
}

.logo {
    color: var(--fifth-color);
    font-size: 1.5rem;
    font-weight: 700;
    padding: 1rem;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 30vw;
    justify-content: center;
}

.logo :nth-child(2) {
    text-decoration: underline;
}

.menu {
    width: 70vw;
    margin-block: auto;
}

.menu ul {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    padding: 1rem;
    gap: 15px;

}

.menu ul li {
    list-style: none;
}

.menu ul li a {
    color: var(--fifth-color);
    font-weight: 700;
}

.menu-toggle {
    display: none;
    /* Escondido por padrão */
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    transition: 0.3s;
}

.bar {
    width: 25px;
    height: 3px;
    border-radius: 3px;
    background-color: #fff;
    transition: 0.3s linear;
    z-index: 100;
}


.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
    .menu {
        display: none;
        width: 100%;
        background: linear-gradient(to right, #0B7CFC, var(--second-color));
        position: absolute;
        top: 0px;
        right: 0px;
        width: 50vw;
        z-index: 1;
        border-radius: 10px;
    }

    .logo {
        width: 50vw;
    }

    .menu ul {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

    .menu li {
        margin: 10px 0;
    }

    .menu-toggle {
        display: flex;
        z-index: 10;
        position: absolute;
        top: 20px;
        right: 20px;
        transition: 0.3s;
    }

    .menu.active {
        display: block;
    }

    .logo {
        margin-right: auto;
    }
}
/*Main*/
section{
    padding: 10px;
    margin-block: 20px;
    max-width: 1024px;
    margin-inline: auto;
}
.rede, .informatica, .desenvolvimentoWeb{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.rede h2, .informatica h2, .desenvolvimentoWeb h2{
    width: 100vw;
    text-align: center;
}
.rede div, .informatica div, .desenvolvimentoWeb div{
    width: 180px;
    height: 180px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0px 0px 8px #505050;
    transition: all 0.3s ease;
}
.rede a, .informatica a, .desenvolvimentoWeb a{
    display: block;
    width: 180px;
    height: 180px;
    border-radius: 15px;
    text-decoration: none;
}

main div:hover{
    scale: 1.1;
}
.rede h3, .informatica h3, .desenvolvimentoWeb h3{
    background-color: var(--main-color);
    border-radius: 15px 15px 0px 0px;
    color: var(--fifth-color);
    padding: 5px;
    height: 30%;
}
.rede p, .informatica p, .desenvolvimentoWeb p{
    color: var(--fourth-color);
    padding: 5px;
    font-size: 0.9rem;
}
.whatsappButton{
    width: 80px;
    position: fixed;
    bottom: 30px;
    right: 30px;
}
/*Footer*/
footer{
    background-color: #272727;
    padding-top: 10px;
}
footer div{
 display: flex;
 flex-direction: row;
 flex-wrap: wrap;
 justify-content: space-around;
 padding: 10px;
 align-items: flex-start;
}

footer div div{
 display: flex;
 flex-direction: column;
 max-width: 320px;
 margin-inline: auto;
}

footer img{
    width: 40px;
    margin: 0px 5px;
}
.social{
    display: inline;
    padding: 0px;
    margin: 15px auto;
}
.developed{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    background-color: var(--fourth-color);
    width: 100%;
}
footer h2, footer p, footer a{
    color: var(--fifth-color);

}
footer h2{
    margin-bottom: 15px;
}
footer ul{
    list-style: none;
    text-decoration: none;
}
footer p {
    color: #fff;
    font-weight: 500;
}
footer p a{
    color: var(--fifth-color);
    font-weight: 500;
}
footer p, footer a:hover{
    text-decoration: underline;
}
footer .logo{
    justify-content: flex-start;
}