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


html, body {
    width: 100%;
    height: 100%;
    background: #000;
    scroll-behavior: smooth;
  }
  main {
    padding-top: 120px;
  }
.quem-somos-section {
  position: relative;
  width: 100%;
  height: 100%;  
  overflow: hidden;
  margin: 0;
  padding: 0;
}


.rocket-animado {
  animation: fogueteSubindo 1.5s ease-out forwards;
  position: relative;
  display: inline-block; /* força o pseudo a respeitar o ícone */
  color:#555;
    text-shadow:
    -3px -3px 0  rgb(255, 255, 255), /* Sombra superior esquerda */
    3px -3px 0 rgb(255, 255, 255),  /* Sombra superior direita */
    -2px 0px 0  rgb(255, 255, 255),  /* Sombra inferior esquerda */
    2px 0px 0  rgb(255, 255, 255);   /* Sombra inferior direita */
}

.rocket-animado::after {
  content: '.';
  filter: blur(1px);
  opacity: 0.8;
  position: absolute;
  bottom: -10px;
  left: 60%;
  color:#fff;
  transform: translateX(-50%);
  width: 3px;
  height: 3px;
  text-shadow: none;
  box-shadow:
    0 0 10px rgba(255,255,255,0.4),
    0 0 20px rgba(255,255,255,0.2),
    0 0 30px rgba(255,255,255,0.1);
  animation: fumaça 0.15s infinite;
  border-radius: 50%;
  z-index: -1;
}

@keyframes fumaça {
  0% {
    transform: translateX(-7px) translateY(-80px) scale(1.5);
    opacity: 0.9;
  }
  100% {
    transform: translateX(-130px) translateY(-125px) scale(7);
    opacity: 0.2;
  }
}

@keyframes fogueteSubindo {
  0% {
    transform: translate(0, 0) rotate(0);
  }
  100% {
    transform: translate(60px, -60px) rotate(-45deg);
  }
}

/* --- animação específica para mobile --- */
@keyframes fumaçaMobile {
  0% {
    transform: translateX(20px) translateY(-80px) scale(1.5);
    opacity: 0;
  }
  30% {
    opacity: 0.9;
  }
  100% {
    transform: translateX(-110px) translateY(-125px) scale(9);
    opacity: 0.2;
  }
}

/* aplica a nova animação apenas no mobile */
@media (max-width: 768px) {
  .rocket-animado::after {
    animation: fumaçaMobile 0.15s infinite !important;
  }
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
}

.video-background video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: -1; /* isso garante que o vídeo fique atrás de tudo */
  position: absolute;
  top: 0;
  left: 0;
}

.video-background .conteudo {
  position: relative;
  z-index: 2; /* elevado para garantir que o texto esteja por cima */
  display: fl;
  justify-content:start;
  align-items:start;
  text-align:center;
  color: white;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2); /* escurece um pouco para legibilidade */
  flex-direction: column;
}

.video-background .conteudo h2,
.video-background .conteudo p {
  margin: 0 auto;
  max-width: 800px;
}
.conteudo {
  position: relative;
  z-index: 1;
  background: transparent; /* fundo totalmente transparente */
  width: 100%;
  padding: 5rem 2rem;
  text-align:center;
  color: #fff;
}
.conteudo h1,
.conteudo h2,
.conteudo p {
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}
  /* Modal Lead */
