@import url(grid.css);
@import url(forms.css);
@import url(https://fonts.googleapis.com/css?family=Open+Sans:300);
@import url(https://fonts.googleapis.com/css?family=Oswald:400,700);

body {
    position: relative;
    z-index: 1; /* Mantém o conteúdo acima do vídeo */
    background: none; /* Remove a imagem de fundo */
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 25px;
    color: #333;
    min-width: 1010px;
    margin: 0;
    padding: 0; 
}

/* Novo estilo para o vídeo de fundo */
#video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -100; /* Garante que o vídeo fique atrás de todo o conteúdo */
}

/* Ajuste do vídeo para cobrir a tela toda */
#video-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.0); /* ⬅️ Zoom de 0% */
    transform-origin: center center;
}

#logo-container {
    position: absolute; /* Ou relative */
    top: -180px; /* Ajuste a distância do topo */
    left: 70%; /* Centraliza horizontalmente */
    transform: translateX(-50%); /* Corrige o alinhamento */
    pointer-events: none; /* Impede que a logo bloqueie cliques no site */
}

#logo-container img {
    width: 360px;
    height: auto;
    display: block;
    animation: pulse 2s infinite ease-in-out;
    pointer-events: auto;
    margin: 0 auto;
}

#logo-container img:hover {
    animation: shake 0.5s infinite;
}

/* Animação pulse */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Animação shake */
@keyframes shake {
    0% { transform: translate(1px, 1px) rotate(0deg); }
    10% { transform: translate(-1px, -2px) rotate(-1deg); }
    20% { transform: translate(-3px, 0px) rotate(1deg); }
    30% { transform: translate(3px, 2px) rotate(0deg); }
    40% { transform: translate(1px, -1px) rotate(1deg); }
    50% { transform: translate(-1px, 2px) rotate(-1deg); }
    60% { transform: translate(-3px, 1px) rotate(0deg); }
    70% { transform: translate(3px, 1px) rotate(-1deg); }
    80% { transform: translate(-1px, -1px) rotate(1deg); }
    90% { transform: translate(1px, 2px) rotate(0deg); }
    100% { transform: translate(1px, -2px) rotate(-1deg); }
}

/* Noticias---------------------------------------- */
.notice-wrapper {
  max-height: 420px;
  overflow-y: auto;
  width: 550px; /* necessário para limitar a largura */
  padding-right: 5px; /* evita que a barra de rolagem esconda o texto */
}

.notice-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notice-date {
  font-size: 12px;
  color: #888;
  margin-top: 2px;
}

.notice-item {
    width: 400px;
    border-bottom: 1px dotted #C2CAD3;
    padding: 5px 0;
}

.notice-item a {
    text-decoration: none;
    color: #000000; /* texto da notícia em preto */
}

.ic {
    background:#fff;
    border:0;
    float:right;
    color:#f00;
    width:50%;
    line-height:10px;
    font-size:10px;
    margin:-220% 0 0 0;
    padding:0;
    overflow:hidden;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

html {
    min-width:960px;
}

/* Slider---------------------------------------- */
.simple-slider-wrapper {
  width: 580px;
  height: 180px;
  margin: 0;
  overflow: hidden;
  position: relative;
  border-radius: 8px;
  padding-bottom: 30px; /* espaço para bolinhas */
}

.simple-slider .slide {
  min-width: 580px;
  height: 180px;
  overflow: hidden;
  position: relative;   /* importante para posicionar a legenda */
}

.simple-slider img {
  display: block;
  width: 100%;
  height: 100%;          /* ocupa toda a área do slide */
  object-fit: cover;     /* cobre o slider cortando o excesso */
  object-position: center; /* centraliza a imagem */
  border-radius: 8px;
}

.slide-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    background: rgba(0,0,0,0.5); /* sombra para destacar o texto */
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 16px;
}

.simple-slider {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

/* paginação (bolinhas) */
.simple-slider-pagination {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  text-align: center;
}

.simple-slider-pagination span {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.simple-slider-pagination span.active {
  background: #007bff; /* AZUL ELÉTRICO - Alterado de laranja */
}

/* Botões de navegação */
.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  font-size: 20px;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 4px;
  z-index: 10;
}

.slider-prev { left: 10px; }
.slider-next { right: 10px; }

.slider-prev:hover,
.slider-next:hover {
  background: rgba(0,0,0,0.8);
}

/* Ranking Geral---------------------------------------- */
.rankings-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
}

.ranking-block {
    width: 33%; /* Cada um ocupa ~1/3 da linha com espaço entre eles */
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.1);
    box-sizing: border-box;
    transition: transform 0.2s ease, box-shadow 0.2s ease; /* transição suave */
}

.ranking-block:hover {
    transform: translateY(-6px); /* sobe levemente */
    box-shadow: 0 10px 25px rgba(0,0,0,0.35); /* sombra mais intensa */
}

.ranking-block h3 {
    font-size: 18px;
    margin-bottom: 14px;
    color: #007bff; /* AZUL ELÉTRICO - Alterado de laranja */
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 6px;
}

.ranking-row {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    transition: background 0.2s ease;
}

.ranking-row:hover {
    background: rgba(0,123,255,0.1); /* AZUL ELÉTRICO com transparência */
}

