:root {
    --primary-red: #e10600;
    --dark-bg: #111111;
}

.bk-black {
    background-color: var(--dark-bg);
}

body {
    scroll-behavior: smooth;
}

.navbar {
    background-color: var(--dark-bg);
}

.navbar-brand img {
    height: 50px;
}

.carousel-item {
    height: 50vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.carousel-caption {
    bottom: 50%;
    transform: translateY(50%);
}

.carousel-caption h1 {
    font-weight: 700;
    font-size: 3rem;
}

.hero h1 {
    font-weight: 700;
}

.btn-primary {
    background-color: var(--primary-red);
    border: none;
}

.btn-primary:hover {
    background-color: #b80500;
}

.section-title {
    color: var(--primary-red);
    font-weight: bold;
}

.service-card {
    border: none;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.footer {
    background-color: var(--dark-bg);
    color: white;
    padding: 20px 0;
}

.img-servico {
    max-height: 420px;
}

.custom-gray {
    background-color: #f0f0f0;
    /* cinza claro */
    color: #333;
    /* texto escuro */
}



/* Mapa */
#map {
    width: 100%;
    height: 400px;
}

.map-row{
    max-width: 100%;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}