/* Reset e Variáveis CSS - Compatível com Chrome */
:root {
  --primary-green: #1B4121;
  --accent-gold: #D4A73B;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --dark-gray: #333333;
  --border-radius: 12px;
  --border-radius-large: 20px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--white);
  background: var(--primary-green);
  overflow-x: hidden;
}

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

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

/* Botões */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-gold), #e6b84a);
  color: var(--primary-green);
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  background: linear-gradient(135deg, #e6b84a, var(--accent-gold));
}

.btn-large {
  padding: 1.5rem 3rem;
  font-size: 1.2rem;
  border-radius: var(--border-radius-large);
}

.btn-secondary {
  background: transparent;
  color: var(--accent-gold);
  border: 2px solid var(--accent-gold);
}

.btn-secondary:hover {
  background: var(--accent-gold);
  color: var(--primary-green);
}

/* Estilos para botão de login */
.login-cta {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.login-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
  font-weight: 400;
}

.btn-login {
  padding: 0.8rem 1.8rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.3px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.btn-login:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212, 167, 59, 0.3);
}

/* Animações simples - compatíveis com Chrome */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.pulse {
  animation: pulse 2s infinite;
}

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

.bounce {
  animation: bounce 2s infinite;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: linear-gradient(135deg, var(--primary-green) 0%, #2a5a2f 100%);
}

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

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.highlight {
  color: var(--accent-gold);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.subtitle {
  display: block;
  font-size: 2rem;
  margin-top: 0.5rem;
  color: var(--white);
}

.hero-description {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.cta-container {
  margin-bottom: 3rem;
}

.cta-subtitle {
  margin-top: 1rem;
  font-size: 1rem;
  opacity: 0.8;
}

.social-proof {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.proof-item {
  text-align: center;
}

.proof-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-gold);
}

.proof-text {
  font-size: 0.9rem;
  opacity: 0.8;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  opacity: 0.7;
}

.scroll-arrow {
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}

/* Seção de Urgência */
.urgency-section {
  background: var(--accent-gold);
  color: var(--primary-green);
  padding: 1.5rem 0;
}

.urgency-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.urgency-icon {
  font-size: 2rem;
}

.urgency-text {
  flex: 1;
  font-weight: 600;
}

.countdown {
  display: flex;
  gap: 1rem;
}

.countdown-item {
  text-align: center;
  background: var(--primary-green);
  color: var(--accent-gold);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  min-width: 80px;
}

.countdown-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
}

.countdown-label {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* Seções Gerais */
section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--white);
}

/* Como Funciona - CARDS SEMPRE VISÍVEIS NO CHROME */
.steps-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  visibility: visible !important;
  opacity: 1 !important;
}

.step-card {
  /* FORÇAR VISIBILIDADE NO CHROME */
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: none !important;
  
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius-large);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  background: rgba(255, 255, 255, 0.15);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-gold);
  color: var(--primary-green);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
}

