/* ========================
   IMPORTAÇÕES E CONFIG GERAL
======================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:wght@100;300;400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
    max-width: 100%;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
    background-color: #f5f5f5;
}

/* Garante que elementos não ultrapassem a largura */
.container, section, .navbar, .footer {
    max-width: 100vw;
    overflow: hidden; 
}

.section-title {
    position: relative;
    margin-bottom: 2.5rem;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #193e60;
}

@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    body {
        line-height: 1.5;
    }
}