.rank-number {
    width: 15px;
    font-weight: bold;
    color: #555;
    text-align: center;
}

.ranking-row:nth-child(2) .rank-number { color: #ffd700; font-size: 16px; } /* 1º */
.ranking-row:nth-child(3) .rank-number { color: #c0c0c0; font-size: 15px; } /* 2º */
.ranking-row:nth-child(4) .rank-number { color: #cd7f32; font-size: 14px; } /* 3º */

.rank-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #ffd700;
    box-shadow: 0 0 6px rgba(0,0,0,0.3);
    margin: 0 10px;
    object-fit: cover;
}

.rank-name {
    flex-grow: 1;
    font-weight: 600;
    font-size: 9px;
    color: #222;
    text-align: center;
    white-space: nowrap;        /* Impede quebra de linha */
    overflow: hidden;           /* Garante que não estoure */
}

.rank-name a {
    color: #222; /* cor padrão do nick */
    text-decoration: none;
    transition: color 0.3s, text-shadow 0.3s;
}

.rank-name a:hover {
    color: #007bff; /* AZUL ELÉTRICO - Alterado de laranja */
    text-shadow: 0 0 5px rgba(0,123,255,0.5);
    cursor: pointer;
}

.rank-resets {
    width: 40px;
    font-size: 10px;
    font-weight: bold;
    color: #444;
    text-align: center;
}

.medal {
    width: 35px;      /* tamanho da medalha */
    height: 30px;
    margin: 2px auto 0 auto;
    background-size: contain;
    background-repeat: no-repeat;
}

.medal-gold {
    background-image: url('https://imgur.com/0lJ9SOs.png');
}

.medal-silver {
    background-image: url('https://imgur.com/MPjYi0V.png');
}

.medal-bronze {
    background-image: url('https://imgur.com/T2aKCwI.png');
}

/* Ranking Guild---------------------------------------- */
.ranking-guild {
  width: 100%;
  border-collapse: collapse;
  background: #fff; /* fundo branco */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1); /* sombra leve */
}

.ranking-guild caption {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  padding: 8px;
  text-transform: uppercase;
  border-bottom: 1px solid #ddd;
}

.ranking-guild td {
  padding: 6px;
  border-bottom: 1px solid #eee;
  color: #555;
  font-size: 13px;
}

.ranking-guild tr:last-child td {
  border-bottom: none;
}

.ranking-guild td img {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 2px;
  background: #fff;
  transition: transform 0.2s, border-color 0.2s;
  max-width: 95px; /* garante que não estoure a largura */
  height: auto;
}

.ranking-guild td img:hover {
  transform: scale(1.05);
  border-color: #999;
}

.ranking-guild td a {
    text-decoration: none;  /* remove sublinhado */
    color: inherit;         /* mantém a cor do texto */
    pointer-events: auto;   /* mantém clique normal */
}

.ranking-guild td a:hover {
    text-decoration: none;  /* garante que não apareça sublinhado no hover */
    color: inherit;         /* mantém a cor do texto no hover */
}

/* screenshots---------------------------------------- */
.screenshots-section-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 30px 0; /* espaçamento acima e abaixo da seção */
}

.screenshots-section {
    width: 95%;
    max-width: 1200px; /* limita a largura para não ficar gigante */
    background-color: #fff; /* fundo branco */
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.section-title {
    text-align: center;
    font-size: 22px;
    color: #000; /* preto */
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.screenshots-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.screenshots-grid a {
    color: #000; /* preto */
    text-decoration: none; /* remove sublinhado */
    transition: color 0.2s;
}

.screenshots-grid a:hover {
    color: #333; /* preto mais escuro no hover */
    text-decoration: none; /* sem linha em hover */
}

.screenshots-grid img {
  width: 220px;  /* Corrigir de 50px */
  height: 120px; /* Corrigir de 10px */
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.screenshots-grid img:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.view-all {
    text-align: right;
    margin-top: 10px;
}

.view-all a {
    color: #007bff; /* AZUL ELÉTRICO - Alterado de laranja */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s;
}

.view-all a:hover {
    color: #0056b3; /* Azul mais escuro */
}

/* Global Structure---------------------------------------- */
.table-ranking td,th {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 11px;
    color: #333333;
}

#rankss{
    height:auto;
    width:auto;
    margin-bottom: 5px;
    overflow: auto; /* força o contêiner a reconhecer a altura dos filhos */
}

.rankr{
    height:auto;
    width:auto;
    float: left;
    margin-right: 5px;
    margin-top:20px;
    text-align:center;
}

.main {
    margin:0 auto;
    position:relative;
    width:1200px;
    border-radius: 10px;
    padding:0 0 10px 0;
    overflow: auto;
}

.main-indents {
    padding-top: 170px; /* mantém espaço para o fundo */
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    border-radius: 12px;
}

.main-indents::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 170px; /* altura que quer mostrar do vídeo */
    background: transparent; /* só ocupa espaço */
}

/*----- alignment & clearing -----*/
.fleft {
    float:left
}
.fright {
    float:right
}
.alignright {
    text-align:right
}
.aligncenter {
    text-align:center
}
.alignmiddle * {
    vertical-align:middle
}
.clear {
    clear:both;
    line-height:0;
    font-size:0;
    overflow:hidden;
    height:0;
    width:100%;
}
.wrapper {
    overflow:hidden;
    position:relative;
}
.extra-wrap {
    overflow:hidden;
    display:block;
}
.panel li {
    list-style: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    padding-left: 10px;	
}
.panel a {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
}
.panel a:link {
    color: #000000;
    text-decoration: none;
}
.panel a:visited {
    text-decoration: none;
    color: #000000;
}
.panel a:hover {
    text-decoration: underline;
    color: #666666;
}
.panel a:active {
    text-decoration: none;
    color: #666666;
}
.form {
    width: 100%;
    margin-bottom: 15px;
    display: block;
    float: left;
    margin: 10px 0px 0px;
}
.form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    float: left;
    width: 95px;
    text-align: right;
    margin-right: 5px;
}
.form input {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    box-sizing: border-box;
    border-radius: 8px; /* Bordas arredondadas */
    border: 1px solid #ccc; /* Borda sutil */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Sombra suave */
    transition: all 0.3s ease; /* Transição suave */
    BACKGROUND: #1A202C; 
    COLOR: #ffffff; 
    FONT-FAMILY: arial; 
    TEXT-DECORATION: none; 
    font-weight: bold;	
    float: left;
    border: 2px #898989 solid;	
    position: relative;
    top: 3px;
}
.form select {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    box-sizing: border-box;
    border-radius: 8px; /* Bordas arredondadas */
    border: 1px solid #ccc; /* Borda sutil */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Sombra suave */
    transition: all 0.3s ease; /* Transição suave */
    BACKGROUND: #1A202C; 
    COLOR: #ffffff; 
    FONT-FAMILY: arial; 
    TEXT-DECORATION: none; 
    font-weight: bold;	
    float: left;
    position: relative;
    border: 2px #898989 solid;	
    top: 3px;
    width: 62%;
}

/* Header styles */
h1, h2, h3, h4, h5, h6 {
    color:#000000;
    padding:0 0 12px 0;
    font-weight:normal;
    font-family: 'Oswald', sans-serif;
    letter-spacing:-1px;
    text-transform:uppercase;
}
h1 {
    font-size:36px;
    line-height:42px;
}
h2 {
    font-size:30px;
    line-height:36px;
}
h3 {
    color: #333;
    font-size: 24px;
    margin-bottom: 20px;
    line-height:30px;
}
h4 {
    font-size:20px;
    line-height:24px;
}
h5 {
    font-size:18px;
    line-height:22px;
}
h6 {
    font-size:16px;
    line-height:20px;
}
.welcome {
    display:block;
    color:a7211f;
    font-size:60px;
    line-height:72px;
    letter-spacing:-1px;
    margin:0 0 -20px 0;
    font-family: 'Alex Brush', cursive;
    text-transform:capitalize;
}
.hp-1 {
    padding:0 0 20px 0;
}
h5 span {
    color:#007bff; /* AZUL ELÉTRICO - Alterado de laranja */
}

:hover {
    -webkit-transition: .4s;
    transition: .4s;
}

/*----- text & typography -----*/
.quote-1 {
    padding:0 0 20px 40px;
    background:url(../images/quotes.png) no-repeat 0 8px;
}

/*----- boxes -----*/
.content-box {
    background:#fff;
    padding:22px 36px 25px 36px;
    margin:0 10px;
}
.img-box {
    display:inline-block;
    padding:3px;
    background:#fff;
    border:1px solid #d9d9d9;
    border-radius:3px;
    margin-bottom:12px;
}

/* Lightbox image */
.lightbox-image {
    display:inline-block;
    position:relative;
}
a.border {
    padding:6px;
    background:#dededa;
    display:inline-block;
}
.lightbox-image img {
    position:relative;
    z-index:2;
}
.lightbox-image span {
    position:absolute;
    width:100%;
    height:100%;
    left:0;
    top:0;
    background:url(../images/magnify.png) 50% 50% #fff no-repeat;
}

/*----- indents -----*/
.img-indent {
    float:left;
    margin:5px 20px 0 0;
}
.img-indent-1 {
    float:left;
    margin:0 20px 0 36px;
}
.img-indent-bot {
    margin:5px 0 16px 0;
}
p {
    padding-bottom:25px;
}
.p {
    padding-bottom:25px;
}
.p0 {
    padding-bottom:0 !important;
}
.p1 {
    padding-bottom:30px !important;
}
.p2 {
    padding-bottom:14px !important;
}
.p3 {
    padding-bottom:20px !important;
}
.a1 {
    margin:0 10px;
}
.a2 {
    margin:0 46px;
}

/*----- lists -----*/
.list-1 {
    padding:0 0 20px 0;
}
.list-1 li {
    display:block;
    padding:0 0 0 20px;
    background:url(../images/list-1-marker.gif) no-repeat 0 10px;
    line-height:25px;
}
.list-1 li a {
    color:#000000;
    font-size:14px;
}
.list-1 li a:hover {
    color:#007bff; /* AZUL ELÉTRICO - Alterado de laranja */
    text-decoration:none;
}
.list-2 {
    padding:5px 0 20px 0;
}
.list-2 li {
    line-height:12px;
    padding:0 0 18px 0;
}
.list-2 li a {
    display:inline-block;
    font-family: 'Open Sans', sans-serif;
    font-size:12px;
    line-height:12px;
    color:#007bff; /* AZUL ELÉTRICO - Alterado de laranja */
    text-transform:uppercase;
    letter-spacing:-1px;
}
.list-2 li a:hover {
    color:#000;
    text-decoration:none;
}

/*----- buttons & links -----*/
a {
    color:#007bff; /* AZUL ELÉTRICO - Alterado de laranja */
    text-decoration: none;
    cursor:pointer;
}
a:hover {
    text-decoration: underline;
}
.button {
    display:inline-block;
    line-height:22px;
    text-decoration:none;
    background:#007bff; /* AZUL ELÉTRICO - Alterado de laranja */
    font-family: 'Oswald', sans-serif;
    text-transform:uppercase;
}
.button:hover {
    text-decoration:none;
    background:#0056b3; /* Azul mais escuro */
}

button:active {
    background-color: #004085; /* Azul ainda mais escuro */
}

.link {
    text-decoration: underline;
    color:#007bff; /* AZUL ELÉTRICO - Alterado */
}
.link:hover {
    text-decoration: none;
}

/*********************************Noticias*************************************/
#notice a {
    text-decoration: none;
    font-weight: bold;
    position: relative;
    transition: color 0.3s ease, transform 0.3s ease;
}

