/* ============================================================
   ROOT VARIABLES
============================================================ */

:root {
  --bg-dark: url("imgs/bg-topd.jpg");
  --bg-panel: #13151b;
  --gold: #e0b96c;
  --gold-soft: #c6954b;
  --text-main: #f5efe3;
  --text-muted: #b0aa9d;
  --accent-red: #b53030;
  --accent-green: #4caf50;
  --border-soft: rgba(255,255,255,0.08);

  /* TAMANHO DA LOGO (DESKTOP) */
  --hero-logo-width: 320px;
  --hero-logo-margin-top: 0px;

  /* TAMANHO DA LOGO (TABLET) */
  --hero-logo-width-md: 260px;
  --hero-logo-margin-top-md: -10px;

  /* TAMANHO DA LOGO (MOBILE) */
  --hero-logo-width-sm: 200px;
  --hero-logo-margin-top-sm: -5px;
}

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

body {
  font-family: "Montserrat", sans-serif;
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
  background: var(--bg-dark) center top / cover no-repeat fixed;
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  height: 540px;
  background: url("imgs/bg-top.jpg") center top / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.0);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding-top: 140px;
}

.hero-subtitle {
  font-family: "Cinzel", serif;
  letter-spacing: 0.36em;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.hero-title {
  font-family: "Cinzel", serif;
  font-size: 2.6rem;
  margin: 6px 0;
}

.hero-title-highlight {
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 14px;
}

.hero-text {
  max-width: 600px;
  margin: 0 auto 22px;
  font-size: 1rem;
  color: var(--text-muted);
}

.btn-hero {
  display: inline-block;
  padding: 12px 38px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f3d28d, #c3873b);
  color: #2c1406;
  font-family: "Cinzel", serif;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

/* ============================================================
   SERVERS
============================================================ */
.servers-block {
  position: relative;
  padding: 10px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: url("imgs/bg-topd.jpg") center top / cover no-repeat;
}

.servers-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .servers-container {
    grid-template-columns: 1fr;
  }
}

.server-item {
    display: flex;
    flex-direction: column;
    justify-content: center; /* centraliza VERTICAL */
    align-items: center;     /* centraliza HORIZONTAL */
    text-align: center;

    min-height: 180px; /* garante altura igual dos cards */
    padding: 20px;
}


.server-badge {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  font-size: 0.8rem;
  color: var(--gold);
  margin-bottom: 10px;
}

.server-item h3 {
  font-family: "Cinzel", serif;
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.server-status {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.server-status.online { color: var(--accent-green); }
.server-status.beta { color: #d4a24a; }

.server-date {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.server-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.server-links a {
  color: var(--gold-soft);
  font-size: 0.88rem;
  text-decoration: none;
}

/* ============================================================
   NEWS
============================================================ */
.news {
  padding: 60px 0;
}

.section-container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-size: 1.6rem;
  text-align: center;
  font-family: "Cinzel", serif;
  color: #f6a136;
  margin-bottom: 12px;
}

.section-subtitle {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 24px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.news-card {
  background: transparent;
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  overflow: hidden;
  
}

.news-thumb {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.news-content {
  padding: 14px;
  
}

.news-content h3 {
  font-family: "Cinzel", serif;
  margin-bottom: 6px;

  
}

.news-btn {
  color: var(--gold-soft);
  text-decoration: none;
}

/* ============================================================
   ADVANTAGES
============================================================ */
.advantages {
  padding: 60px 0;
}

.advantages-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.adv-card {
  background: transparent;
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  padding: 18px;
}

.adv-card h3 {
  font-family: "Cinzel", serif;
  margin-bottom: 8px;
  color: var(--gold-soft);
}

/* ============================================================
   EVENTS
============================================================ */
.events {
  padding: 60px 0;
}

.events-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.event-card {
  background: rgba(21,22,32,1);
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  padding: 14px;
}

.event-thumb {
  width: 100%;
  border-radius: 6px;
  height: 140px;
  object-fit: cover;
}

.event-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 12px;
  border-radius: 6px;
  background: linear-gradient(90deg,#f3d28d,#c3873b);
  text-decoration: none;
  color: #2c1406;
}

//* ====== SOCIAL ICONS — ESTILO QUADRADO PREMIUM ====== */

/* ====== SOCIAL ICONS — ESTILO QUADRADO PREMIUM ====== */

.social-box {
    margin-top: 40px;
    text-align: center;
}

.social-title {
    font-size: 28px;
    margin-bottom: 25px;
    color: #f0e4c8;
    font-weight: 700;
    text-align: center;
}

.social-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.social-btn {
    width: 68px;
    height: 68px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    text-decoration: none;
}

.social-btn img {
    width: 34px;
    height: 34px;
    opacity: 0.75;
    transition: opacity 0.25s ease, transform 0.25s ease;
}
.social-whatsapp img {
    width: 50px;
    height: 50px;
    opacity: 0.75;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.social-btn:hover {
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.08);
}

.social-btn:hover img {
    opacity: 1;
    transform: scale(1.08);
}

/* MOBILE */
@media (max-width: 600px) {
    .social-btn {
        width: 58px;
        height: 58px;
    }
    .social-btn img {
        width: 26px;
        height: 26px;
    }
}



/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  padding: 50px 20px;
  background: #050509;
  border-top: 1px solid var(--border-soft);
}

.footer-columns {
  max-width: 1100px;
  margin: 0 auto 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px,1fr));
  gap: 20px;
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 14px;
  border-top: 1px solid var(--border-soft);
  text-align: center;
  color: var(--text-muted);
}

/* ============================================================
   POSICIONAMENTO REAL DA LOGO – CORRIGIDO
============================================================ */

.hero-center-logo {
    position: absolute;
    top: -220px;
    left: 50%;
    transform: translateX(-50%);
    width: 740px;
    z-index: 20;
    pointer-events: none;
}

.hero-center-logo img {
    width: 100%;
    height: auto;
    display: block;
}

/* Tablet */
@media (max-width: 900px) {
    .hero-center-logo {
        top: 60px;
        width: 260px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .hero-center-logo {
        top: -120px;
        width: 500px;
    }
}

/* Mobile Pequeno */
@media (max-width: 400px) {
    .hero-center-logo {
        top: 35px;
        width: 170px;
    }
}
.server-info-table {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Título geral */
.info-title {
    text-align: center;
    font-family: 'Cinzel', serif;
    font-size: 32px;
    color: #f6a136;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

/* GRID DE CARDS */
.info-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
	
}

/* CARD IGUAL O DA IMAGEM */
.info-card {
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 20px 25px;
    border-radius: 14px;
    color: #f1c06c;
    font-family: 'Montserrat', sans-serif;
}

/* Título do card */
.info-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    color: #ffd600;
    margin-bottom: 12px;
    font-weight: 700;
}

/* Itens */
.info-card p {
    margin: 6px 0;
    font-size: 15px;
    color: #cfc5b2;
}

.info-card strong {
    color: #ffffff;
}

/* FOOTER */
.info-footer {
    margin-top: 25px;
    text-align: center;
    color: #c9b78a;
    font-size: 15px;
}

/* RESPONSIVO */
@media (max-width: 1050px) {
    .info-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .info-cards {
        grid-template-columns: 1fr;
    }
}
/* =============================== */
/* 🎮 SECTION DOWNLOADS */
/* =============================== */

/* ================= DOWNLOADS – SEÇÃO ================= */

.downloads-section {
    padding: 70px 0 80px;
    background: radial-gradient(circle at top,
        rgba(243, 194, 107, 0.08) 0,
        rgba(5, 3, 4, 0.98) 55%,
        #0503041a 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.downloads-section .section-title {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #f3c26b;
    text-align: center;
    margin-bottom: 8px;
}

.download-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #d7ccb0;
    text-align: center;
    opacity: 0.85;
}

/* GRID */

.download-grid {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 22px;
}

/* CARD / BOTÃO PRINCIPAL */

.download-box {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 22px 22px 24px;
    border-radius: 16px;
    background: radial-gradient(circle at top left,
        rgba(255, 185, 92, 0.14) 0,
        rgba(12, 7, 6, 0.98) 45%,
        #050304 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-decoration: none;
    overflow: hidden;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.85);
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        border-color 0.18s ease,
        background 0.18s ease;
}

/* brilho suave na borda ao hover */
.download-box::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: conic-gradient(
        from 140deg,
        rgba(243, 194, 107, 0.0),
        rgba(243, 194, 107, 0.9),
        rgba(243, 194, 107, 0.0)
    );
    opacity: 0;
    transition: opacity 0.22s ease;
    pointer-events: none;
}

/* efeito de “sair da tela” */
.download-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.95);
    border-color: rgba(243, 194, 107, 0.65);
    background: radial-gradient(circle at top,
        rgba(243, 194, 107, 0.20) 0,
        rgba(12, 7, 6, 0.98) 45%,
        #050304 100%);
}

.download-box:hover::before {
    opacity: 0.9;
}

/* Título dentro do card */

.download-box h3 {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* “BOTÃO” interno – OPÇÃO 01 / OPÇÃO 02 */

.down-btn {
    margin-top: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    border-radius: 999px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #f2c874, #f79c2c);
    color: #1a0f09;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.7);
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        filter 0.18s ease;
}

/* pequeno “pulo” quando passa o mouse no card ou diretamente no chip */

.download-box:hover .down-btn,
.down-btn:hover {
    transform: translateY(-1px) scale(1.04);
    box-shadow: 0 0 22px rgba(0, 0, 0, 1);
    filter: brightness(1.05);
}

/* RESPONSIVO */

@media (max-width: 600px) {
    .downloads-section {
        padding: 50px 0 60px;
    }

    .download-box {
        padding: 18px 16px 20px;
    }

    .download-box h3 {
        font-size: 16px;
    }

    .down-btn {
        font-size: 11px;
        padding: 7px 16px;
    }
}
