:root {
    --gold: #c9a24d;
    --gold-soft: #e2c675;
    --dark: #0a0a0a;
    --stone: #121212;
    --text: #d8d8d8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cinzel', 'Times New Roman', serif;
    background: var(--dark);
    color: var(--text);
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 90px;
    z-index: 100;

    display: flex;
    align-items: center;          /* VOLTA PRO CENTRO */
    justify-content: space-between;

    padding: 0 50px;
    background: rgba(0,0,0,0.85);
    border-bottom: 1px solid #222;

    overflow: visible;
}

}
header {
    overflow: visible; /* MUITO IMPORTANTE */
}

.logo img {
    height: 288px;          /* tamanho ideal */
    width: auto;
    margin-top: +188px;      /* ajuste FINO */
}


/* ===== AJUSTES PARA CELULAR ===== */
@media (max-width: 768px) {

    .logo {
        position: relative;
        left: 0;
        transform: none;
        margin: 0 auto 20px auto;
        max-width: 240px;
        text-align: center;
    }

    .hero-content {
        text-align: center;
        padding: 0 5px;
    }

}

nav a {
    margin-left: 25px;
    color: var(--gold-soft);
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
}

nav a:hover {
    color: var(--gold);
}


/* STATUS SERVIDOR */
.status {
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-left: 30px;
}

/* ONLINE */
.status.online span {
    color: #00ff66;
    text-shadow:
        0 0 6px rgba(0,255,102,0.9),
        0 0 12px rgba(0,255,102,0.7);
}

/* OFFLINE */
.status.offline span {
    color: #ff3333;
    text-shadow:
        0 0 6px rgba(255,51,51,0.9),
        0 0 12px rgba(255,51,51,0.7);
}


/* HERO */
.hero {
    height: 100vh;
    padding-top: 90px; /* IGUAL À ALTURA DO HEADER */
    background:
      linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.9)),
      url('../img/bg.jpg') center top / cover no-repeat;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}


.hero h1 {
    font-size: 64px;
    color: var(--gold);
    letter-spacing: 4px;
    text-transform: uppercase;

    text-shadow:
        0 2px 4px rgba(0,0,0,0.9),
        0 6px 18px rgba(0,0,0,0.8),
        0 0 12px rgba(201,162,77,0.35);
}

.rate-hero {
    color: #ffd36a;
    font-size: 72px;
    margin-left: 10px;

    text-shadow:
        0 0 8px rgba(255,211,106,0.9),
        0 0 18px rgba(255,170,60,0.7),
        0 4px 10px rgba(0,0,0,0.9);
}  


.hero p {
    font-size: 18px;
    color: var(--gold-soft);
    margin: 20px 0 35px;
}

/* GRID */
.info-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

