 

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

html, body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

html { scroll-behavior: smooth; }

body {
    background-color: #050510;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    min-width: 320px;
}
.page-header { position: relative; z-index: 100; }

ul { list-style: none; }
a { text-decoration: none; }
img, video, svg { max-width: 100%; height: auto; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding-left: clamp(16px, 4.5vw, 24px);
    padding-right: clamp(16px, 4.5vw, 24px);
}

.text-center { text-align: center; }
.text-blue { color: #2a60ff; }
.text-gray { color: #B0B0B0; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

.glow-bg {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    opacity: 0.3;
}
.glow-blue { background: #2a60ff; }
.glow-purple { background: #7b2aff; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #2a60ff 0%, #1e4bd1 100%);
    color: #fff;
    font-family: 'Inter';
    font-size: clamp(16px, 2.2vw, 20px);
    font-weight: 700;
    padding: clamp(14px, 2.2vw, 24px) clamp(22px, 3.2vw, 48px);
    border-radius: 60px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(42, 96, 255, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
    --hover-translate: 0;
    --pulse: 1;
    transform: translateY(var(--hover-translate)) scale(var(--pulse));
}
.btn:hover {
    --hover-translate: -2px;
    box-shadow: 0 15px 40px rgba(42, 96, 255, 0.6);
    background: linear-gradient(90deg, #3a70ff 0%, #2e5be1 100%);
}
.btn:active { --hover-translate: 0; box-shadow: 0 8px 24px rgba(42,96,255,0.35); }
.btn-icon { margin-left: 10px; transition: transform 0.3s ease; }
.btn:hover .btn-icon { transform: translateX(6px); }

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -60%;
    width: 50%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.25) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-20deg);
}
.btn:hover::after { animation: btn-shine 0.8s ease; }
@keyframes btn-shine { 0% { left: -60%; } 100% { left: 120%; } }

.btn .ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    background: rgba(255,255,255,0.35);
    animation: ripple 600ms ease-out;
    pointer-events: none;
}
@keyframes ripple { 100% { transform: scale(8); opacity: 0; } }

@property --pulse { syntax: '<number>'; inherits: false; initial-value: 1; }
.btn { animation: btn-pulse 1.8s ease-in-out infinite; will-change: transform; }
.btn:hover { animation-play-state: paused; --pulse: 1; }
@keyframes btn-pulse { 0%, 100% { --pulse: 1; } 50% { --pulse: 1.04; } }

.price-card:not(.premium) .btn { animation: none; --pulse: 1; }

.top-banner {
    background: #2a60ff;
    color: #fff;
    text-align: center;
    padding: 14px 0;
    padding-top: calc(12px + env(safe-area-inset-top));
    font-family: 'Inter';
    font-size: 16px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.logo-section { padding: 8px 0 16px; text-align: center; }
.logo-img { max-width: 280px; width: 100%; height: auto; filter: drop-shadow(0 0 20px rgba(42, 96, 255, 0.3)); }

.hero { position: relative; padding: clamp(8px, 2vh, 20px) clamp(16px, 5vw, 48px) clamp(24px, 6vh, 48px); min-height: 100vh; min-height: 100svh; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: clamp(10px, 1.8vw, 16px); text-align: center; }
.hero-title {
    font-family: 'Inter';
    font-size: clamp(26px, 4.4vw, 48px);
    line-height: 1.15;
    margin-bottom: 24px;
    background: linear-gradient(180deg, #FFFFFF 0%, #b0c4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.hero-title .hero-line { display: block; margin: 0.08em 0; }
.hero-line-1 { font-size: clamp(24px, 4.6vw, 46px); }
.hero-line-2 { font-size: clamp(16px, 3.6vw, 32px); }
.hero-line-3 { font-size: clamp(20px, 3.8vw, 36px); }
.hero-subtitle {
    font-size: clamp(14px, 2vw, 20px);
    color: #B0B0B0;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}
.hero-actions { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; }
.date-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(42, 96, 255, 0.1);
    border: 1px solid rgba(42, 96, 255, 0.3);
    padding: 10px 24px;
    border-radius: 50px;
    color: #2a60ff;
    font-family: 'Inter';
    font-size: clamp(14px, 2vw, 18px);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.presenter-section { position: relative; z-index: 1; background: #050510; }
.presenter-highlight {
    background: linear-gradient(145deg, #12141d 0%, #0e1018 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: clamp(24px, 4vw, 48px);
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
}
.presenter-highlight::before {
    content: '';
    position: absolute;
    left: 0; top: 0; width: 5px; height: 100%;
    background: #2a60ff;
}
.ph-avatar {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 4px solid #2a60ff;
    box-shadow: 0 0 40px rgba(42, 96, 255, 0.3);
    flex-shrink: 0;
    object-fit: cover;
}
.ph-content { text-align: left; }
.ph-name {
    font-family: 'Inter';
    font-size: 26px;
    color: #fff;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.ph-desc { font-size: 18px; color: #ccc; line-height: 1.6; }
.ph-badge { font-size: 16px; color: #2a60ff; background: rgba(42,96,255,0.1); padding: 4px 10px; border-radius: 4px; }

.courses-section { padding: 24px 0 0; position: relative; z-index: 2; overflow: visible; }
.learning-section { padding: 0; position: relative; z-index: 1; background: #050510; }
/* Remover espaçamentos internos da seção específica */
.learning-section .testimonial-carousel .testimonial-grid { margin-bottom: 0; }
.learning-section .section-header { margin-bottom: 0; }
.section-header { margin-bottom: 40px; text-align: center; margin-top: clamp(24px, 4vw, 48px); }
.section-header h2 { font-family: 'Inter'; font-size: clamp(28px, 4vw, 48px); margin-bottom: 16px; }
/* Garantir que títulos com .uniform-title dentro de .section-header usem o mesmo tamanho dos demais */
.section-header h2.uniform-title { font-size: clamp(24px, 3.2vw, 36px); }
.courses-section .section-header h2 {
  background: linear-gradient(180deg, #FFFFFF 0%, #b0c4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
@media (min-width: 1025px) {
  .courses-section .section-header h2 {
    white-space: nowrap;
    font-size: clamp(26px, 3.6vw, 44px);
    line-height: 1.15;
  }
}
.uniform-title { font-family: 'Inter'; font-size: clamp(24px, 3.2vw, 36px); line-height: 1.25; }
.gradient-text { background: linear-gradient(180deg, #FFFFFF 0%, #b0c4ff 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-shadow: 0 6px 24px rgba(0,0,0,0.4); }
.uniform-subtitle { font-family: 'Inter'; font-size: clamp(14px, 2vw, 18px); color: #B0B0B0; text-align: center; margin-top: 6px; margin-bottom: 12px; }
.courses-section .testimonial-gallery { 
  margin-bottom: 0; 
  max-width: 1200px; 
  margin-left: auto; 
  margin-right: auto; 
  padding-left: clamp(16px, 4.5vw, 24px);
  padding-right: clamp(16px, 4.5vw, 24px);
}
@media (min-width: 1280px) {
  .courses-section .testimonial-gallery { max-width: 1400px; }
}
@media (min-width: 1025px) {
  .courses-section .testimonial-gallery { grid-template-columns: repeat(6, 1fr); gap: 12px; }
}
.grid-6 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.learn-card {
    background: #181b26;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 28px;
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: 0.3s;
}
.learn-card:hover { background: #1f2333; border-color: rgba(42, 96, 255, 0.5); transform: translateY(-5px); }
.learn-icon { font-size: 32px; color: #2a60ff; background: rgba(42, 96, 255, 0.1); width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; border-radius: 12px; flex-shrink: 0; }
.learn-text { font-family: 'Inter'; font-size: 20px; line-height: 1.4; padding-top: 5px; }

.benefits-row { display: flex; justify-content: center; gap: 16px; margin-bottom: 40px; flex-wrap: wrap; }
.benefit-item { display: flex; align-items: center; gap: 10px; font-size: 18px; color: #B0B0B0; background: rgba(255,255,255,0.03); padding: 12px 20px; border-radius: 50px; border: 1px solid rgba(255,255,255,0.05); }
.benefit-item i { color: #2a60ff; font-size: 20px; }
.benefits-section { padding: 20px 0 80px; position: relative; z-index: 1; background: #050510; }
.benefits-section .btn { margin-top: 12px; }

.practice-section { padding: 60px 0 40px; background: #050510; }
.practice-section .section-header { margin-bottom: 12px; }
.practice-subtitle { text-align: center; margin-top: 6px; margin-bottom: 12px; }
.video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 1200px; margin: 0 auto; }
.video-embed { position: relative; width: 100%; aspect-ratio: 16 / 9; border-radius: 20px; overflow: hidden; border: 4px solid #2a60ff; background: #151824; box-shadow: 0 12px 32px rgba(0,0,0,0.35), 0 10px 28px rgba(42,96,255,0.28); }
.video-embed::before { content: ''; position: absolute; inset: -1px; border-radius: 20px; padding: 1px; background: linear-gradient(135deg, rgba(143,179,255,0.45), rgba(42,96,255,0.25), rgba(143,179,255,0.45)); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; opacity: 0.25; }
.video-embed::after { content: ''; position: absolute; inset: 0; border-radius: inherit; background-image: radial-gradient(at 20% 0%, #fff 1px, transparent 0); background-size: 3px 3px; opacity: 0.06; mix-blend-mode: hard-light; pointer-events: none; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.video-embed iframe { pointer-events: auto; }
.video-embed iframe { transform: scale(1.04); transform-origin: center; }

.influencer-section { padding: 40px 0; background: #050510; }
.influencer-section .section-header { margin-bottom: 4px; }
.influencer-subtitle { text-align: center; max-width: 900px; margin: 0 auto 12px; }
.influencer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; max-width: 1200px; margin: 0 auto; }
.influencer-item { border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); background: #151824; aspect-ratio: 9 / 16; }
.influencer-item video { display: block; width: 100%; height: 100%; object-fit: cover; object-position: top center; }
/* Removidas miniaturas e overlay de play para vídeos */
.influencer-item video{ pointer-events: auto; }
.influencer-item video::-webkit-media-controls-start-playback-button { display: none !important; }
.influencer-item img { display: block; width: 100%; height: auto; }

.product-photos-section { padding: 40px 0 80px; background: #050510; }
.product-photos-section .section-header { margin-bottom: 8px; }
.product-photos-section .uniform-subtitle { margin-top: 0; margin-bottom: 26px; max-width: 900px; margin-left: auto; margin-right: auto; }
.photos-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; max-width: 1200px; margin: 0 auto; }
.photo-item { border-radius: 14px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); background: #151824; }
.photo-item img { display: block; width: 100%; height: auto; }

.section-dark { background: #0c0e16; padding: 80px 0; position: relative; border-top: 1px solid #1f2230; border-bottom: 1px solid #1f2230; z-index: 50; }
.section-dark > .container { max-width: 100%; padding-left: clamp(16px, 4.5vw, 24px); padding-right: clamp(16px, 4.5vw, 24px); }
.section-dark .testimonial-gallery { 
  max-width: 1200px; 
  margin-left: auto; 
  margin-right: auto; 
  padding-left: clamp(16px, 4.5vw, 24px);
  padding-right: clamp(16px, 4.5vw, 24px);
}
.section-title { font-family: 'Inter'; font-size: clamp(24px, 3.2vw, 36px); line-height: 1.25; margin-bottom: 32px; letter-spacing: 0.5px; background: linear-gradient(180deg, #8fb3ff 0%, #2a60ff 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-shadow: 0 6px 24px rgba(0,0,0,0.4); }
.section-dark .section-title::after { content: ''; display: block; width: 120px; height: 3px; margin: 12px auto 0; background: linear-gradient(90deg, rgba(42,96,255,0) 0%, rgba(42,96,255,0.8) 50%, rgba(42,96,255,0) 100%); filter: drop-shadow(0 0 12px rgba(42,96,255,0.4)); }
/* NOISE/FOCUS SECTION */
.noise-section {
    background: radial-gradient(1000px 500px at 10% 10%, rgba(42,96,255,0.12) 0%, transparent 60%),
                radial-gradient(800px 400px at 90% 30%, rgba(123,42,255,0.12) 0%, transparent 60%),
                linear-gradient(180deg, #0b0d17 0%, #0c0e16 100%);
    padding: 80px 0;
    border-top: 1px solid #1f2230;
    border-bottom: 1px solid #1f2230;
    position: relative;
    z-index: 2;
}
.noise-section .container { text-align: center; }
.noise-title {
    text-align: center;
    font-family: 'Inter';
    font-size: clamp(26px, 4.6vw, 44px);
    line-height: 1.25;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #cfe0ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 6px 24px rgba(0,0,0,0.4);
}
.noise-subtitle {
    text-align: center;
    font-family: 'Inter';
    font-size: clamp(22px, 3.8vw, 36px);
    color: #fff;
    margin: 18px 0 20px;
}
.noise-text {
    text-align: center;
    font-size: clamp(16px, 2.4vw, 22px);
    color: #B0B0B0;
    max-width: 1000px;
    margin: 0 auto 20px;
    line-height: 1.7;
}
.nl-link { color: #2a60ff; text-decoration: underline; text-underline-offset: 3px; }
.nl-divider {
    width: 180px;
    height: 2px;
    margin: 24px auto;
    background: linear-gradient(90deg, rgba(42,96,255,0) 0%, rgba(42,96,255,0.8) 50%, rgba(42,96,255,0) 100%);
    filter: drop-shadow(0 0 12px rgba(42,96,255,0.4));
}
.testimonial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 80px; }
.t-placeholder { height: 320px; background: #151824; border-radius: 20px; border: 2px dashed #2a3045; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #3b4560; position: relative; overflow: hidden; }
.t-placeholder i { font-size: 60px; margin-bottom: 16px; opacity: 0.5; }
.t-placeholder span { font-size: 22px; font-family: 'Inter'; text-transform: uppercase; letter-spacing: 2px; }
.t-decoration { position: absolute; width: 100%; height: 100%; background: linear-gradient(45deg, transparent 40%, rgba(42, 96, 255, 0.03) 50%, transparent 60%); }

/* Testimonial image items */
.t-item { position: relative; border-radius: 20px; overflow: hidden; background: #151824; border: 1px solid rgba(255,255,255,0.06); aspect-ratio: 4 / 3; z-index: 52; }
.t-item { cursor: pointer; }
.t-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s ease; }
.t-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.35) 100%); opacity: 0; transition: opacity 0.3s ease; }
.t-item:hover img { transform: scale(1.03); }
.t-item:hover::after { opacity: 1; }

.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.8); display: none; align-items: center; justify-content: center; z-index: 1000; padding: 24px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,0.6); border: 1px solid rgba(255,255,255,0.12); }
.lightbox-close { position: absolute; top: 16px; right: 20px; background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; font-size: 22px; cursor: pointer; transition: 0.2s; }
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

.offer-card { background: linear-gradient(180deg, #1b1e2b 0%, #11131a 100%); border: 1px solid #2a60ff; box-shadow: 0 0 100px rgba(42, 96, 255, 0.15); border-radius: 40px; padding: 48px; max-width: 1000px; margin: 0 auto; text-align: center; position: relative; }
.offer-wrap { padding: 80px 0; }
.offer-sub { color: #2a60ff; font-family: 'Inter'; font-size: 20px; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.offer-title { font-family: 'Inter'; font-size: clamp(28px, 4.4vw, 56px); margin-bottom: 24px; color: #fff; }
.offer-copy { max-width: 900px; margin: 0 auto 28px; color: #cfd3e8; font-size: clamp(16px, 2.2vw, 20px); line-height: 1.7; text-align: center; }
.offer-copy { overflow: hidden; }
.offer-copy p { margin-bottom: 12px; }
.hl-text { background: linear-gradient(180deg, rgba(255,215,140,0.35) 0%, rgba(255,215,140,0.2) 100%); padding: 0 4px; border-radius: 4px; color: #fff; }
.hl-strong { display: block; max-width: 100%; background: linear-gradient(180deg, rgba(42,96,255,0.20) 0%, rgba(42,96,255,0.10) 100%); border: 1px solid rgba(42,96,255,0.45); border-radius: 10px; padding: 10px 14px; color: #fff; box-shadow: 0 6px 20px rgba(42,96,255,0.25); font-family: 'Inter'; }
.offer-copy .hl-strong { margin: 8px 0 12px; }
.hl-strong .hl-text { background: linear-gradient(180deg, rgba(143,179,255,0.35) 0%, rgba(143,179,255,0.2) 100%); }
.badge { display: inline-block; padding: 6px 10px; border-radius: 10px; background: rgba(206, 176, 128, 0.25); border: 1px solid rgba(206, 176, 128, 0.5); font-family: 'Inter'; font-size: 14px; color: #fff; }
.hl-bar { width: 80px; height: 8px; background: linear-gradient(90deg, rgba(255,215,140,0.1) 0%, rgba(255,215,140,0.6) 60%, rgba(255,215,140,0.1) 100%); border-radius: 6px; margin: 6px 0 12px; }
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 20px 0 28px; }
.price-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.12); border-radius: 20px; padding: 24px; text-align: left; box-shadow: 0 10px 40px rgba(42,96,255,0.12); display: flex; flex-direction: column; gap: 10px; position: relative; }
.price-card.premium { background: linear-gradient(180deg, rgba(206,176,128,0.10) 0%, rgba(206,176,128,0.04) 100%), rgba(255,255,255,0.03); border: 1px solid rgba(206,176,128,0.55); box-shadow: 0 18px 60px rgba(206,176,128,0.25), 0 12px 44px rgba(42,96,255,0.12); position: relative; transform: translateY(-4px); }
.price-card.premium::after { content: ''; position: absolute; inset: -1px; border-radius: 20px; padding: 1px; background: linear-gradient(135deg, rgba(206,176,128,0.65), rgba(255,215,140,0.35), rgba(206,176,128,0.65)); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; opacity: 0.4; }
.price-title { font-family: 'Inter'; font-size: 18px; color: #fff; }
.price-value { font-family: 'Inter'; font-size: 34px; color: #fff; margin-bottom: 10px; font-weight: 800; }
.price-card.premium .price-value { background: linear-gradient(180deg, #ffffff 0%, #ffd78c 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-shadow: 0 8px 32px rgba(206,176,128,0.25); }
.installment { font-size: 16px; color: #e3e6f5; margin-bottom: 8px; }
.installment .cash { color: #8fb3ff; margin-left: 8px; }
.price-card.premium .installment .cash { color: #ffd78c; }
.price-benefits { color: #cfd3e8; font-size: 18px; margin-bottom: 10px; }
.price-benefits li { margin-bottom: 6px; }
.price-card .btn { width: 100%; align-self: stretch; font-size: clamp(14px, 1.8vw, 18px); padding: clamp(12px, 1.8vw, 18px) clamp(18px, 2.2vw, 28px); border-radius: 14px; box-shadow: 0 8px 24px rgba(42,96,255,0.35); margin-top: auto; }
.price-card.premium .btn { background: linear-gradient(90deg, #CEB080 0%, #EAC58F 100%); color: #0b0d17; box-shadow: 0 12px 32px rgba(206,176,128,0.45); border-color: rgba(255,255,255,0.2); }
.price-card.premium .btn:hover { background: linear-gradient(90deg, #d7c39a 0%, #f2d4a9 100%); box-shadow: 0 16px 40px rgba(206,176,128,0.6); }
.price-card.premium .btn::after { background: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.08) 50%, rgba(0,0,0,0) 100%); }
.price-card.premium .hl-bar { background: linear-gradient(90deg, rgba(255,215,140,0.15) 0%, rgba(255,215,140,0.8) 60%, rgba(255,215,140,0.15) 100%); }

/* Premium ribbon */
.price-badge { position: absolute; top: 76px; right: 16px; width: 84px; height: 84px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: radial-gradient(circle at 30% 30%, #EAC58F 0%, #D3AF6C 35%, #C59A52 70%, #A8833F 100%); color: #0c0e16; font-family: 'Inter'; font-size: 10px; font-weight: 800; letter-spacing: 0.6px; text-transform: uppercase; text-align: center; box-shadow: 0 10px 30px rgba(206,176,128,0.35); border: 2px solid rgba(255,215,140,0.60); backdrop-filter: blur(1px); pointer-events: none; z-index: 3; }
.price-badge::before { content: ''; position: absolute; inset: 6px; border-radius: 50%; border: 2px dashed rgba(12,14,22,0.18); opacity: 0.6; }
.price-badge::after { content: ''; position: absolute; bottom: -12px; left: 50%; transform: translateX(-50%); width: 0; height: 0; border-left: 10px solid transparent; border-right: 10px solid transparent; border-top: 14px solid #C59A52; filter: drop-shadow(0 2px 2px rgba(0,0,0,0.35)); }

/* Premium card - gold saturation */
.price-card.premium {
  background: radial-gradient(800px 400px at 10% 10%, rgba(206,176,128,0.14) 0%, rgba(206,176,128,0.08) 40%, rgba(255,255,255,0.03) 100%),
              linear-gradient(180deg, rgba(206,176,128,0.16) 0%, rgba(145,118,69,0.10) 100%);
  border-color: rgba(206,176,128,0.55);
  box-shadow: 0 0 100px rgba(206,176,128,0.25), inset 0 0 0 1px rgba(255,215,140,0.18);
}

.price-card.premium .btn {
  background: linear-gradient(90deg, #D3AF6C 0%, #C59A52 100%);
  color: #0c0e16;
  border-color: rgba(255,215,140,0.40);
}

.price-card.premium .btn:hover { background: linear-gradient(90deg, #E0BE7A 0%, #D1A862 100%);
  box-shadow: 0 15px 40px rgba(206,176,128,0.55);
}
@media (max-width: 768px) {
  .price-badge { width: 68px; height: 68px; top: 70px; right: 12px; font-size: 9px; }
  .price-badge::before { inset: 5px; }
  .price-badge::after { bottom: -10px; border-left-width: 8px; border-right-width: 8px; border-top-width: 12px; }
}
.offer-list { text-align: left; max-width: 800px; margin: 0 auto 40px; }
.offer-li { display: flex; align-items: flex-start; gap: 16px; font-size: 20px; color: #e0e0e0; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.offer-li:last-child { border-bottom: none; }
.offer-li i { color: #2a60ff; font-size: 28px; margin-top: 2px; }
.offer-price { margin: 32px 0; font-size: 24px; color: #aaa; }
.price-big { display: block; font-size: 48px; color: #fff; font-family: 'Inter'; margin-top: 10px; }
.price-highlight { color: #2a60ff; }
.missing-text { margin-top: 32px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1); color: #ccc; font-size: 20px; line-height: 1.6; max-width: 800px; margin-left: auto; margin-right: auto; }
.missing-text strong { color: #fff; }

.speaker-section { padding: 24px 0 80px; }
.speaker-box { display: flex; align-items: center; gap: 40px; }
.speaker-img-container { width: 100%; max-width: 500px; aspect-ratio: 1 / 1; position: relative; flex-shrink: 0; }
.speaker-img-full { width: 100%; height: 100%; object-fit: cover; border-radius: 30px; border: 1px solid rgba(255,255,255,0.1); box-shadow: 20px 20px 0px rgba(42, 96, 255, 0.1); }
.speaker-info h3 { font-family: 'Inter'; font-size: clamp(26px, 4vw, 42px); margin-bottom: 8px; }
.speaker-info h4 { color: #2a60ff; font-size: 18px; font-family: 'Inter'; margin-bottom: 24px; text-transform: uppercase; }
.speaker-bio { font-size: 18px; line-height: 1.8; color: #B0B0B0; margin-bottom: 24px; text-align: center; }
.creds-list li { font-size: 18px; color: #fff; margin-bottom: 12px; display: flex; align-items: center; gap: 12px; }
.creds-list li i { color: #2a60ff; }
.speaker-intro { font-family: 'Inter'; font-size: 22px; color: #fff; margin-top: 24px; margin-bottom: 24px; border-left: 4px solid #2a60ff; padding-left: 20px; }

.footer { background: #020205; padding: 40px 0; text-align: center; font-size: 14px; color: #444; border-top: 1px solid #111; }

.bg-el { position: absolute; pointer-events: none; }
.bg-el-1 { top: 0; right: 0; width: 800px; height: 800px; background: radial-gradient(circle, rgba(42,96,255,0.08) 0%, rgba(0,0,0,0) 70%); }
.bg-el-2 { bottom: 0; left: 0; width: 1000px; height: 1000px; background: radial-gradient(circle, rgba(42,96,255,0.05) 0%, rgba(0,0,0,0) 70%); }

/* CTA WHATSAPP */
.cta-whatsapp { background: radial-gradient(800px 400px at 10% 10%, rgba(37, 211, 102, 0.08) 0%, transparent 60%), linear-gradient(180deg, #0b0d17 0%, #0c0e16 100%); padding: 80px 0; border-top: 1px solid #1f2230; border-bottom: 1px solid #1f2230; position: relative; }
.cta-title { font-family: 'Inter'; font-size: clamp(26px, 4.6vw, 44px); line-height: 1.25; margin-bottom: 16px; background: linear-gradient(180deg, #ffffff 0%, #dff7ea 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-shadow: 0 6px 24px rgba(0,0,0,0.4); }
.cta-text { font-size: clamp(16px, 2.4vw, 22px); color: #B0B0B0; max-width: 900px; margin: 0 auto 28px; line-height: 1.7; }
.btn-whatsapp { background: linear-gradient(90deg, #25D366 0%, #1ebe5b 100%); box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35); border-color: rgba(255,255,255,0.12); }
.btn-whatsapp:hover { background: linear-gradient(90deg, #34e27a 0%, #23c767 100%); box-shadow: 0 15px 40px rgba(37, 211, 102, 0.55); }

@media (min-width: 1280px) { .container { max-width: 1400px; } }
@media (min-width: 1280px) { .section-dark .testimonial-gallery { max-width: 1400px; } }
@media (min-width: 960px) {
    .hero { display: flex; align-items: center; }
    .hero-actions { flex-direction: column; align-items: center; gap: 14px; }
}
@media (max-width: 1024px) {
  .courses-section { padding: 20px 0 0; }
  .presenter-highlight { padding: 48px; gap: 24px; }
  .ph-avatar { width: 140px; height: 140px; }
  .offer-card { padding: 40px; }
  .grid-6 { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .t-placeholder { height: 280px; }
  .section-dark .container { padding-left: 16px; padding-right: 16px; }
  .video-grid { grid-template-columns: 1fr; }
  .influencer-grid { grid-template-columns: repeat(3, 1fr); }
  .photos-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .courses-section { padding: 16px 0 0; }
    .hero { padding-bottom: 28px; }
  .grid-6 { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .presenter-highlight { flex-direction: column; align-items: center; padding: 24px; gap: 20px; }
  .ph-content { text-align: center; }
  .ph-avatar { width: 120px; height: 120px; margin: 0 auto; }
  .ph-name { font-size: 22px; flex-direction: column; align-items: center; justify-content: center; gap: 6px; }
  .ph-badge { display: inline-block; font-size: 14px; padding: 6px 10px; background: rgba(42,96,255,0.15); border: 1px solid rgba(42,96,255,0.35); border-radius: 8px; }
  .ph-desc { font-size: 16px; line-height: 1.7; }
  .benefits-row { gap: 12px; }
  .benefit-item { font-size: 16px; padding: 10px 16px; }
  .offer-card { padding: 28px; }
  .speaker-box { flex-direction: column; }
  .speaker-info { text-align: center; }
  .section-dark { padding: 60px 0; }
  .container { padding-left: 16px; padding-right: 16px; }
  .bg-el-1 { width: 400px; height: 400px; }
  .bg-el-2 { width: 600px; height: 600px; }
  .price-grid { grid-template-columns: 1fr; }
  .date-badge { font-size: clamp(12px, 3.6vw, 16px); padding: 8px 16px; }
  .top-banner { padding: calc(16px + env(safe-area-inset-top)) 20px; }
  .video-embed iframe { transform: scale(1.08); }
  .influencer-grid { grid-template-columns: repeat(2, 1fr); }
}
/* Mobile layout removido - usando as regras do final do arquivo */
@media (max-width: 480px) {
    .presenter-highlight { padding: 20px; gap: 16px; border-radius: 20px; }
    .ph-avatar { width: 96px; height: 96px; border-width: 3px; }
    .ph-name { font-size: 20px; }
    .ph-badge { font-size: 13px; padding: 5px 8px; }
    .ph-desc { font-size: 15px; }
}
.hl-strong br { display: inline; }
@media (min-width: 1280px) {
    .hl-strong { white-space: nowrap; }
    .hl-strong br { display: none; }
}
/* Carousel base styles */
.testimonial-carousel { 
    position: relative; 
    width: 100%;
    overflow: hidden;
    z-index: 1;
    padding-bottom: 20px;
}

/* Gallery styles */
.testimonial-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 18px;
}

.section-dark .testimonial-gallery .t-item { aspect-ratio: auto; }
.testimonial-gallery .t-item { background: none; border: none; border-radius: 0; overflow: visible; aspect-ratio: auto; }
.testimonial-gallery .t-item img { width: 100%; height: auto; object-fit: contain; display: block; cursor: zoom-in; }
.testimonial-gallery .t-item:hover img { transform: none; }
.testimonial-gallery .t-item::after { content: none; }

.masonry-gallery { display: block; column-count: 3; column-gap: 16px; }
.masonry-gallery .t-item { break-inside: avoid; margin-bottom: 16px; }
@media (min-width: 1280px) { .masonry-gallery { column-count: 4; } }
@media (max-width: 1024px) { .masonry-gallery { column-count: 2; } }
@media (max-width: 600px) { .masonry-gallery { column-count: 1; } }

@media (max-width: 768px) {
  .testimonial-gallery { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .courses-section .testimonial-gallery { padding-left: 16px; padding-right: 16px; }
}

.testimonial-carousel .testimonial-grid { 
    display: flex !important; 
    flex-wrap: nowrap; 
    align-items: stretch; 
    gap: 16px; 
    margin-bottom: 18px; 
    will-change: transform; 
    min-height: 140px; 
    animation: marquee-scroll var(--scroll-duration, 15s) linear infinite;
}

.testimonial-carousel.paused .testimonial-grid { animation-play-state: paused; }

/* Tamanho padrão dos itens do carrossel de depoimentos - 4 visíveis no desktop */
.testimonial-carousel .t-item { 
    min-width: calc((100vw - 120px) / 4); /* 4 itens visíveis com gaps */
    max-width: 300px;
    aspect-ratio: 4 / 3; 
    position: relative; 
    transition: transform 180ms ease, box-shadow 180ms ease;
    flex-shrink: 0;
}

.section-dark .testimonial-carousel:not(.heroes-carousel) .t-item { aspect-ratio: 1 / 1; }

/* Heroes: manter proporção real das imagens, sem corte quadrado */
.heroes-carousel .t-item { aspect-ratio: auto; }
.heroes-carousel .t-item img { height: auto; object-fit: contain; }

/* Reveal on scroll */
/* Remover animações de revelação das seções */
body.reveal-ready [data-reveal] { opacity: 1; transform: none; transition: none; }
body.reveal-ready [data-reveal].in-view { opacity: 1; transform: none; }
body.reveal-ready [data-reveal].delay-1 { transition: none; }
body.reveal-ready [data-reveal].delay-2 { transition: none; }
@media (prefers-reduced-motion: reduce) {
    body.reveal-ready [data-reveal] { opacity: 1; transform: none; transition: none; }
}

.testimonial-carousel img { cursor: zoom-in; }
.testimonial-carousel.paused .testimonial-grid { min-height: 220px; }
.testimonial-carousel.paused .t-item:hover { transform: scale(1.06); box-shadow: 0 12px 24px rgba(0,0,0,0.35); z-index: 55; }

/* Full bleed - ocupa toda a viewport */
.full-bleed { 
    margin-left: calc(50% - 50vw); 
    margin-right: calc(50% - 50vw); 
    width: 100vw;
    max-width: 100vw; 
    position: relative;
    overflow: visible;
}

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

@media (prefers-reduced-motion: reduce) {
    .testimonial-carousel .testimonial-grid { animation: none !important; }
}

/* Gradient side masks for carousel - using HTML elements for better server compatibility */
.carousel-mask {
    position: absolute;
    top: 0;
    bottom: 0;
    width: clamp(60px, 10vw, 180px);
    height: 100%;
    pointer-events: none;
    z-index: 2;
    display: block !important;
}

.carousel-mask-left { 
    left: 0; 
    background: linear-gradient(90deg, #050510 0%, #050510 10%, transparent 100%); 
}

.carousel-mask-right { 
    right: 0; 
    background: linear-gradient(270deg, #050510 0%, #050510 10%, transparent 100%); 
}

/* Para section-dark, usar a cor de fundo correta nas máscaras */
.carousel-mask-dark.carousel-mask-left { 
    background: linear-gradient(90deg, #0c0e16 0%, #0c0e16 10%, transparent 100%); 
}

.carousel-mask-dark.carousel-mask-right { 
    background: linear-gradient(270deg, #0c0e16 0%, #0c0e16 10%, transparent 100%); 
}

/* Texture overlay on top of the page */
.texture-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: radial-gradient(at 20% 0%, #fff 1px, transparent 0);
    background-size: 3px 3px;
    opacity: 0.12;
    mix-blend-mode: hard-light;
    pointer-events: none;
    z-index: 999;
    transition: opacity 0.3s ease-in-out;
}

/* Courses carousel: real image proportion and small thumbnails */
.courses-carousel { --cc-gap: clamp(10px, 1.2vw, 16px); }
.courses-carousel .testimonial-grid { gap: var(--cc-gap); }
.courses-carousel .t-item { min-width: auto; background: transparent; border: none; overflow: visible; padding: 0; flex: 0 0 calc((100vw - (var(--cc-gap) * 5)) / 6); }
.courses-carousel .t-item img { width: 100%; height: auto; object-fit: contain; border-radius: 8px; border: 1px solid rgba(255,255,255,0.08); background: #151824; }
.courses-carousel .t-item::after { display: none; }

/* Tablet adjustments */
@media (max-width: 1024px) {
  .full-bleed { margin-left: 0; margin-right: 0; width: 100%; }
  .courses-carousel .t-item { min-width: clamp(140px, 26vw, 220px); }
  .section-dark .testimonial-carousel.full-bleed { margin-left: 0; margin-right: 0; width: 100%; }
  .video-embed iframe { transform: scale(1.06); }
}

/* Mobile carousel */
@media (max-width: 768px) {
  .full-bleed { 
    margin-left: -16px; 
    margin-right: -16px; 
    width: calc(100% + 32px);
    overflow: visible;
  }
  
  .section-dark .testimonial-carousel.full-bleed { 
    margin-left: -16px; 
    margin-right: -16px; 
    width: calc(100% + 32px); 
  }
  
  .testimonial-carousel { 
    overflow: visible;
    -webkit-overflow-scrolling: touch; 
    scrollbar-width: none;
    position: relative;
    z-index: 51;
    padding-bottom: 20px;
  }
  
  .testimonial-carousel::-webkit-scrollbar { display: none; }
  
  /* Animação no mobile - mais rápida */
  .testimonial-carousel .testimonial-grid { 
    animation: marquee-scroll-mobile var(--scroll-duration, 18s) linear infinite;
    gap: 12px;
    position: relative;
    z-index: 52;
  }
  .heroes-carousel .testimonial-grid { animation: marquee-scroll-mobile-full var(--scroll-duration, 18s) linear infinite; }
  
  /* Depoimentos carousel mobile - 3 itens visíveis */
  .testimonial-carousel .t-item { 
    min-width: calc((100vw - 56px) / 3); /* 3 itens visíveis com gaps de 12px */
    max-width: 140px;
  }
  .heroes-carousel .t-item { 
    min-width: calc((100vw - 72px) / 6); /* 6 itens visíveis */
    max-width: 120px;
  }
  
  /* Courses carousel mobile */
  .courses-carousel .t-item {
    min-width: 100px;
    max-width: 130px;
  }
  .heroes-carousel .t-item { 
    min-width: calc((100vw - 60px) / 5);
    max-width: 120px;
  }
  
  /* Máscaras de gradiente no mobile - mais finas e fixas */
  .carousel-mask {
    display: block;
    width: clamp(30px, 8vw, 60px);
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 11;
    pointer-events: none;
    touch-action: none;
    user-select: none;
    -webkit-user-select: none;
    will-change: auto;
    transform: translateZ(0);
    -webkit-touch-callout: none;
  }
}

@keyframes marquee-scroll-mobile {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marquee-scroll-mobile-full {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-1 * var(--scroll-distance, 100%))); }
}

/* Touch devices */
@media (hover: none) and (pointer: coarse) {
  .testimonial-carousel { 
    overflow: visible;
    -webkit-overflow-scrolling: touch; 
    overscroll-behavior-x: contain; 
    touch-action: pan-x;
  }
  
  .testimonial-carousel:active .testimonial-grid,
  .testimonial-carousel.touching .testimonial-grid {
    animation-play-state: paused;
  }
}
.thumb-hero { position: relative; width: 100vw; max-width: none; margin: clamp(16px, 4vw, 28px) 0; margin-left: calc(50% - 50vw); }
.thumb-hero { -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, #000 14%, #000 86%, rgba(0,0,0,0) 100%); mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, #000 14%, #000 86%, rgba(0,0,0,0) 100%); }
.thumb-hero img { display: block; width: 100%; height: auto; border-radius: 24px; }
.thumb-hero img { -webkit-mask-image: radial-gradient(ellipse at center, #000 38%, rgba(0,0,0,0.38) 66%, rgba(0,0,0,0) 92%), linear-gradient(to right, rgba(0,0,0,0) 0%, #000 12%, #000 88%, rgba(0,0,0,0) 100%); mask-image: radial-gradient(ellipse at center, #000 38%, rgba(0,0,0,0.38) 66%, rgba(0,0,0,0) 92%), linear-gradient(to right, rgba(0,0,0,0) 0%, #000 12%, #000 88%, rgba(0,0,0,0) 100%); -webkit-mask-size: 100% 100%; mask-size: 100% 100%; -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; }
.thumb-hero::before { content: ''; position: absolute; inset: -10%; border-radius: 34px; background: radial-gradient(ellipse at center, rgba(42,96,255,0.32), rgba(143,179,255,0.24), transparent 72%); filter: blur(44px); z-index: 0; }
.thumb-hero img { position: relative; z-index: 1; }
.heroes-section { padding-top: 40px; }
.heroes-section .section-lead { color: #B0B0B0; margin-bottom: 24px; font-size: clamp(16px, 2.2vw, 22px); }
.section-dark .heroes-carousel .t-item { width: auto; min-width: unset; flex: 0 0 auto; height: clamp(160px, 26vw, 300px); aspect-ratio: 9 / 16; }
.heroes-carousel .t-item img { width: auto; height: 100%; object-fit: contain; border-radius: 16px; border: 1px solid rgba(255,255,255,0.08); background: #151824; }
.heroes-carousel .t-item { position: relative; }
.heroes-carousel .t-caption { display: none !important; }
.heroes-section .section-title { background: none !important; -webkit-background-clip: initial !important; -webkit-text-fill-color: initial !important; color: #ffffff !important; text-shadow: none; }
.heroes-carousel .testimonial-grid { animation: marquee-scroll-full var(--scroll-duration, 12s) linear infinite; }
.heroes-carousel .testimonial-grid { gap: 12px; }
@keyframes marquee-scroll-full {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-1 * var(--scroll-distance, 100%))); }
}
