body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  color: #fff;
  line-height: 1.6;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
}

/* Header */
.header {
  text-align: center;
  padding: 2rem 0;
}

.logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
  letter-spacing: 1px;
}

.domain {
  font-size: 2.5rem;
  opacity: 0.85;
}

.highlight {
  color: #FFD700;
  position: relative;
}

.highlight::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  bottom: -5px;
  left: 0;
  background-color: #FFD700;
  transform: scaleX(0);
  animation: highlightAnimate 1.5s ease-in-out forwards;
}

@keyframes highlightAnimate {
  to { transform: scaleX(1); }
}

.subtitle {
  font-size: 1.4rem;
  color: #ccc;
  margin-top: 0;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 3rem 0;
  position: relative;
}

.badge {
  background: #FFD700;
  color: #000;
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: bold;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: shine 3s infinite;
}

@keyframes shine {
  to { left: 100%; }
}

.hero-title {
  font-size: 2.5rem;
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero-text {
  font-size: 1.2rem;
  margin: 1rem auto 2.5rem;
  max-width: 800px;
  color: #e0e0e0;
}

/* Stats */
.stats-container {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.stat {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 1.5rem;
  min-width: 180px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: #FFD700;
  display: block;
  line-height: 1;
}

.stat-text {
  font-size: 0.9rem;
  color: #ccc;
  margin-top: 0.5rem;
  display: block;
}

#countdown {
  font-size: 2rem;
  font-weight: bold;
  color: #FFD700;
  font-family: 'Orbitron', sans-serif;
}

/* CTA Button */
.cta-button {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #000;
  padding: 1.2rem 2.5rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 7px 20px rgba(255, 215, 0, 0.5);
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: all 0.6s;
}

.cta-button:hover::before {
  left: 100%;
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7); }
  70% { box-shadow: 0 0 0 20px rgba(255, 215, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
}

.feature {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 215, 0, 0.3);
}

.icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #FFD700;
  display: block;
}

.feature h3 {
  font-size: 1.4rem;
  margin-top: 0;
  margin-bottom: 1rem;
}

.feature p {
  margin: 0;
  color: #ccc;
}

/* Testimonials */
.testimonials {
  padding: 4rem 0;
  text-align: center;
}

.testimonials h2 {
  font-size: 2rem;
  margin-bottom: 2.5rem;
}

.testimonial-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 12px;
  position: relative;
}

.testimonial::before {
  content: """;
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 5rem;
  color: rgba(255, 215, 0, 0.2);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial p {
  position: relative;
  z-index: 1;
}

.author {
  font-style: italic;
  color: #FFD700;
  margin-top: 1.5rem;
}

/* Urgency Section */
.urgency {
  padding: 4rem 0;
}

.urgency-container {
  background: linear-gradient(135deg, rgba(40, 44, 52, 0.8), rgba(17, 23, 35, 0.8));
  border-radius: 15px;
  padding: 3rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.urgency h2 {
  font-size: 2rem;
  margin-top: 0;
  color: #FFD700;
}

.offer-box {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  padding: 2rem;
  margin-top: 2rem;
  position: relative;
  border: 1px dashed rgba(255, 215, 0, 0.5);
}

.offer-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: #FF4500;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: bold;
  font-size: 0.9rem;
  transform: rotate(5deg);
}

.offer-box h3 {
  margin-top: 0;
  font-size: 1.6rem;
}

/* FAQ Section */
.faq {
  padding: 4rem 0;
}

.faq h2 {
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 2rem;
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.acc-item {
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.acc-header {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.2rem;
  cursor: pointer;
  font-weight: bold;
  position: relative;
  transition: background 0.3s;
}

.acc-header:hover {
  background: rgba(255, 255, 255, 0.1);
}

.acc-header::after {
  content: "+";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
}

.acc-item.active .acc-header::after {
  content: "-";
}

.acc-content {
  padding: 0 1.2rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-out;
  opacity: 0;
}

.acc-item.active .acc-content {
  max-height: 500px; /* Aumentado para comportar conteúdos maiores */
  padding: 1.2rem;
  opacity: 1;
}

/* CTA Final */
.cta-final {
  text-align: center;
  padding: 4rem 0;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  margin: 3rem 0;
}

.cta-final h2 {
  font-size: 2.2rem;
  margin-top: 0;
}

.cta-final p {
  max-width: 700px;
  margin: 1.5rem auto 2.5rem;
  font-size: 1.2rem;
}

/* Footer */
footer {
  padding: 3rem 0 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer-logo h2 {
  font-size: 2.5rem;
  margin: 0;
}

.footer-logo p {
  margin: 0.5rem 0 0;
  color: #ccc;
}

.footer-contact {
  color: #ccc;
}

.footer-contact p {
  margin: 0.5rem 0;
}

.footer-contact i {
  color: #FFD700;
  margin-right: 10px;
}

.copyright {
  text-align: center;
  color: #888;
  font-size: 0.9rem;
  margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .stats-container {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .logo {
    font-size: 3rem;
  }
  
  .domain {
    font-size: 1.8rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.feature, .testimonial, .acc-item, .stat {
  animation: fadeIn 0.8s ease-out forwards;
}

.feature:nth-child(1) { animation-delay: 0.1s; }
.feature:nth-child(2) { animation-delay: 0.3s; }
.feature:nth-child(3) { animation-delay: 0.5s; }
.feature:nth-child(4) { animation-delay: 0.7s; }