/*
Theme Name: Aqui Vendeu! Pro
Description: Tema moderno e elegante para catálogos digitais de produtos de beleza
Version: 2.0
Author: Aqui Vendeu!
*/

/* Importar fontes modernas */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");

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

:root {
  --primary-blue: #1e40af;
  --primary-red: #ef4444;
  --dark-blue: #1e3a8a;
  --light-blue: #eff6ff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.7;
  color: var(--gray-700);
  background-color: var(--white);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.loaded {
  animation: pageLoad 0.8s ease-out;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Loading Animation */
@keyframes pageLoad {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Header Moderno com Animações - Fundo Preto */
.site-header {
  background: #000000 !important;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all 0.3s ease;
  animation: slideDown 0.8s ease-out;
}

.site-header.scrolled {
  background: #000000 !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(0);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: logoFloat 3s ease-in-out infinite;
}

.logo:hover {
  transform: translateY(-2px) scale(1.05);
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.logo-icon::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
}

.logo:hover .logo-icon::before {
  animation: shine 0.6s ease-in-out;
  opacity: 1;
}

.logo:hover .logo-icon {
  box-shadow: var(--shadow-xl);
  transform: scale(1.1) rotate(5deg);
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff !important;
  letter-spacing: -0.025em;
  position: relative;
}

.logo-text::after {
  content: "!";
  color: var(--primary-red) !important;
  animation: exclamationPulse 2s ease-in-out infinite;
}

.main-nav {
  display: none;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.main-nav li {
  animation: navItemSlide 0.6s ease-out forwards;
  opacity: 0;
  transform: translateY(-20px);
}

.main-nav li:nth-child(1) {
  animation-delay: 0.1s;
}
.main-nav li:nth-child(2) {
  animation-delay: 0.2s;
}
.main-nav li:nth-child(3) {
  animation-delay: 0.3s;
}
.main-nav li:nth-child(4) {
  animation-delay: 0.4s;
}

.main-nav a {
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
  transition: width 0.4s ease;
}

.main-nav a:hover {
  color: #ffffff !important;
  transform: translateY(-2px);
}

.main-nav a:hover::after {
  width: 100%;
}

.cta-button {
  background: linear-gradient(135deg, var(--primary-red), #dc2626) !important;
  color: white !important;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.4s ease;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  animation: ctaButtonPulse 3s ease-in-out infinite;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-2xl);
}

@media (min-width: 768px) {
  .main-nav {
    display: block;
  }
}

/* Hero Section com Animações Avançadas */
.hero-section {
  padding: 8rem 0 6rem;
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--gray-50) 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(30, 64, 175, 0.1) 0%, transparent 70%);
  pointer-events: none;
  animation: heroBackground 8s ease-in-out infinite;
}

.hero-section::after {
  content: "";
  position: absolute;
  top: 20%;
  left: 10%;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
  border-radius: 50%;
  opacity: 0.1;
  animation: floatingCircle1 6s ease-in-out infinite;
}

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

.hero-text {
  text-align: center;
  animation: heroTextSlide 1s ease-out;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.025em;
  animation: titleTypewriter 2s ease-out;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  animation: highlightGlow 3s ease-in-out infinite;
}

.hero-title .highlight::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
  border-radius: 2px;
  opacity: 0.3;
  animation: underlineExpand 1.5s ease-out 0.5s forwards;
  transform: scaleX(0);
  transform-origin: left;
}

.hero-description {
  font-size: 1.375rem;
  color: var(--gray-600);
  margin-bottom: 3rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  line-height: 1.6;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
  align-items: center;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-red), #dc2626);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 16px;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  min-width: 200px;
  justify-content: center;
  animation: buttonBounce 2s ease-in-out infinite;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: var(--shadow-2xl);
  animation: none;
}

.btn-secondary {
  background: transparent;
  color: var(--primary-blue);
  padding: 1rem 2rem;
  border: 2px solid var(--primary-blue);
  border-radius: 16px;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  transition: all 0.4s ease;
  min-width: 200px;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.btn-secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--primary-blue);
  transition: width 0.4s ease;
  z-index: -1;
}

.btn-secondary:hover::before {
  width: 100%;
}

.btn-secondary:hover {
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(229, 231, 235, 0.3);
  box-shadow: var(--shadow-lg);
  animation: fadeInUp 1s ease-out 0.9s both;
}

.avatars {
  display: flex;
  gap: -0.75rem;
}

.avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 3px solid white;
  background: linear-gradient(135deg, var(--gray-200), var(--gray-300));
  margin-left: -0.75rem;
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
  animation: avatarFloat 3s ease-in-out infinite;
}

