:root {
    --primary-color: #9b4dff;
    --secondary-color: #7c3aed;
    --text-color: #ffffff;
    --bg-dark: #0a0a0a;
    --bg-card: #1a1a1a;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a0a2e 100%);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
}




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

/* Hero Section */
.hero {
    text-align: center;
    padding: 60px 20px 40px;
    position: relative;
    z-index: 10; /* Acima das seções que aparecem depois */
}

.logo {
    max-width: 400px;
    height: auto;
    margin: 0 auto 40px;
    display: block;
    filter: drop-shadow(0 0 20px rgba(155, 77, 255, 0.3));
    animation: fadeInDown 1s ease;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color), #ff6b9d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero h1 span {
    display: block;
    color: var(--text-color);
    -webkit-text-fill-color: var(--text-color);
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto 40px;
    animation: fadeInUp 1s ease 0.4s both;
}

/* Video Section */
.video-wrapper {
    max-width: 900px;
    margin: 0 auto 60px;
    animation: fadeInUp 1s ease 0.6s both;
}

.video-container {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(155, 77, 255, 0.3);
}

.main-video {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9;
    background: #000;
}

/* Customizações do Plyr - Ocultar controles indesejados */

/* Ocultar TUDO exceto play e fullscreen */
.plyr__progress,
.plyr__progress__container,
.plyr__time,
.plyr__time--current,
.plyr__time--duration,
.plyr__volume,
.plyr__controls__item.plyr__volume,
.plyr__controls__item.plyr__progress__container,
.plyr__controls__item.plyr__time,
input[aria-label="Seek"],
input[aria-label="Volume"],
button[data-plyr="mute"],
.plyr__menu {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    pointer-events: none !important;
}

