/* ============================================
   ESTILOS ESPECÍFICOS DA PÁGINA PRINCIPAL
   ============================================ */

/* --- 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; 
}

.main-headline { 
    font-size: clamp(1.8rem, 4vw, 3rem); 
    font-weight: 900; 
    line-height: 1.1; 
    margin-bottom: 24px; 
    text-transform: uppercase; 
}

.hero-section .cta-button {
    margin-top: 40px;
}

.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; 
}

/* --- 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; 
}

/* --- SEÇÃO DE BENEFÍCIOS --- */
.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;
    }
}

.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;
}

/* --- 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); 
}

/* --- 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);
}

.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;
}

.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-section {
    background-color: var(--color-black);
}

.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); 
}

/* --- 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;
    margin: 0 auto;
    position: relative;
    padding: 0 40px;
}

.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;
}

.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);
}

.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;
    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);
}

/* --- BOTÃO WHATSAPP FLUTUANTE --- */
.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); 
}

/* --- POPUP DE VAGAS --- */
.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 QUERIES --- */
@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; }
}

@media (max-width: 600px) {
    .vaga-popup {
        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;
    }
}


