:root {
  --bg-color: #1A0530;
  --text-primary: #ffffff;
  --text-secondary: #cccccc;
  
  --color-pink: #ff66c4;
  --color-green: #7ed957;
  --color-purple: #8251ad;
  --color-dark-purple: #2A0156;
  --color-deep-purple: #43007B;
  --color-faq-purple: #4C2371;
  --color-footer-purple: #280F3E;

  --font-family-sans: 'Montserrat', 'Helvetica Neue', sans-serif;
  --font-family-heading: 'Montserrat', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-family-sans);
  line-height: 1.5;
  overflow-x: hidden;
}

/* Custom Scrollbar (original pink) */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-color); }
::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background-color: var(--color-pink);
  box-shadow: 0 0 10px rgba(255,255,255,0.7);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header — absolute over hero, transparent */
.site-header {
  padding: 14px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: transparent;
}

.site-logo {
  max-width: 160px;
  width: 100%;
}

@media (min-width: 768px) {
  .site-logo {
    max-width: 200px;
  }
}

/* Hero Section */
.hero {
  padding: 60px 0 60px;
  text-align: center;
  position: relative;
  background-image: url('assets/thayytpsite-1.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

/* Purple overlay instead of black */
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(42,1,86,0.88) 0%, rgba(26,5,48,0.75) 50%, rgba(42,1,86,0.85) 100%);
  z-index: 0;
}

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

.hero-title {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 30px;
  text-transform: uppercase;
  padding-top: 50px;
}

.texta { color: var(--text-primary); }
.textc { color: var(--color-pink); }
.textb03 { color: var(--color-pink); font-family: 'Rowdies', sans-serif; }
.text-glow {
  text-shadow: 0 0 15px rgba(255, 102, 196, 0.8), 0 0 30px rgba(255, 102, 196, 0.4);
  font-size: 1.1em;
  display: inline-block;
  margin: 5px 0;
}



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

/* VSL Wrapper (5:7 ratio, sized to fit viewport) */
.vsl-container {
  max-width: 420px;
  margin: 0 auto 32px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(130, 81, 173, 0.3);
  overflow: hidden;
}

.vsl-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 7;
  max-height: 75vh;
  background: var(--color-dark-purple);
}

video#vsl {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.45);
  cursor: pointer;
  transition: opacity .3s;
  z-index: 10;
}

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

.play-btn-big {
  width: 72px; height: 72px;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s, background .2s;
}

.play-overlay:hover .play-btn-big {
  transform: scale(1.1);
  background: rgba(255,255,255,0.25);
}
.play-btn-big svg { margin-left: 5px; fill: white; }

.controls {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px 14px;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transition: opacity .3s;
  z-index: 20;
}

.vsl-wrapper:hover .controls,
.vsl-wrapper.paused .controls { opacity: 1; }

.btn-playpause {
  background: none; border: none; cursor: pointer;
  padding: 4px; display: flex; align-items: center; justify-content: center;
}
.btn-playpause svg { width: 22px; height: 22px; fill: #fff; }

.volume-area {
  display: flex; align-items: center; gap: 8px;
}
.btn-mute {
  background: none; border: none; cursor: pointer;
  padding: 4px; display: flex; align-items: center; justify-content: center;
}
.btn-mute svg { width: 20px; height: 20px; fill: #fff; }

input[type=range] {
  appearance: none;
  -webkit-appearance: none;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.35);
  outline: none;
  cursor: pointer;
}
input[type=range]::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #fff;
}
#volume-slider { width: 70px; }

.time-display {
  color: rgba(255,255,255,0.8);
  font-size: 12px;
  margin-left: auto;
}

