/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background: #000000;
  overflow-x: hidden;
}

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

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

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
}

p {
  margin-bottom: 1rem;
  font-size: clamp(1rem, 2vw, 1.1rem);
}

/* Simplified gradient for highlight text */
.highlight {
  color: #8b5cf6;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

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

/* Buttons */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #8b5cf6;
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.cta-button:hover {
  background: #7c3aed;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.cta-button.primary {
  background: #8b5cf6;
}

.pulse {
  animation: pulse 2s infinite;
}

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

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #25d366;
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-button:hover {
  background: #128c7e;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 280px;
  height: 100vh;
  background: #1a1a2e;
  z-index: 1000;
  transition: left 0.3s ease;
  padding: 2rem 0;
}

.mobile-nav.active {
  left: 0;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  margin-bottom: 2rem;
}

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

.mobile-nav-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-nav-links {
  list-style: none;
}

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

.mobile-nav-links a {
  display: block;
  color: white;
  text-decoration: none;
  padding: 1rem 2rem;
  transition: background 0.3s ease;
}

.mobile-nav-links a:hover {
  background: rgba(139, 92, 246, 0.2);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 1001;
  background: #8b5cf6;
  border: none;
  border-radius: 8px;
  padding: 0.75rem;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu-btn span {
  width: 20px;
  height: 2px;
  background: white;
  transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
  background: #1a1a2e;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-title {
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.logo img {
  max-width: 300px;
  height: auto;
  margin-bottom: 2rem;
}

.hero-cta {
  margin-top: 2rem;
}

/* Improved hero stats layout and spacing */
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  justify-content: flex-start;
}

.stat {
  text-align: center;
  min-width: 120px;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #8b5cf6;
}

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

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 15px;
}

/* Added fullscreen button styles */
.video-fullscreen-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s ease;
}

.video-fullscreen-btn:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
}

/* Enhanced mobile video styles for portrait videos */
.video-mobile {
  display: none;
  margin: 2rem 0;
}

/* Mobile-specific video wrapper for portrait videos */
@media (max-width: 768px) {
  .video-mobile .video-wrapper {
    padding-bottom: 56.25%; /* 16:9 aspect ratio for landscape videos */
    max-width: 100%;
    margin: 0 auto;
  }

  .video-section .video-wrapper {
    padding-bottom: 177.78%; /* 9:16 aspect ratio for portrait videos */
    max-width: 350px;
    margin: 0 auto;
  }

  .testimonials .video-wrapper {
    padding-bottom: 56.25%; /* Keep 16:9 for testimonials */
  }

  /* Centralizando ícones dos benefícios no mobile */
  .benefit-icon {
    text-align: center;
  }
}

/* Fullscreen modal styles */
.video-fullscreen-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.video-fullscreen-modal.active {
  display: flex;
}

.video-fullscreen-content {
  position: relative;
  width: 90%;
  height: 90%;
  max-width: 800px;
}

.video-fullscreen-content iframe {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.video-fullscreen-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 30px;
  cursor: pointer;
  z-index: 10001;
}

/* Mobile fullscreen adjustments */
@media (max-width: 768px) {
  .video-fullscreen-content {
    width: 95%;
    height: 80%;
  }

  .video-fullscreen-close {
    top: -40px;
    font-size: 25px;
  }
}

/* Features Section */
.features {
  background: #111;
  padding: 6rem 0;
}

/* Improved features grid responsiveness */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.feature-card {
  background: #1f1f1f;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(139, 92, 246, 0.1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #8b5cf6;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.feature-icon {
  font-size: 3rem;
  color: #8b5cf6;
  margin-bottom: 1.5rem;
}

.feature-highlight {
  background: #8b5cf6;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 1rem;
  display: inline-block;
}

/* Process Steps */
.process-section {
  margin-top: 6rem;
}

