* {
    box-sizing: border-box;
    padding: 0px;
    margin: 0px;
    color: black;
    font-family: Arial, Helvetica, sans-serif;
}
html {
  scrollbar-gutter: stable;
}


/*CSS PARA A BARRA DE NAVEGAÇÃO*/
.navigation-bar {
    position: fixed;
    display: none;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 75px;
    background-color: white;
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid #ccc;
    z-index: 12;
    top: 0;
    transition: 500ms;
}

#logo-container {
    display: flex;
    justify-content: start;
    align-items: center;
    width: 50%;
    height: 100%;
    padding-left: 6%;
}

#logo-link {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 75%;
    gap: 8px;
}

.logo-veritas {
    max-height: 60%;
}

#logo-nome {
    max-height: 30%;
}

.menu-button {
    position: absolute;
    display: none;
    pointer-events: auto;
    justify-content: center;
    align-items: end;
    right: 4px;
    padding: 20px 20px;
    transition: 500ms;
    img {
        width: 25px;
    }
}

#menu-button-icon {
    transition: 500ms;
}

#links-navegacao {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 100%;
    gap: 10%;
}

.link-navegacao {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    text-transform: uppercase;
    color: #1b1b1b;
    font-size: 1rem;
    text-shadow: 1px 0px 0px #1b1b1b;
    transition: 500ms;
}

.dropdown {
    display: flex;
    position: relative;
    align-items: center; 
}

.dropdown-content {
    display: none;
    justify-content: start;
    align-items: center;
    align-content: start;
    flex-flow: row wrap;
    position: absolute;
    background-color: white;
    min-width: 200px;
    height: 135px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    top: 47px; 
    left: 0;
    text-decoration: none;
    border-top: 1px solid #ccc;
}

.dropdown-content:hover {
    display: block;
}

.dropdown-content::before {
    content: "";
    position: absolute;
    top: -47px;
    left: 0;
    width: 100%;
    height: 50px;
    display: block;
}

.dropdown-link {
    display: flex;
    justify-content: start;
    align-items: center;
    color: #1b1b1b;
    width: 80px;
    height: 45px;
    font-size: 1rem;
    text-decoration: none;
    text-shadow: 1px 0px 0px #1b1b1b;
    width: 100%;
    padding-left: 6%;
}
.dropdown-content a:hover{
    background-color: black;
    text-shadow: 1px 0px 0px white;
    color: white;
}

.dropdown:hover .dropdown-content {
    display: flex;
}

.dropdown-content:hover {
    background-color: #fff;
}

.mobile-link-menu {
    position: fixed;
    display: none;
    justify-content: center;
    align-items: center;
    align-content: end;
    flex-flow: column;
    background-color: white;
    width: 100%;
    height: 100vh;
    bottom: 0px;
    z-index: 11;
    opacity: 0;
    gap: 10px;
    padding-top: 60px;
    background-color: #eee;
    transition: opacity .5s;
}

.menu-link {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: end;
    align-items: center;
    align-content: center;
    width: 100%;
    height: 60px;
    font-size: 1.2rem;
    text-decoration: none;
    background-color: white;
    padding-right: 40px;
}

.menu-link:hover {
    background-color: black;
    color: white;
}

footer {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    width: 100%;
    height: auto;
    background-color: white;
    gap: 20px;
    padding: 100px 0px;
    
}

#contato-container {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-flow: row wrap;
    width: 85%;
    height: 55%;
    border: 1px solid #ccc;
    border-radius: 4px;
    gap: 10px;
    padding: 30px;;
}

.contato-paragraph {
    display: flex;
    justify-content: start;
    align-items: center;
    text-align: start;
    width: 100%;
    font-size: 0.8rem;
}

.contact-icon {
    width: 20px;
    margin-right: 12px;
}

.footer-section-title {
    width: 100%;
    font-size: 1.4rem;
    text-align: center;
}

#redes-container {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-flow: row wrap;
    width: 85%;
    height: auto;
    border: 1px solid #ccc;
    border-radius: 4px;
    gap: 20px;
    padding: 50px 0px;
}

#redes-title {
    text-align:center;
    width: 100%;
    font-size: 1.3rem;
}

.button-box {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #333;
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 4px;
    padding: 10px;
    transition: 250ms;
}

