body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: url('../img/fundo.jpg') no-repeat center center fixed;
    background-size: cover;
    margin: 0;
    padding: 0;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    filter: blur(8px);
    z-index: -1;
}

.main-content {
    flex: 1;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.location-container {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 2rem;
    width: 100%;
    max-width: 800px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.location-container.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.map-container {
    margin: 2rem 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Novo estilo para a imagem do mapa */
.map-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.info-section {
    margin: 2rem 0;
}

.info-section h2 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-section p {
    margin-left: 1.8rem;
    line-height: 1.6;
}

.disclaimer-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 2rem auto 0;
}

.disclaimer-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Dark Mode */
[data-theme="dark"] .location-container {
    background-color: rgba(26, 26, 26, 0.9);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .map-container {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .info-section h2 {
    color: var(--secondary-color);
}

/* Responsivo */
@media (max-width: 768px) {
    .main-content {
        padding: 1rem;
    }
    
    .location-container {
        padding: 1.5rem;
    }
}