/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* TOPO */
#topo {
    background: #ffffff;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
    max-height: 60px;
}

/* MENU */
nav ul {
    display: flex;
    list-style: none;
}

nav ul li a {
    padding: 10px 15px;
    text-decoration: none;
    color: #aa0000;
    font-weight: bold;
}

nav ul li a:hover {
    color: #d40000;
}

/* BOTÃO MENU MOBILE */
.menu-toggle {
    display: none;
    font-size: 30px;
    background: none;
    border: none;
    color: #aa0000;
    cursor: pointer;
}

/* BANNER */
#banner img {
    width: 100%;
    margin-top: 90px;
    display: block;
    border-bottom: 4px solid #d4af37;
}

/* SESSÕES */
.sessao {
    padding: 80px 20px;
    text-align: center;
}

.sessao h1,
.sessao h2 {
    color: #aa0000;
    margin-bottom: 20px;
}

/* LISTA */
.lista {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

/* BOTÃO */
.btn {
    display: inline-block;
    background: #aa0000;
    color: #fff;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 15px;
}

.btn:hover {
    background: #d40000;
}

/* IMAGENS */
.img-bolsa {
    max-width: 90%;
    margin: 20px auto;
    border-radius: 12px;
    border: 3px solid #d4af37;
}

/* CONTATO */
.contato-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.coluna {
    max-width: 300px;
}

.btn-whats {
    display: block;
    background: #25d366;
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 15px;
    text-decoration: none;
    font-weight: bold;
}

.btn-whats:hover {
    background: #1da851;
}

.linha a {
    color: #aa0000;
    font-weight: bold;
    text-decoration: none;
}

/* RODAPÉ */
#footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 30px 15px;
}

/* MOBILE */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        background: #ffffff;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
    }

    nav.active ul {
        display: flex;
    }

    nav ul li a {
        padding: 15px;
        text-align: center;
    }

    .container {
        flex-wrap: wrap;
    }
}