#notice a:hover {
    color: #007bff; /* AZUL ELÉTRICO - Alterado de #ff6600 */
    transform: translateY(-2px); /* Dá um efeito de elevação */
}

/* Efeito de sublinhado animado */
#notice a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #007bff; /* AZUL ELÉTRICO - Alterado */
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

#notice a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/*********************************header*************************************/
header {
    position:relative;
    z-index:2;
    margin: 0 auto;
    background-color: #fff;
    width: 960px;
    border-radius: 4px;
    margin-top: 290px;
    line-height: 60px;
}

.wrapp-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #007bff; /* AZUL ELÉTRICO - Alterado de laranja */
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0;
  box-shadow: 0 10px 15px rgba(0, 123, 255, 0.3); /* Sombra azul */
  transition: box-shadow 0.3s ease;
}

.wrapp-menu:hover {
  box-shadow: 0 15px 25px rgba(0, 123, 255, 0.4); /* Sombra azul mais intensa */
}

.wrapp-menu ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  opacity: 0;
  animation: fadeIn 1.2s ease-out forwards;
}

.wrapp-menu ul li {
  margin-right: 20px;
  position: relative; /* Necessário para o submenu */
}

.wrapp-menu ul li a {
  color: white; /* Cor do texto */
  text-decoration: none;
  padding: 10px 20px;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  border-radius: 4px;
}

