/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BASE */
body {
    background-color: #0a0a0a;
    color: #e5e5e5;
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

/* CONTAINER */
.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* NAVBAR */
.navbar {
    background: #111;
    border-bottom: 1px solid #d4af37;
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #d4af37;
    font-size: 20px;
    font-weight: bold;
}

/* NAV LINKS */
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #d4af37;
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background: #d4af37;
    margin: 4px 0;
}

/* HERO */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.title-principal {
    font-size: 48px;
    color: #d4af37;
}

.subtitle {
    color: #aaa;
    margin: 10px 0;
}

.tagline {
    font-size: 18px;
    margin: 15px 0;
}

/* BOTÕES */
.btn {
    padding: 12px 25px;
    margin: 10px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
    border-radius: 4px;
}

.btn-primary {
    background: #d4af37;
    color: #000;
}

.btn-primary:hover {
    background: #b8962e;
}

.btn-secondary {
    border: 1px solid #d4af37;
    color: #d4af37;
}

.btn-secondary:hover {
    background: #d4af37;
    color: #000;
}

/* SEÇÕES */
section {
    padding: 60px 0;
}

h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #d4af37;
}

/* ABOUT */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.about-card {
    background: #111;
    padding: 20px;
    border: 1px solid #222;
    text-align: center;
    transition: 0.3s;
}

/* HIGHLIGHT */
.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.highlight-card {
    background: #111;
    padding: 20px;
    border: 1px solid #222;
    transition: 0.3s;
}

/* HOVER EFFECT */
.about-card:hover,
.highlight-card:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
}

/* WARNING */
.warning {
    background: #111;
    text-align: center;
}

.warning p {
    margin: 10px 0;
}

/* STATS */
.stats {
    background: #0f0f0f;
}

.stat-item {
    text-align: center;
    margin-bottom: 20px;
}

.stat-number {
    font-size: 28px;
    color: #d4af37;
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 20px;
    border-top: 1px solid #222;
    color: #777;
}

/* ANIMAÇÃO (JS usa isso) */
.about-card,
.highlight-card,
.stat-item {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.6s ease;
}

.show {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVO */
@media (max-width: 768px) {

    .nav-links {
        display: none;
        flex-direction: column;
        background: #111;
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        padding: 20px;
        border-left: 1px solid #d4af37;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}