body {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-flow: row wrap;
    width: 100%;
    background-color: white;
}

header {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-flow: row wrap;
    width: 100%;
    height: 75px;
    background-color: white;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content:center;
    flex-flow: column wrap;
    background-color: white;
    width: 100%;
    height: auto;
    gap: 10px;
    padding: 40px 0px;
    p {
        width: 40%;
        text-align: center;
        font-size: 15px;
        color: #333;
    }
}

#titulo {
    font-size: 50px;
    font-weight: 1;
}

#formulario-contato {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column wrap;
    border: 1px solid #ccc;
    width: 90%;
    min-height: 500px;
    height: auto;
    gap: 25px;
    padding-left: 5%;
    padding-top: 20px;
    padding-bottom: 20px;
    border-radius: 4px;
    z-index: 0;
    margin-top: 20px;
}

.input {
    border: none;
    border-bottom: 2px solid #ccc;
    width: 90%;
    height: 35px;
    font-size: 1rem;
    color: #333;
}
.input:focus {
    outline: none;
}

#mensagem-form {
    height: 80px;
    resize: none;
}

#politica-priv-input {
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: rgb(77, 77, 77);
    font-size: 1rem;
    font-weight: 1;
    width: 90%;
}

#mensagem-btn {
    position: relative;
    border: none;
    width: 200px;
    height: 50px;
    color: white;
    font-size: 15px;
    background-color: #333;
    font-weight: bold;
    transition: 250ms;
}

#mensagem-btn:hover {
    cursor: pointer;
    background-color: black;
    transition: 125ms;
}

#mensagem-btn-overlay {
    position: absolute;
    display: none;
    border: none;
    right: 75px;
    width: 25%;
    height: 12.5%;
    bottom: 30px;
    color: white;
    font-size: 15px;
    background-color: rgba(0, 0, 0, 0.5);
    font-weight: bold;
    transition: 250ms;
}

/* ==========================================================================
   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 */

}

/* ==========================================================================
   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 */
    .input {
        border: none;
        border-bottom: 2px solid #ccc;
        width: 90%;
        height: 50px;
        font-size: 1.1rem;
        color: #333;
    }
}

/* ==========================================================================
   3. DESKTOPS / NOTEBOOKS MODERNOS (Telas a partir de 992px)
   ========================================================================== */
@media (min-width: 992px) {
    /* Ajustes finos de espaçamento (paddings, gaps, tamanhos de fonte maiores) */
    #formulario-contato {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: start;
        flex-flow: column wrap;
        border: 1px solid #ccc;
        width: 75%;
        min-height: 500px;
        height: auto;
        gap: 20px;
        padding-left: 5%;
        padding-top: 20px;
        padding-bottom: 20px;
        border-radius: 4px;
        z-index: 0;
        margin-top: 20px;
    }
    #politica-priv-input {
        font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: rgb(77, 77, 77);
        font-size: 1rem;
        font-weight: 1;
        width: 60%;
    }
    #mensagem-btn {
        position: absolute;
        border: none;
        width: 200px;
        height: 50px;
        color: white;
        font-size: 15px;
        background-color: #333;
        font-weight: bold;
        right: 80px;
        bottom: 60px;
        transition: 250ms;
    }

}

/* ==========================================================================
   4. MONITORES GRANDES / TVS (Telas a partir de 1200px)
   ========================================================================== */
@media (min-width: 1200px) {
    #formulario-contato {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: start;
        flex-flow: column wrap;
        border: 1px solid #ccc;
        width: 55%;
        min-height: 500px;
        height: auto;
        gap: 20px;
        padding-left: 5%;
        padding-top: 20px;
        padding-bottom: 20px;
        border-radius: 4px;
        z-index: 0;
        margin-top: 20px;
    }
}
