.elementor-2321 .elementor-element.elementor-element-dad006a{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-2321 .elementor-element.elementor-element-dad006a:not(.elementor-motion-effects-element-type-background), .elementor-2321 .elementor-element.elementor-element-dad006a > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#050505;}.elementor-2321 .elementor-element.elementor-element-d8ed81d > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}body.elementor-page-2321:not(.elementor-motion-effects-element-type-background), body.elementor-page-2321 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#050505;}/* Start custom CSS for html, class: .elementor-element-d8ed81d */:root {
  --color-bg: #050505;
  --color-bg-alt: #0a0a0a;
  --color-primary: #8b5cf6;
  --color-secondary: #3b82f6;
  --color-text: #ffffff;
  --color-text-muted: #9ca3af;
  --color-text-dim: #6b7280;
  --color-border: rgba(255, 255, 255, 0.1);
  --gradient-primary: linear-gradient(to right, #8b5cf6, #3b82f6);
  --gradient-text: linear-gradient(to right, #a78bfa, #3b82f6);
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background-color: var(--color-primary);
  color: white;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Typography */
.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #c4b5fd;
  backdrop-filter: blur(12px);
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #ef4444;
  animation: pulse 2s infinite;
}

/* Button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--gradient-primary);
  border-radius: 9999px;
  font-weight: 700;
  color: white;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  text-decoration: none;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 40px rgba(139, 92, 246, 0.3);
}

/* ============ HERO SECTION ============ */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(88, 28, 135, 0.15) 0%, rgba(30, 58, 138, 0.15) 50%, #050505 100%);
}

/* Background Glows */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-bg-glow-purple {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: rgba(139, 92, 246, 0.2);
  filter: blur(120px);
  border-radius: 50%;
  mix-blend-mode: screen;
  animation: pulse 4s ease-in-out infinite;
}

.hero-bg-glow-blue {
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: rgba(59, 130, 246, 0.1);
  filter: blur(100px);
  border-radius: 50%;
  mix-blend-mode: screen;
}

.hero-bg-noise {
  position: absolute;
  inset: 0;
  background-image: url('https://grainy-gradients.vercel.app/noise.svg');
  opacity: 0.2;
}

/* ============ BACKGROUND PHOTOS ============ */
.bg-photos {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.bg-photo {
  position: absolute;
  overflow: hidden;
  pointer-events: auto;
}

.bg-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  opacity: 0.4;
  transition: filter var(--transition-slow), opacity var(--transition-slow), transform var(--transition-slow);
  /* Mask for soft edges */
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.bg-photo:hover img {
  filter: grayscale(0%);
  opacity: 0.7;
  transform: scale(1.05);
}

/* Photo Positions - Random scattered layout, no overlaps */
.bg-photo-1 {
  top: 8%;
  left: 15%;
  width: 320px;
  height: 240px;
  transform: rotate(-5deg);
}

.bg-photo-1 img {
  -webkit-mask-image: radial-gradient(ellipse 100% 100% at center, black 35%, transparent 75%);
  mask-image: radial-gradient(ellipse 65% 70% at center, black 35%, transparent 75%);
}

.bg-photo-2 {
  top: 12%;
  right: 12%;
  width: 280px;
  height: 200px;
  transform: rotate(8deg);
}

.bg-photo-2 img {
  -webkit-mask-image: radial-gradient(ellipse 85% 85% at center, black 25%, transparent 65%);
  mask-image: radial-gradient(ellipse 85% 60% at center, black 25%, transparent 65%);
}

.bg-photo-3 {
  top: 40%;
  left: 3%;
  width: 340px;
  height: 260px;
  transform: rotate(3deg);
}

.bg-photo-3 img {
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at center, black 15%, transparent 55%);
  mask-image: radial-gradient(ellipse 80% 70% at center, black 15%, transparent 55%);
  object-position: center 20%;
}

.bg-photo-4 {
  top: 40%;
  right: 4%;
  width: 360px;
  height: 270px;
  transform: rotate(-4deg);
}

.bg-photo-4 img {
  -webkit-mask-image: radial-gradient(ellipse 100% 95% at center, black 35%, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 70% at center, black 35%, transparent 75%);
}

.bg-photo-5 {
  bottom: 10%;
  left : 20%;
  width: 290px;
  height: 220px;
  transform: rotate(-7deg);
}

.bg-photo-5 img {
  -webkit-mask-image: radial-gradient(circle at center, black 35%, transparent 75%);
  mask-image: radial-gradient( ellipse 65% 70% at center, black 35%, transparent 75%);
}

.bg-photo-6 {
  bottom: 5%;
  right: 25%;
  width: 270px;
  height: 200px;
  transform: rotate(6deg);
}

.bg-photo-6 img {
  -webkit-mask-image: radial-gradient(ellipse 80% 88% at center, black 28%, transparent 72%);
  mask-image: radial-gradient(ellipse 70% 60% at center, black 28%, transparent 72%);
  object-position: center 20%;
}

/* ============ HERO CONTENT ============ */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 2rem;
  margin-bottom: 320px; /* Space for expert image */
}