/* CARD */
.info-card {
    background: linear-gradient(to bottom, #1b1b1b, #0f0f0f);
    border: 1px solid #2b2b2b;
    box-shadow: inset 0 0 12px rgba(0,0,0,0.85);
    padding: 30px 25px;
    width: 240px;
    text-align: center;
}

/* ÍCONE */
.info-icon {
    font-size: 28px;
    display: block;
    margin-bottom: 12px;
}

/* TÍTULO */
.info-card h3 {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 6px;
    letter-spacing: 1px;
}

/* TEXTO PRINCIPAL */
.info-card p {
    font-size: 16px;
    color: #e0e0e0;
    margin-bottom: 6px;
}

.about-content {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

/* Parágrafo inicial (gancho) */
.about-lead {
    font-size: 18px;
    color: var(--gold-soft);
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Parágrafos normais */
.about-content p {
    font-size: 15px;
    line-height: 1.9;
    color: #d0d0d0;
    margin-bottom: 22px;
}

/* Destaque de palavras-chave */
.about-content strong {
    color: var(--gold);
    font-weight: normal;
}

/* Divisor elegante */
.about-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 35px auto;
}

/* Frase final de impacto */
.about-highlight {
    margin-top: 45px;
    font-size: 17px;
    color: #e6d18b;
}


/* TEXTO SECUNDÁRIO */
.info-card small {
    font-size: 13px;
    color: #aaa;
}

/* CARD EM DESTAQUE */
.info-card.highlight {
    border-color: var(--gold);
    box-shadow:
        inset 0 0 12px rgba(0,0,0,0.9),
        0 0 14px rgba(201,162,77,0.35);
}

/* TEXTO FINAL */
.info-footer {
    margin-top: 50px;
    font-size: 15px;
    color: var(--gold-soft);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}


/* BUTTONS */
.btn {
    text-decoration: none;
    padding: 14px 28px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.primary {
    background: linear-gradient(to bottom, #d6b15a, #9c7b2f);
    color: #000;
    border: 1px solid var(--gold-soft);
}

.primary:hover {
    background: linear-gradient(to bottom, #e6c97a, #b08b3a);
}

.secondary {
    border: 1px solid var(--gold);
    color: var(--gold);
    margin-left: 10px;
}

.large {
    font-size: 18px;
}

/* SECTIONS */
.section {
    padding: 110px 40px;
    text-align: center;
    background: linear-gradient(to bottom, #111, #0b0b0b);
    border-top: 1px solid #222;
}

.section.dark {
    background: linear-gradient(to bottom, #0d0d0d, #050505);
}

.section h2 {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 30px;
    letter-spacing: 2px;
}

/* CARDS */
.cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    background: linear-gradient(to bottom, #1b1b1b, #0f0f0f);
    border: 1px solid #2b2b2b;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.8);
    padding: 25px;
    margin: 10px;
    width: 220px;
    color: var(--gold-soft);
}

/* RATES */
.rates {
    list-style: none;
    font-size: 18px;
}

.rates li {
    margin: 8px 0;
}

/* CALL TO ACTION — CORRIGIDO */
.call {
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;

    background:
      linear-gradient(to bottom, rgba(0,0,0,0.75), rgba(0,0,0,0.95)),
      url('../img/bg.jpg') center / cover no-repeat;
}

.call-content {
    max-width: 700px;
    padding: 60px 20px;
}

.call-content h2 {
    font-size: 34px;
    color: var(--gold);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.call-content p {
    font-size: 16px;
    color: var(--gold-soft);
    margin-bottom: 35px;
}

.about-content {
    max-width: 900px;        /* evita linhas gigantes */
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;        /* leitura MUITO melhor */
    color: #d0d0d0;
    margin-bottom: 22px;
}

/* Destaque final */
.about-highlight {
    color: var(--gold-soft);
    font-size: 17px;
    margin-top: 35px;
}

.rates-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.rate-block {
    background: linear-gradient(to bottom, #1b1b1b, #0f0f0f);
    border: 1px solid #2b2b2b;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.8);
    padding: 25px;
    width: 260px;
    text-align: center;
}

.rate-block h3 {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 18px;
    letter-spacing: 1px;
}

.rate-block p {
    color: #d0d0d0;
    margin-bottom: 8px;
    font-size: 14px;
}

.rate-highlight {
    color: #f5c86a; /* dourado forte */
    font-size: 22px;
    font-weight: bold;
    text-shadow:
        0 0 6px rgba(245, 200, 106, 0.6),
        0 0 12px rgba(245, 200, 106, 0.4);
}

.events-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.events-intro {
    font-size: 16px;
    line-height: 1.8;
    color: #d0d0d0;
    margin-bottom: 40px;
}

.events-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.event-card {
    background: linear-gradient(to bottom, #1b1b1b, #0f0f0f);
    border: 1px solid #2b2b2b;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.8);
    padding: 25px;
    width: 280px;
}

.event-card h3 {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.event-card p {
    color: #cfcfcf;
    font-size: 14px;
    margin-bottom: 8px;
}

.event-reward {
    margin-top: 15px;
    font-size: 14px;
    color: var(--gold-soft);
}

.event-reward strong {
    color: #f5c86a;
}

.events-footer {
    margin-top: 45px;
    font-size: 15px;
    color: var(--gold-soft);
}

/* GALERIA */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 50px auto 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border: 1px solid #2b2b2b;
    cursor: pointer;
    aspect-ratio: 1 / 1; /* QUADRADO */
    background: #000;
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* HOVER */
.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.1);
}

/* LIGHTBOX */
#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#lightbox img,
#lightbox video {
    max-width: 90%;
    max-height: 90%;
}

#close {
    position: absolute;
    top: 25px;
    right: 40px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

/* FOOTER */
footer {
    background: black;
    padding: 20px;
    text-align: center;
    font-size: 13px;
    color: #aaa;
}

.disclaimer {
    font-size: 11px;
    color: #888;
    margin-top: 12px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* =========================
   AJUSTES MOBILE - L2 ARCANUM
   ========================= */
@media (max-width: 768px) {

    body {
        overflow-x: hidden;
    }

    .hero {
        min-height: 100vh;
        padding-top: 120px;
    }

    .logo {
        display: block;
        margin: 0 auto 20px auto;
        max-width: 220px;
        width: 100%;
    }

    .hero h1,
    .hero h2,
    .hero p {
        text-align: center;
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero h2 {
        font-size: 28px;
    }

    .hero .buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 280px;
        margin: 20px auto 0;
    }

    .hero .buttons a {
        width: 100%;
        text-align: center;
        padding: 14px;
        font-size: 16px;
    }
}