.avatar:first-child {
  margin-left: 0;
}

.avatar:nth-child(2) {
  animation-delay: 0.2s;
}
.avatar:nth-child(3) {
  animation-delay: 0.4s;
}
.avatar:nth-child(4) {
  animation-delay: 0.6s;
}

.avatar:hover {
  transform: translateY(-4px) scale(1.1);
  z-index: 10;
  animation: none;
}

.avatar.count {
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  animation: countPulse 2s ease-in-out infinite;
}

.social-proof-text {
  font-size: 0.95rem;
  text-align: left;
}

.social-proof-text .highlight {
  font-weight: 700;
  color: var(--primary-blue);
  display: block;
  animation: textGlow 3s ease-in-out infinite;
}

@media (min-width: 768px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .hero-title {
    font-size: 4.5rem;
  }

  .hero-text {
    text-align: left;
  }

  .hero-content {
    grid-template-columns: 1fr 1fr;
  }

  .social-proof {
    justify-content: flex-start;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 5rem;
  }
}

/* Features Grid com Animações */
.features-section {
  padding: 8rem 0;
  background: var(--white);
  position: relative;
}

.features-section::before {
  content: "";
  position: absolute;
  top: 10%;
  right: 5%;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
  border-radius: 50%;
  opacity: 0.05;
  animation: floatingCircle2 8s ease-in-out infinite;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 4rem;
  letter-spacing: -0.025em;
  animation: fadeInUp 0.8s ease-out;
}

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

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 24px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  animation: cardSlideUp 0.6s ease-out forwards;
}

.feature-card:nth-child(1) {
  animation-delay: 0.1s;
}
.feature-card:nth-child(2) {
  animation-delay: 0.2s;
}
.feature-card:nth-child(3) {
  animation-delay: 0.3s;
}
.feature-card:nth-child(4) {
  animation-delay: 0.4s;
}
.feature-card:nth-child(5) {
  animation-delay: 0.5s;
}
.feature-card:nth-child(6) {
  animation-delay: 0.6s;
}
.feature-card:nth-child(7) {
  animation-delay: 0.7s;
}
.feature-card:nth-child(8) {
  animation-delay: 0.8s;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--light-blue), rgba(239, 68, 68, 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-2xl);
  border-color: var(--primary-blue);
}

.feature-card > * {
  position: relative;
  z-index: 2;
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 1.75rem;
  box-shadow: var(--shadow-lg);
  transition: all 0.4s ease;
  animation: iconFloat 4s ease-in-out infinite;
}

.feature-card:hover .feature-icon {
  transform: scale(1.15) rotate(10deg);
  box-shadow: var(--shadow-xl);
  animation: iconSpin 0.6s ease-in-out;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}

.feature-description {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Pricing Section com Animações */
.pricing-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--light-blue) 100%);
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(30, 64, 175, 0.05) 0%, transparent 70%);
  pointer-events: none;
  animation: pricingBackground 10s ease-in-out infinite;
}

.pricing-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.8s ease-out;
}

.pricing-subtitle {
  font-size: 0.875rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  font-weight: 600;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.pricing-title {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.025em;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.pricing-grid {
  display: grid;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--gray-100);
  border-radius: 32px;
  padding: 3rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  animation: cardSlideUp 0.8s ease-out forwards;
}

.pricing-card:nth-child(1) {
  animation-delay: 0.2s;
}
.pricing-card:nth-child(2) {
  animation-delay: 0.4s;
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.02), rgba(239, 68, 68, 0.02));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.pricing-card:hover::before {
  opacity: 1;
}

.pricing-card:hover {
  transform: translateY(-16px) scale(1.02);
  box-shadow: var(--shadow-2xl);
  border-color: var(--primary-blue);
}

.pricing-card.featured {
  border-color: var(--primary-blue);
  position: relative;
  background: linear-gradient(135deg, var(--white) 0%, rgba(30, 64, 175, 0.02) 100%);
  animation: featuredCardGlow 3s ease-in-out infinite;
}

.pricing-card.featured::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
  border-radius: 32px 32px 0 0;
}

.pricing-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  letter-spacing: 0.025em;
  animation: badgePulse 2s ease-in-out infinite;
}

