body {
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
    scroll-behavior: smooth;
}

.navbar {
    position: fixed;
    font-size: large;
    top: 0;
    width: 100%;
    z-index: 1030;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-nav .nav-link {
    position: relative;
    color: #333;
    font-weight: 500;
    padding: 5px 10px;
    overflow: hidden;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #0056b3;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::before {
    width: 80%;
}

.navbar-brand img {
    height: 40px;
}

.hero {
    position: relative;
    height: 100vh;
    /* Altura total da janela */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

#hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Faz o vídeo preencher toda a área */
    z-index: -1;
    /* Envia o vídeo para o fundo */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Sobreposição escura */
    z-index: 0;
    /* Camada intermediária */
}

.container {
    position: relative;
    z-index: 1;
    /* Coloca o conteúdo acima do vídeo e da sobreposição */
}


.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 1.7rem;
}

.hero .btn-primary {
    font-size: 1.9rem;
    width: 15rem;
    padding: 15px 15px;

}

.btn-primary {
    background-color: #39588A;
    border-color: #007bff;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.feature {
    text-align: center;
    margin-bottom: 30px;
}

.feature-icon {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 15px;
}

.card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    height: 100%;
    /* Garante que o card ocupe todo o espaço disponível */
    min-height: 200px;
    /* Define uma altura mínima */
    max-height: auto;
    /* Impede que o card seja cortado */
}

/* 
.footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #e9ecef;
}

.footer a {
    color: #007bff;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
} */

.footer {
    background-color: #f8f9fa;
    padding: 10px 0;
    font-size: 14px;
    color: #6c757d;
    border-top: 1px solid #e9ecef;
    margin-top: 30px; /* Espaçamento entre o rodapé e a seção anterior */
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer a {
    color: #0056b3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #003d80;
}


/* body {
    padding-top: 70px;
} */

/* Floating WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1050;
    cursor: pointer;
}

.whatsapp-button:hover {
    background-color: #1ebe57;
}

.whatsapp-button img {
    width: 30px;
    height: 30px;
}

/* Estilo para o modal */
#popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 1000;
}

#popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    display: none;
    z-index: 1001;
}

#popup p {
    margin: 0;
    font-size: 16px;
    color: #333;
}
