html, body {
    height: 100%;
    display: flex;
    flex-direction: column;
}
a {
    text-decoration: none !important;
    color: inherit;
    font-weight: inherit;
}

h1, h2, h3, h4, h5 {
    color: #1c294b !important;
}

body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f8f9fa; /* Cor de fundo neutra */
}

.preco{
    color: orangered;
}

/* ====== CABEÇALHO ====== */
header {
    background: #1c294b;
    color: white;
    padding: 20px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

nav ul li a:hover {
    color: #007bff; /* Azul claro para destaque */
}

main{
    flex: 1; 
}

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex; /* Adicionado para centralizar */
    align-items: center; /* Alinha verticalmente */
    justify-content: center; /* Alinha horizontalmente */
    text-decoration: none;
}

.float:hover {
    background-color: #20b858;
}

.my-float {
    font-size: 30px; /* Ajuste no tamanho do ícone */
}

/* ====== BANNER COM VÍDEO ====== */
.banner {
    position: relative;
    width: 100%;
    height: 70vh; /* Ajustado para melhor proporção */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Sobreposição Azul Transparente */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 20px;
}

.banner-overlay h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.banner-overlay p {
    font-size: 1.2rem;
}

/* ====== SEÇÕES ====== */
section {
    padding: 40px 20px;
}

/* ====== PRODUTOS ====== */
.produtos-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px;
}

.produto {
    background: white;
    padding: 20px;
    width: 280px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.produto:hover {
    transform: scale(1.05);
}

.produto img {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    object-fit: cover;
}

/* ====== RODAPÉ ====== */
footer {
    background: #002147;
    color: white;
    padding: 15px;
    text-align: center;
    width: 100%;
}

.sitemap {
    /* background: #f8f9fa; */
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;    
}

.sitemap {
    /* background: #f8f9fa; */ /* Removido para manter o fundo original */
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.sitemap h5 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #ffffff !important; /* Agora os títulos também ficam brancos */
}

.sitemap h4 {    
    font-weight: bold;
    margin-bottom: 10px;
    color: #ffffff !important; /* Texto em branco */
}

.sitemap ul {
    list-style: none;
    padding: 0;
}

.sitemap ul li {
    margin-bottom: 5px;
}

.sitemap ul li a {
    text-decoration: none;
    color: #ffffff; /* Texto em branco */
    transition: color 0.3s ease-in-out;
}

.sitemap ul li a:hover {
    color: #cccccc; /* Texto muda para cinza no hover */
}


.navbar {
    position: relative;
    z-index: 1000;
}

.navbar.fixed-top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
}

/* Ajuste quando o menu está expandido */
@media (max-width: 768px) {
    .navbar-collapse {
        background-color: #1c294b; /* Mantém o fundo azul */
        padding: 10px; /* Adiciona um espaço interno */
    }

    .navbar-nav {
        flex-direction: column; /* Alinha os itens verticalmente */
        width: 100%;
        text-align: center;
    }

    .nav-item {
        padding: 10px 0;
    }

    /* Ajuste da altura da logo no mobile */
    .navbar-brand img {
        width: 90px; /* Reduz tamanho */
        height: auto;
    }
}

.buy {
    background-color: #002147 !important;
    color: white !important;
    size: 200px;
}

/* Estilização do botão do WhatsApp */
.btn-success {
    background-color: #4CAF50 !important; /* Verde mais claro */
    border-color: #4CAF50 !important;
    color: white !important;
}

.btn-success:hover {
    background-color: #45A049 !important; /* Um tom um pouco mais escuro no hover */
    border-color: #45A049 !important;
}

