/* --- CONFIGURAÇÕES GLOBAIS E VARIÁVEIS --- */
:root {
    --color-black: #050505;
    --color-gray-dark: #111111;
    --color-gray-light: #1d1d1d;
    --color-green: #22c55e;
    --color-yellow: #facc15;
    --color-red: #ef4444;
    --color-white: #f5f5f5;
    --color-text-secondary: #a3a3a3;

    --font-main: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

.text-center { text-align: center; }
.text-green { color: var(--color-green); }
.text-yellow { color: var(--color-yellow); }
.text-red { color: var(--color-red); }
.text-white { color: var(--color-white); }

/* --- EFEITOS E ANIMAÇÕES --- */
@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1); }
    50% { transform: scale(1.05); box-shadow: 0 0 20px 10px rgba(255, 255, 255, 0); }
}

.animate-pulse {
    animation: pulse 2s infinite;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- ELEMENTOS GERAIS --- */
.section-header { margin-bottom: 60px; }
.section-header h2 { font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 900; line-height: 1.2; text-transform: uppercase; }
.section-header .section-subtitle { font-size: 1.1rem; color: var(--color-text-secondary); max-width: 600px; margin: 16px auto 0; }
.icon-title { font-size: 3rem; margin-bottom: 16px; color: var(--color-yellow); }
.icon-title-large { font-size: 4rem; margin-bottom: 24px; color: var(--color-yellow); }

.cta-button {
    display: inline-block;
    font-family: var(--font-main);
    font-weight: 900;
    font-size: 1.25rem;
    text-transform: uppercase;
    color: var(--color-white);
    background: rgb(255, 72, 0);
    padding: 20px 40px;
    border-radius: 12px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3);
}
.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.5);
}

.hero-section .cta-button {
    margin-top: 40px;
}

/* --- CABEÇALHO STICKY --- */
.sticky-header {
    background-color: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-yellow);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}
.header-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 700;
}
.header-content .vacancies { color: var(--color-yellow); }
.header-content .live-view { color: var(--color-text-secondary); display: none; }

/* --- HERO SECTION --- */
.hero-section { padding: 15px 0 80px 0; }
.hero-section::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at 50% 30%, rgba(34, 197, 94, 0.1), transparent 70%); z-index: -1; }
.badge-alert { display: inline-block; background-color: rgba(239, 68, 68, 0.1); border: 1px solid var(--color-red); color: var(--color-red); padding: 8px 16px; border-radius: 99px; margin-bottom: 32px; font-weight: 700; }
.main-headline { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; line-height: 1.1; margin-bottom: 24px; text-transform: uppercase; }
.method-badge { display: inline-block; background: linear-gradient(45deg, var(--color-yellow), #ffdd57); color: var(--color-black); padding: 12px 24px; border-radius: 8px; margin-bottom: 32px; }
.method-badge h2 { font-size: 1.8rem; font-weight: 900; }
.vsl-container { position: relative; width: 100%; max-width: 600px; margin: 0 auto; border: 3px solid var(--color-yellow); border-radius: 16px; overflow: hidden; box-shadow: 0 0 40px rgba(240, 204, 20, 0.3); }
.vsl-container video { width: 100%; height: auto; display: block; }
.video-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); display: flex; justify-content: center; align-items: center; cursor: pointer; transition: background 0.3s; }
.video-overlay:hover { background: rgba(0, 0, 0, 0.7); }
.play-button { text-align: center; color: white; }
.play-button i { font-size: 3rem; margin-bottom: 12px; display: block; color: var(--color-yellow); }
.play-button span { font-size: 1rem; font-weight: 700; display: block; }
.video-caption { color: var(--color-yellow); font-weight: 700; margin-top: 16px; margin-bottom: 60px; }

