* { margin: 0; padding: 0; box-sizing: border-box; }

body, html {
    font-family: 'Segoe UI', Arial, sans-serif;
    /* Azul marinho bem escuro para o fundo */
    background-color: #000b1a; 
    color: #B8860B;
    overflow-x: hidden;
}

/* NAVBAR */
.navbar {
    position: fixed; top: 0; width: 100%;
    background-color: rgba(0, 11, 26, 0.95);
    border-bottom: 2px solid #B8860B; /* Dourado mais forte */
    z-index: 1000; padding: 15px 0;
    opacity: 0; transform: translateY(-50px);
    transition: 0.8s ease-out;
}

.menu-container {
    max-width: 1400px; margin: 0 auto; padding: 0 30px;
    display: flex; align-items: center; justify-content: space-between;
}

.logo { font-weight: bold; flex: 1; font-size: 1.1rem; color: #fff; }
.nav-links { list-style: none; display: flex; gap: 30px; flex: 2; justify-content: center; }
.menu-container::after { content: ""; flex: 1; }

.nav-links li a {
    text-decoration: none; color: #fff; font-weight: bold;
    text-transform: uppercase; font-size: 0.85rem; transition: 0.3s;
}

.nav-links li a:hover, .nav-links li a.active { color: #B8860B; }

/* MOBILE MENU */
.mobile-menu-icon {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer;
}
.mobile-menu-icon span { width: 25px; height: 3px; background: #B8860B; }

/* HOME */
.background-container {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('logos/camargocity.png'); /* Sua nova imagem */
    background-size: contain; background-position: center;
    background-repeat: no-repeat; opacity: 0.2; z-index: 1;
}

.content {
    position: relative; z-index: 2; height: 100vh;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    text-align: center; opacity: 0; transition: 1.5s ease-out;
}

p { font-size: 2.2rem; color: #fff; margin-bottom: 30px; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }
.insta-link { text-decoration: none; }
.hashtag {
    font-weight: bold; font-size: 1.5rem; border: 2px solid #B8860B;
    padding: 12px 25px; color: #B8860B; border-radius: 5px;
    transition: 0.3s;
}
.hashtag:hover { background: #B8860B; color: #000; }

@media (max-width: 992px) {
    .menu-container::after { display: none; }
    .mobile-menu-icon { display: flex; }
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 75%; height: 100vh;
        background: #000b1a; flex-direction: column; justify-content: center; align-items: center;
        transition: 0.4s;
    }
    .nav-links.active { right: 0; }
}