/* RESET */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* HEADER */
.header-site {
    background: #ffffff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 999;
}

/* CONTAINER FLEX */
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* LOGO */
.logo img {
    max-height: 50px;
}

/* MENU */
.menu {
    display: flex;
    gap: 25px;
}

.menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: 0.3s;
}

.menu a:hover {
    color: #000;
}

/* AÇÕES */
.acoes {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* REDES */
.redes a {
    color: #333;
    font-size: 18px;
    margin-right: 10px;
    transition: 0.3s;
}

.redes a:hover {
    color: #000;
}

/* BOTÃO WHATSAPP */
.btn-whatsapp {
    background: #25D366;
    color: white;
    padding: 8px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.btn-whatsapp:hover {
    background: #1ebe5d;
}

/* MENU MOBILE */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* ======================
MENU DROPDOWN
====================== */
.menu {
    display: flex;
    gap: 20px;
    align-items: center;
}

.menu a, .menu span {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    position: relative;
    cursor: pointer;
}

/* ITEM COM DROPDOWN */
.menu-item {
    position: relative;
}

/* SUBMENU */
.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 6px;
    padding: 10px 0;
    z-index: 999;
}

/* LINKS DO SUBMENU */
.submenu a {
    display: block;
    padding: 10px 15px;
    color: #333;
}

.submenu a:hover {
    background: #f5f5f5;
}

/* HOVER */
.menu-item:hover .submenu {
    display: block;
}

/* ======================
MENU MOBILE APP STYLE
====================== */

@media (max-width: 992px) {

    .menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100%;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        transition: 0.3s;
        overflow-y: auto;
        z-index: 1000;
    }

    .menu.active {
        left: 0;
    }

    .menu a,
    .menu-link {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid #eee;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: #000;
        text-decoration: none;
    }

    /* SUBMENU */
    .submenu {
        display: none;
        width: 100%;
        padding-left: 15px;
    }

    .submenu.active {
        display: block;
    }

    .has-submenu i {
        transition: 0.3s;
    }

    .has-submenu.open i {
        transform: rotate(180deg);
    }
}

/* FOOTER */
.footer-site {
    background: #111;
    color: #ccc;
    padding: 60px 0 0;
}

/* LOGO */
.footer-logo img {
    max-height: 60px;
}

/* TÍTULOS */
.footer-site h5 {
    color: #fff;
    margin-bottom: 20px;
}

/* LINKS */
.footer-links,
.footer-contato {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-contato li {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: #ccc;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

/* CONTATO */
.footer-contato i {
    margin-right: 8px;
}

/* FAIXA INFERIOR */
.footer-bottom {
    border-top: 1px solid #222;
    margin-top: 30px;
    padding: 20px 0;
    background: #0a0a0a;
}

.footer-bottom p {
    margin: 0;
    color: #aaa;
}

/* ======================
BANNER
====================== */
.banner-img {
    height: 500px;
    object-fit: cover;
}

.carousel-caption {
    background: rgba(0,0,0,0.5);
    padding: 20px;
    border-radius: 8px;
}

/* ======================
CARDS
====================== */
.sec-cards {
    padding: 60px 0;
    background: #f8f8f8;
}

.card-box {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    transition: 0.3s;
    height: 100%;
}

.card-box:hover {
    transform: translateY(-5px);
}

.card-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

/* ======================
NOTÍCIAS
====================== */
.sec-noticias {
    padding: 60px 0;
}

.noticia-box {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
}

.noticia-box:hover {
    transform: translateY(-5px);
}

.noticia-box img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.noticia-box .conteudo {
    padding: 15px;
}

/* ======================
SERVIÇOS
====================== */
.servico-box {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
    height: 100%;
}

.servico-box:hover {
    transform: translateY(-5px);
}

.servico-box img {
    height: 220px;
    width: 100%;
    object-fit: cover;
}

.servico-box .conteudo {
    padding: 15px;
}

.servico-box h5 {
    margin-bottom: 10px;
}

.preco {
    color: #28a745;
    font-size: 18px;
}

a {
    text-decoration: none !important;
}

/* RESPONSIVO */
@media (max-width: 992px) {

    .menu {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: center;
        display: none;
        padding: 20px 0;
        border-top: 1px solid #eee;
    }

    .menu.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .acoes {
        display: none;
    }

    .footer-site .container .row {
        display: block;
    }

}