.button-box:hover {
    background-color: black;
    cursor: pointer;
    transition: 125ms;
    .rede-btn {
        background-color: black;
        transition: 125ms;
    }
}


.rede-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #333;
    border: none;
    border-radius: 4px;
    transition: 250ms;
}

.rede-btn:hover {
    background-color: black;
    cursor: pointer;
    transition: 125ms;
}

.rede-icon {
    height: 20px;
}

#whatsapp-link {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 50px;
    height: 50px;
    background-color: lime;
    bottom: 3.5%;
    right: 5%;
    z-index: 10;
    border-radius: 50px;
    transition: 250ms;
    img {
        height: 100%;
    }
}

#dev-text {
    position: absolute;
    bottom: 2.5%;
    color: gray;
    font-size: 12px;
}

/* ==========================================================================
   1. CELULARES GRANDES / TABLETS NA VERTICAL (Telas a partir de 576px)
   ========================================================================== */
@media (min-width: 576px) {
    /* Código aqui se adapta para celulares em modo paisagem ou mini tablets */
    footer {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-flow: column;
        width: 100%;
        height: auto;
        background-color: white;
        gap: 40px;
    }
    #contato-container {
        display: flex;
        justify-content: center;
        align-items: center;
        align-content: center;
        flex-flow: row wrap;
        width: 70%;
        height: 220px;
        border: 1px solid #ccc;
        border-radius: 4px;
        gap: 15px;
        padding: 40px 40px;
    }
    .contato-paragraph {
        display: flex;
        justify-content: start;
        align-items: center;
        text-align: start;
        width: 100%;
        font-size: 0.9rem;
    }

    .contact-icon {
        width: 20px;
        margin-right: 12px;
    }

    .footer-section-title {
        width: 100%;
        font-size: 1.4rem;
        text-align: start;
    }
    #redes-container {
        display: flex;
        justify-content: center;
        align-items: center;
        align-content: center;
        flex-flow: row wrap;
        width: 70%;
        height: 220px;
        border: 1px solid #ccc;
        border-radius: 4px;
        gap: 25px;
        padding: 50px 0px;
    }

    #redes-title {
        text-align:center;
        width: 100%;
        font-size: 1.4rem;
    }

    .button-box {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #333;
        width: 55px;
        height: 55px;
        border: none;
        border-radius: 4px;
        transition: 250ms;
    }

    .button-box:hover {
        background-color: black;
        cursor: pointer;
        transition: 125ms;
        .rede-btn {
            background-color: black;
            transition: 125ms;
        }
    }


    .rede-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #333;
        border: none;
        border-radius: 4px;
        transition: 250ms;
    }

    .rede-btn:hover {
        background-color: black;
        cursor: pointer;
        transition: 125ms;
    }

    .rede-icon {
        height: 20px;
    }
    #whatsapp-link {
        display: flex;
        justify-content: center;
        align-items: center;
        position: fixed;
        width: 60px;
        height: 60px;
        background-color: lime;
        bottom: 3.5%;
        right: 2.5%;
        z-index: 10;
        border-radius: 50px;
        transition: 250ms;
        img {
            height: 100%;
        }
    }
    #dev-text {
        position: absolute;
        bottom: 5%;
        color: gray;
        font-size: 12px;
    }
}

/* ==========================================================================
   2. TABLETS NA HORIZONTAL / LAPTOPS ANTIGOS (Telas a partir de 768px)
   ========================================================================== */