/* --- SEÇÃO SOBRE JOÃO --- */
.about-joao-section { background-color: var(--color-gray-dark); }
.about-joao-grid { display: grid; grid-template-columns: 1fr; gap: 60px; align-items: center; }
.joao-image-card { position: relative; background: linear-gradient(135deg, rgba(240, 204, 20, 0.1), rgba(34, 197, 94, 0.1)); padding: 16px; border-radius: 24px; border: 1px solid var(--color-yellow); }
.joao-image-card img { width: 100%; border-radius: 16px; display: block; }
.joao-image-caption { position: absolute; bottom: 32px; left: 32px; right: 32px; background: rgba(0,0,0,0.8); backdrop-filter: blur(5px); padding: 16px; border-radius: 12px; text-align: left; }
.joao-image-caption .name { font-weight: 900; font-size: 1.2rem; color: var(--color-yellow); }
.joao-image-caption .earnings { font-weight: 700; color: var(--color-green); }
.joao-story p { font-size: 1.2rem; margin-bottom: 24px; }
.joao-story .cta-button.small { font-size: 1rem; padding: 16px 32px; margin-top: 16px; }

/* --- NOVA SEÇÃO DE BENEFÍCIOS (ARSENAL DIGITAL) --- */
.benefits-section-modern {
    padding: 80px 0;
    background: var(--color-black) url('https://www.transparenttextures.com/patterns/subtle-carbon.png');
    position: relative;
}

.benefits-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: stretch;
    margin-top: 48px;
    justify-items: stretch;
}

@media (min-width: 992px) {
    .benefits-showcase {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

.benefits-column {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
    max-width: 420px;
}

.benefit-card-modern {
    background: linear-gradient(145deg, #1a1a1a, #111111);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    min-width: 0;
}

.benefit-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(34, 197, 94, 0.2), transparent);
    transition: left 0.6s ease;
}

.benefit-card-modern:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--color-green);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.benefit-card-modern:hover::before {
    left: 100%;
}

.benefit-icon {
    font-size: 2rem;
    color: var(--color-green);
    background-color: rgba(34, 197, 94, 0.1);
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-green);
}

.benefit-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 4px;
}

.benefit-content p {
    color: var(--color-text-secondary);
    line-height: 1.5;
}

/* Peça Central - Mockup de Celular */
.benefits-centerpiece {
    display: flex;
    justify-content: center;
    align-items: center;
    order: -1; /* Coloca o celular no topo em mobile */
}

.phone-mockup-modern {
    width: 280px;
    height: 560px;
    background: #111;
    border: 10px solid #222;
    border-radius: 40px;
    padding: 10px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6), inset 0 2px 4px rgba(255,255,255,0.1);
}

.phone-screen {
    background: #050a0e;
    height: 100%;
    border-radius: 30px;
    padding: 20px;
    overflow: hidden;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
}

.screen-content {
    animation: scroll-text 15s linear infinite;
}

.screen-content p {
    margin-bottom: 8px;
    color: var(--color-text-secondary);
}

.screen-content .active-line {
    color: var(--color-yellow);
}
.screen-content .active-line::before {
    content: '■';
    display: inline-block;
    animation: blink 1s infinite;
    margin-right: 8px;
}

@keyframes scroll-text {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

@keyframes blink {
    50% { opacity: 0; }
}

/* Ajustes para Desktop */
@media (min-width: 992px) {
    .benefits-showcase {
        grid-template-columns: 1fr 400px 1fr; /* Layout de 3 colunas */
        gap: 60px;
    }
    .benefits-centerpiece {
        order: 0; /* Ordem normal no desktop */
    }
}

/* --- SEÇÃO SIMULADOR --- */
.simulator-section { background-color: var(--color-gray-dark); }
.simulator-box { background-color: var(--color-black); border: 1px solid var(--color-yellow); border-radius: 24px; padding: 40px; max-width: 800px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 40px; }
.simulator-input label { display: block; margin-bottom: 8px; font-weight: 700; }
.simulator-input input { width: 100%; background-color: var(--color-gray-light); border: 1px solid #444; border-radius: 8px; padding: 16px; color: var(--color-white); font-size: 1.2rem; }
.simulator-input button { width: 100%; margin-top: 16px; background: var(--color-yellow); color: var(--color-black); border: none; padding: 16px; border-radius: 8px; font-weight: 900; font-size: 1.1rem; cursor: pointer; transition: background 0.3s; }
.simulator-input button:hover { background: #ffdd57; }
.simulator-results h4 { font-size: 1.2rem; color: var(--color-text-secondary); margin-bottom: 24px; }
.result-item { display: flex; justify-content: space-between; align-items: center; background-color: var(--color-gray-light); padding: 24px; border-radius: 12px; }
.result-item:first-of-type { margin-bottom: 16px; }
.result-item p { font-weight: 700; font-size: 1.1rem; }
.result-item .profit-value { font-size: 1.8rem; font-weight: 900; color: var(--color-green); }
.disclaimer { font-size: 0.9rem; color: var(--color-text-secondary); max-width: 600px; margin: 24px auto 0; }

/* --- SEÇÃO DE PREÇO --- */
.pricing-card { background: linear-gradient(145deg, var(--color-gray-dark), var(--color-black)); border: 2px solid var(--color-green); border-radius: 24px; max-width: 700px; margin: 0 auto; padding: 40px; box-shadow: 0 0 60px rgba(34, 197, 94, 0.2); }
.price-header {
    text-align: center;
    margin-bottom: 40px;
}

.installment-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
}

.installment-label {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    font-weight: 600;
    letter-spacing: 1px;
}

.installment-value {
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-green);
    line-height: 1;
    margin-top: 2px;
    margin-bottom: 0;
}

.avista-info {
    margin-top: 8px;
}

.avista-label {
    font-size: 1rem;
    color: var(--color-text-secondary);
    margin-right: 4px;
}

.avista-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-yellow);
}