.plan-name {
  font-size: 0.875rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.plan-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.price-installment {
  font-size: 1rem;
  color: var(--gray-500);
  font-weight: 500;
}

.price-amount {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.025em;
  animation: priceGlow 3s ease-in-out infinite;
}

.price-period {
  color: var(--gray-500);
  font-weight: 500;
}

.plan-details {
  font-size: 0.95rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.plan-features {
  list-style: none;
  margin-bottom: 2.5rem;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0;
  transform: translateX(-20px);
  animation: featureSlideIn 0.4s ease-out forwards;
}

.plan-features li:nth-child(1) {
  animation-delay: 0.1s;
}
.plan-features li:nth-child(2) {
  animation-delay: 0.2s;
}
.plan-features li:nth-child(3) {
  animation-delay: 0.3s;
}
.plan-features li:nth-child(4) {
  animation-delay: 0.4s;
}
.plan-features li:nth-child(5) {
  animation-delay: 0.5s;
}
.plan-features li:nth-child(6) {
  animation-delay: 0.6s;
}
.plan-features li:nth-child(7) {
  animation-delay: 0.7s;
}
.plan-features li:nth-child(8) {
  animation-delay: 0.8s;
}
.plan-features li:nth-child(9) {
  animation-delay: 0.9s;
}
.plan-features li:nth-child(10) {
  animation-delay: 1.0s;
}
.plan-features li:nth-child(11) {
  animation-delay: 1.1s;
}

.feature-check {
  color: var(--primary-blue);
  font-size: 1.25rem;
  font-weight: 700;
  animation: checkBounce 2s ease-in-out infinite;
}

.feature-cross {
  color: var(--primary-red);
  font-size: 1.25rem;
  font-weight: 700;
}

.feature-unavailable {
  color: var(--gray-400);
}

.plan-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn-whatsapp {
  background: transparent;
  color: #06b6d4;
  border: 2px solid #06b6d4;
  padding: 1rem 2rem;
  border-radius: 16px;
  text-decoration: none;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.btn-whatsapp::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #06b6d4;
  transition: width 0.4s ease;
  z-index: -1;
}

.btn-whatsapp:hover::before {
  width: 100%;
}

.btn-whatsapp:hover {
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* FAQ Section com Animações */
.faq-section {
  padding: 8rem 0;
  background: var(--white);
}

.faq-container {
  max-width: 56rem;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeInUp 0.8s ease-out;
}

.faq-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}

.faq-subtitle {
  color: var(--gray-600);
  font-size: 1.125rem;
}

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
  background: var(--white);
  opacity: 0;
  transform: translateY(20px);
  animation: faqSlideUp 0.6s ease-out forwards;
}

.faq-item:nth-child(1) {
  animation-delay: 0.1s;
}
.faq-item:nth-child(2) {
  animation-delay: 0.2s;
}
.faq-item:nth-child(3) {
  animation-delay: 0.3s;
}
.faq-item:nth-child(4) {
  animation-delay: 0.4s;
}
.faq-item:nth-child(5) {
  animation-delay: 0.5s;
}
.faq-item:nth-child(6) {
  animation-delay: 0.6s;
}
.faq-item:nth-child(7) {
  animation-delay: 0.7s;
}

.faq-item:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-blue);
  transform: translateY(-2px);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 2rem;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--primary-blue);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--gray-400);
  transition: all 0.4s ease;
  font-weight: 300;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--primary-blue);
}

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

.faq-item.active .faq-answer {
  padding: 0 2rem 2rem;
  max-height: 300px;
  animation: answerSlideDown 0.4s ease-out;
}

.faq-answer p {
  color: var(--gray-600);
  line-height: 1.7;
  font-size: 1rem;
}

/* CTA Section com Animações */
.cta-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
  animation: ctaBackground 8s ease-in-out infinite;
}

.cta-section::after {
  content: "";
  position: absolute;
  top: 10%;
  right: 10%;
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: floatingCircle3 10s ease-in-out infinite;
}

.cta-content {
  max-width: 56rem;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
  animation: fadeInUp 0.8s ease-out;
}

.cta-description {
  font-size: 1.375rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  align-items: center;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.btn-white {
  background: var(--white);
  color: var(--primary-blue);
  padding: 1rem 2rem;
  border: none;
  border-radius: 16px;
  font-size: 1.125rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  justify-content: center;
  animation: ctaButtonFloat 3s ease-in-out infinite;
}

.btn-white:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: var(--shadow-2xl);
  background: var(--gray-50);
  animation: none;
}

.btn-outline-white {
  background: transparent;
  color: white;
  padding: 1rem 2rem;
  border: 2px solid white;
  border-radius: 16px;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  transition: all 0.4s ease;
  min-width: 220px;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.btn-outline-white::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: white;
  transition: width 0.4s ease;
  z-index: -1;
}

.btn-outline-white:hover::before {
  width: 100%;
}