.wrapp-menu ul li a:hover {
  background-color: #0056b3; /* Azul mais escuro para hover */
  color: #fff; /* Texto branco para contraste */
  transform: scale(1.2);
}

@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.logo {
    background: url(../images/logo.png) no-repeat 0 0;
    height:59px;
    width:225px;
    margin: auto;
}

.Rei {
    position: absolute; 
    left: 90px; /* posiciona a 90px para a esquerda */ 
    top: -70px; /* posiciona a 70px para baixo */
}

/********************** Slider ************************/
#slide { position:relative; width:500px; height:270px; margin:auto; z-index:5; background-image:url(../img/ON_Slide.png); background-color: transparent; }
#coin-slider { position:relative; float:left; margin:auto; z-index:4; top: -220px; margin-bottom: -220px; margin-left: 30px;}
#slideTitle { position: absolute; float:left; margin:auto; z-index:6; margin-top: 170px; margin-left: 65px; color:#FFF; width: 430px; }
#SlideAnterior { width:30px; height:30px; position: absolute; float:left; margin:auto; z-index:6; margin-top:93px; margin-left: 29px; cursor:pointer; }
#SlidePosterior { width:30px; height:30px; position: absolute; float:left; margin:auto; z-index:6; margin-top:93px; margin-left: 439px; cursor:pointer; }
#coin-slider-coin-slider { margin:auto; z-index:4;}

nav {
    line-height: 30px;
    margin: auto;
}

.sf-menu {
  margin: 0;
  list-style: none;
  padding: 0;
  display: flex;
}

