/* ==========================================================================
   RESET & VARIAVEIS GLOBAIS
   ========================================================================== */

:root {
  /* Paleta Core */
  --color-bg-base: #000000;
  --color-bg-surface: #05020a;
  --color-text-main: #ffffff;
  --color-text-muted: rgba(255, 255, 255, 0.7);

  /* Cores de Destaque - Nova Paleta */
  --color-pink: #f2006d;
  --color-purple: #9c00eb;
  --color-orange: #fe4300;

  /* Gradientes Base */
  --grad-primary: linear-gradient(135deg, var(--color-pink), var(--color-purple));
  --grad-cta: linear-gradient(135deg, var(--color-pink), var(--color-purple));
  --grad-surface: linear-gradient(180deg, rgba(15, 6, 26, 1) 0%, rgba(5, 2, 10, 1) 100%);

  /* Tipografia */
  --font-heading: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Sombras / Glow */
  --glow-purple: 0 0 120px rgba(156, 0, 235, 0.3);
  --glow-pink: 0 0 60px rgba(242, 0, 109, 0.3);
  --glow-orange: 0 0 60px rgba(254, 67, 0, 0.2);
  --glow-btn: 0 20px 40px rgba(242, 0, 109, 0.45);
}

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

html {
  background-color: var(--color-bg-base);
  color: var(--color-text-main);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

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

ul {
  list-style: none;
}

/* ==========================================================================
   UTILITY E TIPOGRAFIA
   ========================================================================== */

h1,
h2,
h3,
h4,
h5,
h6,
.font-heading {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.text-gradient {
  background: var(--grad-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-family: var(--font-heading);
  margin-bottom: 60px;
  letter-spacing: 0.04em;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: var(--color-text-muted);
  margin-top: -40px;
  margin-bottom: 60px;
  text-transform: none;
}

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

/* Base de Botao e CTAs */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-cta);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 1.2rem 2.5rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--glow-btn);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--color-text-muted);
  color: var(--color-text-main);
  padding: 1rem 2rem;
  border-radius: 100px;
  font-weight: 600;
}

.btn-outline:hover {
  border-color: var(--color-text-main);
  background: rgba(255, 255, 255, 0.05);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #0d2a1f;
  color: #55efc4;
  border: 1px solid #1b4d3e;
  padding: 1rem 2rem;
  border-radius: 100px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-whatsapp:hover {
  background-color: #123d2e;
  border-color: #55efc4;
}

.btn-whatsapp i {
  font-size: 1.4rem;
}

/* ==========================================================================
   HEADER LOGO FLUTUANTE
   ========================================================================== */

.main-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 5vw;
  z-index: 100;
  pointer-events: none;
}

.header-logo {
  max-width: 100px;
  height: auto;
}

/* ==========================================================================
   SECAO 1: HERO
   ========================================================================== */

.hero-section {
  width: 100vw;
  min-height: 100svh;
  display: flex;
  position: relative;
  background-color: var(--color-bg-surface);
  overflow: hidden;
}


.hero-decor-wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  /* Garante que itens fiquem na base se houver apenas um */
  pointer-events: none;
  z-index: 1;
}

.hero-decor-top {
  width: 100%;
  height: auto;
  opacity: 0.15;
  display: none;
  /* Escondido por padrao (desktop) conforme pedido */
}

@media (max-width: 991px) {
  .hero-decor-top {
    display: block;
    /* Volta a aparecer no mobile (g5) */
  }
}

.hero-decor-bottom {
  width: 100%;
  height: auto;
  opacity: 0.15;
}




.hero-bg-left {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-image {
  object-fit: cover;
  object-position: left center;
  width: 130%;
  height: 100%;
  transform: translateX(-15%);
}




.hero-bg-left::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, transparent 15%, rgba(5, 2, 10, 0.25) 45%, var(--color-bg-surface) 85%);
  pointer-events: none;
}

.hero-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 5vw 40px 0;
  margin-left: auto;
  width: 50%;
  z-index: 10;
  position: relative;
}

.badge-location {
  margin-bottom: 24px;
}

