/* --- BLOQUEIO GOOGLE TRANSLATE (PRIORIDADE MÁXIMA) --- */
/* Colocado no topo para carregar antes de tudo */
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
iframe[id^=":"] {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

body {
    top: 0px !important; 
    position: static !important; 
    margin-top: 0px !important;
}

#google_translate_element, .goog-te-gadget, .goog-te-gadget-simple {
    display: none !important;
}

.goog-tooltip, .goog-tooltip:hover {
    display: none !important;
}

.goog-text-highlight {
    background-color: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

/* --- FIM DO BLOQUEIO --- */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Roboto:wght@300;400;700&display=swap&subset=cyrillic');

:root {
    /* --- Paleta KATLIN (Azul Arcano) --- */
    --bg-color: #050910;
    --card-bg: #0f1623;
    --main-blue: #0094d9;
    --main-blue-light: #33b5e5;
    --silver-text: #cdd6e0;
    --border-dim: rgba(0, 148, 217, 0.2);
    --discord-color: #5865F2; 
}

/* Classe para não traduzir termos técnicos */
.notranslate { display: inline-block; }

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-color);
    color: var(--silver-text);
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-image: radial-gradient(circle at top center, rgba(0, 148, 217, 0.08) 0%, transparent 70%);
}

h1, h2, h3, .nav-link, .btn, th {
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* --- Header --- */
header {
    background: linear-gradient(to bottom, rgba(5, 9, 16, 0.95) 0%, rgba(5, 9, 16, 0.85) 100%);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-dim);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
nav { display: flex; justify-content: space-between; align-items: center; }

/* Logo Pequeno */
.logo-img-nav {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 0 2px rgba(0, 148, 217, 0.3)); 
    transition: 0.3s;
}
.logo-img-nav:hover { filter: drop-shadow(0 0 8px var(--main-blue)); }

.nav-links { display: flex; gap: 20px; align-items: center; }
.nav-link { color: #8899a6; font-size: 0.9rem; cursor: pointer; font-weight: bold; transition: 0.3s; }

.nav-link:hover, .nav-link.active {
    color: var(--main-blue-light);
    text-shadow: 0 0 10px rgba(51, 181, 229, 0.4);
}

/* --- Botão Discord --- */
.discord-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(88, 101, 242, 0.1);
    border: 1px solid var(--discord-color);
    border-radius: 50%;
    color: var(--discord-color);
    transition: 0.3s;
    margin-left: 5px;
}

.discord-btn svg { width: 20px; height: 20px; fill: currentColor; }

.discord-btn:hover {
    background-color: var(--discord-color);
    color: white;
    box-shadow: 0 0 15px rgba(88, 101, 242, 0.6);
    transform: translateY(-2px);
}

/* --- Menu de Idiomas --- */
.lang-container {
    position: relative;
    margin-left: 10px;
    height: 100%;
    display: flex;
    align-items: center;
}

.lang-btn {
    background: rgba(15, 22, 35, 0.8);
    border: 1px solid #2a3b55;
    color: #8899a6;
    padding: 8px 12px;
    cursor: default;
    font-family: 'Roboto', sans-serif;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    border-radius: 4px;
}

.lang-container:hover .lang-btn {
    border-color: var(--main-blue);
    color: var(--main-blue-light);
    box-shadow: 0 0 8px rgba(0, 148, 217, 0.2);
}

.lang-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: 100%; 
    margin-top: 10px; 
    background-color: var(--card-bg);
    border: 1px solid var(--main-blue);
    min-width: 140px;
    z-index: 200;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.6);
}

.lang-dropdown::before {
    content: "";
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 15px;
    background: transparent;
}

.lang-container:hover .lang-dropdown {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn { 
    from { opacity: 0; transform: translateY(-10px); } 
    to { opacity: 1; transform: translateY(0); } 
}

.lang-option {
    display: block;
    padding: 12px 15px;
    color: var(--silver-text);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    cursor: pointer;
    transition: 0.2s;
    font-size: 0.9rem;
}
.lang-option:last-child { border-bottom: none; }
.lang-option:hover { background-color: rgba(0, 148, 217, 0.15); color: var(--main-blue-light); }

/* --- Hero Section --- */
.hero {
    min-height: 85vh; /* em vez de height */
    padding-top: 120px; /* espaço pro header fixo */
    padding-bottom: 80px; /* respiro inferior */
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    border-bottom: 1px solid var(--border-dim);
    position: relative;
    background: radial-gradient(
        ellipse at center,
        rgba(15, 22, 35, 1) 0%,
        var(--bg-color) 100%
    );
}


.hero-logo-large {
    max-width: 600px;
    width: 90%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0, 148, 217, 0.25));
    animation: float 6s ease-in-out infinite;
    margin-bottom: 20px;
}

@keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-15px); } }

.hero p {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    color: #8899a6;
    margin-bottom: 40px;
    max-width: 700px;
}

.btn {
    padding: 15px 45px;
    background: transparent;
    border: 2px solid var(--main-blue);
    color: var(--main-blue);
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    display: inline-block;
    transition: 0.3s;
    border-radius: 2px;
}

.btn:hover {
    background: var(--main-blue);
    color: #fff;
    box-shadow: 0 0 25px rgba(0, 148, 217, 0.5);
}

/* --- Conteúdo --- */
.content-section { padding: 60px 0; flex: 1; }

.section-title {
    color: #fff;
    border-left: 4px solid var(--main-blue);
    padding-left: 20px;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.text-block {
    background-color: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    margin-bottom: 20px;
}

h3 { color: var(--main-blue-light); }

.req-table { width: 100%; border-collapse: collapse; margin-top: 20px; }
.req-table th, .req-table td { border: 1px solid rgba(255,255,255,0.1); padding: 15px; text-align: left; }
.req-table th { background-color: rgba(0, 148, 217, 0.1); color: var(--main-blue-light); }

footer {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid var(--border-dim);
    background-color: #020406;
    color: #555;
    font-size: 0.8rem;
    margin-top: auto;
}

#countdown {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
  margin-bottom: 0;
}


.time-box {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid #555;
  border-radius: 8px;
  padding: 10px 15px;
  text-align: center;
  min-width: 80px;
}

.time-box span {
  font-size: 28px;
  font-weight: bold;
  color: #f5c97a; /* pode mudar a cor */
}

.time-box small {
  display: block;
  font-size: 12px;
  color: #ccc;
}

.launch-text {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 15px;
}

.launch-text h2 {
  color: #f5c97a;
  font-size: 26px;
  margin-bottom: 5px;
}

.launch-text p {
  color: #ccc;
  font-size: 16px;
  letter-spacing: 0.5px;
}