.sf-menu > li {
  position: relative; /* Permite que o submenu seja posicionado corretamente */
  float: left;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.sf-menu > li > a {
  text-decoration: none;
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  color: #007bff; /* AZUL ELÉTRICO - Alterado de laranja */
  padding: 10px 20px;
  border-radius: 10px;
}

.sf-menu > li:hover > a {
  color: #fff;
  background: #007bff; /* AZUL ELÉTRICO - Alterado de laranja */
  border-radius: 10px;
}

/* Submenu */
.sf-menu li ul {
  position: absolute;
  top: 100%; /* Garante que o submenu apareça abaixo do item pai */
  left: 0;
  width: 185px;
  background: #333;
  border-radius: 10px;
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1500; /* Aumenta a prioridade do submenu */
}

.sf-menu li:hover > ul {
  display: block;
  opacity: 1;
  visibility: visible;
}

.sf-menu li li {
  position: relative;
}

.sf-menu li li a {
  display: block;
  font-size: 14px;
  line-height: 18px;
  color: #fff;
  padding: 8px 15px;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
  border-radius: 10px;
  transition: background 0.3s ease, color 0.3s ease;
}

.sf-menu li li a:hover {
  background: #007bff; /* AZUL ELÉTRICO - Alterado de laranja */
  color: white;
}

/* Submenu de segundo nível (submenu dentro de submenu) */
.sf-menu li li ul {
  position: absolute;
  left: 100%;
  top: 0;
  width: 185px;
  background: #333;
  border-radius: 10px;
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1500;
}

.sf-menu li li:hover > ul {
  display: block;
  opacity: 1;
  visibility: visible;
}

/********************** Content ************************/
section#content {
    position: relative;
    z-index: 1;
    padding: 30px 0;
    background-color: #ffffff;
    box-shadow: 0 0 25px rgba(0, 123, 255, 0.3); /* sombra azul em volta */
    border-radius: 8px; /* opcional, dá um acabamento */
    margin: 20px auto;  /* espaço pra sombra respirar */
    width: 95%;         /* pra não colar nas bordas do site */
}

.col-1 {
    float:left;
    width:268px;
    margin:0 32px 0 0;
}
.col-2 {
    float:left;
    width:268px;
    margin:0;
}
.col-3 {
    float:left;
    width:260px;
    margin:0 36px 0 0;
}
.col-4 {
    float:left;
    width:568px;
}
.col-5 {
    float:left;
    width:148px;
    margin:0 32px 0 0;
}
.col-6 {
    float:left;
    width:148px;
}
.col-7 {
    float:left;
    width:260px;
    margin:0 40px 20px 0;
}
.col-8 {
    float:left;
    width:562px;
    margin:0 0 60px 0;
}
.col-9 {
    float:left;
    flex: 1;               /* ocupa o espaço disponível */
    width:587px;
    margin: 0 20px 20px 0px; /* Aqui aumentei a margem esquerda para 30px */
}
.col-10 {
    float:left;
    width:261px;
}
.col-11 {
    float:left;
    width:410px;
    margin:0 40px 0 0;
}
.col-12 {
    float:left;
    width:410px;
}
.contnt-slider section {
    background:#fff !important;
}
.relative {
    position:relative;
}
.cs-prev, .cs-next {
    display:block;
    position:absolute;
    bottom:20px;
    width:17px;
    height:25px;
    z-index:99;
}
.cs-prev {
    background:url(../images/cs-controls.png) no-repeat 0 0;
    right:24px;
}
.cs-next {
    background:url(../images/cs-controls.png) no-repeat right 0;
    right:0;
}
.cs-prev:hover, .cs-next:hover {
    opacity:0.7;
}
.gallery-meta {
    overflow:hidden;
    padding:0 0 20px 0;
}
.gallery-name {
    float:left;
    font-family: 'Oswald', sans-serif;
    font-size:18px;
    line-height:22px;
    text-transform:uppercase;
    color:#000000;
    max-width:70%;
}
.gallery-name:hover {
    text-decoration:none;
    color:#007bff; /* AZUL ELÉTRICO - Alterado de laranja */
}
.capacity {
    float:right;
    max-width:30%;
}
.map_container {
    padding:0 0 20px 0;
}
.map_container iframe {
    width:410px;
    height:376px;
    border:none;
    margin:0;
}
.adress {
    padding:0 0 40px 0;
}
.adress .dt {
    display:block;
    font-weight:normal;
    float:left;
    color:#000000;
    letter-spacing:-1px;
    font-size:12px;
    line-height:18px;
    width:180px;
    margin:0 40px 0 0;
    font-size:18px;
    line-height:30px;
    text-transform:uppercase;
    font-family: 'Oswald', sans-serif;
}
.adress .dd {
    font-size:14px;
    line-height:25px;
    color:#000000;
    overflow:hidden;
}
.adress .dd a {
    color:#000000;
}

/* Footer Styles */
footer {
    background-color: #fff; /* Cor */
    color: #fff; /* Cor do texto branca */
    width: 100%; /* Largura total do footer */
    padding: 20px 0; /* Espaçamento interno ajustável */
    text-align: center; /* Centraliza o texto */
    position: relative;
    bottom: 0;
    margin: 0; /* Remove quaisquer margens adicionais */
    clear: both; /* Garante que o footer fique abaixo de qualquer conteúdo flutuante */
}

/* Header
------------------------------------------------------------------------*/
.fc-header td {
    white-space: nowrap;
    background:#007bff; /* AZUL ELÉTRICO - Alterado de laranja */
}
.fc-header-left {
    width: 100%;
    text-align: left;
}
.fc-header-center {
    text-align: center;
}
.fc-header-right {
    text-align: right;
}
.fc-header-title {
    display:block;
    vertical-align: top;
    padding:0;
    text-align:center;
}
.fc-header-title h2 {
    margin-top: 0;
    white-space: nowrap;
    color:#fff;
    padding:0;
    font-size:18px;
    line-height:36px;
    height:36px;
}
.fc .fc-header-space {
    padding-left: 0;
}
.fc-header .fc-corner-right {
    margin-right: 1px; /* back to normal */
}
.fc-header .ui-corner-right {
    margin-right: 0; /* back to normal */
}
/* button layering (for border precedence) */
    