.badge-text {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid rgba(242, 0, 109, 0.4);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-pink);
  background: rgba(242, 0, 109, 0.05);
}

.badge-text:hover {
  background: rgba(242, 0, 109, 0.15);
  box-shadow: 0 0 15px rgba(242, 0, 109, 0.3);
}

.hero-headline {
  font-size: clamp(3.0rem, 4vw, 5.0rem);
  letter-spacing: 0.03em;
  margin-bottom: 24px;
  text-wrap: balance;
  text-transform: uppercase;
  line-height: 1.0;
}

.hero-subheadline {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: var(--color-text-muted);
  max-width: 500px;
  margin-bottom: 40px;
  text-transform: none;
  font-family: var(--font-body);
  letter-spacing: 0;
}

.hero-progress-wrapper {
  max-width: 300px;
  margin-bottom: 48px;
}

.progress-bar-container {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-pink), var(--color-purple));
  border-radius: 100px;
}

.hero-cta-wrapper {
  display: flex;
}

@media (max-width: 991px) {
  .hero-section {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100svh;
    min-height: 100svh;
    overflow: hidden;
    position: relative;
  }

  .hero-bg-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }

  .hero-image {
    object-fit: cover;
    object-position: center top !important;
    width: 100% !important;
    transform: none !important;
  }


  .hero-bg-left::after {
    background: linear-gradient(180deg, transparent 20%, rgba(5, 2, 10, 0.8) 60%, var(--color-bg-surface) 100%);
  }

  .hero-container {
    padding: 16px 5vw 40px;
    margin-left: 0;
    width: 100%;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .badge-location {
    margin-bottom: 12px;
  }

  .hero-headline {
    font-size: 2.2rem;
    margin-bottom: 12px;
    max-width: 90vw;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.1;
  }

  .hero-subheadline {
    margin: 0 auto 20px;
    font-size: 0.95rem;
  }

  .hero-progress-wrapper {
    width: 100%;
    margin: 0 auto 24px;
  }

  .hero-cta-wrapper {
    width: 100%;
    justify-content: center;
  }

  .btn-primary.cta-button {
    width: 100%;
    max-width: 350px;
  }

  .hero-decor-wrapper {
    display: none;
  }












  .main-header {
    text-align: center;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    padding: 16px 5vw;
  }

  .header-logo {
    max-width: 60px;
  }
}

/* ==========================================================================
   SECAO 2: BARRA DE IMAGEM FULL WIDTH
   ========================================================================== */

.image-band-section {
  width: 100%;
  overflow: hidden;
  background: var(--color-bg-base);
  line-height: 0;
}

