@import 'https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300';

html, body {
    margin: 0;
    height: 100%;
    flex: 1;
}

body {
    background-color: #1E2739;
    background-size: auto;
    font-family: Arial, Helvetica, sans-serif;
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: #f39200 #060E1E;
    scrollbar-gutter: stable both-edges;
}

a {
    color: #f39200;
    text-decoration: none;
}

a:hover {
    color: #f1f1f1;
    text-decoration: none;
}

.custom-table td {
    font-size: medium;
    vertical-align: middle;
}

table.tabela_resultados {
    width: 100%;
    border-collapse: collapse;
    background-color: #060E1E; /* Cor de fundo da tabela */
    color: #f39200 !important; /* Cor da letra */
}

.btn-two a.titulo {
  color: #F39200;
  text-decoration: none;
  display: flex;
  padding: 5px 10px:
}

.btn-live {
  border: none;
  color: #f39200;
}
.btn-live:after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  direction: rtl;
  z-index: -1;
  box-shadow:
   -7px -7px 20px 0px rgba(243, 146, 0, 0.9),
   -4px -4px 5px 0px rgba(243, 146, 0, 0.9),
   7px 7px 20px 0px #0002,
   4px 4px 5px 0px #0001;
  transition: all 0.3s ease;
}
.btn-live a:hover {
  color: #f39200;
}
.btn-live:hover:after {
  left: auto;
  right: 0;
  width: 100%;
}
.btn-live:active {
  top: 2px;
}

.custom-btn {
  width: auto;
  height: 40px;
  color: #f39200;
  padding: 10px 25px;
  font-family: 'Lato', sans-serif;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
   box-shadow:inset 2px 2px 2px 0px rgba(243, 146, 0, 0.5),
   7px 7px 20px 0px rgba(0, 0, 0, 0.1),
   4px 4px 5px 0px rgba(0, 0, 0, 0.1);
  outline: none;
  margin: 20px;
}

.frame {
  width: 90%;
  margin: 40px auto;
  text-align: center;
}

/* 
========================
      BUTTON TWO
========================
*/
.btn-two {
  color: #F39200;
  transition: all 0.5s;
  position: relative;
  font-size: x-large;
  justify-content: center; /* Centraliza horizontalmente */
  align-items: center; /* Centraliza verticalmente */
  text-align: center; /* Certifica-se de que o texto fique centrado */
  height: 50px; /* Define uma altura caso o texto não centralize */
}
.btn-two span {
  z-index: 2; 
  position: absolute;
  height: 100%; 
  display: flex;
  justify-content: center; /* Centraliza horizontalmente */
  align-items: center; /* Centraliza verticalmente */
  text-align: center; /* Certifica-se de que o texto fique centrado */
  height: 50px; /* Define uma altura caso o texto não centralize */
}

.btn-two::after,
.btn-two::before {
  text-align: center;
  justify-content: center;
}

.btn-two::before,
.btn-two::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.5s;
  border: 3px solid rgba(243, 146, 0,0.2);
  display: flex; /* Adiciona flexbox */
  justify-content: center; /* Centraliza horizontalmente */
  align-items: center; /* Centraliza verticalmente */
  text-align: center; /* Certifica-se de que o texto fique centrado */
  height: 50px; /* Define uma altura caso o texto não centralize */
}

.btn-two:hover::before {
  transform: rotate(-45deg);
  background-color: rgba(243, 146, 0,0);
}

.btn-two:hover::after {
  transform: rotate(45deg);
  background-color: rgba(243, 146, 0,0);
}

::-webkit-scrollbar {
    height: 8px;
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #060E1E;
}

::-webkit-scrollbar-thumb {
    background-color: #f39200;
    border-radius: 10px;
    border: 2px solid #060E1E;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #cc7a00; /* Cor da parte móvel da barra ao passar o rato */
    transition: background-color 0.3s ease-in-out;
}

/* Para o scrollbar horizontal em navegadores baseados em Webkit */
::-webkit-scrollbar-thumb:horizontal {
    background-color: #f39200; /* Cor da parte móvel da barra de rolagem horizontal */
}


.bandeira {
    width: 50px;
    height: auto;
    margin-right: 10px;
}

.filtros {
    background-color: #1E2739 !important;
}