.btn-outline-white:hover {
  color: var(--primary-blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.cta-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  animation: featureBounce 2s ease-in-out infinite;
}

.cta-feature:nth-child(2) {
  animation-delay: 0.2s;
}
.cta-feature:nth-child(3) {
  animation-delay: 0.4s;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }

  .cta-features {
    flex-direction: row;
    gap: 3rem;
  }

  .cta-title {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .cta-title {
    font-size: 4rem;
  }
}

/* Footer com Animações */
.site-footer {
  background: var(--gray-900);
  color: white;
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-red), var(--primary-blue));
  animation: footerLine 3s ease-in-out infinite;
}

.footer-content {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

.footer-section:nth-child(1) {
  animation-delay: 0.1s;
}
.footer-section:nth-child(2) {
  animation-delay: 0.2s;
}
.footer-section:nth-child(3) {
  animation-delay: 0.3s;
}
.footer-section:nth-child(4) {
  animation-delay: 0.4s;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  box-shadow: var(--shadow-lg);
  animation: logoFloat 4s ease-in-out infinite;
}

.footer-brand-text {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.footer-description {
  color: var(--gray-400);
  font-size: 1rem;
  line-height: 1.6;
}

.footer-section h4 {
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  letter-spacing: -0.025em;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--gray-400);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  font-weight: 500;
  position: relative;
}

.footer-links a::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: var(--primary-blue);
  transition: width 0.3s ease;
}

.footer-links a:hover::before {
  width: 6px;
}

.footer-links a:hover {
  color: white;
  transform: translateX(10px);
}

.footer-bottom {
  border-top: 1px solid var(--gray-700);
  padding-top: 2rem;
  text-align: center;
  color: var(--gray-400);
  font-size: 0.95rem;
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Animações Keyframes */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes shine {
  0% {
    left: -100%;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

@keyframes exclamationPulse {
  0%,
  100% {
    transform: scale(1);
    color: var(--primary-red);
  }
  50% {
    transform: scale(1.2);
    color: #dc2626;
  }
}

@keyframes navItemSlide {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ctaButtonPulse {
  0%,
  100% {
    box-shadow: var(--shadow-md);
  }
  50% {
    box-shadow: var(--shadow-lg);
  }
}

@keyframes heroBackground {
  0%,
  100% {
    opacity: 0.1;
  }
  50% {
    opacity: 0.15;
  }
}

@keyframes floatingCircle1 {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

@keyframes floatingCircle2 {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(-180deg);
  }
}

@keyframes floatingCircle3 {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-25px) rotate(360deg);
  }
}

@keyframes heroTextSlide {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes titleTypewriter {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes highlightGlow {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.2);
  }
}

@keyframes underlineExpand {
  to {
    transform: scaleX(1);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes buttonBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes avatarFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes countPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@keyframes textGlow {
  0%,
  100% {
    text-shadow: none;
  }
  50% {
    text-shadow: 0 0 10px rgba(30, 64, 175, 0.3);
  }
}

@keyframes cardSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes iconFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes iconSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pricingBackground {
  0%,
  100% {
    opacity: 0.05;
  }
  50% {
    opacity: 0.1;
  }
}

@keyframes featuredCardGlow {
  0%,
  100% {
    box-shadow: var(--shadow-lg);
  }
  50% {
    box-shadow: var(--shadow-xl);
  }
}

@keyframes badgePulse {
  0%,
  100% {
    transform: translateX(-50%) scale(1);
  }
  50% {
    transform: translateX(-50%) scale(1.05);
  }
}

@keyframes priceGlow {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.1);
  }
}

@keyframes featureSlideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes checkBounce {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

@keyframes faqSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes answerSlideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ctaBackground {
  0%,
  100% {
    opacity: 0.1;
  }
  50% {
    opacity: 0.15;
  }
}

@keyframes ctaButtonFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes featureBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes footerLine {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Scroll Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Utilities */
.text-center {
  text-align: center;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.hidden {
  display: none;
}

@media (max-width: 767px) {
  .mobile-hidden {
    display: none;
  }
}

/* Responsividade aprimorada */
@media (max-width: 640px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .pricing-title {
    font-size: 2rem;
  }

  .faq-title {
    font-size: 2rem;
  }

  .cta-title {
    font-size: 2rem;
  }

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

  .faq-question {
    padding: 1.5rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
  }
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  pointer-events: none;
}

.preloader-content {
  text-align: center;
}

.preloader-logo {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  margin: 0 auto 1rem;
  animation: preloaderSpin 1s linear infinite;
}

.preloader-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-700);
  animation: preloaderPulse 1.5s ease-in-out infinite;
}

@keyframes preloaderSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes preloaderPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
