body {
    background-color: #121212;
    color: white;
    font-family: 'Montserrat', sans-serif;
}

.hero {
    height: 60vh; /* Mantendo a altura reduzida */
    background: url('images/executivo-transporte.jpg') no-repeat center center/cover;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Transparência para escurecer o fundo */
    z-index: -1;
}

.hero h2,
.hero p,
.hero a {
    z-index: 2; /* Garante que o conteúdo fique acima da camada escura */
}

/* Botões na seção Hero */
.hero a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px; /* Tamanho fixo */
    min-width: 150px; /* Largura mínima para uniformidade */
    padding: 0 15px;
    font-size: 1rem;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    margin-right: 10px; /* Espaçamento entre os botões */
}

.hero a:last-child {
    margin-right: 0; /* Remove margem no último botão */
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    color: white;
}

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

.btn-outline-light {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline-light:hover {
    background-color: white;
    color: #121212;
}

/* Botões na seção de Contato (abaixo do carrossel) */
#contact .text-center {
    display: flex; /* Torna o contêiner flexível */
    justify-content: center; /* Centraliza os botões horizontalmente */
    gap: 15px; /* Adiciona espaçamento entre os botões */
    flex-wrap: wrap; /* Permite que os botões quebrem para a próxima linha se necessário */
}

#contact .btn {
    height: 50px; /* Altura fixa para consistência */
    min-width: 200px; /* Largura mínima uniforme */
    font-size: 1rem;
    border-radius: 5px;
    text-align: center;
    display: flex; /* Garante centralização vertical do texto */
    align-items: center;
    justify-content: center;
}

#contact .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    color: white;
}

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

/* Pulsação nos botões */
.pulse {
    animation: pulse-animation 1.5s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0px rgba(255, 255, 255, 0.7);
    }
    50% {
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    }
    100% {
        box-shadow: 0 0 0px rgba(255, 255, 255, 0.7);
    }
}

.card {
    border: none;
}

.carousel-inner img {
    height: 400px;
    max-height: 400px;
    object-fit: contain;
    margin: auto;
}

footer {
    background-color: #000;
}