.old-price { font-size: 1.8rem; text-decoration: line-through; color: var(--color-text-secondary); }
.current-price { font-size: clamp(4rem, 10vw, 6rem); font-weight: 900; color: var(--color-green); line-height: 1; margin: 8px 0; }
.current-price .cents { font-size: 2.5rem; }
.payment-tag { display: inline-block; background: var(--color-yellow); color: var(--color-black); padding: 8px 16px; border-radius: 8px; font-weight: 900; margin-top: 16px; }
.features-list { margin-bottom: 40px; display: grid; grid-template-columns: 1fr; gap: 16px; }
.features-list p { font-size: 1.1rem; }
.features-list i { color: var(--color-green); margin-right: 12px; }
.main-buy-btn {
    width: 100%;
    font-size: 1.5rem;
    text-align: center;
}
.secure-payment { text-align: center; margin-top: 24px; color: var(--color-text-secondary); font-weight: 700; }
.payment-methods { display: flex; justify-content: center; align-items: center; gap: 24px; margin-top: 24px; color: var(--color-text-secondary); }

/* --- SEÇÃO GARANTIA --- */
.guarantee-section { background-color: var(--color-gray-dark); }
.guarantee-section p { max-width: 800px; margin: 0 auto; font-size: 1.2rem; color: var(--color-text-secondary); }