p.resultado_botoes {
    color: forestgreen;
    font-size: 10px;
    text-align: center;
    align-items: center;
    justify-content: center;
}

/* Change the placeholder text color */
input::placeholder {
    color: #f39200; /* Your desired color */
}

/* For select elements with placeholder (if applicable) */
select::placeholder {
    color: #f39200;
}

/* Specific to Webkit browsers like Chrome, Safari */
input::-webkit-input-placeholder {
    color: #f39200;
}

/* Specific to Mozilla Firefox */
input::-moz-placeholder {
    color: #f39200;
}

/* Specific to Internet Explorer 10+ */
input:-ms-input-placeholder {
    color: #f39200;
}

/* Specific to Microsoft Edge */
input::-ms-input-placeholder {
    color: #f39200;
}

.dataTables_wrapper .dataTables_length select {
    color: #f39200 !important;
    background-color: #060E1E;
}

.dataTables_wrapper .dataTables_length label {
    color: #f39200 !important;
}

a.paginate_button {
    color: #f39200 !important; /* Define a cor do texto como laranja */
    background-color: #060E1E; /* Define a cor de fundo dos botões */
    border-color: #f39200 !important; /* Define a cor da borda */
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    color: #f39200 !important; /* Define a cor do texto como laranja */
    background-color: #060E1E; /* Define a cor de fundo dos botões */
    border-color: #f39200 !important; /* Define a cor da borda */
}

/* Muda a cor do texto da label "Search" */
.dataTables_filter label {
    color: #f39200 !important; /* Define a cor do texto da label como branco */
}



/* Muda a cor do texto e o fundo da caixa de pesquisa */
.dataTables_filter input {
    color: #f39200; /* Define a cor do texto na caixa de pesquisa como branco */
    background-color: #060e1e; /* Define a cor de fundo da caixa de pesquisa */
    border: 1px solid #f39200 !important; /* Define a cor da borda da caixa de pesquisa */
}

.dataTables_info {
    color: #f39200 !important;
}

.dataTables_paginate {
    float: right;
    color: #f39200 !important;
}

/* Muda a cor do texto dos botões "Previous" e "Next" */
.dataTables_paginate .paginate_button {
    color: #f39200 !important; /* Define a cor do texto como laranja */
    background-color: #060E1E; /* Define a cor de fundo dos botões */
    border-color: #f39200 !important; /* Define a cor da borda */
}

/* Muda a cor dos botões "Previous" e "Next" quando estão desabilitados */
.dataTables_wrapper .dataTables_paginate .paginate_button.current, 
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    color: #060E1E; /* Cor mais clara para botões desativados */
    background: #f39200; /* Cor de fundo para botões desativados */
    border-color: #060E1E; /* Cor da borda para botões desativados */
}


table.dataTable {
    table-layout: auto;
}

table.dataTable th, table.dataTable td {
    white-space: nowrap;
}

.table {
    --bs-body-bg: #060E1E !important;
    --bs-table-color: #f39200 !important;
}

.custom-table td, .custom-table th {
    border: 1px solid #f39200; /* Cor da borda das células */
}

.titulo {
    color: #F39200;
    text-align: center;
    justify-content: center;
    display: flex;
    font-family: "Russo One", sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8); /* Sombra no texto */
}

.russo-one-regular {
  font-family: "Russo One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.preview-container {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.preview-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 1px solid #ccc;
    padding: 5px;
    border-radius: 5px;
}

.nowrap {
    white-space: nowrap;
}

.navbar {
    margin-bottom: 20px;
}

.nav-item {
    margin: auto 20px;
}

.nav-link {
    font-size: large;
    display: inline;
}

.navbar .navbar-nav {
    font-size: 22px;
    font-weight: 700;
    padding-left: 30px;
    width: 100%;
    justify-content: center;
}

.map-shadow {
    box-shadow: 0 0px 16px rgba(0, 0, 0, 0.4);
    border-radius: 8px; /* Opcional: Adiciona cantos arredondados */
}

.login {
    color: #ccc;
}