/* Pitch Delay Elements */
.conteudo-delay {
  display: none;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.conteudo-delay.visivel {
  display: block;
  opacity: 1;
  animation: fadeInUp 0.8s ease forwards;
}

/* Button CTA — Original: bg #8251ad, hover #ff66c4 */
.cta-area {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.custom-buttoncta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 40px;
  background-color: var(--color-purple); /* #8251ad */
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  border-radius: 15px;
  border: none;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  transition: background 0.5s ease, transform 0.3s ease, box-shadow 0.3s;
  animation: pulseButton 2.5s infinite;
}

.custom-buttoncta:hover {
  background-color: var(--color-pink); /* #ff66c4 */
  transform: scale(1.05);
  animation: none;
}

.custom-buttoncta img {
  width: 24px;
  height: 24px;
}

/* Utility Animations */
@keyframes pulseButton {
  0% { transform: scale(1); }
  50% { transform: scale(1.06); }
  100% { transform: scale(1); }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- New Sections Styles --- */

.section-quiz {
  padding: 80px 0;
  background: linear-gradient(180deg, #2A0156 0%, #1A0530 50%, #2A0156 100%);
  position: relative;
}

/* Smooth transition connectors between sections */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, #2A0156);
  z-index: 1;
  pointer-events: none;
}
.section-quiz::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, #2A0156, transparent);
  z-index: 1;
  pointer-events: none;
}
.section-quiz::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, #1A0530);
  z-index: 1;
  pointer-events: none;
}

.section-pra-quem {
  padding: 80px 0;
  background-image: url('Método Lupifit_files/1056631025456864'); /* Using the available bg image */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.section-pra-quem::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(42,1,86,0.92) 0%, rgba(26,5,48,0.9) 100%);
  z-index: 0;
}
.section-pra-quem .container {
  position: relative;
  z-index: 1;
}

.section-motivos {
  padding: 80px 0;
  background: linear-gradient(180deg, #1A0530 0%, var(--bg-color) 100%);
  position: relative;
}
.section-motivos::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, #FFFFFF);
  z-index: 1;
  pointer-events: none;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.txt-left { text-align: left; }

.section-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}
.large-text { font-size: 3rem; display: block; margin-top: 10px; }
.text-regular { font-size: 1.2rem; font-weight: 400; text-transform: none; }
.highlight-huge { font-size: 3rem; display: block; margin-top: 5px; }

.description {
  font-size: 1.1rem;
  margin-bottom: 20px;
  max-width: 800px;
}

/* Quiz */
.quiz-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 30px;
  max-width: 600px;
  margin: 30px auto;
  text-align: left;
}

.quiz-box p {
  margin-bottom: 12px;
  font-weight: 600;
}

.in-text-logo {
  max-width: 200px;
  margin: 40px auto 10px;
}

/* Pra Quem É - white box with dark purple text */
.pra-quem-box {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 50px 45px;
  margin-bottom: 40px;
  color: var(--color-dark-purple);
}
.pra-quem-box .section-title {
  color: var(--color-pink);
}
.pra-quem-box .description {
  color: var(--color-dark-purple);
}

.pra-quem-icons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

@media (min-width: 768px) {
  .pra-quem-icons {
    flex-direction: row;
    justify-content: space-between;
  }
}

.icon-item {
  flex: 1;
  background: rgba(42,1,86,0.08);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  color: var(--color-dark-purple);
}
.icon-circle {
  font-size: 3rem;
  display: block;
  margin-bottom: 15px;
}

/* 3 Motivos */
.motivos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}

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

/* 3 Motivos cards — alternating dark purple / mid purple with pink border */
.motivo-card {
  background: var(--color-dark-purple);
  padding: 30px 25px;
  border-radius: 10px;
  border: 1px solid var(--color-pink);
  box-shadow: 0px 24px 33px -12px rgba(0, 0, 0, 0.28);
  transition: transform 0.3s;
}
.motivo-card:nth-child(even) {
  background: var(--color-purple);
}

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

.motivo-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #FFFFFF;
}
.motivo-card p {
  color: #EBEBEB;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Diferente section — white bg with dark purple text */
.section-diferente {
  padding: 80px 0;
  background-color: #FFFFFF;
  color: var(--color-dark-purple);
  position: relative;
}
.section-diferente::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0));
  z-index: 1;
  pointer-events: none;
}
.section-diferente .section-title {
  color: var(--color-dark-purple);
}
.diferente-list {
  text-align: left;
  max-width: 600px;
  list-style: none;
  font-size: 1.1rem;
  color: var(--color-dark-purple);
}
.diferente-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.check-icon {
  color: #33C547;
  font-weight: bold;
}

