@import url('https://fonts.cdnfonts.com/css/dorimous');
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

/* CSS GERAL */
/* CSS GERAL */
/* CSS GERAL */
/* CSS GERAL */
/* CSS GERAL */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'DORIMOUS', sans-serif;
    text-decoration: none;
}

*::-webkit-scrollbar {
    width: 0px;
}

:root {
    --white:#fff;
    --dark: #0b0b0b;
    --shadow: #020202;
    --principal:#0e0f5b;
    --letters: #ffffff;
    --light: #ffffff;
    --blue: #39a3ff;
    --blur: rgba(0, 0, 0, 0.1);
    --blur2: rgba(255, 255, 255, 0);
    --borderblur: rgba(255, 255, 255, 0.18);
}

body{
    background-color: var(--dark);
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100vw;
    max-height: 100vh;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* CSS DO HEADER */
/* CSS DO HEADER */
/* CSS DO HEADER */
/* CSS DO HEADER */
/* CSS DO HEADER */

header {
    position: fixed;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    box-shadow: 0px 2px 20px var(--shadow);
    background: linear-gradient(135deg, --blur, --blur2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2;
}

ul {
    width: 100%;
    display: flex;
    justify-content: center;
}

li {
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

h2 {
    color: var(--blue);
}

h2 span {
    color: var(--light);
}

.divisor {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.navlink {
    font-size: 14px;
    color: var(--light);
    padding: 10px;
    border-radius: 5px;
    transition: all 0.3s;
}

.navlink:hover {
    color: var(--blue);
    padding: 10px;
}

.navlink:hover > hr {
    color: var(--blue);
}

.selected {
    color: var(--blue);
}

/* CSS DO INICIO */
/* CSS DO INICIO */
/* CSS DO INICIO */
/* CSS DO INICIO */
/* CSS DO INICIO */

.separadorsobre {
    width: 95%;
    margin-top: 10px;
    margin-bottom: 10px;
    opacity: 0.1;
}

.inic {
    display: flex;
}

.geral {
    width: 100%;
    height: auto;
    margin-top: 70px;
    display: flex;
    flex-direction: column;
}

.infos {
    width: 50%;
    height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;

    h1 {
        color: var(--letters);

        span {
            color: var(--blue);
        }
    }

    h3 {
        color: var(--letters);
        font-family: 'Poppins', sans-serif;
        margin-bottom: 20px;
    }

    #typing-text2, #typing-text3 {
        display: none; /* Esconde os elementos inicialmente */
    }

    p {
        color: var(--letters);
        font-family: 'Courier New', Courier, monospace;
    }

    .optlinks {
        display: flex;
        gap: 20px;
    }


    a {
        border: 1px solid var(--letters);
        padding: 12px 12px;
        color: var(--letters);
        font-size: 20px;
        border-radius: 5px;
        margin-top: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s;

        i {
            transition: all 0.5s;
        }
    }

    a:hover {
        border: 1px solid var(--blue);
        color: var(--blue);

        i {
            transform: rotate(360deg);
        }
    }
}

.quadrado {
    width: 50%;
    height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.6s;
    filter: drop-shadow(0px 0px 10px var(--blue)) drop-shadow(0px 0px 10px var(--principal));

    svg {
        width: 40%;
        height: 50%;
        fill: var(--white);
        transition: all 0.8s;
    }

    label {
        color: var(--letters);
        font-size: 35px;
        transition: all 0.8s;

        span {
            color: var(--blue);
        }
    }
}

/* CSS DA SMOKE */
/* CSS DA SMOKE */
/* CSS DA SMOKE */
/* CSS DA SMOKE */
/* CSS DA SMOKE */

.smoke {
    background-color: var(--blue);
    width: 500px;
    height: 400px;
    position: absolute;
    bottom: 0;
    z-index: 0;
    border-radius: 35% 65% 49% 51% / 71% 82% 18% 29%;
    filter: blur(170px);
}

.smoke2 {
    background-color: var(--blue);
    width: 500px;
    height: 300px;
    position: absolute;
    bottom: 2;
    right: 0;
    z-index: 0;
    border-radius: 35% 65% 49% 51% / 71% 82% 18% 29%;
    filter: blur(150px);
}

.smoke3 {
    background-color: var(--blue);
    width: 700px;
    height: 200px;
    position: absolute;
    bottom: 2;
    left: 0;
    z-index: 0;
    border-radius: 35% 65% 49% 51% / 71% 82% 18% 29%;
    filter: blur(300px);
}

/* CSS DO SOBRE */
/* CSS DO SOBRE */
/* CSS DO SOBRE */
/* CSS DO SOBRE */
/* CSS DO SOBRE */



.informabout {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;

    h2 {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .visao {
        width: 100%;
        min-height: 320px;
        display: flex;
        align-items: center;

        .visaosep1 {
            width: 25%;
            display: flex;
            flex-direction: column;
            gap: 10px;
            justify-content: center;
            align-items: center;

            i {
                font-size: 120px;
                color: var(--letters);
                filter: drop-shadow(0px 0px 10px var(--blue)) drop-shadow(0px 0px 10px var(--principal));
            }

            p {
                color: var(--letters);
                filter: drop-shadow(0px 0px 10px var(--blue)) drop-shadow(0px 0px 10px var(--principal));
                font-size: 20px;
            }
        }

        .visaosep2 {
            width: 50%;
            height: 100%;
            display: flex;
            align-items: center;
            
            p {
                color: var(--letters);
                font-family: 'Poppins', sans-serif;
                font-size: 18px;
                text-align: justify;
            }
        }
    }

    .missao {
        width: 100%;
        min-height: 320px;
        display: flex;
        align-items: center;
        flex-direction: row-reverse;

        .missaosep1 {
            width: 25%;
            display: flex;
            flex-direction: column;
            gap: 10px;
            justify-content: center;
            align-items: center;

            i {
                font-size: 120px;
                color: var(--letters);
                filter: drop-shadow(0px 0px 10px var(--blue)) drop-shadow(0px 0px 10px var(--principal));
            }

            p {
                color: var(--letters);
                filter: drop-shadow(0px 0px 10px var(--blue)) drop-shadow(0px 0px 10px var(--principal));
                font-size: 20px;
            }
        }

        .missaosep2 {
            width: 50%;
            height: 100%;
            display: flex;
            flex-direction: row-reverse;
            align-items: center;
            
            p {
                color: var(--letters);
                font-family: 'Poppins', sans-serif;
                font-size: 18px;
                text-align: justify;
            }
        }
    }

    .valores {
        width: 100%;
        min-height: 320px;
        display: flex;
        align-items: center;

        .valoressep1 {
            width: 25%;
            display: flex;
            flex-direction: column;
            gap: 10px;
            justify-content: center;
            align-items: center;

            i {
                font-size: 120px;
                color: var(--letters);
                filter: drop-shadow(0px 0px 10px var(--blue)) drop-shadow(0px 0px 10px var(--principal));
            }

            p {
                color: var(--letters);
                filter: drop-shadow(0px 0px 10px var(--blue)) drop-shadow(0px 0px 10px var(--principal));
                font-size: 20px;
            }
        }

        .valoressep2 {
            width: 50%;
            height: 100%;
            display: flex;
            align-items: center;
            
            p {
                color: var(--letters);
                font-family: 'Poppins', sans-serif;
                font-size: 18px;
                text-align: justify;
            }
        }
    }
}

.servicosabout {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;

    h2 {
        font-size: 30px;
        margin-bottom: 40px;
        margin-top:  30px;
    }

    .sepservicos {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;

        .sepcategoria1 {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;

            .categoria {
                height: 300px;
                width: 200px;
                border: 1px solid var(--blue);
                filter: drop-shadow(0px 0px 10px var(--blue)) drop-shadow(0px 0px 10px var(--principal));
                border-radius: 5px;
            }
        }

        .sepcategoria2 {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
            margin-bottom: 20px;

            .categoria {
                height: 300px;
                width: 200px;
                border: 1px solid var(--blue);
                filter: drop-shadow(0px 0px 10px var(--blue)) drop-shadow(0px 0px 10px var(--principal));
               border-radius: 5px; 
            }
        }
    }
}

.menu {
    display: none;
}

.menu .bar{
    display: block;
    width: 28px;
    height: 3px;
    border-radius: 3px;
    background: #555;
    margin: 5px auto;
    transition: all 0.3s;
}
.menu .bar:nth-child(1),
.menu .bar:nth-child(3){
    background: #555;
}

@media (max-width:785px) {

    body {
        width: 100vw;
    }

    .geral {
        padding: 10px;
    }

    .divisor a {
        font-size: 12px;
    }

    .inic {
        flex-direction: column;
    }

    .quadrado{
        display: none;
    }

    .infos {
        width: 100%;
    }

    .informabout {
        gap: 5px;

        h2 {
            font-size: 25px;
            margin-bottom: 20px;
        }
    }

    .valores {
        margin-bottom: 20px;
    }

    .visaosep1{
        max-width: 0px;

        i, p {
            display: none;
        }
    }

    .missaosep1{
        max-width: 0px;

        i, p {
            display: none;
        }
    }

    .valoressep1{
        max-width: 0px;

        i, p {
            display: none; 
        }
    }

    .visaosep2 {

        border: 1px solid var(--blue);
        min-width: 100%;
        height: 100px;
        border-radius: 5px;
    }

    .missaosep2 {

        border: 1px solid var(--blue);
        min-width: 100%;
        height: 100px;
        border-radius: 5px;
    }

    .valoressep2 {

        border: 1px solid var(--blue);
        min-width: 100%;
        height: 100px;
        border-radius: 5px;
    }

    .servicosabout {
        h2 {
            font-size: 25px;
            margin-bottom: 20px;
        }
    }

    .sepcategoria1 {
        flex-wrap: wrap;
        gap: 5px;

        .categoria {
            max-width: 49%;
            max-height: 300px;
        }
    }

    .sepcategoria2 {
        flex-wrap: wrap;
        gap: 5px;

        .categoria {
            max-width: 49%;
            max-height: 300px;
        }
    }

    .geral {
        align-items: center;
        justify-content: center;
    }

    .smoke, .smoke2, .smoke3 {
        display: none;
    }
    
    .missao, .valores, .visao {
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
    }
    
    .missaosep2, .visaosep2, .valoressep2 {
        padding: 15px;
    }
    
    .missaosep2 p, .visaosep2 p, .valoressep2 p {
        font-size: 14px;
    }
}

/*
    <p>A Digital Informática se especializa<br> no comércio
    de equipamentos e suprimentos de informática,<br>
    além de oferecer excelente assistência técnica.<br>
    Reconhecida pelo atendimento de qualidade e eficiência,<br>
    atende às necessidades tecnológicas<br>
    de seus clientes com profissionalismo.</p>
*/