.hero-title {
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.hero-renda {
  display: block;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-top: -2px;
}

.hero-description {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-description strong {
  color: white;
}

/* ============ EXPERT IMAGE ============ */
.hero-expert {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
  pointer-events: none;
}

.hero-expert img {
  height: 48vh;
  max-height: 500px;
  width: auto;
  object-fit: contain;
  object-position: bottom;
}

/* ============ VSL SECTION ============ */
.vsl-section {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(to bottom, #050505, #0a0a0a);
}

.vsl-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.vsl-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #000;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: 0 25px 80px -12px rgba(139, 92, 246, 0.25);
}

.vsl-player-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  background: linear-gradient(135deg, rgba(88, 28, 135, 0.1) 0%, rgba(30, 58, 138, 0.1) 100%);
  cursor: pointer;
  transition: background var(--transition-base);
}

.vsl-player-placeholder:hover {
  background: linear-gradient(135deg, rgba(88, 28, 135, 0.2) 0%, rgba(30, 58, 138, 0.2) 100%);
}

.vsl-player-placeholder svg {
  color: var(--color-primary);
  opacity: 0.8;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.vsl-player-placeholder:hover svg {
  transform: scale(1.1);
  opacity: 1;
}

.vsl-player-placeholder p {
  color: var(--color-text-muted);
  font-size: 1rem;
  font-weight: 500;
}

.section-cta {
  margin-top: 3rem;
  text-align: center;
}

/* ============ SECTION DIVIDER ============ */
.section-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  height: 1px;
}

/* Flare line - increased brightness */
.divider-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(139, 92, 246, 0.8), transparent);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.5), 0 0 40px rgba(139, 92, 246, 0.3);
}



/* Glow effect on the drop */
.divider-drop::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, transparent 10%, rgba(139, 92, 246, 0.8) 50%, transparent 90%);
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.6);
}

.divider-drop svg {
  color: var(--color-primary);
  opacity: 0.9;
  margin-top: 4px;
}

.divider-drop:hover {
  border-color: rgba(139, 92, 246, 0.9);
  box-shadow: 0 5px 35px rgba(139, 92, 246, 0.5), inset 0 -5px 15px rgba(139, 92, 246, 0.2);
}

.divider-drop:hover svg {
  opacity: 1;
}

/* ============ ANIMATIONS ============ */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes dropBounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(5px);
  }
}

/* ============ TESTIMONIALS SECTION ============ */
.testimonials-section {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(to bottom, #0a0a0a, #050505);
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 0 1.5rem;
}

.testimonials-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.testimonials-subtitle {
  color: var(--color-text-muted);
  font-size: 1rem;
}

/* Carousel */
.carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.carousel-track {
  display: flex;
  gap: 1.5rem;
  animation: scroll 40s linear infinite;
  width: max-content;
  padding: 10px 0;
}

.carousel-track:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-500px * 5 - 1.5rem * 5));
  }
}

/* Testimonial Card */
.testimonial-card {
  flex-shrink: 0;
  width: 500px;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  transition: border-color var(--transition-base), transform var(--transition-base);
}

.testimonial-card:hover {
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateY(-5px);
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: white;
}

.author-role {
  font-size: 0.75rem;
  color: var(--color-text-dim);
}