/* Benefícios section — with background image */
.section-beneficios {
  padding: 80px 0;
  background-color: #FFFFFF;
  background-image: url('assets/Design-sem-nome-2024-04-16T175126.997-1.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}
.section-beneficios::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(255,255,255,0.85);
  z-index: 0;
}
.section-beneficios .container {
  position: relative;
  z-index: 1;
}

.beneficios-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 768px) {
  .beneficios-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.beneficio-item {
  background: var(--color-dark-purple);
  border-radius: 10px;
  padding: 30px 25px;
  text-align: center;
  border: 1px solid var(--color-pink);
  box-shadow: 0px 24px 33px -12px rgba(0, 0, 0, 0.28);
  transition: transform 0.3s;
  color: #EBEBEB;
}
.beneficio-item:nth-child(even) {
  background: var(--color-purple);
}
.beneficio-item:hover {
  transform: translateY(-5px);
}
.beneficio-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 20px;
}
.beneficio-item h3 {
  color: #FFFFFF;
  margin-bottom: 15px;
  font-size: 1.2rem;
}
.beneficio-item p {
  color: #EBEBEB;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Resultados / Carrossel */
.section-resultados {
  padding: 80px 0;
  background: linear-gradient(90deg, var(--color-deep-purple) 0%, var(--bg-color) 100%);
}

.carousel-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 20px 0;
}
.carousel-track {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
  -webkit-overflow-scrolling: touch;
}
.carousel-track::-webkit-scrollbar {
  height: 8px;
}
.carousel-track::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
}
.carousel-track::-webkit-scrollbar-thumb {
  background: var(--color-pink);
  border-radius: 4px;
}
.carousel-track img {
  scroll-snap-align: center;
  max-height: 400px;
  border-radius: 15px;
  object-fit: contain;
  flex: 0 0 auto;
}

/* FAQ — original uses dark purple bg on items */
.section-faq {
  background-color: #FFFFFF;
  color: #111;
  padding: 80px 0;
}

.section-faq .section-title {
  color: var(--color-dark-purple);
}

.faq-accordion {
  max-width: 800px;
  margin-top: 40px;
}
.faq-item {
  background: var(--color-faq-purple);
  margin-bottom: 10px;
  border-radius: 10px;
  overflow: hidden;
}
.faq-item summary {
  padding: 22px 17px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  font-size: 1rem;
  color: #FFFFFF;
  letter-spacing: 0.5px;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-icon {
  color: #FFFFFF;
  transition: transform 0.3s;
}
.faq-item[open] .faq-icon {
  transform: rotate(180deg);
}
.faq-content {
  padding: 0 17px 22px;
  color: #ffffffcc;
  line-height: 1.6;
  font-size: 0.95rem;
}

.faq-suporte h3 {
  color: var(--color-dark-purple);
}
.faq-suporte .description {
  color: #616168;
}

/* Footer */
.site-footer {
  padding: 60px 0 40px;
  background-color: var(--color-footer-purple);
  border-top: none;
  font-size: 0.95rem;
  color: #FFFFFF;
}

/* Scroll Fade Animations */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Text Utility Classes */
.textb { color: var(--color-pink); font-family: 'Rowdies', sans-serif; }
.textantes {
  font-size: 15px;
  font-weight: 600;
  line-height: 6em;
  color: var(--color-pink);
  border-radius: 10px;
  font-family: 'Epilogue', sans-serif;
  letter-spacing: 0.5px;
  border: 1px solid rgba(62,63,65,0.2);
  padding: 9px 25px;
  background-color: #fff;
}

/* Quiz Box: Interactive Checkboxes like original */
.quiz-box label {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  background-color: var(--color-pink);
  padding: 15px;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  user-select: none;
  transition: background-color 0.3s ease;
  margin-bottom: 10px;
}
.quiz-box label:hover {
  background-color: #ff4da0;
}
.quiz-box input[type="checkbox"] {
  accent-color: #fff;
  transform: scale(1.5);
  flex-shrink: 0;
}

/* Before/After Comparison Slider */
.section-comparacao {
  padding: 80px 0;
  background: url('assets/degrasitthay.png');
  background-size: cover;
  background-position: center;
}

.comparacao-slider {
  max-width: 600px;
  margin: 40px auto 0;
}
.comparacao-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: col-resize;
  user-select: none;
}
.comparacao-img {
  display: block;
  width: 100%;
  height: auto;
}
.comparacao-depois {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: inset(0 0 0 50%);
}
.comparacao-divider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: #fff;
  transform: translateX(-50%);
  z-index: 2;
}
.comparacao-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: var(--color-purple);
  border: 3px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.comparacao-label {
  position: absolute;
  bottom: 16px;
  padding: 6px 20px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-weight: 700;
  border-radius: 8px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 3;
}
.comparacao-label-antes { left: 16px; }
.comparacao-label-depois { right: 16px; }

