/* ============================================
   Landing Page Moderna - BotTechWPP
   Mobile-First, Otimizado para Performance
   ============================================ */

/* Esconder elementos do header na landing page */
body:has(main .hero-modern) #main-header #main-navbar,
body:has(main .hero-modern) #main-header #navbar-brand,
body:has(main .hero-modern) #main-header #navbar-logo,
body:has(main .hero-modern) #main-header .toggle-wrap {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}

/* Alternativa usando classe na body quando for landing */
.landing-page #main-header #main-navbar,
.landing-page #main-header #navbar-brand,
.landing-page #main-header #navbar-logo,
.landing-page #main-header .toggle-wrap {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}

/* Variables - Usando as cores originais do site */
:root {
  --primary-color: #6A49F2;
  --bg-purple: #6A49F2;
  --dark-purple: #32236F;
  --light-purple: #F6F4FE;
  --body-text-purple: #3E3F66;
  --text-white: #ffffff;
  --bg-white: #ffffff;
  --slider-dots-color: #D4D2DD;
  --light-bg: #DFDAF3;
  --text-dark: #32236F;
  --text-light: #3E3F66;
  --bg-light: #F6F4FE;
  --white: #ffffff;
  --success-color: #2dce89;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-modern {
  position: relative;
  min-height: 80vh;
  padding: 4rem 0;
  overflow: hidden;
  background: transparent;
}

.hero-gradient {
  display: none;
}

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

.hero-content {
  padding: 2rem 0;
}