/* ============ MODULES SECTION ============ */
.modules-section {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(to bottom, #050505, #0a0a0a);
  overflow: hidden;
}

.modules-container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.modules-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.modules-content {
  text-align: center;
  padding: 0 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.modules-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.modules-subtitle {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.modules-highlights {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.module-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.highlight-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight-text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}


/* Modules Carousel - Horizontal */
.modules-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 1rem;
  mask-image: linear-gradient(to right, black 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, black 85%, transparent 100%);
}

.modules-carousel-track {
  display: flex;
  flex-direction: row;
  gap: 1.5rem; /* Aumentado gap */
  animation: scrollModulesLeftToRight 30s linear infinite; /* Left to Right */
  width: max-content;
  transform: translateX(calc(-260px * 7 - 1.5rem * 7)); /* Start position */
}

.modules-carousel-track:hover {
  animation-play-state: paused;
}

@keyframes scrollModulesLeftToRight {
  0% {
    transform: translateX(calc(-260px * 7 - 1.5rem * 7));
  }
  100% {
    transform: translateX(0);
  }
}

.module-slide {
  flex-shrink: 0;
  width: 260px; /* Aumentado */
  height: 520px; /* Aumentado */
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: border-color var(--transition-base), transform var(--transition-base);
  background-size: cover;
}

.module-slide:hover {
  border-color: rgba(139, 92, 246, 0.4);
  transform: scale(1.02);
}

.module-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 1024px) {
  .modules-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
  
  .modules-content {
    text-align: center; /* Centralizado como pedido */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centralizado verticalmente */
  }
  
  .modules-subtitle {
    margin: 0 auto 2rem auto; /* Centralizado horizontalmente */
  }
  
  .modules-highlights {
    justify-content: center; /* Centralizado horizontalmente */
  }
}

/* ============ FEATURES SECTION ============ */
.features-section {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(to bottom, #050505, #0a0a0a);
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

.features-content {
  text-align: center;
}

.features-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.features-subtitle {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  transition: border-color var(--transition-base), transform var(--transition-base);
}

.feature-item:hover {
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateX(5px);
}

.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.feature-text h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: white;
}

.feature-text p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ============ RESPONSIVE ============ */
@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
  
  .features-content {
    text-align: left;
    position: sticky;
    top: 2rem;
  }
  
  .features-subtitle {
    margin: 0;
  }
}

/* ============ BIO SECTION ============ */
.bio-section {
  position: relative;
  z-index: 2;
  padding: 6rem 0;
  background: linear-gradient(to bottom, #0a0a0a, #050505);
  overflow: visible;
}

.bio-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.bio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.bio-image-wrapper {
  position: relative;
}

.bio-image-glow {
  position: absolute;
  inset: -10%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  filter: blur(80px);
  opacity: 0.15;
  border-radius: 60%;
  animation: pulse 4s ease-in-out infinite;
}

.bio-image-frame {
  position: relative;
  z-index: 10;
  padding: 0.5rem;
  border-radius: 1rem;
  background: linear-gradient(to bottom right, rgba(255,255,255,0.1), transparent);
  backdrop-filter: blur(4px);
  transform: rotate(-2deg);
  transition: transform 0.5s ease;
}

.bio-image-frame:hover {
  transform: rotate(0deg);
}

.bio-image-inner {
  background-color: var(--color-bg-alt);
  border-radius: 0.75rem;
  overflow: hidden;
  filter: grayscale(100%);
  transition: filter 0.5s ease;
  height: 700px;
  background-position: center;
  background-size: cover;
}

.bio-image-frame:hover .bio-image-inner {
  filter: grayscale(0%);
}

.bio-image-inner img {
  width: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

.bio-content {
  text-align: center;
}

.bio-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.bio-text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  color: #d1d5db;
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 300;
}

.bio-text strong {
  color: white;
  font-weight: 600;
}

.bio-quote {
  position: relative;
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--color-border);
}

.bio-quote-icon {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 2rem;
  height: 2rem;
  color: rgba(139, 92, 246, 0.3);
}

.bio-quote-text {
  font-style: italic;
  font-size: 1.1rem;
  color: white;
  font-weight: 300;
  position: relative;
  z-index: 10;
  padding-left: 2rem;
  line-height: 1.6;
}

@media (min-width: 1024px) {
  .bio-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
  
  .bio-content {
    text-align: left;
  }
}

/* ============ FAQ SECTION ============ */
.faq-section {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(to bottom, #050505, #0a0a0a);
  overflow: visible;
}

.faq-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 10;
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.faq-subtitle {
  color: var(--color-text-muted);
  font-size: 1rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  overflow: hidden;
  transition: border-color var(--transition-base);
}

.faq-item:hover {
  border-color: rgba(139, 92, 246, 0.3);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  color: white;
  transition: color var(--transition-base);
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--color-text-muted);
  transition: color var(--transition-base);
}

.faq-question:hover .faq-icon {
  color: var(--color-primary);
}

.faq-icon-minus {
  display: none;
}

.faq-item.open .faq-icon-plus {
  display: none;
}

.faq-item.open .faq-icon-minus {
  display: block;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

.faq-answer-text {
  padding: 0 1.5rem 1.5rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}


@media (max-width: 1024px) {
  /* BG Photos - Show only a few on mobile */
  .bg-photo {
    display: none; /* Hide all by default */
  }

  /* Show and position specific photos for mobile */
  .bg-photo-1 {
    display: block;
    top: 15%;
    left: 5%;
    width: 140px;
    height: 100px;
    opacity: 0.3;
  }

  .bg-photo-2 {
    display: block;
    top: 20%;
    right: 5%;
    width: 140px;
    height: 100px;
    opacity: 0.3;
    transform: rotate(10deg);
  }

  .bg-photo-3 {
    display: block;
    top: 5%;
    left: 2%;
    width: 140px;
    height: 100px;
    opacity: 0.3;
    transform: rotate(-5deg);
  }

  .bg-photo-4 {
    display: block;
    top: 8%;
    right: 2%;
    width: 140px;
    height: 100px;
    opacity: 0.3;
    transform: rotate(5deg);
  }
  
  .hero-content {
    margin-bottom: 200px;
  }
  
  .hero-expert img {
    height: 40vh;
    max-height: 400px;
  }
  
  .testimonial-card {
    width: 300px;
  }
  
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-300px * 10 - 1.5rem * 10));
    }
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 1.5rem;
  }
  
  .hero-renda {
    font-size: 1.25rem;
  }
  
  .hero-description {
    font-size: 0.9rem;
  }
  
  /* Mobile Photos - Closer to Expert */
  .bg-photo-1 {
    top: auto;
    bottom: 25%;
    left: -10%;
    width: 220px;
    height: 160px;
    opacity: 0.4;
  }

  .bg-photo-2 {
    top: auto;
    bottom: 28%;
    right: -10%;
    width: 220px;
    height: 160px;
    opacity: 0.4;
  }

  /* Top Photos */
  .bg-photo-3 {
    top: 15%;
    left: -15%;
    width: 220px;
    height: 160px;
    opacity: 0.4;
  }

  .bg-photo-4 {
    top: 20%;
    right: -15%;
    width: 220px;
    height: 160px;
    opacity: 0.4;
  }
  
  .hero-content {
    margin-bottom: 180px;
  }
  
  .hero-expert img {
    height: 35vh;
    max-height: 320px;
  }
  
  .vsl-section {
    padding: 3rem 0;
  }
  
  .testimonial-card {
    width: 320px;
    padding: 1.5rem;
  }
  
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-320px * 5 - 1.5rem * 5));
    }
  }
  
  /* Bio responsiveness */
  .bio-section {
    padding: 4rem 0;
  }
  
  .bio-image-inner {
    height: auto;
    max-height: 500px;
  }
  
  .bio-image-inner img {
    height: 100%;
    max-height: 500px;
  }
  
  .bio-title {
    font-size: 1.75rem;
  }
  
  .bio-text {
    font-size: 0.95rem;
  }
  
  .bio-quote-text {
    font-size: 1rem;
  }
  
  /* Features responsiveness */
  .features-section {
    padding: 4rem 0;
  }
  
  .feature-item {
    padding: 1rem;
  }
  
  .feature-icon {
    width: 40px;
    height: 40px;
  }
  
  .feature-text h4 {
    font-size: 1rem;
  }
  
  .feature-text p {
    font-size: 0.85rem;
  }
  
  /* FAQ responsiveness */
  .faq-section {
    padding: 4rem 0;
  }
  
  .faq-question {
    font-size: 0.9rem;
    padding: 1rem 1.25rem;
  }
  
  .faq-answer-text {
    font-size: 0.9rem;
    padding: 0 1.25rem 1.25rem;
  }
}


/* ============ VSL DELAY ============ */

/* ============ VSL DELAY ============ */
/* Hide everything with this class initially (standard Vturb behavior) */
.smartplayer-call-action {
  display: none;
}

/* Only apply animation to OUR sections and CTAs when they become visible */
section.smartplayer-call-action.visible,
.section-cta.smartplayer-call-action.visible {
  display: block;
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}/* End custom CSS */