html {
    scroll-behavior: smooth;
}

.service-card {
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

/* Animação para o menu mobile */
#mobile-menu {
    transition: all 0.3s ease;
    border-top: 1px solid #f0f0f0;
}

/* Estilo para a logo */
nav img {
    height: 64px;
    width: auto;
    object-fit: contain;
}

/* Transição suave para a transparência do navbar */
nav {
    transition: background-color 0.3s ease;
}

.nav-scrolled {
    background: linear-gradient(to right, rgba(31, 41, 55, 0.5), rgba(55, 65, 81, 0.5)) !important;
    backdrop-filter: blur(8px);
}

/* Ajuste para a seção do mapa */
.map-container {
    position: relative;
    padding-bottom: 56.25%; /* Proporção 16:9 */
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Estilização da barra de rolagem */
::-webkit-scrollbar {
    width: 15px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #C5A572;
    border-radius: 7px;
}

::-webkit-scrollbar-thumb:hover {
    background: #9E834E;
}

/* Para Firefox */
* {
    scrollbar-width: auto;
    scrollbar-color: #C5A572 #f1f1f1;
} 