.fc-header .fc-state-hover, .fc-header .ui-state-hover {
    z-index: 2;
}
.fc-header .fc-state-down {
    z-index: 3;
}
.fc-header .fc-state-active, .fc-header .ui-state-active {
    z-index: 4;
}
.fc-button-next {
    position:absolute;
    right:9px;
    top:39px;
    width:12px;
    height:18px;
    font-size:0;
    line-height:0;
    border:none;
    background:url(../images/calendar-next.png) no-repeat 0 0;
    cursor:pointer;
}
.fc-button-prev {
    position:absolute;
    left:9px;
    top:39px;
    width:12px;
    height:18px;
    font-size:0;
    line-height:0;
    border:none;
    background:url(../images/calendar-prev.png) no-repeat 0 0;
    cursor:pointer;
}
.fc-button-next:hover, .fc-button-prev:hover {
    opacity:0.7;
}
/* Content
------------------------------------------------------------------------*/
    
.fc-content {
    clear: both;
}
.fc-view {
    width: 100%; /* needed for view switching (when view is absolute) */
    overflow: hidden;
}
/* Cell Styles
------------------------------------------------------------------------*/

.fc-widget-header {
    background:#000;
    color:#fff;
    font-family: 'Oswald', sans-serif;
    font-size:18px;
    text-decoration:none;
    font-weight:normal;
    text-align:center;
    line-height:36px;
    height:36px;
    text-transform:uppercase;
}    /* <th>, usually */
.fc-widget-content {  /* <td>, usually */
    border: 1px solid #c4ccc6;
    background:#fff;
    height:119px;
}
.fc-other-month {
    background:none;
}
.fc-state-highlight { /* <td> today cell */ /* TODO: add .fc-today to <th> */
    background: #ffc;
}
.fc-cell-overlay { /* semi-transparent rectangle while dragging */
    background: #9cf;
    opacity: .2;
    filter: alpha(opacity=20); /* for IE */
}
/* Buttons
------------------------------------------------------------------------*/

.fc-button {
    display: inline-block;
    cursor: pointer;
}
.fc-button-inner {
    position: relative;
    float: left;
    overflow: hidden;
}
.fc-button-content {
    position: relative;
    float: left;
    white-space: nowrap;
    text-transform:capitalize;
    font-size:14px;
}
.fc-button-today {
    position:absolute;
    left:0;
    top:0;
    background:none;
    color:#333;
    font-size:14px;
}
.fc-button-today:hover {
    color:#007bff !important; /* AZUL ELÉTRICO - Alterado de laranja */
}

/* button states (determines colors)  */
    
.fc-state-default, .fc-state-default .fc-button-inner {
    color: #333;
}
.fc-state-hover, .fc-state-hover .fc-button-inner {
    border-color: #333;
}
.fc-state-disabled, .fc-state-disabled .fc-button-inner {
    color: #333;
    border:none;
    padding:0;
}
.fc-state-disabled {
    cursor: default;
}
.fc-state-disabled .fc-button-effect {
    display: none;
}
/* Global Event Styles
------------------------------------------------------------------------*/
     
.fc-event {
    border-style: solid;
    border-width: 0;
    font-size: .85em;
    cursor: default;
}
a.fc-event, .fc-event-draggable {
    cursor: pointer;
}
a.fc-event {
    text-decoration: none;
}
.fc-rtl .fc-event {
    text-align: right;
}
.fc-event-skin {
    border:none;    /* default BORDER color */
    background: none; /* default BACKGROUND color */
    color: #333;            /* default TEXT color */
    font-size:12px;
    line-height:18px;
    padding:0 0 0 2px;
}
.fc-event-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-style: solid;
    border-width: 0;
    overflow: hidden;
}
.fc-event-time, .fc-event-title {
    padding: 0 1px;
}
.fc .ui-resizable-handle { /*** TODO: don't use ui-resizable anymore, change class ***/
    display: block;
    position: absolute;
    z-index: 99999;
    overflow: hidden; /* hacky spaces (IE6/7) */
    font-size: 300%;  /* */
    line-height: 50%; /* */
}
/* Horizontal Events
------------------------------------------------------------------------*/

.fc-event-hori {
    margin-bottom: 1px;
}
/* resizable */
    
.fc-event-hori .ui-resizable-e {
    top: 0 !important; /* importants override pre jquery ui 1.7 styles */
    right: -3px !important;
    width: 7px !important;
    height: 100% !important;
    cursor: e-resize;
}
.fc-event-hori .ui-resizable-w {
    top: 0 !important;
    left: -3px !important;
    width: 7px !important;
    height: 100% !important;
    cursor: w-resize;
}
.fc-event-hori .ui-resizable-handle {
    _padding-bottom: 14px; /* IE6 had 0 height */
}
/* Fake Rounded Corners (for buttons and events)
------------------------------------------------------------*/
    
