header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: #000; /* ou a cor do seu fundo */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    font-family: 'Rethink Sans', sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding-top: 50px; /* Ajuste esse valor de acordo com a altura do seu header */
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 5%;
    gap: 1rem;
  }
  
  .logo {
    font-family: 'Voltaire', sans-serif;
    font-size: 35px;
    font-weight: 400;
    color: #fff;
  }
  
  .nav-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .nav-links a {
    color: #fff;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  
  .nav-links a:hover {
    color: #00ffff;
  }
  
  nav a {
    color: #fff;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  
  nav a:hover {
    color: #00ffff;
  }
  
  .btn {
    background: #fff;
    color: #000;
    padding: 0.8rem 1.2rem;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background 0.3s, color 0.3s, transform 0.3s;
    cursor: pointer;
    display: inline-block;
    text-align: center;
  }
  
  .btn:hover {
    background: #222;
    color: #fff;
    transform: scale(1.02);
  }
  
  .section-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 3rem 5%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .hero-text {
    flex: 1 1 400px;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    max-width: 600px;
    line-height: 1.3;
    margin-bottom: 1rem;
  }
  
  .hero-text p {
    font-size: 1.1rem;
    color: #ccc;
    max-width: 600px;
    margin-bottom: 1.5rem;
  }
  
  .hero-video {
    flex: 1 1 300px; /* isso já garante um mínimo de 300px se quiser */
    /* height: auto; ou simplesmente remove a linha de height */
    background: #222;
    border-radius: 10px;
    position: relative; /* pode ser útil se quiser manipular internamente */
    overflow: hidden; /* Esconde o que ultrapassar as bordas arredondadas */
  }
  
  
  section {
    padding: 3rem 5%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  section h2 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  .problema-list,
  .beneficios-list,
  .oferta-list {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    line-height: 1.8;
    list-style-position: inside;
  }
  
  .problema-list li,
  .beneficios-list li,
  .oferta-list li {
    margin-bottom: 0.5rem;
    list-style: '✔️ ';
  }
  
  .depoimentos {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .depoimento {
    background: #111;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(255,255,255,0.05);
  }
  
  .depoimento p {
    font-size: 1rem;
    line-height: 1.6;
    color: #ccc;
  }
  
  .depoimento span {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
  }
  
  .faq-item {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 1rem;
  }
  
  .faq-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  
  .faq-item p {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
  }
  
  [data-animate] {
    opacity: 0;
    transition: all 0.6s ease;
    will-change: transform;
  }
  
  [data-animate].active {
    opacity: 1;
    transition: all 0.6s ease;
  }
  

  
  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
  }
  
  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
  }
  
  @media (max-width: 768px) {
    .section-hero {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .hero-video {
      width: 100%;
      height: 200px;
    }
  }
  
  
  
  @media (max-width: 768px) {
    .section-hero {
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding-top: 2rem; /* Reduz de 3rem para 1rem */
      padding-bottom: 2rem; /* Ajuste se quiser */
    }
  
    .hero-video {
        flex: 1 1 200px; /* isso já garante um mínimo de 300px se quiser */
        /* height: auto; ou simplesmente remove a linha de height */
        background: #222;
        border-radius: 8px;
        position: relative; /* pode ser útil se quiser manipular internamente */
      }
  }
  
  .glow-on-hover {
    width: 100%;
    max-width: 280px;
    height: 50px;
    border: none;
    outline: none;
    color: #fff;
    background: #111;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.glow-on-hover:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}

.glow-on-hover:active {
    color: #000;
}

.glow-on-hover:active:after {
    background: transparent;
}

.glow-on-hover:before {
    opacity: 1;
  }

.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #111;
    left: 0;
    top: 0;
    border-radius: 10px;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

.alunos-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .alunos-img {
    height: 40px;
    object-fit: contain;
  }
  
  .alunos-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: #ccc;
    font-style: italic;
  }
  
  .beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 1rem;
  }
  
  .beneficio-item {
    background: #111;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 0 10px rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    color: #ccc;
    transition: transform 0.3s ease;
  }
  
  .beneficio-item:hover {
    transform: translateY(-5px);
  }
  
  .beneficio-item .icon svg {
    width: 36px;
    height: 36px;
    fill: #10b981;
  }
  
  .beneficio-item h3 {
    font-size: 1.2rem;
    color: #fff;
    margin: 0;
  }
  
  .beneficio-item p {
    font-size: 0.95rem;
    line-height: 1.5;
  }


.topo-planos {
  text-align: center;
  margin-bottom: 2rem;
}

.topo-planos h1 {
  font-size: 2.8rem;
  font-weight: 700;
}

.topo-planos p {
  margin-top: 0.6rem;
  color: #ccc;
  font-size: 1rem;
}

.preco-brasil {
  background-color: #023020;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  color: #fff;
  border-radius: 25px;
  font-size: 0.9rem;
  margin-top: 1rem;
}

.flag-icon {
  width: 18px;
  height: 18px;
  margin-right: 0.5rem;
  vertical-align: middle;
  border-radius: 2px;
}

.faturamento-anual {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
  font-size: 0.95rem;
  gap: 0.5rem;
}

.faturamento-anual label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.faturamento-anual input[type="checkbox"] {
  width: 40px;
  height: 20px;
  appearance: none;
  background-color: #222;
  border-radius: 999px;
  position: relative;
  cursor: pointer;
  outline: none;
}

.faturamento-anual input[type="checkbox"]:checked {
  background-color: #10b981;
}

.faturamento-anual input[type="checkbox"]::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: #fff;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: 0.3s;
}

.faturamento-anual input[type="checkbox"]:checked::before {
  transform: translateX(20px);
}

.faturamento-anual small {
  color: #10b981;
}

.planos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 2rem auto 0;
}