.lead-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
  }
  
  .lead-modal-content {
    background-color: #1f1f1f;
    padding: 2rem;
    border-radius: 12px;
    max-width: 400px;
    width: 90%;
    color: #e0e0e0;
    box-shadow: 0 0 20px rgba(255,255,255,0.1);
    text-align: center;
    position: relative;
  }
  
  .lead-modal-content h3 {
    margin-bottom: 0.5rem;
  }
  
  .lead-modal-content input {
    width: 100%;
    padding: 0.7rem;
    margin: 0.5rem 0;
    background-color: #2a2a2a;
    border: 1px solid #444;
    color: #fff;
    border-radius: 6px;
  }
  
  .lead-modal-content button {
    background: linear-gradient(145deg, #cfcfcf, #9a9a9a);
    border: none;
    color: #111;
    padding: 0.8rem;
    width: 100%;
    margin-top: 0.8rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
  }
  
  .lead-modal-content button:hover {
    background: linear-gradient(145deg, #e6e6e6, #bfbfbf);
  }
  
  .lead-modal-content {
    animation: slideUp 0.5s ease-out;
  }
  
  @keyframes slideUp {
    from {
      transform: translateY(30px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  .close-modal {
    background-color: red;
    border-radius: 5px;
    position: absolute;
    display: block;
    right: 1rem;
    top: 1rem;
    padding: 1rem;
    margin: 1rem;
    font-size: 1.2rem;
    color:#ffffff;
    cursor: pointer;
  }
/* Estilo base dos cards */
#planos-container .plano-card {
  border: 5px solid #555;
  border-radius: 10px;
  background-color: #1c1c1c;
  box-shadow: 0 0 0 transparent;
  transition: all 0.4s ease;
  cursor: pointer !important;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}

/* Títulos dos cards */
#planos-container .plano-card .plano-card-title {
  color: #aaa; /* Título em cinza */
  border-bottom: 1px solid rgba(255, 255, 255, 0.8) !important; /* Linha semi-transparente */
  padding-bottom: 10px;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

/* Efeito de lâmpada piscando ao passar o mouse */
@keyframes lampFlicker {
  0%   { box-shadow: 0 0 10px rgba(255,255,255,0.1); border-color: #aaa; }
  10%  { box-shadow: 0 0 15px rgba(255,255,255,0.3); border-color: #ddd; }
  20%  { box-shadow: 0 0 20px rgba(255,255,255,0.6); border-color: #fff; }
  30%  { box-shadow: 0 0 15px rgba(255,255,255,0.3); border-color: #ccc; }
  40% { box-shadow: 0 0 10px rgba(255,255,255,0.1); border-color: #aaa; }
  50%   { box-shadow: 0 0 10px rgba(255,255,255,0.1); border-color: #aaa; }
  60%  { box-shadow: 0 0 15px rgba(255,255,255,0.3); border-color: #ddd; }
  70%  { box-shadow: 0 0 15px rgba(255,255,255,0.6); border-color: #fff; }
  80%  { box-shadow: 0 0 15px rgba(255,255,255,0.3); border-color: #ccc; }
  90% { box-shadow: 0 0 10px rgba(255,255,255,0.1); border-color: #aaa; }
  100%  { box-shadow: 0 0 15px rgba(255,255,255,0.3); border-color: #ccc; }
}



  .plano-escolhido {
  animation: lampFlicker 0.5s ease-in-out!important;
  border-color: #fff!important;
  box-shadow: 0 0 15px rgba(255,255,255,0.5)!important;
  transform: scale(1.01);
  }


@media (min-width: 768px) {
.plano-escolhido {
  border: 6px solid #fff !important;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.8) !important;
  transition: all 0.3s ease !important;
  transform: scale(1.01) !important;
}
#planos-container .plano-card:hover {
  animation: lampFlicker 0.5s ease-in-out;
  border-color: #fff;
  box-shadow: 0 0 15px rgba(255,255,255,0.5);
  transform: scale(1.01);
}
}

#preco {
color: #a84b4b;

}

@media (max-width: 768px) {
  .gclose, 
  .gbtn-close, 
  .gbtn.gclose {
    width: 48px !important;     /* botão maior */
    height: 48px !important;    /* área clicável */
    top: 10px !important;
    right: 10px !important;
  }

  .gclose svg, 
  .gbtn-close svg, 
  .gbtn.gclose svg {
    width: 32px !important;     /* ícone maior */
    height: 32px !important;
    stroke-width: 2.5 !important; /* deixa mais “forte” */
  }
}

#button-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none; /* Inicialmente oculto, ativado via JS */
    gap: 10px;
    z-index: 9999; /* Prioridade acima de outros elementos */
}

.g-recaptcha {
    display: flex !important;
    justify-content: center !important;
}

#back-to-top {
    background: linear-gradient(145deg, #cfcfcf, #9a9a9a);
    border: 1px solid #e0e0e0;
    color: #111;
    padding: 0.8rem;
    border-radius: 40%; /* Botão redondo */
    box-shadow: inset -2px -2px 5px rgba(255,255,255,0.3),
                inset 2px 2px 5px rgba(0,0,0,0.3),
                0 4px 10px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
    cursor: pointer;
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

#whatsapp-button {
    background-color: #25D366; /* Verde do WhatsApp */
    color: white  !important; /* Ícone branco */
    font:16px;
    padding: 0.8rem;
    border-radius: 50%; /* Botão redondo */
    position: fixed; /* Fixa o botão do WhatsApp */
    bottom: 80px; /* Distância do fundo */
    right: 20px; /* Distância da direita */
    transition: transform 0.2s; /* Transição suave para a animação */
    animation: vibrate 0.3s infinite; /* Animação de vibração */
    box-shadow: 0 0 10px rgba(0, 255, 128, 0.6);
    cursor: pointer;
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
#whatsapp-button i {
    color: white !important;
  }
/* Animação de vibração */
@keyframes vibrate {
    0% { transform: translate(0); }
    10% { transform: translate(-1px, 1px); }
    20% { transform: translate(-1px, -1px); }
    30% { transform: translate(0); }
    40% { transform: translate(0); }
    50% { transform: translate(0); }
    60% { transform: translate(0); }
    70% { transform: translate(1px, 1px); }
    90% { transform: translate(1px, -1px); }
    100% { transform: translate(0); }
}

#whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 255, 128, 0.6);
    animation: none;
  }
  
#loading-container {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeOut 1s ease-out 3s forwards; /* 3s = duração da animação do GIF */
}

.circle-glow {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 70px rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-glow img {
    width: 150px;
    height: 150px;
    object-fit: contain;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
    0% { opacity: 1; visibility: visible; }
    99% { opacity: 0.01; }
    100% { opacity: 0; visibility: hidden; }
  }

#contact-form {
    max-width: 600px; /* Limita a largura do formulário */
    margin: auto; /* Centraliza o formulário */
}

.form-label {
    font-weight: bold; /* Destaca os rótulos dos campos */
}

.form-control, .form-select {
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

body {
    font-family: 'Neuropolitical', sans-serif;
    background: #0d0d0d; /* Preto profundo */
    color: #e0e0e0; /* Cinza claro para textos */
    line-height: 1.6;
}

header, footer, section {
    padding: 3rem 2rem;
}

a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.5s;
}
a:hover {
    color: #fff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.65);
}

header {
    background: linear-gradient(to bottom, #1a1a1a, #0d0d0d);
    border-bottom: 1px solid #333;
    position: fixed; /* Fixa o cabeçalho */
    width: 100%;
    top: 0;
    z-index: 1000; /* Para que fique acima de outros elementos */
    transition: background 0.3s ease; /* Transição suave */
}

footer {
    background: #7e7e7e;
    border-top: 1px solid #444;
    text-align: center;
    font-size: 0.9rem;
    font-family: 'Pixel Max', monospace;
}
footer p {
    font-family: 'Pixel Max', monospace;
    font-size: 20px;
    color: #a1a1a1;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

.navbar {
    font-family: 'Pixel Max', monospace;
    font-size: 14px !important;
    background-color: rgba(118, 118, 118, 0.674);
}

.navbar-brand-bible {
    font-family: 'Jumbotron', sans-serif !important;
    font-size: 30px !important;
    color: #9e9e9e;
    text-shadow: 1px 2px 4px rgba(17, 17, 17, 0.767);
}
.navbar-brand-bible a:hover¨{
   color: #ffffff;
    text-shadow: 4px 1px 8px rgba(255, 255, 255, 0.65);
}

.navbar-brand {
    font-family: 'Jumbotron', sans-serif;
    font-size: 26px !important;
    color: #000000;
        text-shadow: 1px 1px 3px rgba(211, 211, 211, 0.767);
}
@media (max-width: 768px) {
  .navbar-brand-bible {
     font-size: 14px !important;
     margin-bottom: 5px;
     margin-left: 25px;
     text-shadow: 0px 2px 1px rgba(43, 43, 43, 0.65);
  }
  .navbar-brand {
    font-size: 15px !important;
    color: #fff;
  }
  p {
    font-size: 16px !important;
  }
}
@media (max-width: 992px) {
  .navbar-collapse.mobile-overlay {
    position: fixed;
    margin-top: 25%;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    border: #7e7e7e 1px solid;
    background-color: rgba(0, 0, 0, 0.70); /* fundo translúcido */
    z-index: 9998; /* um a menos que o botão */
    padding: 2rem;
    overflow-y: auto;
    transition: all 0.3s ease;
  }

  .navbar-collapse.mobile-overlay .nav-link {
    font-size: 1.2rem;
    color: #fff !important;
    margin: 1rem 0;
    text-align: left;
  }
  .navbar-toggler {
    z-index: 9999; /* sempre acima do overlay */
    position: relative;
  }
}

.modal-content .btn-close {
    background-color: rgb(216, 216, 216) !important;
    opacity: 1 !important;
}
.modal-content .btn-close :hover {
    background-color: white !important;
    opacity: 1 !important;
}

/* Transformar o hamburguer em X */
.navbar-toggler .navbar-toggler-icon {
  background-image: none;
  position: relative;
  width: 24px;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s ease;
  display: inline-block;
}

.navbar-toggler .navbar-toggler-icon::before,
.navbar-toggler .navbar-toggler-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s ease;
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}
.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}

.navbar-toggler.open .navbar-toggler-icon {
  background-color: transparent;
}

.navbar-toggler.open .navbar-toggler-icon::before {
  transform: rotate(45deg);
  top: 0;
}

.navbar-toggler.open .navbar-toggler-icon::after {
  transform: rotate(-45deg);
  top: 0;
}
/* Estilo base */
.toggler-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  position: relative;
}

.toggler-icon span {
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-toggler {
  order: 2;
  margin: 0 auto;
}

/* Estilo quando o botão está aberto */
.navbar-toggler.open .toggler-icon span:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}

.navbar-toggler.open .toggler-icon span:nth-child(2) {
  opacity: 0;
}

.navbar-toggler.open .toggler-icon span:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}
.navbar-toggler {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

#verificar-dominio input {
  font-size: 1.2rem;
  padding: 1rem;
  border-radius: 12px;
}

#domain-result {
  font-size: 1.2rem;
}

h1, h2, h3 {
    font-family: 'Jumbotron', sans-serif;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 1px 2px 7px rgba(0, 0, 0, 0.7);
}

p {
    font-family: 'Neuropolitical', sans-serif;
    color: #bbb;
    font-size: 18px;
    margin-bottom: 1rem;
}

blockquote {
    font-family: 'Chopin Script', cursive;
    font-size: large;
    color: #fff;
}

.blockquote-footer {
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 1rem;
  font-family: 'Pixel Max', monospace;
  color: #000;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.9);
}

/* Imagens diferentes para cada autor */
.bg-img-gates {
  background-position: center 47%;
  background-image: url('img/gates.png');
}

.bg-img-jef {
  background-position: center 10%;
  background-image: url('img/jef.png');
}

.bg-img-leo {
  background-position: center 20%;
  background-image: url('img/leo.png');
}

.bg-img-alcance {
  background-size: 35%;
  background-repeat: no-repeat;
  background-position: center top;
  padding-top: 110px;
  transition: background-image 0.5s ease-in-out;
  background-image: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,1)),url('img/alcance2.png');
}
.bg-img-alcance:hover {
  background-image:  linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,1)),url('img/alcance2-color.png');
}

@media (max-width: 768px) {
  .bg-img-alcance {
    background-size: 70%;
    padding-top: 70px;
  }
}
.bg-img-front {
  padding-top: 45px;
  background-size: 22%;
  background-repeat: no-repeat;
  background-position: right top;
  background-image: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.7)),url('img/front-end.png');
}
.bg-img-back {
  padding-top: 45px;
  background-size: 22%;
  background-repeat: no-repeat;
  background-position: right top;
  background-image: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.7)),url('img/back-end.png');
}
.bg-img-alcance2 {
  padding-top: 45px;
  background-size: 26%;
  background-repeat: no-repeat;
  background-position: left top;
  background-image: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.7)),url('img/alcance3.png');
}
.bg-img-engajamento {
  padding-top: 45px;
  background-size: 26%;
  background-repeat: no-repeat;
  background-position: left top;
  background-image: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.7)),url('img/engajamento.png');
}
.bg-img-conversao {
  padding-top: 35px;
  background-size: 26%;
  background-repeat: no-repeat;
  background-position: left top;
  background-image: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.7)),url('img/conversao.png');
}