.login .navbar-brand {
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-button {
    width: 50%;
    font-size: 1.2em;
    font-weight: bold;
    margin: 0 auto;
    display: block;
    text-align: center;
    color: #F39200;
    background-color: #101010;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.login-button:hover {
    width: 50%;
    font-size: 1.2em;
    font-weight: bold;
    margin: 0 auto;
    display: block;
    text-align: center;
    color: #101010;
    background-color: #F39200;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

@media (min-width: 768px) {
    .row {
        display: flex;
        width: 100%;
        margin-left: 0px;
        margin-right: 0px;
        flex: 0 3 100%;
        max-width: 100%;
    }
}

@media (max-width: 1024px) {
    .login-button {
        width: 70%;
        font-size: 1em;
        padding: 12px 25px;
    }

    #dates-list {
        width: 90%;
	    overflow-x: auto; /* Adiciona rolagem horizontal */
        display: flex;
        flex-wrap: nowrap;
        scroll-snap-type: x mandatory; /* Garante que os itens se alinhem na rolagem */
        -webkit-overflow-scrolling: touch; /* Suaviza a rolagem em dispositivos móveis */
        scrollbar-width: none; /* Esconde a barra de rolagem no Firefox */
    }

    #dates-list::-webkit-scrollbar {
        display: none; /* Esconde a barra de rolagem no Chrome, Safari e outros WebKit */
    }

    .list-group-item {
        margin: 0 0.3em; /* Reduz o espaçamento entre os itens em telas menores */
    }
}

@media (max-width: 768px) {
    .login-button {
        width: 70%;
        font-size: 1em;
        padding: 12px 25px;
    }

    #dates-list {
        width: 90%;
	    overflow-x: auto; /* Adiciona rolagem horizontal */
        display: flex;
        flex-wrap: nowrap;
        scroll-snap-type: x mandatory; /* Garante que os itens se alinhem na rolagem */
        -webkit-overflow-scrolling: touch; /* Suaviza a rolagem em dispositivos móveis */
        scrollbar-width: none; /* Esconde a barra de rolagem no Firefox */
    }

    #dates-list::-webkit-scrollbar {
        display: none; /* Esconde a barra de rolagem no Chrome, Safari e outros WebKit */
    }

    .list-group-item {
        margin: 0 0.3em; /* Reduz o espaçamento entre os itens em telas menores */
    }
    
    .row {
        display: flex;
        width: 100%;
        margin-left: 0px;
        margin-right: 0px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .login-button {
        width: 90%;
        font-size: 0.9em;
        padding: 15px 30px;
    }

    #dates-list {
        width: 90%;
	    overflow-x: auto; /* Adiciona rolagem horizontal */
        display: flex;
        flex-wrap: nowrap;
        scroll-snap-type: x mandatory; /* Garante que os itens se alinhem na rolagem */
        -webkit-overflow-scrolling: touch; /* Suaviza a rolagem em dispositivos móveis */
        scrollbar-width: none; /* Esconde a barra de rolagem no Firefox */
    }

    #dates-list::-webkit-scrollbar {
        display: none; /* Esconde a barra de rolagem no Chrome, Safari e outros WebKit */
    }

    .list-group-item {
        margin: 0 0.3em; /* Reduz o espaçamento entre os itens em telas menores */
    }
}

.list-group {
    max-width: -webkit-fill-available;
}

.list-group-item {
    border-radius: 0 !important;
    border: none !important;
}

.list-group-item a {
    color: #F39200;
    text-decoration: none;
    display: inline;
    flex: 0 0 auto; /* Evita que os itens encolham, mantendo-os lado a lado */
    justify-content: center; /* Center the link within the list item */
    padding: 1em 1em; /* Adjust padding to your liking */
    width: auto; /* Ensure the list item only takes up as much space as needed */
    white-space: nowrap;
    margin-bottom: 0.5em; /* Add some spacing between items */
    scroll-snap-type: x mandatory; /* Garante que os itens se alinhem na rolagem */
    -webkit-overflow-scrolling: touch; /* Suaviza a rolagem em dispositivos móveis */
    scrollbar-width: none; /* Esconde a barra de rolagem no Firefox */
}

.list-group-item a:hover {
    text-decoration: none;
    color: #F39200;
}

.lista {
    background-color: #060E1E ;
}

.lista:hover {
    background-color: rgb(255, 255, 255, 0.3);
}