.step-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.step-card h3 {
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.cta-secondary {
  text-align: center;
  margin-top: 3rem;
}

/* Benefícios Cripto - CARDS SEMPRE VISÍVEIS NO CHROME */
.crypto-benefits {
  background: linear-gradient(135deg, #2a5a2f 0%, var(--primary-green) 100%);
}

.benefits-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  visibility: visible !important;
  opacity: 1 !important;
}

.benefit-card {
  /* FORÇAR VISIBILIDADE NO CHROME */
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: none !important;
  
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  background: rgba(255, 255, 255, 0.15);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.benefit-card h3 {
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.crypto-icons {
  text-align: center;
  margin-top: 3rem;
}

.crypto-icons h3 {
  margin-bottom: 2rem;
  color: var(--accent-gold);
}

.crypto-list {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.crypto-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: var(--border-radius);
  background: rgba(255, 255, 255, 0.1);
  transition: var(--transition);
  min-width: 100px;
}

.crypto-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.crypto-icon-btc,
.crypto-icon-eth,
.crypto-icon-usdt,
.crypto-icon-ltc {
  font-size: 2rem;
  font-weight: 800;
}

.crypto-icon-btc { color: #f7931a; }
.crypto-icon-eth { color: #627eea; }
.crypto-icon-usdt { color: #26a17b; }
.crypto-icon-ltc { color: #bfbbbb; }

/* Depoimentos - CARDS SEMPRE VISÍVEIS NO CHROME */
.testimonials {
  background: var(--primary-green);
}

.testimonials-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  visibility: visible !important;
  opacity: 1 !important;
}

.testimonial-card {
  /* FORÇAR VISIBILIDADE NO CHROME */
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: none !important;
  
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius);
  padding: 2rem;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  background: rgba(255, 255, 255, 0.15);
}

.stars {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--accent-gold);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--accent-gold);
  color: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
}

.author-info strong {
  display: block;
  color: var(--accent-gold);
}

.author-info span {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* FAQ - SEMPRE VISÍVEL NO CHROME */
.faq {
  background: linear-gradient(135deg, #2a5a2f 0%, var(--primary-green) 100%);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.faq-item {
  /* FORÇAR VISIBILIDADE NO CHROME */
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: none !important;
  
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  transition: var(--transition);
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.1);
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: 300;
  transition: var(--transition);
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

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

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

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  opacity: 0.9;
}

/* CTA Final */
.final-cta {
  background: linear-gradient(135deg, var(--primary-green) 0%, #2a5a2f 100%);
  text-align: center;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-description {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.offer-highlight {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.offer-item {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid var(--accent-gold);
  border-radius: var(--border-radius-large);
  padding: 2rem;
  text-align: center;
  min-width: 200px;
}

.offer-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.offer-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.offer-plus {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-gold);
}

.guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  opacity: 0.9;
}

.guarantee-icon {
  font-size: 2rem;
  color: var(--accent-gold);
}

/* Footer */
.footer {
  background: #0f2912;
  padding: 3rem 0 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-section h4 {
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

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

.footer-section ul li a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.8;
  transition: var(--transition);
}

.footer-section ul li a:hover {
  opacity: 1;
  color: var(--accent-gold);
}

.security-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.badge {
  background: var(--accent-gold);
  color: var(--primary-green);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--accent-gold);
  color: var(--primary-green);
  border-radius: var(--border-radius-large);
  padding: 1rem;
  box-shadow: var(--shadow-hover);
  z-index: 1000;
  max-width: 300px;
  animation: slideInRight 0.5s ease;
}

@keyframes slideInRight {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

.floating-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.floating-text {
  flex: 1;
}

.floating-text strong {
  display: block;
  font-size: 0.9rem;
}

.floating-text span {
  font-size: 0.8rem;
  opacity: 0.8;
}

.floating-btn {
  background: var(--primary-green);
  color: var(--accent-gold);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.floating-btn:hover {
  transform: scale(1.05);
}

.floating-close {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--primary-green);
  color: var(--accent-gold);
  border: none;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  cursor: pointer;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Notificações de Atividade */
.activity-notifications {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1001;
  max-width: 300px;
}

.activity-notification {
  background: var(--accent-gold);
  color: var(--primary-green);
  padding: 1rem;
  border-radius: var(--border-radius);
  margin-bottom: 0.5rem;
  box-shadow: var(--shadow);
  transform: translateX(-100%);
  opacity: 0;
  transition: all 0.5s ease;
}

.activity-notification.show {
  transform: translateX(0);
  opacity: 1;
}

.activity-notification p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
}

.activity-notification small {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* CORREÇÕES ESPECÍFICAS PARA CHROME */
.chrome-visible {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: none !important;
  will-change: auto !important;
  backface-visibility: visible !important;
}

.chrome-fixed {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: none !important;
}

/* Remover animações problemáticas no Chrome */
.step-card *,
.benefit-card *,
.testimonial-card *,
.faq-item * {
  animation: none !important;
  transition: none !important;
}

/* Responsividade */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .subtitle {
    font-size: 1.5rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .urgency-content {
    flex-direction: column;
    text-align: center;
  }
  
  .countdown {
    justify-content: center;
  }
  
  .social-proof {
    gap: 1rem;
  }
  
  .proof-number {
    font-size: 1.5rem;
  }
  
  .offer-highlight {
    flex-direction: column;
    gap: 1rem;
  }
  
  .offer-plus {
    transform: rotate(90deg);
  }
  
  .floating-cta {
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    border-top-left-radius: var(--border-radius-large);
    border-top-right-radius: var(--border-radius-large);
  }
  
  .activity-notifications {
    left: 10px;
    right: 10px;
    max-width: none;
  }
  
  .steps-grid,
  .benefits-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .crypto-list {
    gap: 1rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  
  .btn-login {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
    width: 100%;
    max-width: 280px;
  }
  
  .login-cta {
    margin-top: 1.5rem;
    padding-top: 1rem;
  }
  
  .login-text {
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
  }
  
  .countdown-item {
    min-width: 60px;
    padding: 0.3rem 0.5rem;
  }
  
  .countdown-number {
    font-size: 1.2rem;
  }
  
  .step-card,
  .benefit-card,
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .offer-item {
    padding: 1.5rem;
    min-width: 150px;
  }
}

/* Acessibilidade */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Print styles */
@media print {
  .floating-cta,
  .activity-notifications,
  .scroll-indicator {
    display: none !important;
  }
  
  .hero {
    min-height: auto;
    padding: 2rem 0;
  }
  
  section {
    padding: 2rem 0;
  }
}



/* Estilos para Logo */
.logo-image {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Seção Visual Promocional */
.promotional-visuals {
  padding: 4rem 0;
  background: linear-gradient(135deg, #2a5a2f 0%, var(--primary-green) 50%, #1a3a1f 100%);
  position: relative;
}

.promotional-visuals::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

.promo-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
  margin: 3rem 0;
}

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

.promo-banner {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius-large);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.promo-banner:hover {
  transform: scale(1.02);
}

.promo-secondary {
  display: grid;
  gap: 2rem;
}

.promo-item {
  position: relative;
  border-radius: var(--border-radius-large);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.promo-item:hover {
  transform: translateY(-5px);
}

.promo-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.promo-item:hover .promo-image {
  transform: scale(1.05);
}

.promo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 2rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.promo-item:hover .promo-overlay {
  transform: translateY(0);
}

.promo-overlay h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--accent-gold);
}

.promo-overlay p {
  font-size: 0.95rem;
  margin: 0;
  opacity: 0.9;
}

.promo-cta {
  text-align: center;
  margin-top: 3rem;
}

/* CTA Final com Imagem */
.final-cta-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.final-promo-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.promo-vertical {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius-large);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.promo-vertical:hover {
  transform: scale(1.02) rotate(1deg);
}

/* Responsividade para Imagens */
@media (max-width: 1024px) {
  .promo-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .promo-main {
    order: 2;
  }
  
  .promo-secondary {
    order: 1;
    grid-template-columns: 1fr 1fr;
  }
  
  .final-cta-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .final-promo-image {
    order: 2;
  }
  
  .cta-content {
    order: 1;
  }
}

@media (max-width: 768px) {
  .promotional-visuals {
    padding: 2rem 0;
  }
  
  .promo-grid {
    gap: 1.5rem;
  }
  
  .promo-secondary {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .promo-overlay {
    position: static;
    transform: none;
    background: rgba(0, 0, 0, 0.8);
    padding: 1rem;
  }
  
  .promo-vertical {
    max-width: 80%;
  }
  
  .logo-image {
    max-width: 150px;
  }
}

@media (max-width: 480px) {
  .promo-overlay h3 {
    font-size: 1.1rem;
  }
  
  .promo-overlay p {
    font-size: 0.9rem;
  }
  
  .promo-vertical {
    max-width: 90%;
  }
  
  .logo-image {
    max-width: 120px;
  }
}

/* Otimizações de Performance para Imagens */
.promo-image,
.promo-vertical,
.logo-image {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* Lazy Loading Placeholder */
.promo-image[loading="lazy"],
.promo-vertical[loading="lazy"] {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Acessibilidade para Imagens */
@media (prefers-reduced-motion: reduce) {
  .promo-banner,
  .promo-image,
  .promo-vertical {
    transition: none;
  }
  
  .promo-banner:hover,
  .promo-item:hover,
  .promo-vertical:hover {
    transform: none;
  }
  
  .promo-overlay {
    transform: none;
    position: static;
    background: rgba(0, 0, 0, 0.8);
  }
}

/* Alto Contraste para Imagens */
@media (prefers-contrast: high) {
  .promo-image,
  .promo-vertical,
  .logo-image {
    filter: contrast(1.2) brightness(1.1);
  }
  
  .promo-overlay {
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid var(--accent-gold);
  }
}



/* ===== ESTILOS ESPECÍFICOS PARA iOS E NOTIFICAÇÕES ===== */

/* Status de Conexão */
.connection-status {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #ff6b6b;
  color: white;
  text-align: center;
  padding: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 10000;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.connection-status.offline {
  transform: translateY(0);
}

/* Notificações In-App */
.in-app-notifications {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  max-width: 350px;
  pointer-events: none;
}

.in-app-notification {
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  margin-bottom: 10px;
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: auto;
  border-left: 4px solid var(--accent-gold);
}

.in-app-notification.show {
  transform: translateX(0);
  opacity: 1;
}

.in-app-notification.info { border-left-color: #3498db; }
.in-app-notification.success { border-left-color: #2ecc71; }
.in-app-notification.warning { border-left-color: #f39c12; }
.in-app-notification.error { border-left-color: #e74c3c; }
.in-app-notification.promo { 
  border-left-color: var(--accent-gold);
  background: linear-gradient(135deg, #fff 0%, #fffbf0 100%);
}
.in-app-notification.reminder { border-left-color: #9b59b6; }

.notification-content {
  display: flex;
  align-items: flex-start;
  padding: 16px;
  gap: 12px;
}

.notification-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.notification-text {
  flex: 1;
  min-width: 0;
}

.notification-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark-gray);
  margin-bottom: 4px;
}

.notification-message {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.4;
}

.notification-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: #999;
  cursor: pointer;
  padding: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.notification-close:hover {
  background: #f0f0f0;
  color: #666;
}

/* Banner de Instalação PWA */
.pwa-install-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary-green) 0%, #2a5a2f 100%);
  color: white;
  padding: 16px;
  z-index: 9998;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  display: none;
}

.pwa-install-banner.show {
  transform: translateY(0);
}

.pwa-banner-content {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.pwa-banner-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.pwa-banner-text {
  flex: 1;
  min-width: 0;
}

.pwa-banner-text h3 {
  margin: 0 0 4px 0;
  font-size: 1.1rem;
  font-weight: 700;
}

.pwa-banner-text p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.9;
}

.pwa-banner-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.btn-small {
  padding: 8px 16px;
  font-size: 0.85rem;
  border-radius: 6px;
}

/* Badge de Notificação */
.notification-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #e74c3c;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  border: 2px solid white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.pulse-animation {
  animation: pulse-badge 2s infinite;
}

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

/* Animação de Atenção */
.attention-pulse {
  animation: attention-pulse 2s ease-in-out;
}

@keyframes attention-pulse {
  0%, 100% { transform: scale(1); }
  25% { transform: scale(1.05); box-shadow: 0 0 20px rgba(212, 167, 59, 0.6); }
  50% { transform: scale(1.1); box-shadow: 0 0 30px rgba(212, 167, 59, 0.8); }
  75% { transform: scale(1.05); box-shadow: 0 0 20px rgba(212, 167, 59, 0.6); }
}

/* Contador Regressivo Flutuante */
.countdown-floating {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(27, 65, 33, 0.95);
  color: white;
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  z-index: 9997;
  font-size: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.countdown-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.countdown-label {
  font-size: 0.75rem;
  opacity: 0.9;
  text-align: center;
}

.countdown-timer {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent-gold);
  text-align: center;
}

/* Seção Promocional Visual */
.promotional-visuals {
  background: linear-gradient(135deg, #2a5a2f 0%, var(--primary-green) 100%);
  padding: 4rem 0;
}

.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.promo-main {
  text-align: center;
}

.promo-image {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-large);
  box-shadow: var(--shadow-hover);
  transition: var(--transition);
}

.promo-banner {
  max-width: 400px;
}

.promo-secondary {
  display: grid;
  gap: 2rem;
}

.promo-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
}

.promo-sports,
.promo-combo {
  transition: var(--transition);
}

.promo-item:hover .promo-image {
  transform: scale(1.05);
}

.promo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 2rem;
  transform: translateY(100%);
  transition: var(--transition);
}

.promo-item:hover .promo-overlay {
  transform: translateY(0);
}

.promo-overlay h3 {
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

.promo-cta {
  text-align: center;
  margin-top: 3rem;
}

/* CTA Final com Imagem */
.final-cta-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.final-promo-image {
  text-align: center;
}

.promo-vertical {
  max-width: 300px;
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-large);
  box-shadow: var(--shadow-hover);
  transition: var(--transition);
}

.promo-vertical:hover {
  transform: rotate(2deg) scale(1.05);
}

.cta-content {
  text-align: left;
}

/* Estatísticas da Prova Social */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-gold);
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Contador Principal */
.countdown-main {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.countdown-item {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid var(--accent-gold);
  border-radius: var(--border-radius);
  padding: 1.5rem 1rem;
  text-align: center;
  min-width: 100px;
}

.countdown-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-gold);
  display: block;
  line-height: 1;
}

.countdown-separator {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-gold);
  display: flex;
  align-items: center;
}

/* Responsividade iOS */
@media (max-width: 768px) {
  .in-app-notifications {
    top: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
  }
  
  .pwa-banner-content {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .countdown-floating {
    bottom: 10px;
    right: 10px;
    padding: 8px 12px;
  }
  
  .promo-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .final-cta-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .countdown-main {
    gap: 0.5rem;
  }
  
  .countdown-item {
    padding: 1rem 0.5rem;
    min-width: 80px;
  }
  
  .countdown-number {
    font-size: 2rem;
  }
}

/* Melhorias para Safari iOS */
@supports (-webkit-touch-callout: none) {
  .in-app-notification {
    -webkit-backdrop-filter: blur(10px);
  }
  
  .countdown-floating {
    -webkit-backdrop-filter: blur(10px);
  }
}

/* Modo Escuro iOS */
@media (prefers-color-scheme: dark) {
  .in-app-notification {
    background: rgba(44, 44, 46, 0.95);
    color: white;
  }
  
  .notification-title {
    color: white;
  }
  
  .notification-message {
    color: rgba(255, 255, 255, 0.8);
  }
}

/* Redução de Movimento para Acessibilidade */
@media (prefers-reduced-motion: reduce) {
  .in-app-notification,
  .pwa-install-banner,
  .countdown-floating {
    transition: none;
  }
  
  .pulse-animation,
  .attention-pulse {
    animation: none;
  }
}

/* Correção para Viewport iOS */
@supports (padding: max(0px)) {
  .pwa-install-banner {
    padding-bottom: max(16px, env(safe-area-inset-bottom));
  }
  
  .countdown-floating {
    bottom: max(20px, calc(20px + env(safe-area-inset-bottom)));
  }
}

/* PWA em Modo Standalone */
@media (display-mode: standalone) {
  .pwa-install-banner {
    display: none !important;
  }
  
  .countdown-floating {
    bottom: 40px;
  }
}

/* Otimização para Touch iOS */
.btn-primary,
.btn-secondary,
.floating-btn,
.faq-question,
.notification-close {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