.bg-img-bruno {
  background-size: 23%;
  background-repeat: no-repeat;
  background-position: right top;
  padding-top: 0 ;
  transition: background-image 0.5s ease-in-out;
  background-image: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,1)),url('img/bruno3-R.png');
}
.bg-img-bruno:hover {
  background-image:  linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,1)),url('img/bruno3-color-R.png');
}

@media (max-width: 768px) {
  .bg-img-bruno {
    background-size: 50%;
    padding-top: 50px;
  }
}

#domain-input {
  font-size: 1.2rem;
  padding: 1rem;
  border-radius: 30px;
}

#domain-result {
  font-size: 1rem;
}
button, .btn {
    background: linear-gradient(145deg, #cfcfcf, #9a9a9a);
    border: 1px solid #e0e0e0;
    color: #111;
    padding: 0.8rem 1.6rem;
    font-weight: bold;
    border-radius: 8px;
    box-shadow: inset -2px -2px 5px rgba(255,255,255,0.3),
                inset 2px -2px 5px rgba(0,0,0,0.3),
                0 4px 10px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
    cursor: pointer;
}
button:hover, .btn:hover {
    background: linear-gradient(145deg, #e6e6e6, #bfbfbf);
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(255,255,255,0.2);
}
.btn.hover-glow {
  transition: all .25s ease-in-out;
  border-width: 2px;
  letter-spacing: 0.5px;
}
.btn.hover-glow:hover {
  color: #000;
  background: linear-gradient(90deg, #ffffff, #f8f8f8);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.979), 0 0 10px rgb(216, 216, 216);
  transform: translateY(-2px);
}
section {
    margin-top: 60px; /* Para evitar que o conteúdo fique atrás do cabeçalho fixo */
}

section.alt {
    background: #1a1a1a;
    border-radius: 12px;
    margin: 2rem 0;
    padding: 2rem;
}

.form-control, .form-select {
    background-color: #1f1f1f;
    border: 1px solid #444;
    color: #eee;
  }
  .form-control::placeholder {
    color: #999;
  }
  .form-control:focus {
    border-color: #999;
    box-shadow: none;
  }

/* Responsividade */
@media (max-width: 768px) {
    header, footer, section {
        padding: 2rem 1rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    button, .btn {
        width: 100%;
        padding: 1rem;
    }
}

/* portifolio */
.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.portfolio-item img {
  transition: transform 0.3s ease;
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-item .overlay {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  width: 100%;
  padding: 0.5rem;
  text-align: center;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-item:hover .overlay {
  opacity: 1;
}
#lightbox-overlay {
  display: none;
  position: fixed;
  z-index: 10000;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

#lightbox-overlay img {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 0 20px #000;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

/* Linguagens */
  #langselect {
    position: static;
    top: 0.5rem;
    right: 0.5rem;
    padding: 0.3rem 0.5rem;
    background-color: rgba(255, 255, 255, 0.324);
    border-radius: 8px;
   /* border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);*/
  }
  
  #language-switcher {
    background-color: #212529;
    color: #f8f9fa;
    border: 1px solid #444;
    font-weight: 500;
    cursor: pointer;
    min-width: 120px;
    font-size: 10px;
  }
  
  #language-switcher option {
    background-color: #212529;
    color: #f8f9fa;
  }
  /* Fontes */
  @font-face {
    font-family: 'Chopin Script';
    src: url('./font/chopinscript.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'Jumbotron';
    src: url('./font/jumbotron.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'Minimal';
    src: url('./font/minimal.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'Neuropolitical';
    src: url('./font/neuropolitical.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'Pixel Max';
    src: url('./font/pixelmax.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
  }