/* Estilos para a página de vendas */
:root {
  --primary-color: #ff3333;
  --secondary-color: #222;
  --accent-color: #ff0000;
  --text-color: #f5f5f5;
  --dark-bg: #111;
  --darker-bg: #000;
  --highlight: #ff6666;
  --price-old: #888;
  --price-new: #ff3333;
}

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

body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--darker-bg);
  color: var(--text-color);
  line-height: 1.6;
}

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

header {
  background-color: var(--dark-bg);
  padding: 20px 0;
  text-align: center;
  border-bottom: 1px solid var(--accent-color);
}

.countdown-timer {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary-color);
  margin: 10px 0;
}

.countdown-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--text-color);
}

.hero {
  background-color: var(--darker-bg);
  padding: 60px 0;
  text-align: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/smoke-bg.jpg') center/cover no-repeat;
  opacity: 0.2;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-transform: uppercase;
  font-weight: 900;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--text-color);
}

.hero-image {
  max-width: 100%;
  margin: 30px auto;
  border: 3px solid var(--accent-color);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

.benefits {
  padding: 60px 0;
  background-color: var(--dark-bg);
}

.benefits h2 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.benefit-item {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 30px;
  border-radius: 5px;
  text-align: center;
  border: 1px solid var(--secondary-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 0, 0, 0.2);
}

.benefit-item i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.benefit-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--text-color);
}

.testimonials {
  padding: 60px 0;
  background-color: var(--darker-bg);
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
}

.testimonial-item {
  background-color: rgba(34, 34, 34, 0.7);
  padding: 30px;
  border-radius: 5px;
  margin-bottom: 30px;
  position: relative;
  border-left: 4px solid var(--primary-color);
}

.testimonial-item p {
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  font-weight: bold;
  color: var(--highlight);
}

.offer {
  padding: 80px 0;
  background-color: var(--dark-bg);
  text-align: center;
  position: relative;
}

.offer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/smoke-bg.jpg') center/cover no-repeat;
  opacity: 0.1;
  z-index: 0;
}

.offer-content {
  position: relative;
  z-index: 1;
}

.offer h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.price-container {
  margin: 40px 0;
}

.price-old {
  font-size: 2rem;
  color: var(--price-old);
  text-decoration: line-through;
  display: block;
  margin-bottom: 10px;
}

.price-new {
  font-size: 4rem;
  color: var(--price-new);
  font-weight: bold;
}

.bonus {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 30px;
  border-radius: 5px;
  margin: 40px auto;
  max-width: 800px;
  border: 2px dashed var(--highlight);
}

.bonus h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--highlight);
}

.cta-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  font-size: 1.5rem;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.cta-button:hover {
  background-color: var(--highlight);
  transform: scale(1.05);
  box-shadow: 0 7px 20px rgba(255, 0, 0, 0.4);
}

.pix-info {
  margin-top: 20px;
  font-size: 1.2rem;
}

.pix-icon {
  width: 30px;
  vertical-align: middle;
  margin-right: 10px;
}

.guarantee {
  padding: 60px 0;
  background-color: var(--darker-bg);
  text-align: center;
}

.guarantee h2 {
  margin-bottom: 30px;
  color: var(--primary-color);
}

.guarantee-badge {
  width: 150px;
  margin: 0 auto 30px;
}

.faq {
  padding: 60px 0;
  background-color: var(--dark-bg);
}

.faq h2 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
}

.faq-item {
  margin-bottom: 20px;
  border: 1px solid var(--secondary-color);
  border-radius: 5px;
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  background-color: rgba(34, 34, 34, 0.9);
  cursor: pointer;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: rgba(0, 0, 0, 0.5);
}

.faq-item.active .faq-question::after {
  content: '-';
}

.faq-item.active .faq-answer {
  padding: 20px;
  max-height: 1000px;
}

.final-cta {
  padding: 80px 0;
  background-color: var(--darker-bg);
  text-align: center;
  position: relative;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/smoke-bg.jpg') center/cover no-repeat;
  opacity: 0.2;
  z-index: 0;
}

.final-cta-content {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: var(--primary-color);
}

.countdown {
  margin: 30px 0;
  font-size: 2rem;
  color: var(--highlight);
}

footer {
  background-color: var(--darker-bg);
  padding: 30px 0;
  text-align: center;
  border-top: 1px solid var(--secondary-color);
}

.footer-links {
  margin-bottom: 20px;
}

.footer-links a {
  color: var(--text-color);
  margin: 0 10px;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.copyright {
  font-size: 0.9rem;
  color: #666;
}

/* Efeitos especiais */
.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 51, 51, 0.7);
  }
  
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(255, 51, 51, 0);
  }
  
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 51, 51, 0);
  }
}

.shake {
  animation: shake 0.5s ease-in-out;
}

@keyframes shake {
  0%, 100% {transform: translateX(0);}
  10%, 30%, 50%, 70%, 90% {transform: translateX(-5px);}
  20%, 40%, 60%, 80% {transform: translateX(5px);}
}

/* Responsividade */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .price-old {
    font-size: 1.5rem;
  }
  
  .price-new {
    font-size: 3rem;
  }
  
  .cta-button {
    font-size: 1.2rem;
    padding: 12px 30px;
  }
}

/* Efeitos de hover */
.hover-glow:hover {
  text-shadow: 0 0 10px var(--primary-color);
}

/* Elementos de urgência */
.urgency-tag {
  display: inline-block;
  background-color: var(--accent-color);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

/* Imagem de comparação */
.comparison-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.comparison-item {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.comparison-item img {
  max-width: 100%;
  border-radius: 5px;
  margin-bottom: 10px;
}

.comparison-item h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.vs {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-color);
  margin: 0 20px;
}

/* Efeito de scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Botão de PIX */
.pix-button {
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px auto;
  max-width: 400px;
  padding: 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pix-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.pix-button img {
  width: 40px;
  margin-right: 15px;
}

.pix-button span {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}

/* Contador de vagas */
.spots-counter {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 15px;
  border-radius: 5px;
  margin: 20px auto;
  max-width: 300px;
  border: 1px solid var(--accent-color);
}

.spots-counter p {
  margin: 0;
  font-size: 1.1rem;
}

.spots-counter strong {
  color: var(--primary-color);
}

/* Efeito de destaque para o preço */
.price-highlight {
  position: relative;
  display: inline-block;
}

.price-highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  animation: width-pulse 2s infinite;
}

@keyframes width-pulse {
  0%, 100% {width: 0;}
  50% {width: 100%;}
}

/* Efeito de fumaça */
.smoke-effect {
  position: relative;
  overflow: hidden;
}

.smoke-effect::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: smoke 3s infinite;
}

@keyframes smoke {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
