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

:root {
  --bg-dark: url("imgs/imgi_40_bg.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/imgi_37_bg.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/bgb.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;
  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: #e8dec9;
    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: #dbcdb7;
    font-family: 'Montserrat', sans-serif;
}

/* Título do card */
.info-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    color: var(--gold-soft);
    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-section {
    padding: 60px 0;
    text-align: center;
}

.download-subtitle {
    color: #d4c29f;
    font-size: 1.1rem;
    margin-top: -10px;
    margin-bottom: 30px;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    padding: 10px;
}

.download-box {
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 25px 12px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    transition: 0.2s;
}

.download-box img {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.download-box h3 {
    font-size: 1.1rem;
    color: #f1d9a5;
    margin-bottom: 5px;
}

.download-box .down-btn {
    display: inline-block;
    background: linear-gradient(90deg, #c79c54, #e8d39a);
    padding: 8px 80px;
    color: #000;
    font-weight: bold;
    border-radius: 8px;
    margin-top: 8px;
}

.download-box:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.08);
}