/* =======================
   FLOATING PARALLAX EMOJIS
   ======================= */
.floating-emojis {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 5;
}
.floating-emoji {
  position: absolute;
  font-size: 2rem;
  opacity: 0.55;
  animation: floatEmoji 8s ease-in-out infinite;
  will-change: transform;
}
/* Position emojis only at far edges/corners — away from central content */
.floating-emoji:nth-child(1) { top: 5%;  left: 2%;  animation-delay: 0s;   animation-duration: 7s;   font-size: 2.5rem; }
.floating-emoji:nth-child(2) { top: 8%;  right: 2%; animation-delay: 1.5s; animation-duration: 9s;   font-size: 2.2rem; }
.floating-emoji:nth-child(3) { top: 88%; left: 3%;  animation-delay: 3s;   animation-duration: 6s;   font-size: 2.4rem; }
.floating-emoji:nth-child(4) { top: 90%; right: 3%; animation-delay: 0.8s; animation-duration: 10s;  font-size: 2.0rem; }
.floating-emoji:nth-child(5) { top: 45%; left: 1%;  animation-delay: 2s;   animation-duration: 8s;   font-size: 2.3rem; }
.floating-emoji:nth-child(6) { top: 92%; left: 92%; animation-delay: 4s;   animation-duration: 7.5s; font-size: 2.0rem; }
.floating-emoji:nth-child(7) { top: 5%;  left: 92%; animation-delay: 1s;   animation-duration: 11s;  font-size: 2.2rem; }
.floating-emoji:nth-child(8) { top: 50%; right: 1%; animation-delay: 5s;   animation-duration: 6.5s; font-size: 2.1rem; }

@keyframes floatEmoji {
  0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
  25% { transform: translateY(-30px) translateX(15px) rotate(8deg); }
  50% { transform: translateY(-50px) translateX(-12px) rotate(-5deg); }
  75% { transform: translateY(-20px) translateX(20px) rotate(6deg); }
}

/* =======================
   AUTO-SCROLLING CAROUSEL
   ======================= */
.carousel-container {
  -webkit-mask: linear-gradient(90deg, transparent, white 5%, white 95%, transparent);
  mask: linear-gradient(90deg, transparent, white 5%, white 95%, transparent);
}
.carousel-track {
  display: flex;
  gap: 15px;
  overflow: hidden;
  padding-bottom: 20px;
  animation: scrollCarousel 40s linear infinite;
}
.carousel-track:hover {
  animation-play-state: paused;
}

@keyframes scrollCarousel {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =======================
   ENHANCED ANIMATIONS
   ======================= */
/* Slide from left */
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Slide from right */
.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Scale up */
.reveal-scale {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger for grid children */
.motivo-card:nth-child(1) { transition-delay: 0s; }
.motivo-card:nth-child(2) { transition-delay: 0.15s; }
.motivo-card:nth-child(3) { transition-delay: 0.3s; }

.beneficio-item:nth-child(1) { transition-delay: 0s; }
.beneficio-item:nth-child(2) { transition-delay: 0.1s; }
.beneficio-item:nth-child(3) { transition-delay: 0.2s; }
.beneficio-item:nth-child(4) { transition-delay: 0.3s; }
.beneficio-item:nth-child(5) { transition-delay: 0.4s; }
.beneficio-item:nth-child(6) { transition-delay: 0.5s; }

/* Hover effects on all cards */
.motivo-card, .beneficio-item, .faq-item, .icon-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.motivo-card:hover, .beneficio-item:hover {
  transform: translateY(-8px);
  box-shadow: 0px 30px 40px -15px rgba(0, 0, 0, 0.35);
}
.icon-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(42,1,86,0.15);
}

/* CTA button glow effect */
.custom-buttoncta {
  box-shadow: 0 0 20px rgba(130, 81, 173, 0.4);
}
.custom-buttoncta:hover {
  box-shadow: 0 0 30px rgba(255, 102, 196, 0.6);
}

/* Quiz box gradient bg */
.quiz-box {
  background: linear-gradient(135deg, rgba(67,0,123,0.3) 0%, rgba(130,81,173,0.15) 100%);
  border: 1px solid rgba(255,102,196,0.2);
}

/* Section centering utility */
.quiz-desc, .quiz-intro, .quiz-outro {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