.image-band {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* ==========================================================================
   SECAO 3: PORTFOLIO (BENTO MASONRY)
   ========================================================================== */

.portfolio-section {
  padding: 100px 5vw;
  background: radial-gradient(ellipse at 20% 50%, rgba(156, 0, 235, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(242, 0, 109, 0.08) 0%, transparent 60%),
    var(--color-bg-base);
}

.portfolio-container {
  max-width: 1200px;
  margin: 0 auto;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bento-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #05020a;
  cursor: crosshair;
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 16px;
}

.video-description {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  text-transform: none;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
  border-radius: 12px;
  overflow: hidden;
  background: #111;
}

.video-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-facade {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-facade:hover img {
  transform: scale(1.05);
}

.play-button-overlay {
  position: absolute;
  width: 80px;
  height: 80px;
  background: rgba(156, 0, 235, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 32px;
  z-index: 2;
  box-shadow: 0 0 30px rgba(156, 0, 235, 0.5);
}

.play-button-overlay.mini {
  width: 50px;
  height: 50px;
  font-size: 24px;
}

.video-facade:hover .play-button-overlay {
  transform: scale(1.1);
  background: var(--grad-cta);
  box-shadow: 0 0 50px rgba(242, 0, 109, 0.6);
}

@media (max-width: 991px) {
  .bento-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ==========================================================================
   SECAO 4: SOBRE O EVENTO (OVERLAP)
   ========================================================================== */

.about-section {
  position: relative;
  padding: 100px 5vw;
  width: 100%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: radial-gradient(ellipse at 30% 40%, rgba(156, 0, 235, 0.15) 0%, transparent 60%),
    linear-gradient(180deg, var(--color-bg-base) 0%, #0a0315 50%, var(--color-bg-base) 100%);
  overflow: hidden;
}

.watermark-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 15vw;
  color: rgba(255, 255, 255, 0.02);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

.about-media {
  position: absolute;
  left: 5vw;
  top: 50%;
  transform: translateY(-50%);
  width: 45vw;
  height: 60vh;
  border-radius: 12px;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-media-inner {
  width: 100%;
  height: 100%;
  background: url('/images/celulares-mod1-site-luma.webp') center/contain no-repeat;
  background-color: var(--color-bg-surface);
}

.about-content-box {
  width: 55vw;
  z-index: 5;
  padding: 60px;
  background: rgba(10, 2, 20, 0.75);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(156, 0, 235, 0.3);
  border-radius: 16px;
  position: relative;
}

.about-content-box::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(242, 0, 109, 0.12) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.about-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 32px;
}

.about-text {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #d5ccdf;
  margin-bottom: 24px;
  text-transform: none;
  font-family: var(--font-body);
  letter-spacing: 0;
}

.about-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  text-transform: none;
  font-family: var(--font-body);
  letter-spacing: 0;
}

.about-bullets li i {
  color: var(--color-pink);
  font-size: 20px;
  flex-shrink: 0;
}

.about-cta {
  margin-top: 16px;
}

@media (max-width: 991px) {
  .about-section {
    flex-direction: column;
    justify-content: flex-start;
    padding: 60px 5vw;
  }

  .watermark-title {
    font-size: 25vw;
    top: 20%;
  }

  .about-media {
    position: relative;
    left: 0;
    top: 0;
    transform: none;
    width: 100%;
    height: 40vh;
    margin-bottom: -40px;
  }

  .about-content-box {
    width: 95%;
    padding: 40px 24px;
    margin: 0 auto;
  }

  .about-text {
    font-size: 1rem;
  }
}

/* ==========================================================================
   SECAO 5: O QUE VOCE VAI APRENDER
   ========================================================================== */

.learn-section {
  padding: 100px 5vw;
  background: radial-gradient(ellipse at 70% 30%, rgba(242, 0, 109, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 30% 70%, rgba(156, 0, 235, 0.1) 0%, transparent 60%),
    var(--color-bg-base);
}

.learn-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
}

.module-card {
  position: relative;
  padding: 40px 32px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1 1 300px;
  max-width: calc(33.333% - 22px);
  min-width: 280px;
  background: var(--grad-surface);
  z-index: 1;
}

@media (max-width: 900px) {
  .module-card {
    max-width: calc(50% - 16px);
  }
}

@media (max-width: 600px) {
  .module-card {
    max-width: 100%;
  }
}

/* Gradient border */
.module-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  background: linear-gradient(135deg, rgba(242, 0, 109, 0.6), transparent 50%, rgba(156, 0, 235, 0.6));
  z-index: -1;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1px;
}

.module-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(180deg, rgba(25, 10, 40, 1) 0%, rgba(10, 5, 20, 1) 100%);
}

.module-card:hover::before {
  background: linear-gradient(135deg, rgba(242, 0, 109, 1), transparent 50%, rgba(156, 0, 235, 1));
}

.module-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(242, 0, 109, 0.1);
  border-radius: 12px;
  color: var(--color-pink);
  font-size: 28px;
}

.module-title {
  font-size: 1.5rem;
  font-weight: 400;
}

.module-desc {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  text-transform: none;
  font-family: var(--font-body);
  letter-spacing: 0;
}

.learn-cta-wrapper {
  margin-top: 60px;
}

@media (max-width: 768px) {
  .learn-grid {
    gap: 20px;
  }

  .module-card {
    padding: 32px 24px;
  }
}

/* ==========================================================================
   SECAO 6: QUEM DEVE PARTICIPAR
   ========================================================================== */

.target-section {
  padding: 120px 5vw;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 80% 20%, rgba(242, 0, 109, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(156, 0, 235, 0.12) 0%, transparent 50%),
    linear-gradient(180deg, var(--color-bg-base) 0%, #0a0315 50%, var(--color-bg-base) 100%);
}

.blob {
  position: absolute;
  filter: blur(100px);
  z-index: 0;
  opacity: 0.4;
  pointer-events: none;
}

.orange-blob {
  width: 400px;
  height: 400px;
  background: var(--color-orange);
  top: 10%;
  right: -10%;
  border-radius: 50%;
}

.purple-blob {
  width: 500px;
  height: 500px;
  background: var(--color-purple);
  bottom: -10%;
  left: -10%;
  border-radius: 50%;
}

.target-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.target-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.target-title {
  text-align: center;
  font-size: clamp(2.5rem, 4vw, 4rem);
  margin-bottom: 16px;
}

.target-intro {
  text-align: center;
  font-size: 1.15rem;
  color: var(--color-text-muted);
  max-width: 700px;
  margin-bottom: 40px;
  text-transform: none;
  font-family: var(--font-body);
  letter-spacing: 0;
}

.target-cards-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.target-card {
  background: linear-gradient(180deg, #111111 0%, #05020a 100%);
  border: 1px solid rgba(156, 0, 235, 0.2);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.target-card:hover {
  transform: translateY(-5px);
  border-color: rgba(242, 0, 109, 0.5);
  box-shadow: 0 0 30px rgba(242, 0, 109, 0.1);
}

.target-icon {
  font-size: 28px;
  color: var(--color-pink);
  filter: drop-shadow(0 0 12px rgba(242, 0, 109, 0.5));
  flex-shrink: 0;
}

.target-text {
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
  color: #ebebeb;
  text-transform: none;
  font-family: var(--font-body);
  letter-spacing: 0;
}

.target-text strong {
  color: #fff;
  font-weight: 700;
}

.target-cta-wrapper {
  margin-top: 50px;
  width: 100%;
}

/* Centralizar ultimo item quando sozinho */
.target-cards-wrapper .target-card:last-child:nth-child(3n+1) {
  grid-column: 2;
}

@media (max-width: 991px) {
  .target-cards-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .target-cards-wrapper .target-card:last-child:nth-child(3n+1) {
    grid-column: auto;
  }

  .target-cards-wrapper .target-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 400px;
    justify-self: center;
  }

  .target-card {
    padding: 28px;
  }
}

@media (max-width: 600px) {
  .target-cards-wrapper {
    grid-template-columns: 1fr;
  }

  .target-cards-wrapper .target-card:last-child:nth-child(odd) {
    max-width: 100%;
  }
}

/* ==========================================================================
   SECAO 7: SOBRE A EXPERIENCIA (TIMELINE)
   ========================================================================== */

.experience-section {
  padding: 100px 5vw;
  background: radial-gradient(ellipse at 50% 50%, rgba(108, 2, 248, 0.08) 0%, transparent 60%),
    var(--color-bg-base);
}

.timeline-list {
  max-width: 900px;
  margin: 0 auto;
}

.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: flex-start;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.timeline-item::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 1px;
  width: 100%;
  background: radial-gradient(circle at center, var(--color-pink) 0%, transparent 70%);
  opacity: 0;
}

.timeline-item:hover::after {
  opacity: 1;
}

.timeline-medal {
  width: 56px;
  height: 56px;
  background: var(--color-bg-base);
  border: 1px solid var(--color-purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(156, 0, 235, 0.2);
}

.timeline-item:hover .timeline-medal {
  box-shadow: 0 0 30px rgba(242, 0, 109, 0.6);
  border-color: var(--color-pink);
}

.timeline-icon {
  font-size: 24px;
  color: #fff;
}

.timeline-content {
  padding-top: 10px;
}

.timeline-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.timeline-desc {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  text-transform: none;
  font-family: var(--font-body);
  letter-spacing: 0;
}

.timeline-desc strong {
  color: #fff;
}

.experience-cta-wrapper {
  margin-top: 80px;
}

.cta-giant {
  font-size: 1.1rem;
  padding: 1.5rem 4rem;
}

@media (max-width: 768px) {
  .timeline-item {
    grid-template-columns: 56px 1fr;
    gap: 20px;
    padding: 32px 0;
  }
}

/* ==========================================================================
   SECAO 8: BONUS PARA PARTICIPANTES
   ========================================================================== */

.bonus-section {
  padding: 100px 5vw;
  background: radial-gradient(ellipse at 50% 0%, rgba(242, 0, 109, 0.12) 0%, transparent 50%),
    linear-gradient(180deg, #050210 0%, #0a0315 50%, var(--color-bg-base) 100%);
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.bonus-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(156, 0, 235, 0.2);
  border-radius: 20px;
  padding: 40px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.bonus-item:hover {
  border-color: rgba(242, 0, 109, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(242, 0, 109, 0.1);
}

.bonus-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(242, 0, 109, 0.15), rgba(156, 0, 235, 0.15));
  border-radius: 16px;
  font-size: 32px;
  color: var(--color-pink);
}

.bonus-item h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text-main);
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.4;
}

.bonus-cta-wrapper {
  margin-top: 60px;
}

@media (max-width: 991px) {
  .bonus-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .bonus-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

/* ==========================================================================
   SECAO 9: SOBRE MIM (MENTORA)
   ========================================================================== */

.mentor-section {
  position: relative;
  min-height: 90vh;
  background: radial-gradient(ellipse at 80% 30%, rgba(156, 0, 235, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 70%, rgba(242, 0, 109, 0.12) 0%, transparent 50%),
    linear-gradient(135deg, #0a0614 0%, #1a0812 100%);
  overflow: hidden;
}

.mentor-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  font-family: var(--font-heading);
  font-size: 25vw;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.02);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

.mentor-grid {
  display: flex;
  align-items: center;
  min-height: 90vh;
  position: relative;
  z-index: 1;
  width: 100%;
}

.mentor-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  z-index: 1;
}

.mentor-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: drop-shadow(0 0 40px rgba(0, 0, 0, 0.8));
  -webkit-mask-image: linear-gradient(to right, black 80%, transparent 100%);
  mask-image: linear-gradient(to right, black 80%, transparent 100%);
}

.mentor-photo-square {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: none;
  -webkit-mask-image: none;
  mask-image: none;
  border-radius: 20px;
  box-shadow: 0 0 60px rgba(156, 0, 235, 0.25), 0 0 30px rgba(242, 0, 109, 0.15);
}

/* Quando a imagem e quadrada, o wrapper precisa de aspect-ratio */
.mentor-image-wrapper:has(.mentor-photo-square) {
  padding: 40px 5vw 40px 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mentor-image-wrapper:has(.mentor-photo-square) .mentor-photo-square {
  width: 100%;
  max-width: 680px;
  aspect-ratio: 2 / 3;
  /* Proporcao mais vertical para exibir a mentora quase inteira */
  height: auto;
  object-fit: cover;
  object-position: top center;
  border-radius: 20px;
}

.mentor-content {
  margin-left: auto;
  margin-right: 5vw;
  width: 50%;
  padding: 40px;
  background: rgba(10, 6, 20, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  border: 1px solid rgba(156, 0, 235, 0.2);
  position: relative;
  z-index: 2;
}

.mentor-name {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 8px;
  background: var(--grad-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mentor-tagline {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  text-transform: none;
  letter-spacing: 0;
}

.mentor-intro {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 32px;
}

.mentor-bio {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin-bottom: 20px;
  text-transform: none;
  font-family: var(--font-body);
  letter-spacing: 0;
  line-height: 1.6;
}

.mentor-bullets {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mentor-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 1rem;
  text-transform: none;
  font-family: var(--font-body);
  letter-spacing: 0;
}

.bullet-icon {
  font-size: 22px;
  color: var(--color-pink);
  margin-top: 2px;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .mentor-grid {
    flex-direction: column;
    padding-top: 80px;
    /* Aumentado para descer a foto para longe do titulo */
  }

  .mentor-image-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    /* Deixa a altura ser definida pelo conteudo/foto */
  }

  .mentor-image-wrapper:has(.mentor-photo-square) {
    padding: 20px 5vw 40px 5vw;
    /* Reduzido o padding de topo interno no mobile */
  }

  .mentor-photo {
    object-position: center 10%;
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
  }

  .mentor-content {
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
    padding: 32px;
    background: transparent;
    backdrop-filter: none;
    border: none;
    margin-top: 20px;
    /* Removida sobreposicao (era -20px) para descer o texto */
    margin-bottom: 40px;
    text-align: center;
  }

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

  .mentor-bullets {
    align-items: center;
  }

  .mentor-bullets li {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }

  .mentor-watermark {
    transform: translate(-50%, -50%);
    font-size: 15vw;
  }
}

/* ==========================================================================
   SECAO 10: INVESTIMENTO (SPOTLIGHT PRICING)
   ========================================================================== */

.pricing-section {
  position: relative;
  padding: 120px 5vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(242, 0, 109, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(156, 0, 235, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(242, 0, 109, 0.15) 0%, transparent 40%),
    linear-gradient(180deg, #0a0015 0%, #120520 30%, #1a0512 60%, #0a0015 100%);
}

.pricing-decor {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  width: 250%;
  /* Aumentado para preencher rotacionado */
  max-width: 4000px;
  height: auto;
  z-index: 1;
  opacity: 0.07;
  /* Reduzido levemente para manter discreto pela escala maior */
  pointer-events: none;
  mix-blend-mode: lighten;
}





.pricing-container {
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 992px) {
  .pricing-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

.pricing-glow-wrapper {
  position: relative;
  padding: 2px;
  border-radius: 34px;
  height: 100%;
  background: linear-gradient(135deg, var(--color-pink), var(--color-purple), var(--color-pink));
  box-shadow: 0 40px 100px rgba(242, 0, 109, 0.2), 0 20px 60px rgba(156, 0, 235, 0.15);
}

.pricing-glow-wrapper:hover {
  transform: translateY(-8px);
  box-shadow: 0 50px 120px rgba(242, 0, 109, 0.3), 0 30px 80px rgba(156, 0, 235, 0.25);
}

/* Estado ESGOTADO */
.pricing-glow-wrapper.sold-out {
  background: linear-gradient(135deg, #444, #222, #333);
  box-shadow: none;
  filter: grayscale(0.7);
  opacity: 0.75;
  cursor: not-allowed;
}

.pricing-glow-wrapper.sold-out:hover {
  transform: none;
  box-shadow: none;
}

.sold-out-overlay {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 32px;
  pointer-events: none;
}

.sold-out-overlay span {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 5rem);
  letter-spacing: 0.15em;
  color: #fff;
  background: linear-gradient(135deg, #888, #ccc, #888);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  border: 3px solid rgba(255,255,255,0.25);
  padding: 12px 32px;
  border-radius: 12px;
  backdrop-filter: blur(2px);
  text-shadow: none;
  box-shadow: 0 0 40px rgba(0,0,0,0.6);
}

.btn-sold-out {
  background: #2a2a2a !important;
  color: #666 !important;
  cursor: not-allowed !important;
  pointer-events: none;
  box-shadow: none !important;
}

.btn-sold-out:hover {
  transform: none !important;
  box-shadow: none !important;
}

.pricing-box {
  background: #020105;
  border-radius: 32px;
  padding: 40px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-logo {
  max-width: 200px;
  margin: 0 auto 24px;
}

.pricing-tier {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  background: var(--grad-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  font-weight: 700;
}

.pricing-subtitle {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  margin-bottom: 24px;
  text-transform: none;
  font-family: var(--font-body);
  letter-spacing: 0;
}

.pricing-deliverables {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
  text-align: left;
  flex: 1;
}

.pricing-deliverables h3 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #fff;
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
}

.pricing-deliverables ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-deliverables li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  text-transform: none;
  font-family: var(--font-body);
  letter-spacing: 0;
}

.pricing-deliverables li i {
  color: var(--color-pink);
  font-size: 20px;
}

.pricing-value-box {
  margin-bottom: 24px;
}

.lote-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(156, 0, 235, 0.15);
  color: #e680ff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  font-family: var(--font-body);
}

.price {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 400;
  background: linear-gradient(135deg, var(--color-pink), var(--color-purple));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.installment-price {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  text-transform: none;
  letter-spacing: 0;
}

.price-prefix {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text-muted);
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 4px;
}

.cta-pulse {
  width: 100%;
  padding: 24px;
  font-size: 1.25rem;
  margin-bottom: 16px; /* Reduzido levemente para o novo botao */
}

.pricing-actions {
  display: flex;
  flex-direction: column;
  align-items: center; /* Garante que o botao caiba e centralize */
  gap: 12px;
  margin-top: 16px;
  margin-bottom: 0;
}

.cta-whatsapp-extra {
  width: auto;
  max-width: 300px;
  padding: 10px 24px;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: transparent;
  color: #55efc4;
  border: 1px solid rgba(85, 239, 196, 0.3);
  border-radius: 100px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.cta-whatsapp-extra:hover {
  background-color: rgba(85, 239, 196, 0.1);
  border-color: #55efc4;
  transform: translateY(-2px);
}

.pricing-scarcity {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.scarcity-text {
  color: var(--color-orange);
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
}

.safe-buy {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-transform: none;
  font-family: var(--font-body);
  letter-spacing: 0;
}

@media (max-width: 600px) {
  .pricing-section {
    padding: 60px 4vw;
  }

  .pricing-decor {
    width: 300%;
    height: 120%;
    object-fit: contain;
    opacity: 0.08;
  }

  .pricing-section .section-title {
    margin-bottom: 24px;
    font-size: 2.2rem;
  }

  .pricing-box {
    padding: 24px 16px;
    border-radius: 24px;
  }

  .pricing-logo {
    max-width: 120px;
    margin-bottom: 12px;
  }

  .pricing-subtitle {
    font-size: 0.9rem;
    margin-bottom: 16px;
    line-height: 1.3;
  }

  .pricing-deliverables {
    padding: 16px;
    margin-bottom: 16px;
  }

  .pricing-deliverables h3 {
    font-size: 0.95rem;
    margin-bottom: 10px;
  }

  .pricing-deliverables ul {
    gap: 8px;
  }

  .pricing-deliverables li {
    font-size: 0.85rem;
    line-height: 1.2;
  }

  .pricing-value-box {
    margin-bottom: 20px;
  }

  .installment-price {
    font-size: 1.1rem;
    margin-bottom: 4px;
  }

  .price-prefix {
    font-size: 0.8rem;
    margin-bottom: 0px;
  }

  .price {
    font-size: 2.8rem;
  }

  .cta-pulse {
    padding: 16px;
    font-size: 1rem;
    margin-bottom: 12px;
  }

  .pricing-actions {
    margin-top: 16px !important;
  }
}

/* ==========================================================================
   SECAO 11: FAQ
   ========================================================================== */

.faq-section {
  padding: 80px 5vw 120px;
  background: radial-gradient(ellipse at 50% 50%, rgba(156, 0, 235, 0.06) 0%, transparent 50%),
    var(--color-bg-base);
}

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

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
}

.faq-item.active .faq-question,
.faq-question:hover {
  color: var(--color-pink);
}

.faq-icon {
  font-size: 20px;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
}

.faq-answer p {
  padding-bottom: 24px;
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  background: #05020a;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 5vw 40px;
}

.footer-help {
  text-align: center;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-help h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.footer-help p {
  color: var(--color-text-muted);
  margin-bottom: 32px;
  text-transform: none;
  font-family: var(--font-body);
  letter-spacing: 0;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer-logo {
  max-width: 150px;
  opacity: 0.8;
}

.copyright {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: none;
  font-family: var(--font-body);
  letter-spacing: 0;
}

/* Otimizacao de Performance & Acessibilidade */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Containment */
.portfolio-section,
.learn-section,
.target-section,
.mentor-section,
.pricing-section,
.faq-section {
  contain: none;
}