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

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  position: relative;
}


@media (max-width: 480px) {
  .commission-row {
    min-width: unset;
    width: 100%;
    box-sizing: border-box;
  }

  .video-preview {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 768px) {
  .carousel-card,
  .honor-card {
    max-width: 100%;
    flex-wrap: wrap;
    overflow-x: hidden;
  }
}



body {
  font-family: 'DM Sans', sans-serif;

  line-height: 1.6;
  color: white;
  overflow-x: hidden;
  background: #1a2e5e
}

.main-container {
  min-height: 100vh;
  position: relative;
  background: 
    radial-gradient(circle at center, rgba(21, 36, 61, 0.6) 0%, rgba(1, 4, 12, 0.6) 60%, transparent 100%),
    radial-gradient(circle at center, #15243d 18%, #01040c 70%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}



/* Header Styles */
.header {
  width: 100%;
  padding: 16px 24px;
  position: relative;
  z-index: 10;
}

.header-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-group {
  display: flex;
  align-items: center;
  gap: 48px;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  height: 28px;
  width: auto;
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 16px;
}

.login-btn {
  background: none;
  border: none;
  color: white;
  font-family: 'DM Sans', sans-serif;

  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  transition: color 0.3s ease;
  text-decoration: none;
}

.login-btn:hover {
  color: #ffffff;
}

/* Botão Registrar-se */
.register-btn {
  display: flex;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: white;
  font-family: 'DM Sans', sans-serif;
  border: 1px solid #033ea8;
  border-radius: 9999px;
  background-image: linear-gradient(to bottom, #0d64ff, #033ea8);
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(.4, 0, .2, 1);
  box-shadow: 0 0 12px rgba(13, 100, 255, 0.4);
}

.register-btn:hover {
  box-shadow: 0 0 18px rgba(13, 100, 255, 0.6);
  transform: scale(1.03);
}

/* Oculta o botão "Registrar-se" no mobile */
@media (max-width: 768px) {
  .register-btn {
    display: none;
  }
}

@media (max-width: 768px) {
  header .header-actions .register-btn {
    display: none !important;
  }
}



/* Hero Styles */
.hero {
  padding: 40px 24px;
  text-align: center;
  max-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 70px;
  line-height: 1.2;
  margin-top: 236px;
  margin-bottom: 16px;

  color: #fff;
}

.hero-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  /*display: flex;*/
  display: inline-block;
  padding: 10px 30px;
  height: 45px;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 0.875rem; /* 14px */
  font-weight: 700;
  color: white;
  font-family: 'DM Sans', sans-serif;
  border: 1px solid #033ea8;
  border-radius: 9999px;
  background-image: linear-gradient(to bottom, #0d64ff, #033ea8);
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(.4, 0, .2, 1);
  box-shadow: 0 0 12px rgba(13, 100, 255, 0.4);
}

.cta-btn:hover {
  box-shadow: 0 0 18px rgba(13, 100, 255, 0.6);
  transform: scale(1.03);
}

/* Features Styles */
.features {
  padding: 40px 24px;
  z-index: 12;
}

.features-content {
  max-width: 1152px;
  margin: 0 auto;
  z-index: 12;
}

.features-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: 24px;
  color: #fff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  justify-items: center;
}

.feature-card {
  background: linear-gradient(135deg, rgba(25, 103, 223, 0.2), rgba(30, 58, 138, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  backdrop-filter: blur(8px);
  max-width: 240px;
}

.feature-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:hover {
  background: linear-gradient(135deg, rgba(25, 103, 223, 0.3), rgba(30, 58, 138, 0.2));
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
  stroke: #1967DF;
}

.feature-title {
  font-family: 'DM Sans', sans-serif;

  font-weight: 600;
  font-size: 1rem;
  line-height: 1.3;
  color: #fff;
}

/* Extra Content */
.extra-content {
  text-align: center;
  margin-top: 24px;
}

.extra-text {
  font-family: 'DM Sans', sans-serif;

  font-weight: 400;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
  margin-top: 20px;
}

.arrow-circle {
  width: 48px;
  height: 48px;
  margin: 0 auto 24px;
  background: #1967DF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.arrow-circle:hover {
  transform: scale(1.1);
}

.arrow-circle .fa-angle-up {
  color: white;
  font-size: 24px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
      font-size: 48px;
  }
  .hero-subtitle {
      font-size: 0.9rem;
  }
  .cta-btn {
      padding: 10px 24px;
  }
  .features-grid {
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 24px;
      justify-items: center;
  }
  .feature-card {
      padding: 20px;
      max-width: 220px;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
      display: block;
  }
  .nav-container {
      display: none;
  }
  .header-group {
      justify-content: space-between;
      width: 100%;
  }
  .hero {
      padding: 24px;
      max-height: 60vh;
  }
  .hero-title {
      font-size: 48px;
  }
  .hero-subtitle {
      font-size: 0.875rem;
  }
  .features-grid {
      grid-template-columns: 1fr;
      gap: 24px;
      justify-items: center;
  }
  .features-title {
      font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .header {
      padding: 12px 16px;
  }
  .hero {
      padding: 16px;
      max-height: 70vh;
  }
  .hero-title {
      font-size: 48px;
  }
  .hero-subtitle {
      font-size: 0.75rem;
  }
  .cta-btn {
      font-size: 14px;
      padding: 8px 20px;
  }
  .features {
      padding: 16px;
  }
  .features-title {
      font-size: 1.25rem;
  }
  .feature-card {
      padding: 16px;
      max-width: 200px;
  }
  .feature-icon {
      width: 40px;
      height: 40px;
  }
  .feature-title {
      font-size: 0.9rem;
  }
  .logo {
      height: 28px;
  }
  .extra-text {
      font-size: 0.75rem;
  }
  .arrow-circle {
      width: 32px;
      height: 32px;
  }
  .arrow-circle .fa-angle-up {
      font-size: 16px;
  }
}



/* Novo bloco para seção 2 (Tabela de Comissões) com vídeo */
.commissions-section {
  background-color: #f9fafb;
  color: #111827;
  padding: 64px 24px;
  text-align: center;
}

.commissions-section h2 {
  font-family: 'DM Sans', sans-serif;

  font-weight: 700;
  font-size: 1.75rem;
  margin-bottom: 4px;
}

.commissions-subtitle {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 32px;
}

.commissions-content {
  display: flex;

  align-items: flex-start;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.commissions-table {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  min-width: 240px;
}

.commission-header {
  display: flex;
  justify-content: space-between;
  padding: 0 4px 4px 4px;
  font-size: 14px;
  color: #111827;
  font-weight: 600;
}

.commission-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #3b82f6;
  color: white;
  padding: 12px 20px;
  border-radius: 12px;
  min-width: 240px;
  font-size: 15px;
  font-weight: 600;
}

.video-preview {
  position: relative;
  width: 480px;
  height: 280px;
  background-color: #0f172a;
  border-radius: 16px;
  overflow: hidden;
}

.video-preview video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: none;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background-color: rgba(255, 255, 255, 0.15);
  border: 2px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.video-play-btn:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.video-play-btn i {
  color: white;
  font-size: 24px;
}

.video-preview.playing video {
  display: block;
}

.video-preview.playing .video-play-btn {
  display: none;
}

/* Mantém os estilos anteriores abaixo */

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

body {
  font-family: 'DM Sans', sans-serif;

  line-height: 1.6;
  color: #ffffff;
  overflow-x: hidden;
  background: linear-gradient(to bottom, #050a17, #020408);
}

.main-container {
  min-height: 100vh;
  position: relative;
  
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #0B121B;
}

/* Header Styles */
.header {
  width: 100%;
  padding: 16px 24px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: transparent;
  transition: background-color 0.3s ease, 
}

.header.scrolled {
  background-color: #000;
}

.header-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo-container img.logo {
  height: 24px;
  margin-left: 100px;
}

/* Remove margin-left em telas menores (mobile) */
@media (max-width: 768px) {
  .logo-container img.logo {
    margin-left: 0;
  }
}

/* Ações do Header */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Seletor de Linguagem */
.language-selector {
  position: relative;
}

.language-btn {
  background: none;
  border: none;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
}

.language-btn .flag {
  width: 20px;
  height: 14px;
  object-fit: contain;
}

.language-btn .chevron {
  font-size: 10px;
}

/* Dropdown */
.language-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: #111827;
  border: 1px solid #2c2c2c;
  border-radius: 6px;
  margin-top: 6px;
  display: none;
  flex-direction: column;
  min-width: 140px;
  z-index: 1000;
}

.language-selector:hover .language-dropdown {
  display: flex;
}

.language-dropdown li {
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 14px;
  cursor: pointer;
}

.language-dropdown li:hover {
  background: #1f2937;
}

/* Botões Gerais */
.login-btn,
.register-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 1.5rem; /* equivalente ao px-6 */
  border-radius: 9999px; /* rounded-full */
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}

/* Estilo do botão de login */
.login-btn {
  background: #1f1f1f;
  color: white;
}



/* Features Section */
.features {
  padding: 40px 24px;
}

.features-content {
  max-width: 1152px;
  margin: 0 auto;
}

.features-title {
  font-weight: 700;
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: 36px;
  margin-top: 136px;
  color: #fff;
}

.features-grid {  
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  justify-items: center;
}

.feature-card {
  background: linear-gradient(135deg, rgba(25, 103, 223, 0.2), rgba(30, 58, 138, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  backdrop-filter: blur(8px);
  max-width: 240px;
}

.feature-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:hover {
  background: linear-gradient(135deg, rgba(25, 103, 223, 0.3), rgba(30, 58, 138, 0.2));
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
  stroke: #1967DF;
}

.feature-title {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.3;
  color: #fff;
}

/* Tabela de Comissões e Vídeo */
.commissions-section {
  background-color: #f9fafb;
  color: #111827;
  padding: 64px 24px;
  text-align: center;
}

.commissions-section h2 {
  font-weight: 700;
  font-size: 1.75rem;
  margin-bottom: 4px;
}

.commissions-subtitle {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 32px;
}

.commissions-content {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.commissions-table {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  min-width: 240px;
}

.commission-header {
  display: flex;
  justify-content: space-between;
  padding: 0 4px 4px 4px;
  font-size: 14px;
  color: #111827;
  font-weight: 600;
}

.commission-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #3b82f6;
  color: white;
  padding: 12px 20px;
  border-radius: 12px;
  min-width: 240px;
  font-size: 15px;
  font-weight: 600;
}
.video-preview {
  position: relative;
  width: 480px;
  height: 280px;
  background-color: #0f172a;
  border-radius: 16px;
  overflow: hidden;
}

.video-preview video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block; /* Alterado para exibir o vídeo (ou poster) por padrão */
}

/* Oculta controles nativos do vídeo */
.video-preview video::-webkit-media-controls,
.video-preview video::-webkit-media-controls-panel,
.video-preview video::-webkit-media-controls-play-button,
.video-preview video::-webkit-media-controls-volume-slider,
.video-preview video::-webkit-media-controls-mute-button,
.video-preview video::-webkit-media-controls-timeline,
.video-preview video::-webkit-media-controls-current-time-display,
.video-preview video::-webkit-media-controls-time-remaining-display,
.video-preview video::-webkit-media-controls-seek-back-button,
.video-preview video::-webkit-media-controls-seek-forward-button,
.video-preview video::-webkit-media-controls-fullscreen-button,
.video-preview video::-webkit-media-controls-toggle-closed-captions-button {
  display: none !important;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background-color: rgba(255, 255, 255, 0.15);
  border: 2px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.video-play-btn:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.video-play-btn i {
  color: white;
  font-size: 24px;
}

.video-preview.playing video {
  display: block;
}

.video-preview.playing .video-play-btn {
  display: none;
}

/* Árvore de indicações */
.referral-tree-section {
  background-image: url('/img/bgwysebot.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 64px 24px;
  text-align: center;
}

.referral-tree-section h2 {
  font-size: 1.75rem;
  margin-bottom: 12px;
}

.referral-tree-section p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

.tree-container img {
  width: 20%;
  height: auto;
}

@media (max-width: 768px) {
  .tree-container img {
    width: 80%;
  }
}


/* Reconhecimentos */
.recognition-section {
  background: #f9fafb;
  color: #111827;
  padding: 64px 24px;
  text-align: center;
}

.recognition-section h2 {
  font-size: 1.75rem;
  margin-bottom: 40px;
  font-weight: 700;
}

.carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: nowrap;
}

.carousel-nav {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #3b82f6;
}

.carousel-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 24px;
  max-width: 480px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.card-image {
  width: 180px;
  height: 180px;

  border-radius: 12px;
}

.card-info {
  text-align: left;
}

.card-info h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.card-info p {
  font-size: 0.9rem;
  margin-bottom: 16px;
}

/* Responsividade */
@media (max-width: 768px) {
  .hero-title {
    font-size: 48px;
  }
  .hero-subtitle {
    font-size: 0.875rem;
  }
  .cta-btn {
    padding: 10px 24px;
  }
  .nav-container {
    display: none;
  }

  .commissions-content {
    gap: 32px;
  }
  .carousel-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .card-image {
    width: 100%;
    height: 200px;
  }
  .card-info {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 48px;
  }
  .hero-subtitle {
    font-size: 0.75rem;
  }
  .cta-btn {
    font-size: 14px;
    padding: 8px 20px;
  }
  .logo {
    height: 28px;
  }
}



.honors-section {
  padding: 64px 24px;
  color: white;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.honors-intro {
  text-align: center;
  font-size: 0.95rem;
  color: #cbd5e1;
  text-transform: uppercase;
  margin-bottom: 24px;
  line-height: 1.4;
}

.honor-card {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: linear-gradient(to right, #111827, #1f2937);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 24px;
  gap: 48px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.honor-card.reverse {
  flex-direction: row-reverse;
}

.honor-card img {
  width: 100%;
  max-width: 480px;
  border-radius: 12px;
  object-fit: cover;
}

.honor-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 0;
}

.honor-info h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.honor-info ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 24px;
}

.honor-info li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 1rem;
}

.honor-info li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0;
  color: #3b82f6;
  font-weight: bold;
  font-size: 14px;
}

.honor-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.honor-actions .cta-btn {
  font-size: 14px;
  border-radius: 20px;
  background-color: #2563eb;
  color: #fff;
  font-weight: 500;
  transition: background 0.3s ease;
  width: fit-content;
}

.honor-actions .cta-btn:hover {
  background-color: #1e40af;
}

.next-level-link {
  font-size: 13px;
  margin-top: 16px;
  color: #cbd5e1;
  text-decoration: underline;
  cursor: pointer;
}

@media (max-width: 768px) {
  .honor-card,
  .honor-card.reverse {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .honor-info {
    align-items: flex-start;
    width: 100%;
    max-width: 320px;
    text-align: left;
    margin-top: 16px;
  }

  .honor-card img {
    max-width: 100%;
  }

  .next-level-link {
    font-size: 12px;
  }
}





.faq-section {
  padding: 64px 24px;
  background: linear-gradient(to left, #111827, #1f2937);
  color: white;
  border-radius: 20px;
  text-align: center;
  max-width: 960px;
  margin: auto;
}

.faq-section h2 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.faq-subtitle {
  font-size: 0.95rem;
  color: #cbd5e1;
  margin-bottom: 40px;
}

.faq-item {
  text-align: left;
  border-bottom: 1px solid #334155;
  margin-bottom: 16px;
  padding-bottom: 12px;
}

.faq-question {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  width: 100%;
  text-align: left;
  cursor: pointer;
  padding: 12px 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-answer {
  padding-top: 8px;
}


@media (max-width: 768px) {
  .faq-section {
    padding: 48px 16px;
    margin: 20px;
  }

  .faq-question {
    font-size: 0.95rem;
  }

  .faq-answer {
    font-size: 0.875rem;
  }
}


.footer {
  background: #0f172a;
  color: #94a3b8;
  font-size: 0.85rem;
  line-height: 1.6;
  padding: 48px 24px;
}

.footer-container {
  max-width: 960px;
  margin: 0 auto;
}

.footer-container p {
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .footer {
    font-size: 0.75rem;
    padding: 32px 16px;
  }

  .footer-container p {
    margin-bottom: 12px;
  }
}



/* Overlay escura ao fundo */
.mobile-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* Menu lateral */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100vh;
  background-color: #0b121b;
  color: white;
  padding: 32px 24px;
  z-index: 999;
  transition: right 0.3s ease;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu .close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 32px;
}

.mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu-list a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  padding: 8px 0;
  color: white;
}







/* Círculo Externo */
.radial-circle-outer,
.radial-circle-inner,
.radial-circle-blur {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  aspect-ratio: 1 / 1;
  pointer-events: none;
  border-radius: 9999px;
  z-index: 0;
}

/* Círculo externo */
.radial-circle-outer {
  width: 990px;
  border: 2px solid rgba(86, 86, 96, 0.2);
  background: linear-gradient(
    to bottom,
    rgba(86, 86, 96, 0.2),
    rgba(58, 58, 63, 0),
    rgba(37, 37, 40, 0.05)
  );
  opacity: 0.3;
}

/* Círculo interno */
.radial-circle-inner {
  width: 700px;
  border: 2px solid rgba(86, 86, 96, 0.1);
  background: linear-gradient(
    to bottom,
    rgba(86, 86, 96, 0.5),
    rgba(58, 58, 63, 0.1),
    rgba(37, 37, 40, 0.05)
  );
  opacity: 0.4;
}

/* Círculo de blur azul */
.radial-circle-blur {
  width: 900px;
  background: #0d64ff;
  filter: blur(120px);
  opacity: 0.2;
}

/* Versão mobile com opacidade reduzida */
@media (max-width: 768px) {
  .radial-circle-outer,
  .radial-circle-inner {
    opacity: 0.15;
  }

  .radial-circle-blur {
    opacity: 0.1;
    filter: blur(90px);
    width: 600px;
  }
}
.video-preview {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}
}

@media (max-width: 768px) {
.carousel-card,
.honor-card {
  max-width: 100%;
  flex-wrap: wrap;
  overflow-x: hidden;
}
}





/* Responsive Design */
@media (max-width: 768px) {
.features-grid {
  grid-template-columns: repeat(2, minmax(140px, 1fr)); /* 2 colunas com largura mínima de 140px */
  gap: 16px; /* Espaçamento entre os cards */
}
.feature-card {
  padding: 16px; /* Reduzido para manter proporção em telas menores */
  max-width: 100%; /* Ocupa o espaço disponível */
  min-height: 160px; /* Altura mínima para legibilidade */
}
.feature-icon {
  width: 36px; /* Reduzido para manter proporção */
  height: 36px;
}
.feature-title {
  font-size: 0.9rem; /* Ajuste para legibilidade em mobile */
}
}

@media (max-width: 480px) {
.features-grid {
  grid-template-columns: repeat(2, minmax(130px, 1fr)); /* Ajuste fino para telas muito pequenas */
  gap: 12px; /* Espaçamento reduzido */
}
.feature-card {
  padding: 12px; /* Ajuste para telas menores */
  min-height: 150px; /* Altura mínima ajustada */
}
.feature-icon {
  width: 32px;
  height: 32px;
}
.feature-title {
  font-size: 0.85rem; /* Ajuste fino */
}
}


/* Base Additions */

html, body {
max-width: 100%;
overflow-x: hidden;
}

body {
position: relative;
}

@media (max-width: 480px) {
.commission-row {
  min-width: unset;
  width: 100%;
  box-sizing: border-box;
}

.video-preview {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}
}

@media (max-width: 768px) {
.carousel-card,
.honor-card {
  max-width: 100%;
  flex-wrap: wrap;
  overflow-x: hidden;
}
}