.fc-corner-left {
    margin-left: 1px;
}
.fc-corner-left .fc-button-inner, .fc-corner-left .fc-event-inner {
    margin-left: -1px;
}
.fc-corner-right {
    margin-right: 1px;
}
.fc-corner-right .fc-button-inner, .fc-corner-right .fc-event-inner {
    margin-right: -1px;
}
.fc-corner-top {
    margin-top: 1px;
}
.fc-corner-top .fc-event-inner {
    margin-top: -1px;
}
.fc-corner-bottom {
    margin-bottom: 1px;
}
.fc-corner-bottom .fc-event-inner {
    margin-bottom: -1px;
}
/* Reusable Separate-border Table
------------------------------------------------------------*/

table.fc-border-separate {
    border-collapse: separate;
}
.fc-border-separate th, .fc-border-separate td {
    border-width: 1px 0 0 1px;
}
.fc-border-separate th.fc-last, .fc-border-separate td.fc-last {
    border-right-width: 1px;
}
.fc-border-separate tr.fc-last th, .fc-border-separate tr.fc-last td {
    border-bottom-width: 1px;
}
.fc-border-separate tbody tr.fc-first td, .fc-border-separate tbody tr.fc-first th {
    border-top-width: 0;
}
/* Month View, Basic Week View, Basic Day View
------------------------------------------------------------------------*/

.fc-grid th {
    text-align: center;
}
.fc-grid .fc-day-number {
    float: left;
    color:#000;
    padding: 5px;
    font-family: 'Oswald', sans-serif;
    font-size:16px;
}
.fc-grid .fc-other-month .fc-day-number {
    opacity: 0.3;
    filter: alpha(opacity=30); /* for IE *//* opacity with small font can sometimes look too faded
       might want to set the 'color' property instead
       making day-numbers bold also fixes the problem */
    }
.fc-grid .fc-day-content {
    clear: both;
    padding: 2px 2px 1px; /* distance between events and day edges */
}
/* event styles */
    
.fc-grid .fc-event-time {
    font-weight: bold;
}
/* right-to-left */
    
.fc-rtl .fc-grid .fc-day-number {
    float: left;
}
.fc-rtl .fc-grid .fc-event-time {
    float: right;
}
/* Agenda Week View, Agenda Day View
------------------------------------------------------------------------*/

.fc-agenda table {
    border-collapse: separate;
}
.fc-agenda-days th {
    text-align: center;
}
.fc-agenda .fc-agenda-axis {
    width: 50px;
    padding: 0 4px;
    vertical-align: middle;
    text-align: right;
    white-space: nowrap;
    font-weight: normal;
}
.fc-agenda .fc-day-content {
    padding: 2px 2px 1px;
}
/* make axis border take precedence */
    
.fc-agenda-days .fc-agenda-axis {
    border-right-width: 1px;
}
.fc-agenda-days .fc-col0 {
    border-left-width: 0;
}
/* all-day area */
    
.fc-agenda-allday th {
    border-width: 0 1px;
}
.fc-agenda-allday .fc-day-content {
    min-height: 34px; /* TODO: doesnt work well in quirksmode */
    _height: 34px;
}
/* divider (between all-day and slots) */
    
.fc-agenda-divider-inner {
    height: 2px;
    overflow: hidden;
}
.fc-widget-header .fc-agenda-divider-inner {
    background: #eee;
}
/* slot rows */
    
.fc-agenda-slots th {
    border-width: 1px 1px 0;
}
.fc-agenda-slots td {
    border-width: 1px 0 0;
    background: none;
}
.fc-agenda-slots td div {
    height: 20px;
}
.fc-agenda-slots tr.fc-slot0 th, .fc-agenda-slots tr.fc-slot0 td {
    border-top-width: 0;
}
.fc-agenda-slots tr.fc-minor th, .fc-agenda-slots tr.fc-minor td {
    border-top-style: dotted;
}
.fc-agenda-slots tr.fc-minor th.ui-widget-header {
 *border-top-style: solid; /* doesn't work with background in IE6/7 */
}
/* Vertical Events
------------------------------------------------------------------------*/

.fc-event-vert {
    border-width: 0 1px;
}
.fc-event-vert .fc-event-head, .fc-event-vert .fc-event-content {
    position: relative;
    z-index: 2;
    width: 100%;
    overflow: hidden;
}
.fc-event-vert .fc-event-time {
    white-space: nowrap;
    font-size: 10px;
}
.fc-event-vert .fc-event-bg { /* makes the event lighter w/ a semi-transparent overlay  */
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: .3;
    filter: alpha(opacity=30);
}
.fc .ui-draggable-dragging .fc-event-bg, /* TODO: something nicer like .fc-opacity */ .fc-select-helper .fc-event-bg {
    display: none\9; /* for IE6/7/8. nested opacity filters while dragging don't work */
}
/* resizable */
    
.fc-event-vert .ui-resizable-s {
    bottom: 0 !important; /* importants override pre jquery ui 1.7 styles */
    width: 100% !important;
    height: 8px !important;
    overflow: hidden !important;
    line-height: 8px !important;
    font-size: 11px !important;
    font-family: monospace;
    text-align: center;
    cursor: s-resize;
}
.fc-agenda .ui-resizable-resizing { /* TODO: better selector */
    _overflow: hidden;
}

