/* ===== RESET E BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
  background: linear-gradient(135deg, #000000 0%, #1a1a2e 20%, #16213e 40%, #0f3460 60%, #533a71 80%, #7209b7 100%);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

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

/* ===== HEADER ===== */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 15px 0;
  transition: all 0.3s ease;
}

.logo {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #b967db;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at center, #2d1b69 0%, #000000 70%);
  overflow: hidden;
}





.hero-content {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 60px;
  align-items: center;
  text-align: left;
  z-index: 2;
  position: relative;
}

.hero-text h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: #f0f0f0;
  margin-bottom: 15px;
}

.hero-description {
  font-size: 1.1rem;
  color: #e0e0e0;
  line-height: 1.6;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* ===== FEATURES SECTION ===== */
.features {
  padding: 100px 0;
  background: linear-gradient(135deg, #000000 0%, #1a1a2e 50%, #533a71 100%);
}

.features-content {
  display: block;
  max-width: 800px;
  margin: 0 auto;
}

.features h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 40px;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.check-icon {
  color: #4CAF50;
  font-size: 20px;
  font-weight: bold;
  margin-right: 15px;
  flex-shrink: 0;
}

.feature-text {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.5;
}

.feature-text strong {
  color: #b967db;
}



/* ===== NOVA SEÇÃO SUPER BÔNUS MODIFICADA ===== */
.bonus {
  padding: 100px 0;
  background: linear-gradient(135deg, #232526 0%, #414345 100%);
}

.bonus-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.new-bonus-card {
  background: #4a4a4a; /* Card container cinza escuro */
  border-radius: 20px; /* Bordas arredondadas */
  padding: 40px;
  max-width: 600px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
}

.bonus-card-header {
  margin-bottom: 30px;
}

.bonus-title {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #b967db; /* "SUPER BÔNUS EXCLUSIVO:" em roxo */
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.viral-highlight {
  background: #000000; /* Fundo preto */
  border-radius: 15px;
  padding: 30px 20px;
  margin: 30px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.viral-text {
  font-family: 'Poppins', sans-serif;
  font-size: 48px; /* "VIRAL" grande e destacado */
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 2px 2px 4px rgba(185, 103, 219, 0.5);
}

.bonus-description {
  margin: 30px 0;
}

.bonus-description p {
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
  font-weight: 400;
}

.purple-keyword {
  color: #b967db;
  font-weight: 600;
}

.bonus-cta-wrapper {
  margin-top: 30px;
}

.bonus-cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #b967db 0%, #e91e63 100%); /* Botão roxo */
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 18px 40px;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(185, 103, 219, 0.4);
}

.bonus-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(185, 103, 219, 0.6);
  background: linear-gradient(135deg, #e91e63 0%, #b967db 100%);
}

.bonus-offer-text {
  font-size: 14px;
  color: #cccccc;
  font-weight: 400;
  margin: 15px 0 0 0;
}

/* ===== RESULTS SECTION ===== */
.results {
  padding: 100px 0;
  background: linear-gradient(135deg, #000000 0%, #16213e 50%, #7209b7 100%);
}

.results h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 20px;
}

.results-intro {
  font-size: 1.1rem;
  color: #e0e0e0;
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.real-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.result-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(10px);
  text-align: center;
}

.result-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.result-highlight {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #4CAF50;
  margin: 10px 0;
}

.result-growth {
  color: #4CAF50;
  font-weight: 600;
  font-size: 18px;
}

.result-extra {
  color: #b967db;
  font-size: 16px;
  margin-top: 10px;
}

.results-testimonial {
  font-size: 1.2rem;
  color: #ffffff;
  text-align: center;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto;
}

/* ===== PRICING SECTION ===== */
.pricing {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #533a71 50%, #7209b7 100%);
}

.price-card {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  padding: 50px;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.price-pill {
  display: inline-block;
  background: #b967db;
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 30px;
}

.price-old {
  display: block;
  font-size: 18px;
  color: #cccccc;
  text-decoration: line-through;
  margin-bottom: 10px;
}

.price-main {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.price-installments {
  display: block;
  font-size: 16px;
  color: #e0e0e0;
  margin-bottom: 30px;
}

/* ===== CTA BUTTONS ===== */
.cta-wrapper {
  text-align: center;
  margin: 40px 0;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #b967db 0%, #e91e63 100%);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 18px 40px;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(185, 103, 219, 0.4);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(185, 103, 219, 0.6);
  background: linear-gradient(135deg, #e91e63 0%, #b967db 100%);
}

.cta-primary {
  font-size: 20px;
  padding: 20px 50px;
}

.microcopy {
  font-size: 14px;
  color: #cccccc;
  margin-top: 15px;
}

/* ===== FINAL NOTE ===== */
.final-note {
  padding: 80px 0;
  background: linear-gradient(135deg, #232526 0%, #414345 100%);
}

.final-card {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.final-card h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
}

/* ===== FAQ SECTION ===== */
.faq {
  padding: 100px 0;
  background: linear-gradient(135deg, #000000 0%, #1a1a2e 50%, #533a71 100%);
}

.faq h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 60px;
}

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

.faq-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.faq-item summary {
  padding: 25px;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  list-style: none;
  font-size: 18px;
}

.faq-answer {
  padding: 0 25px 25px 25px;
}

.highlight-purple-text {
  color: #e0e0e0;
  line-height: 1.6;
}

/* ===== FOOTER ===== */
footer {
  background: #1a1a1a;
  padding: 40px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #cccccc;
}

.footer-nav {
  display: flex;
  gap: 30px;
}

.footer-nav a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #b967db;
}

/* ===== RESPONSIVIDADE MOBILE ===== */
/* Estilos base mobile-first */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  
  /* Hero Section Mobile */
  .hero {
    min-height: 90vh;
    padding: 80px 0 40px;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 16px;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 12px;
  }
  
  .hero-description {
    font-size: 1rem;
    line-height: 1.5;
  }
  
  .hero-image {
    max-width: 250px;
    margin: 0 auto;
  }
  
  /* Features Section Mobile */
  .features {
    padding: 60px 0;
  }
  

  
  .features h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  
  .feature-list li {
    margin-bottom: 16px;
    padding: 20px 16px;
    border-radius: 12px;
  }
  
  .feature-text {
    font-size: 16px;
    line-height: 1.4;
  }
  

  
  /* Super Bônus Card Mobile */
  .bonus {
    padding: 60px 0;
  }
  
  .new-bonus-card {
    padding: 24px 20px;
    margin: 0 16px;
    border-radius: 16px;
  }
  
  .bonus-title {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.3;
  }
  
  .viral-highlight {
    padding: 20px 16px;
    margin: 20px 0;
    border-radius: 12px;
  }
  
  .viral-text {
    font-size: 32px;
    letter-spacing: 2px;
  }
  
  .bonus-description p {
    font-size: 16px;
    line-height: 1.5;
  }
  
  .bonus-cta-button {
    width: 100%;
    max-width: 280px;
    font-size: 16px;
    padding: 16px 24px;
    min-height: 50px;
    margin: 0 auto;
    display: block;
  }
  
  .bonus-offer-text {
    font-size: 14px;
    margin-top: 12px;
  }
  
  /* Results Section Mobile */
  .results {
    padding: 60px 0;
  }
  
  .results h2 {
    font-size: 2rem;
    margin-bottom: 16px;
  }
  
  .results-intro {
    font-size: 16px;
    margin-bottom: 40px;
    padding: 0 8px;
  }
  
  .real-results-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }
  
  .result-card {
    padding: 24px 20px;
    border-radius: 16px;
  }
  
  .result-image img {
    height: 160px;
    margin-bottom: 16px;
  }
  
  .result-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }
  
  .result-highlight {
    font-size: 1.75rem;
    margin: 8px 0;
  }
  
  .result-growth {
    font-size: 16px;
  }
  
  .result-extra {
    font-size: 14px;
  }
  
  .results-testimonial {
    font-size: 16px;
    padding: 0 8px;
  }
  
  /* Pricing Section Mobile */
  .pricing {
    padding: 60px 0;
  }
  
  .price-card {
    margin: 0 16px;
    padding: 32px 24px;
    border-radius: 20px;
  }
  
  .price-pill {
    font-size: 14px;
    padding: 8px 16px;
    margin-bottom: 24px;
  }
  
  .price-old {
    font-size: 16px;
    margin-bottom: 8px;
  }
  
  .price-main {
    font-size: 2.5rem;
    margin-bottom: 8px;
  }
  
  .price-installments {
    font-size: 14px;
    margin-bottom: 24px;
  }
  
  /* CTA Buttons Mobile */
  .cta-wrapper {
    margin: 30px 0;
    padding: 0 8px;
  }
  
  .cta-button {
    font-size: 16px;
    padding: 16px 32px;
    min-height: 50px;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    display: block;
  }
  
  .cta-primary {
    font-size: 18px;
    padding: 18px 32px;
    min-height: 54px;
  }
  
  .microcopy {
    font-size: 14px;
    margin-top: 12px;
  }
  
  /* Final Note Mobile */
  .final-note {
    padding: 50px 0;
  }
  
  .final-card {
    padding: 30px 20px;
    margin: 0 16px;
    border-radius: 16px;
  }
  
  .final-card h2 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  /* FAQ Section Mobile */
  .faq {
    padding: 60px 0;
  }
  
  .faq h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  
  .faq-list {
    margin: 0 16px;
  }
  
  .faq-item {
    margin-bottom: 16px;
    border-radius: 12px;
  }
  
  .faq-item summary {
    padding: 20px 16px;
    font-size: 16px;
    line-height: 1.4;
    min-height: 60px;
    display: flex;
    align-items: center;
  }
  
  .faq-answer {
    padding: 0 16px 20px 16px;
  }
  
  .highlight-purple-text {
    font-size: 16px;
    line-height: 1.5;
  }
  
  /* Footer Mobile */
  .footer-content {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 0 16px;
  }
  
  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .footer-nav a {
    font-size: 14px;
    padding: 8px;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  

}

@media (max-width: 480px) {
  /* Container e spacing ultra-mobile */
  .container {
    padding: 0 16px;
  }
  
  /* Hero Section - smartphones pequenos */
  .hero {
    min-height: 85vh;
    padding: 70px 0 30px;
  }
  
  .hero-text h1 {
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 12px;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 10px;
    line-height: 1.3;
  }
  
  .hero-description {
    font-size: 0.95rem;
    line-height: 1.4;
  }
  
  .hero-image {
    max-width: 200px;
  }
  
  /* Features - smartphones pequenos */
  .features {
    padding: 50px 0;
  }
  
  .features h2 {
    font-size: 1.75rem;
    margin-bottom: 24px;
  }
  
  .feature-list li {
    margin-bottom: 12px;
    padding: 16px 12px;
  }
  
  .feature-text {
    font-size: 15px;
  }
  
  .check-icon {
    font-size: 18px;
    margin-right: 12px;
  }
  

  
  /* Super Bônus Card - smartphones pequenos */
  .bonus {
    padding: 50px 0;
  }
  
  .new-bonus-card {
    padding: 20px 16px;
    margin: 0 12px;
  }
  
  .bonus-title {
    font-size: 16px;
    margin-bottom: 16px;
  }
  
  .viral-highlight {
    padding: 16px 12px;
    margin: 16px 0;
  }
  
  .viral-text {
    font-size: 26px;
    letter-spacing: 1px;
  }
  
  .bonus-description p {
    font-size: 15px;
    line-height: 1.4;
  }
  
  .bonus-cta-button {
    max-width: 260px;
    font-size: 15px;
    padding: 14px 20px;
    min-height: 48px;
  }
  
  /* Results - smartphones pequenos */
  .results {
    padding: 50px 0;
  }
  
  .results h2 {
    font-size: 1.75rem;
  }
  
  .results-intro {
    font-size: 15px;
    padding: 0 4px;
  }
  
  .real-results-grid {
    gap: 20px;
  }
  
  .result-card {
    padding: 20px 16px;
  }
  
  .result-image img {
    height: 140px;
  }
  
  .result-card h3 {
    font-size: 16px;
  }
  
  .result-highlight {
    font-size: 1.5rem;
  }
  
  .result-growth {
    font-size: 15px;
  }
  
  .result-extra {
    font-size: 13px;
  }
  
  .results-testimonial {
    font-size: 15px;
  }
  
  /* Pricing - smartphones pequenos */
  .pricing {
    padding: 50px 0;
  }
  
  .price-card {
    margin: 0 12px;
    padding: 28px 20px;
  }
  
  .price-pill {
    font-size: 13px;
    padding: 6px 14px;
  }
  
  .price-old {
    font-size: 15px;
  }
  
  .price-main {
    font-size: 2.25rem;
  }
  
  .price-installments {
    font-size: 13px;
  }
  
  /* CTAs - smartphones pequenos */
  .cta-button {
    font-size: 15px;
    padding: 14px 28px;
    min-height: 48px;
    max-width: 260px;
  }
  
  .cta-primary {
    font-size: 16px;
    padding: 16px 28px;
    min-height: 52px;
  }
  
  .microcopy {
    font-size: 13px;
  }
  
  /* Final Note - smartphones pequenos */
  .final-note {
    padding: 40px 0;
  }
  
  .final-card {
    padding: 24px 16px;
    margin: 0 12px;
  }
  
  .final-card h2 {
    font-size: 1.25rem;
  }
  
  /* FAQ - smartphones pequenos */
  .faq {
    padding: 50px 0;
  }
  
  .faq h2 {
    font-size: 1.75rem;
    margin-bottom: 30px;
  }
  
  .faq-list {
    margin: 0 12px;
  }
  
  .faq-item {
    margin-bottom: 12px;
  }
  
  .faq-item summary {
    padding: 16px 12px;
    font-size: 15px;
    min-height: 56px;
  }
  
  .faq-answer {
    padding: 0 12px 16px 12px;
  }
  
  .highlight-purple-text {
    font-size: 15px;
  }
  
  /* Footer - smartphones pequenos */
  footer {
    padding: 30px 0;
  }
  
  .footer-content {
    gap: 12px;
    padding: 0 12px;
  }
  
  .footer-nav {
    gap: 16px;
  }
  
  .footer-nav a {
    font-size: 13px;
    padding: 6px;
    min-height: 40px;
  }
  

}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

[data-animation="fade-up"] {
  animation: fadeUp 0.8s ease-out;
}

/* ===== OTIMIZAÇÕES ADICIONAIS MOBILE ===== */

/* Telas muito pequenas (320px - 360px) */
@media (max-width: 360px) {
  .container {
    padding: 0 12px;
  }
  
  .hero-text h1 {
    font-size: 1.75rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-description {
    font-size: 0.9rem;
  }
  
  .features h2 {
    font-size: 1.5rem;
  }
  
  .feature-text {
    font-size: 14px;
  }
  
  .viral-text {
    font-size: 22px;
  }
  
  .bonus-cta-button {
    max-width: 240px;
    font-size: 14px;
    padding: 12px 16px;
    min-height: 44px;
  }
  
  .cta-button {
    max-width: 240px;
    font-size: 14px;
    padding: 12px 24px;
    min-height: 44px;
  }
  
  .price-main {
    font-size: 2rem;
  }
}

/* Melhorias gerais para touch e performance mobile */
@media (max-width: 768px) {
  
  /* Touch-friendly adjustments */
  a, button, .faq-item summary {
    -webkit-tap-highlight-color: rgba(185, 103, 219, 0.2);
    tap-highlight-color: rgba(185, 103, 219, 0.2);
  }
  
  /* Smooth scrolling otimizado */
  html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }
  
  /* Otimização de performance para animações */
  .particle, .shape, .dynamic-particle {
    will-change: transform;
    transform-style: preserve-3d;
    backface-visibility: hidden;
  }
  
  /* Reduzir partículas em dispositivos mobile */
  .particle:nth-child(n+7) {
    display: none;
  }
  
  .shape:nth-child(n+4) {
    display: none;
  }
  
  /* Header sticky otimizado para mobile */
  .sticky-header {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  
  .logo {
    font-size: 20px;
  }
  
  /* Imagens otimizadas para mobile */
  img {
    max-width: 100%;
    height: auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
  
  /* FAQ melhorado para touch */
  .faq-item {
    position: relative;
  }
  
  .faq-item summary {
    position: relative;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
  }
  
  .faq-item summary::-webkit-details-marker {
    display: none;
  }
  
  .faq-item summary::after {
    content: '+';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #b967db;
    transition: transform 0.3s ease;
  }
  
  .faq-item[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
  }
  
  /* Otimizações de scroll */
  .faq-answer {
    animation: slideDown 0.3s ease-out;
  }
  
  @keyframes slideDown {
    from {
      opacity: 0;
      max-height: 0;
    }
    to {
      opacity: 1;
      max-height: 200px;
    }
  }
  
  /* Melhorar contraste em telas mobile */
  .feature-text strong,
  .purple-keyword {
    color: #e4a5ff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  }
  
  /* Ajustes para evitar zoom em inputs */
  input, select, textarea {
    font-size: 16px;
  }
  
  /* Menu hamburguer se necessário */
  .mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    color: #b967db;
    font-size: 24px;
    cursor: pointer;
  }
  
  /* Otimizações de performance */
  * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  /* Scroll snap para melhor navegação */
  main {
    scroll-snap-type: y proximity;
  }
  
  section {
    scroll-snap-align: start;
  }
  
  /* Dark mode friendly adjustments */
  @media (prefers-color-scheme: dark) {
    .result-image img {
      filter: brightness(0.9);
    }
  }
  

}

[data-animation="fade-up"] {
  animation: fadeUp 0.8s ease-out;
}

