html,
body {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Roboto', sans-serif;
    scroll-behavior: smooth;
}

.hero {
    min-height: 80vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/inicio.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1rem;
    font-weight: bolder;
}

@media (max-width: 768px) {
    .hero {
        min-height: 60vh;
        padding: 2rem 1rem;
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    z-index: 1000;
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
}

.nav-link {
    color: #000 !important;
    font-weight: bold;
}

.nav-link:hover,
.nav-link:active,
.dropdown-item:hover,
.dropdown-item:active {
    color: #7AC943 !important;
}

.dropdown-menu:active .dropdown-item {
    background-color: transparent;
}

.bg-primary-custom {
    background-color: #fff!important;
    color: #000 !important;
}

.text-primary-custom {
    color: #002B36;
}

.btn-success {
    background-color: #7AC943;
    border-color: #7AC943;
}

.btn-success:hover {
    background-color: #5fae31;
    border-color: #5fae31;
}

.navbar-toggler {
    background-color: #7AC943 !important;
}

.submenu-servicos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.submenu-servicos button {
    background-color: #002B36;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    min-width: 130px;
}

.submenu-servicos button:hover {
    background-color: #024051;
}

.nav-item {
    cursor: pointer;
}

h2 {
    font-weight: bold;
}

#regiao {
    min-height: 80vh;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1rem;
}

.mapa-fundo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.mapa-fundo iframe {
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.mapa-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 43, 54, 0.7);
    z-index: 2;
}

.greenpower {
    font-weight: bolder;
    color: #7AC943;
}

.hero-form {
    background: #00000050;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px;
    border-radius: 10px;
}

.hero-form .form-control {
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border-radius: 0.5rem;
}

.hero-form .form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(122, 201, 67, 0.5);
    border: none;
    outline: none;
}

.hero-form button {
    padding: 0.75rem 2rem;
    font-weight: bold;
}