/* ================= CONFIGURAÇÕES GERAIS ================= */

/* Aqui você pode alterar a fonte padrão do site */
body {
    font-family: Arial, sans-serif;
}

/* Espaçamento padrão das seções */
section {
    padding-top: 80px;
}

/* ================= HERO ================= */

/* Background principal */
.hero-section {
    height: 100vh;
    background: url('../img/background.jpg') center/cover no-repeat;
}

/* ================= NÚMEROS ================= */

.numeros h2 {
    font-size: 3rem; /* tamanho dos números */
    color: #198754; /* cor verde bootstrap */
}

/* ================= CARDS VANTAGENS ================= */
.card {
    height: 100%;
}
.vantagem {
    height: 220px;
    position: relative;
    color: white;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    background-size: cover;
    background-position: center;

    border-radius: 12px;
    overflow: hidden;
}
/* Links do menu */
.navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* Efeito ao passar o mouse */
.navbar-nav .nav-link:hover {
    background-color: #198754; /* verde (Bootstrap) */
    color: #fff !important;
    transform: translateY(-2px);
}

/* Link ativo (opcional - quando clicar) */
.navbar-nav .nav-link.active {
    background-color: #198754;
    color: white !important;
}
/* Overlay escuro */
.vantagem::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55); /* controla o escurecimento */
}
h5 {
    font-weight: bold;
    margin-top: 10px;
}
iframe {
    border-radius: 10px;
}
ul {
    padding-left: 18px;
}
/* Texto acima do overlay */
.vantagem h4 {
    position: relative;
    z-index: 2;
    font-weight: bold;
}
/* ================= WHATSAPP ================= */

.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;

    background-color: #25d366;
    color: white;

    font-size: 30px;
    padding: 15px;

    border-radius: 50%;
}

/* ================= RESPONSIVIDADE ================= */

/* Ajustes para celular */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
}