.btn-ranking {
    background-color: #333; 
    color: #f4f4f4; 
    border-radius: 3px;
    width: 20%;
    text-align: center;
    float: left;
    margin-left: 10px;
    margin-top: 10px;
}
.btn-ranking:hover {
    background-color: #007bff; /* AZUL ELÉTRICO - Alterado de laranja */
}
.btn-ranking a {
    color: #f4f4f4;
    text-decoration: none;
    display: block;
    line-height: 30px;
}

/** ERROS **/
.error-success {
    color:#fff;
    background-color:#5cb85c;
    border-color:#4cae4c;
    margin-bottom:20px;
    border-radius:4px;
    width: 86%;
    font-size: 14px;
    margin: 10px 26px 0px;
    line-height: 30px;
    text-align: center;	
}
.error-alert {
    color:#a94442;
    background-color:#f2dede;
    border-color:#ebccd1;
    margin-bottom:20px;
    border-radius:4px;
    width: 86%;
    font-size: 14px;
    margin: 10px 26px 0px;
    line-height: 30px;
    text-align: center;
}

/* AVISO SIMPLES E CHAMATIVO */
.aviso-simples {
  background: linear-gradient(to right, rgba(0, 123, 255, 0.1), rgba(0, 123, 255, 0.05));
  border-left: 4px solid #007bff;
  border-radius: 8px;
  padding: 20px;
  margin: 25px 0;
  position: relative;
  overflow: hidden;
}

.aviso-simples::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #007bff, #3395ff);
}

.aviso-titulo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.aviso-titulo i {
  color: #007bff;
  font-size: 22px;
}

.aviso-titulo h4 {
  color: #007bff;
  margin: 0;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.aviso-texto p {
  color: #333;
  margin: 0;
  line-height: 1.6;
  font-size: 15px;
}

.aviso-texto strong {
  color: #007bff;
  font-weight: 600;
}

/* Efeito hover sutil */
.aviso-simples:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.1);
  transition: all 0.3s ease;
}

/* ================= MENU LATERAL - CARDS ================= */
.menu-card {
    background: white;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e7ff;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.15);
}

.card-header {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    padding: 15px 20px;
    color: white;
}

.card-header h3 {
    color: white;
    margin: 0;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.card-body {
    padding: 20px;
}

/* STATUS DO SERVIDOR */
.server-status {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.status-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.status-item:last-child {
    border-bottom: none;
}

.status-label {
    color: #555;
    font-weight: 500;
}

.status-online {
    color: #28a745;
    font-weight: bold;
    background: rgba(40, 167, 69, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 13px;
}

.status-total {
    color: #007bff;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s;
}

.status-total:hover {
    color: #0056b3;
    text-decoration: underline;
}

.status-bar img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

/* INFORMAÇÕES DO SERVIDOR */
.server-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px dashed #eaeaea;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    color: #666;
    font-weight: 500;
}

.info-value {
    color: #333;
    font-weight: 600;
}

.highlight-red {
    color: #dc3545;
    font-weight: bold;
}

/* ESTATÍSTICAS */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px;
    background: #f8f9ff;
    border-radius: 6px;
    border: 1px solid #e0e7ff;
    transition: background 0.3s;
}

.stat-item:hover {
    background: #eef2ff;
}

.stat-label {
    color: #666;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    color: #007bff;
    font-weight: bold;
    font-size: 18px;
    text-decoration: none;
}

.stat-value:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* EQUIPE */
.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 15px;
}

.team-member {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 3px solid #007bff;
}

.member-name {
    color: #333;
    font-weight: 500;
}

.team-online {
    color: #28a745;
    font-weight: bold;
    font-size: 14px;
}

.team-offline {
    color: #6c757d;
    font-weight: bold;
    font-size: 14px;
}

.no-team {
    text-align: center;
    color: #6c757d;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px dashed #dee2e6;
}

.team-warning {
    background: #fff3cd;
    color: #856404;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 12px;
    border: 1px solid #ffeaa7;
    display: flex;
    align-items: center;
    gap: 8px;
}

.team-warning i {
    color: #ffc107;
}

/* ENQUETE */
.poll-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.poll-options li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 6px;
    margin-bottom: 5px;
    transition: background 0.3s;
}

.poll-options li:hover {
    background: #e9ecef;
}

/* EVENTOS */
.events-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.events-day h4,
.events-week h4 {
    color: #007bff;
    margin: 0 0 10px 0;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-bottom: 5px;
    border-bottom: 2px solid #e0e7ff;
}

.event-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.event-list li {
    padding: 10px 12px;
    border-bottom: 1px solid #f0f0f0;
    background: transparent;
    display: flex;
    flex-direction: column;
    transition: background 0.3s;
}

.event-list li:last-child {
    border-bottom: none;
}

.event-list li:hover {
    background-color: #f8f9ff;
}

.event-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.event-title span:first-child {
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.event-countdown {
    font-weight: bold;
    font-family: 'Courier New', monospace;
    padding: 4px 8px;
    border-radius: 4px;
    background-color: #e9ecef;
    color: #333;
    font-size: 12px;
    min-width: 70px;
    text-align: center;
}

.event-countdown.soon {
    background: #28a745;
    color: #fff;
    animation: pulse-alert 1s infinite;
}

@keyframes pulse-alert {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.event-next-time {
    font-size: 12px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}