/* Improved steps container layout */
.steps-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.step-card {
  background: #1f1f1f;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  max-width: 280px;
  position: relative;
  border: 1px solid rgba(139, 92, 246, 0.1);
  flex: 1;
  min-width: 250px;
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #8b5cf6;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.step-icon {
  font-size: 2.5rem;
  color: #8b5cf6;
  margin-bottom: 1rem;
}

.step-arrow {
  font-size: 1.5rem;
  color: #8b5cf6;
  flex-shrink: 0;
}

/* CTA Section */
.cta-section {
  background: #0a0a0a;
  padding: 4rem 0;
  text-align: center;
}

.cta-content h3 {
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

/* Video Section */
.video-section {
  background: #111;
  padding: 6rem 0;
  text-align: center;
}

.video-container {
  max-width: 800px;
  margin: 3rem auto;
}

.video-cta {
  margin-top: 3rem;
}

/* Benefits Section */
.benefits {
  background: #0a0a0a;
  padding: 6rem 0;
}

/* Improved benefits grid layout */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background: #8b5cf6;
  padding: 2.5rem;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(139, 92, 246, 0.3);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.benefit-features {
  margin-top: 1.5rem;
}

.benefit-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.benefit-feature i {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* Pricing Section */
.pricing {
  background: #111;
  padding: 6rem 0;
}

/* Improved pricing grid layout */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  background: #1f1f1f;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid rgba(139, 92, 246, 0.1);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
  background: #8b5cf6;
  transform: scale(1.05);
  border: 2px solid #a855f7;
}

.pricing-card.featured:hover {
  transform: scale(1.08) translateY(-5px);
}

.pricing-header {
  margin-bottom: 2rem;
}

.pricing-badge {
  background: rgba(139, 92, 246, 0.2);
  color: #8b5cf6;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-block;
}

.pricing-badge.featured {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.stars img {
  max-width: 120px;
  height: auto;
  margin-bottom: 1rem;
}

.pricing-price {
  margin-bottom: 2rem;
}

.currency {
  font-size: 1.5rem;
  vertical-align: top;
}

.amount {
  font-size: 3rem;
  font-weight: 800;
  color: #8b5cf6;
}

.pricing-card.featured .amount {
  color: white;
}

.period {
  font-size: 1.2rem;
  opacity: 0.8;
}

.original-price {
  text-decoration: line-through;
  opacity: 0.6;
  font-size: 1rem;
  display: block;
  margin-bottom: 0.5rem;
}

.discounted-price {
  margin-bottom: 1rem;
}

.payment-options {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

.savings {
  background: #10b981;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
}

.pricing-features li {
  padding: 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-features i {
  color: #10b981;
  width: 20px;
  flex-shrink: 0;
}

.pricing-button {
  display: block;
  background: #10b981;
  color: white;
  padding: 1rem 1.5rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.pricing-button:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.pricing-button.featured {
  background: #fbbf24;
}

.pricing-button.featured:hover {
  background: #f59e0b;
}

.promo-timer {
  font-size: 0.9rem;
  color: #fbbf24;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Guarantee Section */
.guarantee {
  background: #0a0a0a;
  padding: 6rem 0;
  text-align: center;
}

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

.guarantee-badge {
  margin: 2rem 0;
}

.guarantee-badge img {
  max-width: 150px;
  height: auto;
}

/* Improved guarantee features layout */
.guarantee-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.guarantee-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #10b981;
  font-weight: 600;
  min-width: 180px;
  justify-content: center;
}

/* Bonus Section */
.bonus {
  background: #111;
  padding: 6rem 0;
}

.bonus-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.bonus-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
}

.bonus-subtitle {
  font-size: 1.2rem;
  opacity: 0.8;
  margin-bottom: 2rem;
}

.bonus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.bonus-category h4 {
  color: #8b5cf6;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.bonus-category ul {
  list-style: none;
}

.bonus-category li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.bonus-category li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

/* Testimonials Section */
.testimonials {
  background: #0a0a0a;
  padding: 6rem 0;
  text-align: center;
}

/* Integrations Section */
.integrations {
  background: #1a1a2e;
  padding: 6rem 0;
  text-align: center;
}

.integrations-image {
  margin: 3rem 0;
}

.integrations-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
}

.integrations-cta {
  margin-top: 3rem;
}

/* FAQ Section */
.faq {
  background: #111;
  padding: 6rem 0;
}

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

.faq-item {
  background: #1f1f1f;
  margin-bottom: 1rem;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(139, 92, 246, 0.1);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #2a2a2a;
}

.faq-question span {
  font-weight: 600;
  font-size: 1.1rem;
}

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

.faq-item.active .faq-answer {
  padding: 1.5rem;
  max-height: 500px;
}

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

.faq-answer ul {
  list-style: none;
  padding-left: 1rem;
}

.faq-answer li {
  padding: 0.25rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.faq-answer li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #8b5cf6;
}

/* Support Section */
.support {
  background: #0a0a0a;
  padding: 6rem 0;
  text-align: center;
}

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

/* Improved support info layout */
.support-info {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.support-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #8b5cf6;
  font-weight: 600;
  min-width: 150px;
  justify-content: center;
}

/* Footer */
.footer {
  background: #8b5cf6;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.footer-about h3 {
  margin-bottom: 1.5rem;
}

.footer-about p {
  margin-bottom: 2rem;
  opacity: 0.9;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.footer-logo {
  text-align: center;
}

.footer-logo img {
  max-width: 250px;
  height: auto;
  margin-bottom: 1rem;
}

.footer-logo p {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #8b5cf6;
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #7c3aed;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .bonus-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .steps-container {
    flex-direction: column;
  }

  .step-arrow {
    transform: rotate(90deg);
  }
}

/* Improved mobile responsiveness */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }

  .container {
    padding: 0 15px;
  }

  .hero {
    padding: 4rem 0;
    min-height: auto;
  }

  .video-desktop {
    display: none;
  }

  .video-mobile {
    display: block;
  }

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

  .hero-stats {
    flex-direction: row;
    gap: 1rem;
    justify-content: space-around;
  }

  .stat {
    min-width: auto;
    flex: 1;
  }

  .guarantee-features,
  .support-info {
    flex-direction: column;
    gap: 1rem;
  }

  .guarantee-feature,
  .support-feature {
    min-width: auto;
  }

  .social-links {
    justify-content: center;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .features,
  .benefits,
  .pricing,
  .testimonials,
  .integrations,
  .faq,
  .support {
    padding: 4rem 0;
  }

  .cta-button,
  .whatsapp-button {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  .pricing-card.featured {
    transform: none;
  }

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

  .step-card {
    max-width: none;
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 3rem 0;
  }

  .logo img {
    max-width: 250px;
  }

  .hero-description {
    font-size: 1rem;
  }

  .cta-button,
  .whatsapp-button {
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
  }

  .feature-card,
  .benefit-card,
  .pricing-card {
    padding: 2rem 1.5rem;
  }

  .amount {
    font-size: 2.5rem;
  }

  .back-to-top {
    bottom: 1rem;
    right: 1rem;
    width: 45px;
    height: 45px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .stat {
    min-width: 120px;
  }
}

/* Animation Classes */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos].aos-animate {
  opacity: 1;
}

[data-aos="fade-up"] {
  transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
}

[data-aos="fade-left"] {
  transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
}

[data-aos="fade-right"] {
  transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}

[data-aos="zoom-in"] {
  transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
  transform: scale(1);
}

/* Loading States */
.loading {
  opacity: 0.7;
  pointer-events: none;
}

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

  .pulse {
    animation: none;
  }

  .scroll-indicator {
    animation: none;
  }
}

/* Focus States */
button:focus,
a:focus {
  outline: 2px solid #8b5cf6;
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .mobile-menu-btn,
  .back-to-top,
  .video-wrapper,
  .cta-button,
  .whatsapp-button {
    display: none !important;
  }
}
