/* 
Cor Primaria = #570102
Cor Secundaria = #dab98e
*/

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Merriweather Sans", sans-serif !important;
}

section{
    padding: 50px 0px;
    scroll-margin-top: 80px;
}
@media (max-width: 768px) {
    section{
        scroll-margin-top: 250px;
    }
}

/* Navbar */
.navbar {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.navbar a {
    color: #102e52;
    text-decoration: none;
    transition: color 0.5s ease;
}
.navbar a:hover {
    color: #318dfc;
    transition: color 0.5s ease;
}
.navbar hr{
    border-top: 4px solid #102e52;
    opacity: 75%;
}

/* Hero */
.hero {
    margin-top: -80px;
    background: linear-gradient(#102e52, #102e5286),
        url('../img/hero.webp') center/cover no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: #dab98e;
}
.hero hr{
    border-top: 4px solid #dab98e;
    opacity: 75%;
    width: 22em;
}

/* Sobre */
#escritorio {
    background:url('../img/bg_claro.webp') center/cover no-repeat;
    color: #102e52;
}

/* Visao */
#visao {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #102e52;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: #dab98e;
}

/* Atuação */
#atuacao {
    background:url('../img/bg_claro.webp') center/cover no-repeat;
    color: #102e52;
}
#atuacao a{
    text-decoration: none;
    color: #102e52;
    transition: color 0.5s ease;
}
#atuacao a:hover{
    color: #318dfc;
    transition: color 0.5s ease;
}

/* contato */
#contato {
    background: linear-gradient(#102e5286, #102e52), 
        url('../img/bg_contato.webp') center/cover no-repeat;
    color: #dab98e;
}
#contato a {
    color: #dab98e;
    text-decoration: none;
    transition: color 0.5s ease;
}
#contato a:hover {
    color: #977f62;
    transition: color 0.5s ease;
}
#contato .btn-danger{
    background-color: #dab98e;
    color: #102e52;
    border: none;
    transition: color 0.5s ease;
    transition: background-color 0.5s ease;
}
#contato .btn-danger:hover{
    background-color: #102e52;
    color: #dab98e;
    transition: color 0.5s ease;
    transition: background-color 0.5s ease;
}

/* Footer */
.footer{
    background-color: #102e52;
    color: #dab98e;
    display: flex;
    align-items: center;
    position: relative;
}
.footer p{
    margin-top: 2px !important;
    margin-bottom: 2px !important;
}
.footer a{
    text-decoration: none;
    color: #dab98e;
    transition: color 0.5s ease;
}

/* WhatsApp BTN */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    z-index: 999;
    text-decoration: none;
    transition: transform 0.5s ease;
}
.whatsapp-btn:hover {
    transform: scale(1.2);
    transition: transform 0.5s ease;
}

/* Selo */
.selo{
    font-size: x-small;
}
.selo a:hover{
    color: #e50914 !important;
    transition: color 0.5s ease;
}