.plano {
  background-color: #111;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #222;
}

.plano h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.preco {
  font-size: 2rem;
  margin: 1rem 0;
}

.beneficios {
  list-style: none;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.beneficios li {
  margin-bottom: 0.5rem;
  padding-left: 1.2rem;
  position: relative;
}

.beneficios li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #10b981;
}
.btn {
    display: inline-block;
    background: #10b981;
    color: #000;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.3s ease;
  }
  
  .btn:hover {
    background: #0e9f6e;
  }

  .animated-button5 {
    background: linear-gradient(-30deg, #0e4d3b 50%, #0a3b2c 50%); /* fundo verde escuro */
    padding: 12px 30px;
    border-radius: 8px;
    color: #d4f7d4;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }
  
  .animated-button5 span {
    position: absolute;
  }
  
  .animated-button5 span:nth-child(1) {
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to left, rgba(16, 185, 129, 0), #10b981);
    animation: animateTop 2s linear infinite;
  }
  
  .animated-button5 span:nth-child(2) {
    top: 0;
    right: 0;
    height: 100%;
    width: 2px;
    background: linear-gradient(to top, rgba(16, 185, 129, 0), #10b981);
    animation: animateRight 2s linear -1s infinite;
  }
  
  .animated-button5 span:nth-child(3) {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, rgba(16, 185, 129, 0), #10b981);
    animation: animateBottom 2s linear infinite;
  }
  
  .animated-button5 span:nth-child(4) {
    top: 0;
    left: 0;
    height: 100%;
    width: 2px;
    background: linear-gradient(to bottom, rgba(16, 185, 129, 0), #10b981);
    animation: animateLeft 2s linear -1s infinite;
  }
  
  @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%); }
  }

  .destaque-plano {
    position: relative;
    box-shadow: 0 0 25px rgba(16, 185, 129, 0.5), 0 0 15px rgba(16, 185, 129, 0.3);
    z-index: 2;
  }
  
  /* Selo fixado no canto superior esquerdo */
  .selo-destaque {
    position: absolute;
    top: -12px;
    left: -12px;
    background-color: #10b981;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.6);
  }
  
  .section-publico {
    margin-top: 6rem;
    padding: 3rem 2rem;
    background: #0a0a0a;
    border-radius: 12px;
    box-shadow: 0 0 20px #10b98133;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .titulo-com-icone {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2.5rem;
  }
  
  .icon-planeta {
    width: 28px;
    height: 28px;
    margin-bottom: 0.5rem;
    filter: brightness(0) invert(1);
    opacity: 0.8;
  }
  
  .section-publico h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: #fff;
  }
  
  .grid-publico-vertical {
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
    align-items: flex-start;
  }
  
  .publico-item h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #10b981;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }
  
  .publico-item p {
    font-family: 'Inter', sans-serif;
    color: #ccc;
    line-height: 1.6;
    max-width: 600px;
  }

  .badge-titulo {
    display: inline-block;
    background: linear-gradient(-30deg, #0e4d3b 50%, #0a3b2c 50%);
    padding: 10px 18px;
    border-radius: 8px;
    color: #d4f7d4;
    font-size: 1rem;
    font-weight: 600;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    z-index: 1;
  }
  
  .badge-titulo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(16, 185, 129, 0.4), transparent);
    transition: left 0.4s ease-in-out;
    z-index: 0;
  }
  
  .badge-titulo:hover::before {
    left: 100%;
  }
  
  .badge-titulo {
    position: relative;
    z-index: 1;
  }
  
  .badge-titulo span {
    position: relative;
    z-index: 2;
  }
  
  .publico-grid-2colunas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  
  .publico-grid-2colunas .coluna {
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
  }
  
  .publico-item h3 {
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
  }
  
  .pill {
    background: linear-gradient(-30deg, #0e4d3b 50%, #0a3b2c 50%);
    padding: 6px 12px;
    border-radius: 8px;
    color: #d4f7d4;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
  }
  
  .faq-wrapper {
    max-width: 1000px;
    margin: 0.5rem auto;
    padding: 2rem;
  }
  
  .faq-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
  }
  
  .faq-intro h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .faq-intro p {
    color: #ccc;
    font-size: 1rem;
    max-width: 300px;
  }
  
  .faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