.animated-button {
  background: linear-gradient(-30deg, #1E2739 50%, #060E1E 50%);
  padding: 20px 40px;
  border-radius: 10px;
  border: 3px solid #f39200;
  margin: 12px;
  display: inline-block;
  -webkit-transform: translate(0%, 0%);
          transform: translate(0%, 0%);
  overflow: hidden;
  color: #d4e0f7;
  font-size: 20px;
  letter-spacing: 2.5px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
          box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.animated-button::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #8592ad;
  opacity: 0;
  -webkit-transition: .2s opacity ease-in-out;
  transition: .2s opacity ease-in-out;
}

.animated-button:hover::before {
  opacity: 0.2;
}

.animated-button span {
  position: absolute;
}

.animated-button span:nth-child(1) {
  top: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, right top, left top, from(rgba(243, 146, 0, 0)), to(#f39200));
  background: linear-gradient(to left, rgba(243, 146, 0, 0), #f39200);
  -webkit-animation: 2s animateTop linear infinite;
          animation: 2s animateTop linear infinite;
}

@-webkit-keyframes animateTop {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes animateTop {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

.animated-button span:nth-child(2) {
  top: 0px;
  right: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(243, 146, 0, 0)), to(#f39200));
  background: linear-gradient(to top, rgba(243, 146, 0, 0), #f39200);
  -webkit-animation: 2s animateRight linear -1s infinite;
          animation: 2s animateRight linear -1s infinite;
}

@-webkit-keyframes animateRight {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

@keyframes animateRight {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

.animated-button span:nth-child(3) {
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(243, 146, 0, 0)), to(#f39200));
  background: linear-gradient(to right, rgba(243, 146, 0, 0), #f39200);
  -webkit-animation: 2s animateBottom linear infinite;
          animation: 2s animateBottom linear infinite;
}

@-webkit-keyframes animateBottom {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

@keyframes animateBottom {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

.animated-button span:nth-child(4) {
  top: 0px;
  left: 0px;
  height: 100%;
  width: 2px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(243, 146, 0, 0)), to(#f39200));
  background: linear-gradient(to bottom, rgba(243, 146, 0, 0), #f39200);
  -webkit-animation: 2s animateLeft linear -1s infinite;
          animation: 2s animateLeft linear -1s infinite;
}

@-webkit-keyframes animateLeft {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

@keyframes animateLeft {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}



.wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button {
  min-width: 200px;
  min-height: 50px;
  display: inline-flex;
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 1.3px;
  font-weight: 700;
  color: #f39200;
  background: #060e1e;
  border: none;
  border-radius: 1000px;
  box-shadow: 12px 12px 24px rgba(196, 118, 0,.64);
  transition: all 0.3s ease-in-out 0s;
  cursor: pointer;
  outline: none;
  position: relative;
  padding: 10px;
  margin-bottom: 20px;
  }

.button::before {
content: '';
  border-radius: 1000px;
  min-width: calc(200px + 12px);
  min-height: calc(50px + 12px);
  border: 6px solid #F39200;
  box-shadow: 0 0 60px rgba(255, 255, 255, 0.64);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all .3s ease-in-out 0s;
}

.button:hover, 
.button:focus {
  color: #f39200;
  transform: translateY(-6px);
}

.button:hover::before, 
.button:focus::before {
  opacity: 1;
}

.button::after {
  content: '';
  width: 50px; height: 50px;
  border-radius: 100%;
  border: 6px solid #f39200;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.button:hover::after, 
.button:focus::after {
  animation: none;
  display: none;
}

.animate__bounce {
  animation-duration: 4s; /* don't forget to set a duration! */
}

.animate__fadeIn {
  animation-duration: 3s; /* don't forget to set a duration! */
}

.form-control {
    background-color: #ccc;
    border: #875100;
}

.footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 40vh;
    background-color: #060E1E; /* Cor de fundo escura para contraste */
    color: white; /* Cor do texto branca para contraste */
    padding: 20px 0 0 0; /* Espaçamento interno para melhorar a visualização */
}

.footer-logo {
    display: block;
    width: max-content;
    padding: 20px;
    margin: 20px auto;
}

.footer-icons .btn-social {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5); /* Sombra ao redor dos ícones */
    margin-top: 10px;
    margin-bottom: 10px;
}

.footer .col {
    text-align: center; /* Adicionado para centralizar o texto nas colunas */
}

.custom-card {
    box-shadow: 0 4px 8px rgba(243, 146, 0, 0.5);
    transition: 'box-shadow' 0.3s ease-in-out;
    width: 100%;
    max-width: 350px;
}

.custom-card:hover {
    box-shadow: 0 8px 16px rgba(243, 146, 0, 0.2);
    width: 100%;
    max-width: 350px;
}

.contactos {
    font-weight: bold;
    text-align: center;
}

/* Estilo inicial da imagem */
.navbar .col-md-1 img {
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    border-radius: 10px; /* Adiciona cantos arredondados */
    height: 75px;
}

/* Estilo ao passar o rato por cima da imagem */
.navbar .col-md-1 img:hover {
    transform: scale(1.1) rotate(3deg) translateY(10px); /* Move a imagem ligeiramente para cima */
    box-shadow: 0 8px 16px rgba(236, 185, 1, 0.3); /* Sombra ao redor do elemento */
    opacity: 0.95;
}


.center-logo {
    height: 75px;
}


.card {
    background-color: rgba(255, 255, 255, 0.1); /* Substitua esta cor pela cor desejada */
    border: 1px solid rgb(243, 146, 0);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Sombra no texto */
}

.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/bola_futebol.png') no-repeat center center;
    background-size: contain;
    opacity: 0.1; /* Ajuste a opacidade conforme necessário */
    z-index: 0; /* Mantém o pseudo-elemento atrás do conteúdo */
    border-radius: 10px; /* Igual ao da .card para alinhar bordas */
}



.card-title {
    color: #E0E0E0; /* Cor do texto do título */
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

}

.card-text {
    color: #E0E0E0; /* Cor do texto do conteúdo */
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}


.btn-index {
    display: inline-block;
    margin: 5px;
    color: #F39200;
    background-color: #060E1E;
    font-style: oblique;
    font-weight: bold;
    border: 1px solid #F39200;
}

.btn-index:hover {
    color: #101010;
    background-color: #F39200;
    font-style: oblique;
    font-weight: bold;
}

.btn-email, .btn-login {
    display: inline-block;
    margin: 5px;
    color: #F39200;
    background-color: #060E1E;
    border: 2px solid #F39200;
    border-radius: 5px;
    text-align: center;
    transition: background 0.5s ease, color 0.5s ease, transform 0.5s ease, box-shadow 0.5s ease, opacity 0.5s ease;
}

.btn-email i, .btn-login i {
    transition: transform 0.5s ease;
}

.btn-email:hover, .btn-login:hover {
    background: linear-gradient(45deg, #cd7b00, #F39200);
    color: #101010;
    transform: scale(1.1) rotateY(5deg);
    box-shadow: 0 8px 16px rgba(236, 185, 1, 0.3); /* Sombra ao redor do elemento */
    opacity: 0.9;
}

.btn-email:hover i, .btn-login:hover i {
    transform: rotate(15deg);
}

.btn-odd {
    background: green;
    border: #ccc;
    color: #fff;
    font-weight: 600;
}

.btn-tip {
    font-weight: bolder;
    color: #fff;
    border: 2px solid #F39200;
    width: 80%;
}

.btn-back {
    background-color: #F39200;
    color: #101010;
    display: none;
    font-weight: bold;
    margin-top: 20px;
}

.btn-back:hover {
    background: linear-gradient(-30deg, #101010, #060E1E);
    color: #ccc;
    display: none;
    font-weight: bold;
    margin-top: 20px;
}

.atention {
    color: #F39200;
    background-color: #1E2739;
    border-radius: 30px;
    display: flex;
    font-size: 12px;
    font-weight: bolder;
    margin-bottom: 20px;
    padding: 20px;
    text-align: center;
    justify-content: center;
    align-items: center;
}

/* Estilos para o pop-up */
.modal {
    display: none; /* Oculto por padrão */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5); /* Efeito de ofuscar o fundo */
}

.modal-content {
    background-color: #060E1E;
    color: #ccc;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #F39200;
    width: 80%;
    max-width: 600px;
    position: relative;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Estilos para o ícone de carregamento */
.loader {
    border: 8px solid rgb(28, 28, 28); /* Light grey */
    border-top: 8px solid #F39200; /* Blue */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.countdown {
    text-align: center;
    margin-top: 10px;
}

.bg-success {
    background-color: #155724 !important; /* Texto verde escuro */
    border-color: #c3e6cb !important; /* Verde escuro */
    color: #d4edda !important; /* Verde claro */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Sombra no texto */
}

.bg-danger {
    background-color: #721c24 !important; /* Texto rosa escuro */
    border-color: #f5c6cb !important; /* Rosa escuro */
    color: #f8d7da !important; /* Rosa claro */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Sombra no texto */
}

.bg-info {
    background-color: #6c757d !important; /* Texto cinza escuro */
    border-color: #d6d6d6 !important; /* Cinza escuro */
    color: #e2e3e5 !important; /* Cinza claro */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Sombra no texto */
}

.last-posts:hover {
    transform: scale(1.20) rotateY(5deg); /* Leve aumento de escala */
    opacity: 0.9; /* Leve alteração na opacidade */
}

.last-posts .nav-link {
    color: rgb(243, 146, 0);
    transition: color 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8); /* Sombra no texto */
}

.last-posts {
    font-weight: bolder;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.last-posts:hover .nav-link {
    color: #f39200; /* Mudança de cor do link */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8); /* Sombra no texto */
}


@keyframes animateTop {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

@keyframes animateRight {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(-100%);
    }
}

@keyframes animateBottom {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes animateLeft {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100%);
    }
}
.post-card, .status-label {
    top: 0.5rem;
    right: 0.5rem;
    border-radius: .25rem;
    font-weight: bold;
}

.status-label {
    bottom: 0; /* Posiciona a legenda no fundo do card */
    left: 50%; /* Centraliza horizontalmente */
    border-radius: .25rem;
    text-align: center; /* Centraliza o texto dentro da etiqueta */
    width: 100%; /* Faz com que a etiqueta ocupe toda a largura do card */
    background-color: rgba(0, 0, 0, 0.3) !important; /* Fundo escuro com transparência para legibilidade */
    color: #fff; /* Cor do texto */
    font-weight: bold; /* Texto em negrito */
    font-size: 20px;
    box-sizing: border-box; /* Inclui o padding e a borda no cálculo da largura e altura */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Sombra no texto */
}

.resultado {
    text-align: center; 
    margin: 40px 0 -10px 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

}

.card-body {
    position: relative; /* Necessário para garantir que o conteúdo do card esteja acima do fundo */
    justify-content: center;
    z-index: 1; /* Garante que o conteúdo do card fique acima da mensagem de status */
    align-items: center;
    text-align: center;
}

.post-buttons {
    justify-content: center;
    align-items: center;
}

.date-link {
    text-align: center;
    display: inline-block; /* Ensure the link takes up the entire list item */
    margin: 0 10px; /* Ajuste o espaçamento entre os links conforme necessário */
    scroll-snap-align: center; /* Garante o alinhamento central ao parar */
    white-space: nowrap; /* Impede a quebra de linha nos itens */
    color: #F39200;
}

#dates-list {
    color: #F39200;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap; /* Evita que as datas quebrem a linha */
    overflow: hidden; /* Adiciona rolagem horizontal */
    overflow-x: scroll; /* Permite a rolagem horizontal */
    align-items: center; /* Center the entire list in the container */
    padding: 10px 0;
    margin: 10px auto; /* Center the list horizontally */
    list-style-type: none; /* Remove default list styles */
    white-space: nowrap; /* Mantém os itens numa linha contínua */
    scroll-snap-type: x mandatory; /* Garante que os itens se alinhem na rolagem */
    -webkit-overflow-scrolling: touch; /* Suaviza a rolagem em dispositivos móveis */
    scrollbar-width: none; /* Esconde a barra de rolagem no Firefox */
}

#dates-list::-webkit-scrollbar {
    display: none; /* Esconde a barra de rolagem no Chrome, Safari e outros WebKit */
}

#matchTable {
    display: none;
}

#mapa {
    text-align: center;
}

#navbarNav {
    display: flex;
    margin: auto;
    justify-content: center;
}

#posts-grid .col-md-4 {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    width: 100%;
}