/* Manter apenas play/pause e fullscreen */
button[data-plyr="play"],
button[data-plyr="fullscreen"],
.plyr__control--overlaid {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Botão grande de play no centro */
.plyr__control--overlaid {
    background: rgba(155, 77, 255, 0.9) !important;
    border: 4px solid white !important;
    width: 80px !important;
    height: 80px !important;
    transition: opacity 0.3s ease;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.plyr__control--overlaid svg {
    width: 40px !important;
    height: 40px !important;
    margin: 0 auto !important;
    position: relative !important;
    left: 2px !important; /* Ajuste fino para centralizar */
}

.plyr__control--overlaid:hover {
    background: rgba(155, 77, 255, 1) !important;
    /* transform removido para evitar movimento */
}

/* Texto mobile - gire a tela */
.mobile-rotate-hint {
    display: none; /* Oculto por padrão (desktop) */
    text-align: center;
    color: #9b4dff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
    padding: 8px 16px;
    background: rgba(155, 77, 255, 0.1);
    border-radius: 8px;
    animation: fadeInDown 0.6s ease;
}

/* Mostrar apenas em mobile */
@media (max-width: 768px) {
    .mobile-rotate-hint {
        display: block;
    }
}

/* Ocultar botão grande quando vídeo está reproduzindo */
.plyr--playing .plyr__control--overlaid {
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Mostrar botão grande quando pausado */
.plyr--paused .plyr__control--overlaid {
    opacity: 1 !important;
    pointer-events: auto !important;
}

/* Customizar cores do Plyr */
.plyr--video {
    --plyr-color-main: #9b4dff;
}

/* Simplificar controles - apenas 2 botões */
.plyr__controls {
    display: flex !important;
    justify-content: space-between !important;
    padding: 10px 20px !important;
}

/* Ocultar controles nativos indesejados do vídeo */

/* Ocultar controles de timeline/seek do vídeo */
.main-video::-webkit-media-controls-timeline {
    display: none !important;
}

.main-video::-webkit-media-controls-current-time-display,
.main-video::-webkit-media-controls-time-remaining-display {
    display: none !important;
}

/* Manter apenas play/pause e fullscreen */
.main-video::-webkit-media-controls-play-button,
.main-video::-webkit-media-controls-fullscreen-button {
    display: block !important;
}

/* Overlay bloqueador de controles (iOS) */
.controls-blocker {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 48px; /* Altura dos controles do iOS */
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    z-index: 10;
    pointer-events: none; /* Não bloqueia cliques no vídeo */
}

/* No iOS, esconder completamente os controles nativos */
@supports (-webkit-touch-callout: none) {
    .main-video::-webkit-media-controls {
        display: none !important;
    }
    
    .main-video::-webkit-media-controls-enclosure {
        display: none !important;
    }
}

/* CTA Button Container - no fluxo normal após "O que você vai receber" */
.cta-button-container {
    text-align: center;
    margin: 60px auto;
    padding: 40px 20px;
    animation: fadeInUp 0.8s ease;
}

/* Content Sections - aparecem abaixo do hero */
.content-sections {
    position: relative;
    z-index: 1;
    background: var(--bg-dark);
    padding: 60px 20px;
    margin-top: 0;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 20px 50px;
    font-size: 1.4rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(155, 77, 255, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button-main {
    padding: 24px 60px;
    font-size: 1.5rem;
    box-shadow: 0 12px 32px rgba(155, 77, 255, 0.6);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(155, 77, 255, 0.6);
}

/* Mentor Section */
#mentorSection {
    display: none; /* Oculto inicialmente */
    animation: fadeInUp 1s ease;
}

.mentor-section {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 60px 40px;
    margin: 60px auto;
    max-width: 900px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(155, 77, 255, 0.2);
}

.mentor-header {
    text-align: center;
    margin-bottom: 40px;
}

.mentor-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.mentor-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
}

.mentor-image-wrapper {
    position: relative;
}

.mentor-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.mentor-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.mentor-info h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.mentor-info h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.mentor-info p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.highlight-box {
    background: rgba(155, 77, 255, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
}

.stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Benefits Section */
.benefits-section {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
}

.benefits-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(155, 77, 255, 0.2);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 12px 32px rgba(155, 77, 255, 0.3);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* FAQ Section */
.faq-section {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 40px auto 60px;
    padding: 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.faq-item {
    position: relative;
    z-index: 1;
    background: var(--bg-card);
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(155, 77, 255, 0.2);
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.1rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(155, 77, 255, 0.1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.faq-answer.active {
    max-height: 500px;
    padding: 0 20px 20px;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 20px;
    margin-top: 80px;
    border-top: 1px solid rgba(155, 77, 255, 0.2);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .logo {
        max-width: 280px;
    }
    
    .mentor-content {
        grid-template-columns: 1fr;
    }
    
    .mentor-badge {
        position: static;
        display: inline-block;
        margin-bottom: 20px;
    }
    
    .stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .cta-button-container {
        margin: 40px auto;
        padding: 30px 15px;
    }
    
    .cta-button-main {
        padding: 20px 40px;
        font-size: 1.3rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}



/* Included Section - dentro de content-sections */
.content-sections .included-section {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 40px 20px;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 20px;
}

.included-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.included-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(155, 77, 255, 0.2);
    transition: all 0.3s ease;
}

.included-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 12px 32px rgba(155, 77, 255, 0.3);
}

.card-highlight {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(155, 77, 255, 0.1), rgba(124, 58, 237, 0.1));
}

.card-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 15px;
}

.card-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.badge-premium {
    background: linear-gradient(135deg, #ff6b9d, var(--primary-color));
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
}

.card-duration {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.feature-tag {
    background: rgba(155, 77, 255, 0.2);
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
}

.card-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.list-icon {
    font-size: 1.2rem;
}

.card-bonus {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(155, 77, 255, 0.2);
    color: var(--primary-color);
    font-weight: 600;
}

.card-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Pricing Breakdown */
.pricing-breakdown {
    max-width: 800px;
    margin: 60px auto;
    padding: 40px;
    background: var(--bg-card);
    border-radius: 20px;
    border: 2px solid var(--primary-color);
}

.pricing-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.pricing-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pricing-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(155, 77, 255, 0.2);
}

.pricing-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.pricing-value {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

.pricing-total-perceived {
    border-bottom: 2px solid var(--primary-color);
    padding: 20px 0;
}

.pricing-total-perceived .pricing-desc,
.pricing-total-perceived .pricing-value {
    font-size: 1.3rem;
}

.pricing-final {
    text-align: center;
    padding: 30px 0 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pricing-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.pricing-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(155, 77, 255, 0.5);
}

/* Guarantee Section */
.guarantee-section {
    max-width: 800px;
    margin: 60px auto;
    padding: 40px;
    background: rgba(155, 77, 255, 0.1);
    border-radius: 20px;
    border: 2px solid var(--primary-color);
    text-align: center;
}

.guarantee-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.guarantee-main {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: white;
}

.guarantee-badges {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Bonus Section */
.bonus-section {
    max-width: 800px;
    margin: 60px auto;
    padding: 40px;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.2), rgba(155, 77, 255, 0.2));
    border-radius: 20px;
    border: 2px solid #ff6b9d;
    text-align: center;
}

.bonus-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b9d, var(--primary-color));
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(255, 107, 157, 0.4);
}

.bonus-text {
    font-size: 1.3rem;
    color: white;
}

.bonus-highlight {
    color: #ff6b9d;
    font-weight: 700;
    font-size: 1.5rem;
}

/* FAQ dentro de content-sections */
.content-sections .faq-section {
    max-width: 800px;
    margin: 60px auto;
}

.faq-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.old-price {
  text-decoration: line-through;
  opacity: 0.6;
  font-weight: 500;
}

.annual-price {
  color: #ccc;
  font-size: 1.1em;
  font-weight: 600;
}

.monthly-highlight {
  display: inline-block;
  margin-top: 4px;
  background: linear-gradient(90deg, #a855f7, #7c3aed);
  background-clip: text;              /* versão padrão */
  -webkit-background-clip: text;      /* compatibilidade com Chrome/Safari */
  -webkit-text-fill-color: transparent;
  font-size: 1.6em;
  font-weight: 800;
  text-shadow: 0 0 12px rgba(168, 85, 247, 0.4);
}

/* layout padrão das linhas */
.pricing-line{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
}
.pricing-line .pricing-desc{flex:1; min-width:0;}
.pricing-line .pricing-value{text-align:right;}

/* bloco “Valor percebido” com 3 linhas de preço */
.pricing-total-perceived .pricing-value{
  display:flex;
  flex-direction:column;
  align-items:flex-end;         /* direita no desktop */
  gap:6px;
}

/* estilos dos preços */
.old-price{
  text-decoration: line-through;
  opacity:.6;
  font-weight:500;
  white-space:nowrap;
  line-height:1.1;
  font-size: clamp(.95rem, 2.2vw, 1.1rem);
}

.annual-price{
  color:#cfcfcf;
  font-weight:600;
  white-space:nowrap;
  line-height:1.15;
  font-size: clamp(1rem, 2.8vw, 1.25rem);
}

.monthly-highlight{
  margin-top:4px;
  background: linear-gradient(90deg,#a855f7,#7c3aed);
  background-clip:text;                 /* padrão */
  -webkit-background-clip:text;         /* compat. */
  -webkit-text-fill-color:transparent;
  text-shadow:0 0 12px rgba(168,85,247,.4);
  font-weight:800;
  line-height:1;
  white-space:nowrap;
  font-size: clamp(1.4rem, 8vw, 2.8rem); /* cresce no desktop, encolhe no mobile */
}

/* RESPONSIVO */
@media (max-width: 600px){
  .pricing-line{
    flex-direction:column;
    align-items:flex-start;
    gap:8px;
  }
  .pricing-total-perceived .pricing-value{
    align-items:flex-start;     /* esquerda no mobile */
    text-align:left;
  }
  .pricing-desc strong{
    display:block;              /* evita quebra feia “Valor percebido:” */
  }
}