/* FAQ question: texto e seta no mesmo nível via flex */
.faq-question {
    background: none;
    border: none;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  
    /* Remover truncamento */
    white-space: normal; 
    overflow: visible;   
    text-overflow: unset;
  
    /* Precisamos dar espaço pra seta na direita */
    padding: 1rem 2.5rem 1rem 1rem; 
    position: relative;
  }
  
  .faq-question::after {
    content: "▼";
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
  }
  
  .faq-item.open .faq-question::after {
    transform: translateY(-50%) rotate(180deg);
  }
  
  
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: #ccc;
    padding: 0 1rem;
  }
  
  .faq-item.open .faq-answer {
    max-height: 300px;
    padding-top: 0.5rem;
  }
  .faq-question {
    font-family: 'Poppins', sans-serif;
    font-weight: 400; /* regular */
  }
      

  .faq-wrapper {
    padding: 40px;
  }
  
  .faq-grid {
    display: flex;
    align-items: flex-start; /* Alinha os elementos no topo */
    gap: 50px;
  }
  
  .faq-intro {
    max-width: 300px;
  }
  
  .faq-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .faq-item {
    border-bottom: 1px solid #333;
    padding-bottom: 12px;
  }
  
  .faq-question {
    background: none;
    border: none;
    color: white;
    font-weight: normal;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .faq-item {
    padding: 0;
    margin: 0;
  }

  html {
    scroll-behavior: smooth;
  }
  
  @media (max-width: 768px) {
    /* Esconde os links do menu e o botão original no header */
    .nav-links,
    header .btn {
      display: none;
    }
    
    /* Exibe o botão hamburger */
    .menu-toggle {
      display: block;
      background: none;
      border: none;
      color: #fff;
      font-size: 1.8rem;
      cursor: pointer;
    }
    
    /* Estilização do menu mobile */
    .mobile-menu {
      display: none; /* Oculto por padrão */
      position: fixed;
      top: 50px; /* Logo abaixo do header (ajuste se necessário) */
      right: 0;
      background-color: #000;
      width: 80%;
      max-width: 300px;
      padding: 1rem;
      z-index: 1000;
      border-left: 1px solid rgba(255,255,255,0.1);
    }
    
    /* Quando ativo, o menu mobile é exibido */
    .mobile-menu.active {
      display: block;
    }
    
    /* Estilo para os links dentro do menu mobile */
    .mobile-menu a {
      display: block;
      padding: 0.8rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      color: #fff;
      text-decoration: none;
    }
    
    .mobile-menu a:last-child {
      border-bottom: none;
    }
  }
/* ========== ESTILOS GERAIS / DESKTOP ========== */

/* Exibir o menu normal no desktop */
.nav-links {
    display: flex; /* ou o que você usava antes */
    gap: 1.5rem;
  }
  
  /* Botão "Download" no header aparece no desktop */
  header .btn {
    display: inline-block;
  }
  
  /* O botão hamburger fica escondido no desktop */
  .menu-toggle {
    display: none;
  }
  
  /* O menu mobile também fica escondido no desktop */
  .mobile-menu {
    display: none;
  }
  
  
  /* ========== MEDIA QUERY PARA MOBILE ========== */
  @media (max-width: 768px) {
  
    /* Agora escondemos o menu normal e o botão do header */
    .nav-links,
    header .btn {
      display: none;
    }
  
    /* Mostramos o botão hamburger no mobile */
    .menu-toggle {
      display: block;
      background: none;
      border: none;
      color: #fff;
      font-size: 1.8rem;
      cursor: pointer;
    }
  
    /* O .mobile-menu fica escondido por padrão, mas aparece quando adicionamos a classe .active */
    .mobile-menu {
      display: none;
      position: fixed;
      top: 50px; /* Ajuste se necessário */
      right: 0;
      background-color: #000;
      width: 80%;
      max-width: 300px;
      padding: 1rem;
      z-index: 1000;
      border-left: 1px solid rgba(255,255,255,0.1);
    }
  
    .mobile-menu.active {
      display: block;
    }
  
    .mobile-menu a {
      display: block;
      padding: 0.8rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      color: #fff;
      text-decoration: none;
    }
  
    .mobile-menu a:last-child {
      border-bottom: none;
    }
  }

  @media (max-width: 768px) {
    .hero-text h1 {
      font-size: 1.8rem; /* Ajuste se ainda ficar grande */
      line-height: 1.2; /* Diminui espaço vertical */
    }
  }
  @media (max-width: 768px) {
    .section-publico {
      margin-top: 3rem; /* Reduz de 6rem para 3rem */
    }
  }
  @media (max-width: 768px) {
    .faq-grid {
      display: block; 
      /* ou:
         display: flex;
         flex-direction: column;
         gap: 1rem;
      */
    }
  
  /* (3) Ajusta FAQ para não ficar cortado */
  .faq-grid {
    display: block; /* ou flex-direction: column */
  }
  .faq-intro {
    max-width: 100%;
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  #progressBarContainer {
    height: 15px !important; /* fica mais fininha */
  }
  #progressBar {
    height: 100% !important;
  }
}


/* === POPUP STYLES === */
.open-popup {
  padding: 12px 24px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  background-color: #00ff99;
  color: #fcfcfc;
  cursor: pointer;
  transition: 0.3s ease;
}

.open-popup:hover {
  background-color: #00cc7a;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 13, 13, 0.7);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 9999;
}

.popup-overlay.active {
  visibility: visible;
  opacity: 1;
}

.popup-box {
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 16px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 255, 153, 0.3);
  animation: fadeIn 0.3s ease-in-out;
}

.popup-box h2 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #fff;
}

.popup-box input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: none;
  border-radius: 8px;
  background: #2b2b2b;
  color: #fff;
  font-size: 1rem;
}

.popup-box .submit-btn {
  padding: 12px;
  width: 100%;
  border: none;
  border-radius: 8px;
  background-color: #00ff99;
  color: #000;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.popup-box .submit-btn:hover {
  background-color: #00cc7a;
}

@keyframes fadeIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
