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

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background-color: #000;
  color: white;
  padding: 1rem 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  height: 48px;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #ffb612;
}

.back-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffb612;
  text-decoration: none;
  transition: color 0.3s;
}

.back-link:hover {
  color: #e6a010;
}

.spacer {
  width: 80px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  cursor: pointer;
}

.btn-primary {
  background-color: #ffb612;
  color: #000;
}

.btn-primary:hover {
  background-color: #e6a010;
}

.btn-dark {
  background-color: #000;
  color: white;
}

.btn-dark:hover {
  background-color: #333;
}

.btn-outline {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline:hover {
  background-color: white;
  color: #000;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* Hero Section */
.hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-image: url("https://hebbkx1anhila5yf.public.blob.vercel-storage.com/PRIMEIRO%20M%C3%8AS%20GRATIS.%20MATRICULE-SE%20AGORA-ZaD5mbRcOkqfThnNdDOdbv9cZLwTo7.png");
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 600px;
  color: white;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Stats Section */
.stats {
  padding: 4rem 0;
  background-color: #f5f5f5;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-icon {
  font-size: 3rem;
  color: #ffb612;
  margin-bottom: 1rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 0.5rem;
}

.stat-text {
  color: #666;
}

/* Plans Section */
.plans {
  padding: 5rem 0;
  background-color: white;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.text-yellow {
  color: #ffb612;
}

.text-red {
  color: #e53e3e;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.plan-card {
  position: relative;
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  overflow: visible;
  transition: transform 0.3s;
}

.plan-card:hover {
  transform: translateY(-5px);
}

.plan-popular {
  border-color: #ffb612;
  transform: scale(1.05);
  background: #f8f9fa;
}

.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffb612;
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.plan-header {
  padding: 2rem;
  text-align: center;
  border-bottom: 1px solid #e2e8f0;
}

.plan-name {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.plan-description {
  color: #666;
  margin-bottom: 1.5rem;
}

.plan-pricing {
  margin-bottom: 1rem;
}

.plan-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.price {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
}

.period {
  font-size: 0.875rem;
  color: #666;
}

.original-price {
  font-size: 0.875rem;
  color: #666;
  text-decoration: line-through;
}

.discount {
  font-size: 0.875rem;
  color: #22c55e;
  font-weight: 600;
}

.plan-content {
  padding: 2rem;
}

.plan-features {
  list-style: none;
  margin-bottom: 2rem;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: #333;
}

.plan-features .fa-check {
  color: #22c55e;
  font-size: 1.25rem;
}

/* FAQ Section */
.faq {
  padding: 5rem 0;
  background-color: #f9fafb;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 8px;
  margin-bottom: 1rem;
  border: 1px solid #e2e8f0;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: #333;
  transition: background-color 0.3s;
}

.faq-question:hover {
  background-color: #f9fafb;
}

.faq-question i {
  transition: transform 0.3s;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: #666;
  line-height: 1.6;
}

/* CTA Section */
.cta {
  padding: 5rem 0;
  background-color: #000;
  color: white;
  text-align: center;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.footer {
  background-color: #1f2937;
  color: white;
  padding: 3rem 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  height: 40px;
  margin-bottom: 1rem;
}

.footer-text {
  color: #9ca3af;
}

.footer-title {
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-link {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-link:hover {
  color: #ffb612;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  text-align: center;
  color: #9ca3af;
}

/* Form Styles */
.form-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 0;
}

.card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.card-header {
  text-align: center;
  padding: 2rem;
  border-bottom: 1px solid #e2e8f0;
}

.card-title {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 0.5rem;
}

.card-subtitle {
  font-size: 1.1rem;
  color: #666;
}

.card-content {
  padding: 2rem;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-weight: 600;
  color: #333;
}

.form-input,
.form-select {
  padding: 0.75rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: #ffb612;
}

.info-box {
  background-color: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  padding: 1rem;
}

.info-content {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.info-icon {
  color: #2563eb;
  margin-top: 0.125rem;
}

.info-title {
  font-weight: 600;
  color: #1e3a8a;
  margin-bottom: 0.25rem;
}

.info-text {
  font-size: 0.875rem;
  color: #1e40af;
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  background-color: #ffb612;
  color: #000;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-submit:hover {
  background-color: #e6a010;
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.loading-spinner {
  display: none;
}

.btn-submit.loading .btn-text {
  display: none;
}

.btn-submit.loading .loading-spinner {
  display: block;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.benefit-item {
  text-align: center;
  padding: 1rem;
}

.benefit-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.benefit-icon.fa-shield-alt {
  color: #22c55e;
}

.benefit-icon.fa-users {
  color: #3b82f6;
}

.benefit-icon.fa-credit-card {
  color: #8b5cf6;
}

.benefit-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.benefit-text {
  font-size: 0.875rem;
  color: #666;
}

/* Thank You Page */
.thank-you-page {
  background: linear-gradient(135deg, #ffb612, #ff8c00, #e53e3e);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.header-transparent {
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  color: white;
  padding: 1rem 0;
  position: relative;
  z-index: 10;
}

.header-transparent .header-content {
  justify-content: center;
}

.thank-you-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 1rem;
  position: relative;
  z-index: 10;
  text-align: center;
}

.thank-you-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: none;
  overflow: hidden;
}

.thank-you-content {
  padding: 3rem;
}

.logo-container {
  margin-bottom: 2rem;
}

.thank-you-logo {
  height: 80px;
}

.message-container {
  margin-bottom: 2rem;
}

.main-title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: bold;
  color: #333;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.sub-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: #333;
  margin-bottom: 2rem;
}

.heart-icon {
  color: #e53e3e;
  font-size: 2rem;
  margin-left: 0.5rem;
}

.contact-message {
  background: linear-gradient(135deg, #22c55e, #3b82f6);
  color: white;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.contact-text {
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.info-card {
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
}

.info-blue {
  background-color: #eff6ff;
  border: 1px solid #bfdbfe;
}

.info-green {
  background-color: #f0fdf4;
  border: 1px solid #bbf7d0;
}

.info-card-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.info-blue .info-card-icon {
  color: #2563eb;
}

.info-green .info-card-icon {
  color: #22c55e;
}

.info-card-title {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.info-blue .info-card-title {
  color: #1e3a8a;
}

.info-green .info-card-title {
  color: #166534;
}

.info-card-text {
  font-size: 0.875rem;
}

.info-blue .info-card-text {
  color: #1e40af;
}

.info-green .info-card-text {
  color: #15803d;
}

.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.welcome-message {
  margin-top: 2rem;
  text-align: center;
}

.welcome-text {
  font-size: 1.2rem;
  font-weight: 500;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  display: inline-block;
}

/* Animations */
.bounce-animation {
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

.float-animation {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.pulse-animation {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Fireworks */
.firework {
  position: fixed;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  animation: firework 3s ease-out infinite;
  z-index: 1000;
}

@keyframes firework {
  0% {
    transform: translateY(100vh) scale(0);
    background: #ff6b6b;
    box-shadow: 0 0 10px #ff6b6b;
  }
  15% {
    transform: translateY(-50vh) scale(1);
    background: #4ecdc4;
    box-shadow: 0 0 20px #4ecdc4;
  }
  30% {
    transform: translateY(-50vh) scale(1);
    background: #45b7d1;
    box-shadow: 0 0 0 10px #45b7d1, 0 0 0 20px transparent, 0 0 0 30px #45b7d1, 0 0 0 40px transparent;
  }
  100% {
    transform: translateY(-50vh) scale(0);
    background: transparent;
    box-shadow: 0 0 0 50px transparent, 0 0 0 100px transparent;
  }
}

/* Particles */
.particles-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  opacity: 0.7;
  animation: particle-float 6s ease-in-out infinite;
}

@keyframes particle-float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-40px) rotate(180deg);
    opacity: 1;
  }
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  /* FORÇA a imagem mobile */
  .hero {
    height: 500px;
  }

  .hero-bg {
    background-image: url("https://hebbkx1anhila5yf.public.blob.vercel-storage.com/Design%20sem%20nome%20%283%29-VP5pv15e0eCssn9vO0uaxkPNDG3VFd.png") !important;
    background-size: cover !important;
    background-position: center !important;
  }

  /* FORÇA as estatísticas em uma linha */
  .stats-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 0.5rem !important;
    text-align: center !important;
    max-width: 100% !important;
  }

  .stat-item {
    padding: 0.5rem !important;
    min-width: 0 !important;
  }

  .stat-icon {
    font-size: 1.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .stat-number {
    font-size: 1.2rem !important;
    margin-bottom: 0.25rem !important;
    white-space: nowrap !important;
  }

  .stat-text {
    font-size: 0.75rem !important;
    line-height: 1.2 !important;
    word-wrap: break-word !important;
  }

  /* Plans adjustments for mobile */
  .plans-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .plan-popular {
    transform: none !important;
    background: #333 !important;
  color: white !important;
    border: 3px solid #ffb612 !important;
  }

  /* More visible popular badge on mobile */
  .popular-badge {
    background-color: #ffb612 !important;
    color: #000 !important;
    padding: 1rem 2rem !important;
    font-size: 1.1rem !important;
    font-weight: 900 !important;
    border-radius: 30px !important;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3) !important;
    border: 3px solid #000 !important;
    top: -25px !important;
    animation: mobilePulse 2s infinite;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  @keyframes mobilePulse {
    0% {
      transform: translateX(-50%) scale(1);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    }
    50% {
      transform: translateX(-50%) scale(1.05);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    }
    100% {
      transform: translateX(-50%) scale(1);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    }
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .action-buttons {
    flex-direction: column;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .benefits {
    grid-template-columns: 1fr;
  }

  /* Mobile adjustments for thank you page */
  .main-title {
    font-size: 1.8rem;
  }

  .sub-title {
    font-size: 1.3rem;
  }

  .contact-text {
    font-size: 1.2rem;
  }
}

/* Desktop styles */
@media (max-width: 768px) {
  .popular-badge {
    font-size: 0.75rem !important;  /* diminui a fonte */
    padding: 0.3rem 0.6rem !important; /* diminui o padding */
    border-radius: 12px !important; /* pode deixar menor */
    top: -12px !important; /* ajuste vertical */
    /* ajuste outras propriedades se precisar */
  }
}
@media (max-width: 768px) {
  .logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .thank-you-logo {
    max-width: 150px;
    height: auto;
  }
}

  .action-buttons {
    flex-direction: row;
    justify-content: center;
  }

  /* Desktop hero image */
  .hero-bg {
    background-image: url("https://hebbkx1anhila5yf.public.blob.vercel-storage.com/PRIMEIRO%20M%C3%8AS%20GRATIS.%20MATRICULE-SE%20AGORA-ZaD5mbRcOkqfThnNdDOdbv9cZLwTo7.png") !important;
  }

  /* Desktop stats grid */
  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    gap: 2rem !important;
  }
}

/* Additional mobile optimizations */
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .plan-card {
    margin: 0 5px;
  }

  .card-title {
    font-size: 1.5rem;
  }

  .btn-lg {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Even more prominent popular badge on small screens */
  .popular-badge {
    padding: 1.2rem 2.5rem !important;
    font-size: 1.2rem !important;
    top: -30px !important;
    font-weight: 900 !important;
    border: 4px solid #000 !important;
  }

  /* Stats even more compact on very small screens */
  .stats-grid {
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 0.25rem !important;
  }

  .stat-icon {
    font-size: 1.3rem !important;
  }

  .stat-number {
    font-size: 1.1rem !important;
  }

  .stat-text {
    font-size: 0.65rem !important;
  }
}


/* === Customizações para plano Black === */
.plan-popular {
  border-color: #ffb612;
  transform: scale(1.05);
  background: #333; /* fundo cinza escuro */
  color: white;     /* textos brancos */
}

.plan-popular .plan-name,
.plan-popular .plan-description,
.plan-popular .plan-price .price,
.plan-popular .plan-price .period,
.plan-popular .original-price {
  color: white;
}

.plan-popular .plan-features li {
  color: white;
}

.plan-popular .plan-features .fa-check,
.plan-popular .discount {
  color: #22c55e;
}