/* --- SEÇÃO ESCASSEZ --- */
.scarcity-box { border: 2px solid var(--color-red); border-radius: 24px; padding: 40px; max-width: 600px; margin: 0 auto 40px; background-color: rgba(239, 68, 68, 0.05); }
.scarcity-box h3 { font-size: 1.5rem; }
.spots-left-display { font-size: clamp(4rem, 12vw, 7rem); font-weight: 900; color: var(--color-yellow); line-height: 1; margin: 16px 0; }
.spots-left-display p { font-size: 1.2rem; color: var(--color-white); }
.scarcity-warning { color: var(--color-text-secondary); }
.cta-button.red-alert { background: linear-gradient(45deg, var(--color-red), #ff6b6b); box-shadow: 0 4px 20px rgba(239, 68, 68, 0.3); }
.cta-button.red-alert:hover { box-shadow: 0 8px 30px rgba(239, 68, 68, 0.5); }

/* --- BOTÃO WHATSAPP --- */
.floating-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background-color: var(--color-green);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
    z-index: 1000;
    transition: transform 0.3s;
    text-decoration: none;
}

.floating-whatsapp:hover { transform: scale(1.1); }
.floating-whatsapp .tooltip { visibility: hidden; width: 180px; background-color: var(--color-black); color: #fff; text-align: center; border-radius: 6px; padding: 8px; position: absolute; z-index: 1; bottom: 125%; right: 0; opacity: 0; transition: opacity 0.3s; font-size: 0.9rem; }
.floating-whatsapp:hover .tooltip { visibility: visible; opacity: 1; }

/* --- FOOTER --- */
.footer { background-color: var(--color-gray-dark); padding: 40px 0; border-top: 1px solid #222; }
.footer .disclaimer { font-size: 0.8rem; color: #666; max-width: 600px; margin: 16px auto 0; }

/* --- MEDIA QUERIES PARA RESPONSIVIDADE --- */
@media (min-width: 768px) {
    .header-content .live-view { display: inline; }
    .about-joao-grid { grid-template-columns: 1fr 1fr; }
    .simulator-box { grid-template-columns: 1fr 1fr; }
    .features-list { grid-template-columns: 1fr 1fr; }
}

/* --- SEÇÃO PROVA SOCIAL (CARROSSEL) --- */
.social-proof-section {
    background-color: var(--color-black);
}

.subtitle-highlight {
    margin-top: 15px;
    font-size: 1.5rem !important;
}

.carousel-container {
    max-width: 450px; /* Largura ideal para prints de celular */
    margin: 0 auto;
    position: relative;
    padding: 0 40px; /* Espaço para os botões de navegação laterais */
}

.swiper {
    width: 100%;
    height: 100%;
    border-radius: 24px;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: var(--color-gray-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid #333;
    border-radius: 24px;
    overflow: hidden; /* Garante que a imagem não vaze */
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.testimonial-profit {
    background-color: rgba(34, 197, 94, 0.1);
    color: var(--color-green);
    font-weight: 700;
    padding: 12px 20px;
    font-size: 1rem;
    width: 100%;
    text-align: center;
    border-top: 1px solid var(--color-green);
}

/* Estilo dos botões e paginação do Swiper */
.swiper-button-next,
.swiper-button-prev {
    color: var(--color-yellow) !important;
    background-color: rgba(0, 0, 0, 0.5);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    transition: background-color 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.2rem !important;
    font-weight: 900;
}

.swiper-pagination-bullet {
    background-color: #555 !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    background-color: var(--color-yellow) !important;
}

/* --- SEÇÃO FAQ EM VÍDEO --- */
.faq-video-section {
    background-color: var(--color-gray-dark);
}

.faq-video-player {
    max-width: 400px; /* AJUSTADO PARA VÍDEO VERTICAL (720x1280) */
    margin: 0 auto;
    position: relative;
    cursor: pointer;
    border-radius: 16px;
    overflow: hidden; 
    border: 2px solid var(--color-green);
    box-shadow: 0 0 40px rgba(34, 197, 94, 0.2);
}

.faq-video-player video,
.faq-video-player img {
    width: 100%;
    display: block;
}

#faq-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-video-player:hover #faq-play-overlay {
    background-color: rgba(0, 0, 0, 0.6);
}

#faq-play-overlay i {
    font-size: 4.5rem;
    color: var(--color-yellow);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.faq-video-player:hover #faq-play-overlay i {
    transform: scale(1.1);
}

/* Classe auxiliar para esconder elementos */
.hidden {
    display: none !important;
}

.offer-benefits-list {
    margin: 24px 0 16px 0;
    padding: 16px 12px;
    background: rgba(34,197,94,0.07);
    border-radius: 12px;
    text-align: left;
}
.offer-benefits-list p {
    margin: 0 0 8px 0;
    font-size: 1rem;
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: 10px;
}
.offer-benefits-list i {
    color: var(--color-green);
    font-size: 1.1em;
}

.vaga-popup {
    position: fixed;
    left: 50%;
    bottom: 32px;
    transform: translateX(-50%);
    background: #181f1b;
    color: var(--color-white);
    padding: 18px 32px;
    border-radius: 32px;
    box-shadow: 0 8px 32px rgba(34,197,94,0.18);
    font-size: 1.1rem;
    font-weight: 600;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.6s, bottom 0.6s;
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 10px;
}
.vaga-popup strong {
    color: var(--color-green);
    font-weight: 900;
}
.vaga-popup.hide {
    opacity: 0;
    bottom: 0;
}

@media (max-width: 600px) {
  .vaga-popup, .vaga-popup-custom {
    padding: 10px 16px;
    font-size: 0.95rem;
    border-radius: 18px;
    bottom: 16px;
    max-width: 95vw;
    min-width: 0;
    width: auto;
    left: 50%;
    transform: translateX(-50%) scale(1);
    gap: 7px;
  }
  .vaga-popup-custom .icon {
    width: 28px;
    height: 28px;
    font-size: 1em;
  }
  .vaga-popup-custom span {
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 70vw;
    display: inline-block;
    vertical-align: middle;
  }
}