@media (min-width: 768px) {
    /* 🚀 ESSE É O PRINCIPAL PONTO DE QUEBRA */
    /* Aqui o menu de navegação pode aparecer completo, as conquistas ficam em 4 colunas */
    /* e os cards da section1 podem ficar lado a lado */
    footer {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-flow: column;
        width: 100%;
        height: auto;
        background-color: white;
        gap: 40px;
    }
    #contato-container {
        display: flex;
        justify-content: center;
        align-items: center;
        align-content: center;
        flex-flow: row wrap;
        width: 70%;
        height: 220px;
        border: 1px solid #ccc;
        border-radius: 4px;
        gap: 15px;
        padding: 40px 40px;
    }
    .contato-paragraph {
        display: flex;
        justify-content: start;
        align-items: center;
        text-align: start;
        width: 100%;
        font-size: 0.9rem;
    }

    .contact-icon {
        width: 20px;
        margin-right: 12px;
    }

    .footer-section-title {
        width: 100%;
        font-size: 1.4rem;
        text-align: start;
    }
    #redes-container {
        display: flex;
        justify-content: center;
        align-items: center;
        align-content: center;
        flex-flow: row wrap;
        width: 70%;
        height: 220px;
        border: 1px solid #ccc;
        border-radius: 4px;
        gap: 25px;
        padding: 50px 0px;
    }

    #redes-title {
        text-align:center;
        width: 100%;
        font-size: 1.6rem;
    }

    .button-box {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #333;
        width: 55px;
        height: 55px;
        border: none;
        border-radius: 4px;
        transition: 250ms;
    }

    .button-box:hover {
        background-color: black;
        cursor: pointer;
        transition: 125ms;
        .rede-btn {
            background-color: black;
            transition: 125ms;
        }
    }


    .rede-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #333;
        
        border: none;
        border-radius: 4px;
        transition: 250ms;
    }

    .rede-btn:hover {
        background-color: black;
        cursor: pointer;
        transition: 125ms;
    }

    .rede-icon {
        height: 25px;
    }
    #whatsapp-link {
        display: flex;
        justify-content: center;
        align-items: center;
        position: fixed;
        width: 60px;
        height: 60px;
        background-color: lime;
        bottom: 3.5%;
        right: 2.5%;
        z-index: 10;
        border-radius: 50px;
        transition: 250ms;
        img {
            height: 100%;
        }
    }
    #dev-text {
        position: absolute;
        bottom: 5%;
        color: gray;
        font-size: 12px;
    }
}

/* ==========================================================================
   3. DESKTOPS / NOTEBOOKS MODERNOS (Telas a partir de 992px)
   ========================================================================== */
@media (min-width: 992px) {
    /* Ajustes finos de espaçamento (paddings, gaps, tamanhos de fonte maiores) */
    /*CSS PARA A BARRA DE NAVEGAÇÃO*/
    nav {
        position: fixed;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 75px;
        background-color: white;
        box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.25);
        z-index: 4;
        top: 0;
        transition: 500ms;
    }

    #logo-container {
        display: flex;
        justify-content: start;
        align-items: center;
        width: 40%;
        height: 100%;
        padding-left: 6%;
    }

    #logo-link {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 75%;
        gap: 8px;
    }

    .logo-veritas {
        max-height: 60%;
    }

    #logo-nome {
        max-height: 30%;
    }

    #links-navegacao {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 60%;
        height: 100%;
        gap: 10%;
    }

    .link-navegacao {
        display: flex;
        justify-content: center;
        align-items: center;
        text-decoration: none;
        text-transform: uppercase;
        color: #1b1b1b;
        font-size: 0.8rem;
        text-shadow: 1px 0px 0px #1b1b1b;
        transition: 500ms;
    }

    .dropdown {
        display: flex;
        position: relative;
        align-items: center; 
    }

    .dropdown-content {
        display: none;
        justify-content: start;
        align-items: center;
        align-content: start;
        flex-flow: row wrap;
        position: absolute;
        background-color: white;
        min-width: 200px;
        height: 135px;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        z-index: 1;
        top: 47px; 
        left: 0;
        text-decoration: none;
        border-top: 1px solid #ccc;
    }

    .dropdown-content::before {
        content: "";
        position: absolute;
        top: -47px;
        left: 0;
        width: 100%;
        height: 50px;
        display: block;
    }

    .dropdown-link {
        display: flex;
        justify-content: start;
        align-items: center;
        color: #1b1b1b;
        width: 80px;
        height: 45px;
        font-size: 1rem;
        text-decoration: none;
        text-shadow: 1px 0px 0px #1b1b1b;
        width: 100%;
        padding-left: 6%;
    }
    .dropdown-content a:hover{
        background-color: black;
        text-shadow: 1px 0px 0px white;
        color: white;
    }

    .dropdown:hover .dropdown-content {
        display: flex;
    }

    .dropdown-content:hover {
        background-color: #fff;
    }
    footer {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-flow: row wrap;
        width: 100%;
        height: auto;
        background-color: white;
        gap: 4%;
    }
    #contato-container {
        display: flex;
        justify-content: center;
        align-items: center;
        align-content: center;
        flex-flow: row wrap;
        width: 50%;
        height: 220px;
        border: 1px solid #ccc;
        border-radius: 4px;
        gap: 15px;
        padding: 40px 40px;
    }
    .contato-paragraph {
        display: flex;
        justify-content: start;
        align-items: center;
        text-align: start;
        width: 100%;
        font-size: 1rem;
    }

    .contact-icon {
        width: 20px;
        margin-right: 12px;
    }

    .footer-section-title {
        width: 100%;
        font-size: 1.4rem;
        text-align: start;
    }
    #redes-container {
        display: flex;
        justify-content: center;
        align-items: center;
        align-content: center;
        flex-flow: row wrap;
        width: 30%;
        height: 220px;
        border: 1px solid #ccc;
        border-radius: 4px;
        gap: 15px;
        padding: 50px 0px;
    }

    #redes-title {
        text-align:center;
        width: 100%;
        font-size: 1.4rem;
    }

    .button-box {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #333;
        width: 55px;
        height: 55px;
        border: none;
        border-radius: 4px;
        transition: 250ms;
    }

    .button-box:hover {
        background-color: black;
        cursor: pointer;
        transition: 125ms;
        .rede-btn {
            background-color: black;
            transition: 125ms;
        }
    }


    .rede-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #333;
        border: none;
        border-radius: 4px;
        transition: 250ms;
    }

    .rede-btn:hover {
        background-color: black;
        cursor: pointer;
        transition: 125ms;
    }

    .rede-icon {
        height: 23px;
    }
    #whatsapp-link {
        display: flex;
        justify-content: center;
        align-items: center;
        position: fixed;
        width: 60px;
        height: 60px;
        background-color: lime;
        bottom: 3.5%;
        right: 2.5%;
        z-index: 10;
        border-radius: 50px;
        transition: 250ms;
        img {
            height: 100%;
        }
    }
    #dev-text {
        position: absolute;
        bottom: 5%;
        right: 125px;
        color: gray;
        font-size: 12px;
    }
}