.hero-title {
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-white);
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-color), var(--dark-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.badge-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  font-size: 0.875rem;
  color: var(--text-white);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-item i {
  color: var(--success-color);
  font-size: 1.125rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-primary-modern,
.btn-secondary-modern {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary-modern {
  background: linear-gradient(135deg, var(--primary-color), var(--dark-purple));
  color: var(--white);
  box-shadow: var(--shadow-md);
}

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

.btn-secondary-modern {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: var(--text-white);
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--bg-purple);
}

.btn-secondary-modern:hover {
  background: var(--bg-purple);
  color: var(--white);
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: float 3s ease-in-out infinite;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-card i {
  font-size: 2rem;
  color: var(--bg-purple);
}

.floating-card span {
  font-size: 0.875rem;
  color: var(--text-white);
  font-weight: 500;
}

.floating-card.card-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.floating-card.card-2 {
  top: 50%;
  right: 10%;
  animation-delay: 1s;
}

.floating-card.card-3 {
  bottom: 10%;
  left: 20%;
  animation-delay: 2s;
}

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

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: var(--primary-color);
  top: -150px;
  right: -150px;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: var(--bg-purple);
  bottom: -100px;
  left: -100px;
}

.shape-3 {
  width: 150px;
  height: 150px;
  background: var(--success-color);
  top: 50%;
  right: 10%;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-modern-section {
  padding: 5rem 0;
  background: transparent;
}

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

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: rgba(255, 255, 255, 0.8);
}

.feature-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.feature-card.featured {
  border-color: var(--bg-purple);
  box-shadow: var(--shadow-md);
}

.feature-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, var(--primary-color), var(--dark-purple));
  color: var(--white);
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(106, 73, 242, 0.1), rgba(106, 73, 242, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon i {
  font-size: 2rem;
  color: var(--bg-purple);
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 1rem;
}

.feature-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: rgba(255, 255, 255, 0.9);
}

.feature-list i {
  color: var(--success-color);
  font-size: 1.125rem;
}

.differentiator-card {
  background: rgba(106, 73, 242, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 3rem 2rem;
  border: 2px solid rgba(106, 73, 242, 0.3);
}

.differentiator-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.differentiator-title i {
  color: var(--bg-purple);
  font-size: 2rem;
}

.differentiator-text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.differentiator-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.differentiator-benefits li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
}

.differentiator-benefits i {
  color: var(--success-color);
  font-size: 1.5rem;
}

.differentiator-icon-large {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--dark-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.differentiator-icon-large i {
  font-size: 4rem;
  color: var(--white);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-photos-section {
  padding: 5rem 0;
  background: transparent;
}

.testimonials-carousel-wrapper {
  position: relative;
  padding: 2rem 0;
}

.testimonials-carousel .testimonial-item {
  padding: 0 1rem;
}

.testimonial-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.testimonial-placeholder .testimonial-image-wrapper {
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(106, 73, 242, 0.1);
}

.placeholder-content {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}

.placeholder-content i {
  font-size: 4rem;
  color: var(--bg-purple);
  margin-bottom: 1rem;
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.carousel-nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid var(--bg-purple);
  color: var(--bg-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.carousel-nav-btn:hover {
  background: var(--bg-purple);
  color: var(--white);
  transform: scale(1.1);
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-highlight-section {
  padding: 5rem 0;
  background: transparent;
}

.pricing-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 1rem;
}

.pricing-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.price-card-main {
  background: rgba(106, 73, 242, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 3rem 2rem;
  border: 2px solid rgba(106, 73, 242, 0.3);
  position: relative;
  text-align: center;
}

.price-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.badge-text {
  background: linear-gradient(135deg, var(--primary-color), var(--dark-purple));
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
}

.price-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin: 2rem 0 0.5rem;
}

.currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-white);
}

.amount {
  font-size: 4rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-color), var(--dark-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.period {
  font-size: 1.25rem;
  color: var(--text-light);
}

.price-per-group {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.price-features {
  text-align: left;
  margin: 2rem 0;
}

.price-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.price-feature-item i {
  color: var(--success-color);
  font-size: 1.25rem;
}

.btn-pricing-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--primary-color), var(--dark-purple));
  color: var(--white);
  border-radius: 8px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  border: none;
  cursor: pointer;
}

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

.pricing-visual {
  position: relative;
  height: 400px;
}

.pricing-card-floating {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  animation: float 3s ease-in-out infinite;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-card-floating i {
  font-size: 2.5rem;
  color: var(--bg-purple);
}

.pricing-card-floating span {
  font-size: 0.875rem;
  color: var(--text-white);
  font-weight: 600;
  text-align: center;
}

.pricing-card-floating:first-child {
  top: 0;
  left: 0;
}

.pricing-card-floating.delay-1 {
  top: 10%;
  right: 10%;
  animation-delay: 1s;
}

.pricing-card-floating.delay-2 {
  bottom: 10%;
  left: 10%;
  animation-delay: 2s;
}

/* ============================================
   REFERRAL PROGRAM SECTION
   ============================================ */
.referral-program-section {
  padding: 5rem 0;
  background: transparent;
}

.referral-card {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(106, 73, 242, 0.3);
  border-radius: 20px;
  padding: 3rem 2rem;
  color: var(--text-white);
  box-shadow: var(--shadow-lg);
}

.referral-icon-wrapper {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(106, 73, 242, 0.2);
  border: 2px solid rgba(106, 73, 242, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  backdrop-filter: blur(10px);
}

.referral-icon-wrapper i {
  font-size: 4rem;
  color: var(--bg-purple);
}

.referral-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-white);
}

.referral-title .gradient-text {
  color: var(--bg-purple);
}

.referral-description {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.referral-highlight {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(106, 73, 242, 0.15);
  border: 1px solid rgba(106, 73, 242, 0.3);
  padding: 1.5rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.highlight-item i {
  font-size: 2.5rem;
  color: var(--bg-purple);
}

.highlight-item strong {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  color: var(--text-white);
}

.highlight-item span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.referral-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-referral,
.btn-referral-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: var(--transition);
}

.btn-referral {
  background: var(--bg-purple);
  color: var(--text-white);
  border: 2px solid var(--bg-purple);
}

.btn-referral:hover {
  background: var(--dark-purple);
  border-color: var(--dark-purple);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-referral-outline {
  background: transparent;
  color: var(--text-white);
  border: 2px solid var(--bg-purple);
}

.btn-referral-outline:hover {
  background: rgba(106, 73, 242, 0.2);
  border-color: var(--bg-purple);
  transform: translateY(-3px);
}

.btn-referral-outline:hover {
  background: var(--white);
  color: var(--bg-purple);
  transform: translateY(-3px);
}

/* ============================================
   RESPONSIVE - MOBILE FIRST
   ============================================ */
@media (max-width: 768px) {
  .hero-modern {
    min-height: auto;
    padding: 3rem 0;
  }

  .hero-visual {
    height: auto;
    min-height: 150px;
    margin-top: 2rem;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 0.5rem !important;
    padding: 1rem 0.5rem !important;
  }

  .floating-card {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    padding: 0.75rem 0.5rem;
    font-size: 0.7rem;
    width: calc(33.333% - 0.5rem) !important;
    max-width: 110px !important;
    min-width: 85px !important;
    animation: none !important;
    transform: none !important;
    flex-shrink: 1 !important;
    flex-grow: 1 !important;
  }

  .floating-card.card-1,
  .floating-card.card-2,
  .floating-card.card-3 {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    animation: none !important;
    transform: none !important;
  }

  .floating-card i {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
  }

  .floating-card span {
    font-size: 0.65rem !important;
    text-align: center;
    line-height: 1.2;
  }

  .features-modern-section,
  .testimonials-photos-section,
  .pricing-highlight-section,
  .referral-program-section {
    padding: 3rem 0;
  }

  .differentiator-card,
  .price-card-main,
  .referral-card {
    padding: 2rem 1.5rem;
  }

  .referral-highlight {
    grid-template-columns: 1fr;
  }

  .hero-cta,
  .referral-cta,
  .cta-final-buttons {
    flex-direction: column;
  }

  .hero-cta .btn-primary-modern,
  .hero-cta .btn-secondary-modern,
  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100%;
    justify-content: center;
  }

  .cta-final-card {
    padding: 2.5rem 1.5rem;
  }

  /* Ajustar pricing-visual para mobile - Cards organizados verticalmente */
  .pricing-visual {
    position: relative !important;
    height: auto !important;
    min-height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 1rem !important;
    margin-top: 2rem !important;
    padding: 1rem 0 !important;
  }

  /* Ajustar todos os pricing-card-floating para mobile */
  .pricing-visual .pricing-card-floating,
  .pricing-visual .pricing-card-floating.delay-1,
  .pricing-visual .pricing-card-floating.delay-2 {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 1rem 0 !important;
    animation: none !important;
    transform: none !important;
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    flex-shrink: 0 !important;
  }

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

  /* Mobile optimizations */
  .mobile-optimized * {
    animation-duration: 0.3s !important;
  }

  .mobile-optimized .floating-card,
  .mobile-optimized .pricing-card-floating {
    animation: none !important;
  }
}

@media (min-width: 769px) and (max-width: 992px) {
  .hero-visual {
    height: 350px;
  }
}

/* ============================================
   CTA FINAL SECTION
   ============================================ */
.cta-final-section {
  padding: 5rem 0;
  background: transparent;
}

.cta-final-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 4rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(106, 73, 242, 0.3);
}

.cta-final-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 1rem;
}

.cta-final-text {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.cta-final-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.btn-cta-primary,
.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-cta-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--dark-purple));
  color: var(--white);
  box-shadow: var(--shadow-md);
}

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

.btn-cta-secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: var(--text-white);
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--bg-purple);
}

.btn-cta-secondary:hover {
  background: var(--bg-purple);
  color: var(--white);
  transform: translateY(-3px);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.min-vh-75 {
  min-height: 75vh;
}

.g-4 {
  gap: 1.5rem;
}

.mt-5 {
  margin-top: 3rem;
}

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

/* Owl Carousel Custom Styles */
.testimonials-carousel.owl-carousel .owl-item {
  opacity: 0.7;
  transition: opacity 0.3s;
}

.testimonials-carousel.owl-carousel .owl-item.active {
  opacity: 1;
}

.testimonials-carousel .owl-nav {
  display: none;
}

.testimonials-carousel .owl-dots {
  text-align: center;
  margin-top: 2rem;
}

.testimonials-carousel .owl-dots .owl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--slider-dots-color);
  margin: 0 0.5rem;
  transition: var(--transition);
}

.testimonials-carousel .owl-dots .owl-dot.active {
  background: var(--bg-purple);
  width: 30px;
  border-radius: 6px;
}