/* ==========================================================================
   4. MONITORES GRANDES / TVS (Telas a partir de 1200px)
   ========================================================================== */
@media (min-width: 1200px) {
    footer {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-flow: row wrap;
        width: 100%;
        height: auto;
        background-color: white;
        gap: 4%;
    }
    #contato-container {
        display: flex;
        justify-content: center;
        align-items: center;
        align-content: center;
        flex-flow: row wrap;
        width: 50%;
        height: 220px;
        border: 1px solid #ccc;
        border-radius: 4px;
        gap: 15px;
        padding: 40px 40px;
    }
    .contato-paragraph {
        display: flex;
        justify-content: start;
        align-items: center;
        text-align: start;
        width: 100%;
        font-size: 1rem;
    }

    .contact-icon {
        width: 20px;
        margin-right: 12px;
    }

    .footer-section-title {
        width: 100%;
        font-size: 1.5rem;
        text-align: start;
    }
    #redes-container {
        display: flex;
        justify-content: center;
        align-items: center;
        align-content: center;
        flex-flow: row wrap;
        width: 25%;
        height: 220px;
        border: 1px solid #ccc;
        border-radius: 4px;
        gap: 15px;
        padding: 50px 0px;
    }

    #redes-title {
        text-align:center;
        width: 100%;
        font-size: 1.5rem;
    }

    .button-box {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #333;
        width: 60px;
        height: 60px;
        border: none;
        border-radius: 4px;
        transition: 250ms;
    }

    .button-box:hover {
        background-color: black;
        cursor: pointer;
        transition: 125ms;
        .rede-btn {
            background-color: black;
            transition: 125ms;
        }
    }


    .rede-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #333;
        border: none;
        border-radius: 4px;
        transition: 250ms;
    }

    .rede-btn:hover {
        background-color: black;
        cursor: pointer;
        transition: 125ms;
    }

    .rede-icon {
        height: 25px;
    }
    #whatsapp-link {
        display: flex;
        justify-content: center;
        align-items: center;
        position: fixed;
        width: 60px;
        height: 60px;
        background-color: lime;
        bottom: 3.5%;
        right: 2.5%;
        z-index: 10;
        border-radius: 50px;
        transition: 250ms;
        img {
            height: 100%;
        }
    }
    #dev-text {
        position: absolute;
        bottom: 5%;
        right: 145px;
        color: gray;
        font-size: 12px;
    }
}
