/* 
 * AgroSkills Club - Landing Page com Vídeo Obrigatório
 * Design focado em conversão com bloqueio de conteúdo
 */

/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

:root {
    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-green: #8CC63F;
    --color-green-dark: #1B5E3B;
    --color-gray-light: #F5F5F5;
    --color-gray: #E0E0E0;
    --color-gray-dark: #333333;
    --gradient-green: linear-gradient(135deg, #8CC63F 0%, #6B9B2F 100%);
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --transition: all 0.3s ease;
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-xl: 0 35px 60px -15px rgba(0, 0, 0, 0.3);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--color-black);
    background-color: var(--color-white);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 100;
    padding: 0.75rem 0;
}

.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-img {
    height: 50px;
}

/* Hero com Vídeo */
.hero-video {
    padding: 120px 0 60px;
    background: linear-gradient(180deg, #f8fdf8 0%, #ffffff 100%);
    min-height: 100vh;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(140, 198, 63, 0.1);
    border: 1px solid rgba(140, 198, 63, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-green-dark);
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.8rem;
    color: var(--color-gray-dark);
}

.hero-title .highlight-text {
    color: var(--color-green);
}

.hero-title .text-green {
    color: var(--color-green);
}

.hero-subtitle-main {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--color-gray-dark);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle-main .underline-text {
    text-decoration: underline;
    text-decoration-color: var(--color-green);
    text-underline-offset: 3px;
}

.hero-subtitle-main .text-green {
    color: var(--color-green);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Container do Vídeo */
.video-container {
    max-width: 850px;
    margin: 0 auto 2rem;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    max-height: 70vh; /* Limita a altura em 70% da viewport */
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

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

.video-frame iframe {
    width: 100%;
    height: 100%;
}

/* Overlay do Vídeo */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(27, 94, 59, 0.9) 0%, rgba(140, 198, 63, 0.8) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: opacity 0.5s ease;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Bloqueador transparente sobre o vídeo */
.video-blocker {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    cursor: not-allowed;
    background: transparent;
}

.video-blocker.hidden {
    display: none;
}

.play-button {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease;
    backdrop-filter: blur(10px);
}

.play-button:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

.play-button svg {
    margin-left: 8px;
}

.play-text {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 1rem;
}

/* Bloqueador da barra de controles do YouTube */
.video-controls-blocker {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 15;
    cursor: default;
    background: transparent;
}

.video-controls-blocker.hidden {
    display: none;
}

/* Barra de Progresso */
.video-progress {
    width: 100%;
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    margin-top: 1rem;
    overflow: hidden;
    display: none;
}

.video-progress.active {
    display: block;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: var(--gradient-green);
    border-radius: 3px;
    transition: width 0.5s linear;
}

/* CTA abaixo do vídeo */
.video-cta {
    margin-top: 1.5rem;
    text-align: center;
    display: block;
}

.video-cta.hidden {
    display: none;
}

.video-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 40px;
    background: var(--gradient-green);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(140, 198, 63, 0.4);
    transition: var(--transition);
    animation: pulse-cta 2s infinite;
}

@keyframes pulse-cta {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.video-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(140, 198, 63, 0.5);
    animation: none;
}

/* Mensagem de Espera */
.wait-message {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(140, 198, 63, 0.1);
    border: 1px solid rgba(140, 198, 63, 0.3);
    border-radius: 12px;
    margin-top: 1rem;
    color: var(--color-green-dark);
    font-size: 0.95rem;
}

.wait-message.active {
    display: flex;
}

.wait-icon {
    display: flex;
    align-items: center;
}

.timer {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-green);
}

/* Prova Social */
.social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 2rem;
}

.avatar-stack {
    display: flex;
    align-items: center;
}

.avatar-stack img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -10px;
    object-fit: cover;
}

.avatar-stack img:first-child {
    margin-left: 0;
}

.avatar-count {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: -10px;
    border: 2px solid #fff;
}

.social-text {
    font-size: 0.9rem;
    color: #666;
}

/* Seção de Compra */
/* Conteúdo Bloqueado (oculto até assistir) */
.locked-content {
    display: none;
}

.locked-content.unlocked {
    display: block;
}

.purchase-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fdf8 100%);
}

/* Overlay de Bloqueio */
.purchase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.purchase-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.lock-container {
    text-align: center;
    padding: 40px;
}

.lock-icon {
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.lock-container h3 {
    font-size: 1.5rem;
    color: var(--color-gray-dark);
    margin-bottom: 0.5rem;
}

.lock-container p {
    color: #666;
    margin-bottom: 2rem;
}

.scroll-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--color-green);
    font-weight: 500;
    cursor: pointer;
}

.scroll-hint svg {
    animation: scrollUp 1.5s infinite;
}

@keyframes scrollUp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Conteúdo da Compra */
.purchase-container {
    position: relative;
    z-index: 10;
}

.purchase-header {
    text-align: center;
    margin-bottom: 3rem;
}

.purchase-badge {
    display: inline-block;
    background: var(--gradient-green);
    color: #fff;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    animation: glow 2s infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(140, 198, 63, 0.3); }
    50% { box-shadow: 0 0 40px rgba(140, 198, 63, 0.5); }
}

.purchase-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-gray-dark);
    margin-bottom: 0.5rem;
}

.purchase-title span {
    color: var(--color-green);
}

.purchase-subtitle {
    color: #666;
    font-size: 1.1rem;
}

/* Grid de Compra */
.purchase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Benefícios */
.purchase-benefits h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--color-gray-dark);
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 16px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    background: rgba(140, 198, 63, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-text strong {
    display: block;
    color: var(--color-gray-dark);
    margin-bottom: 2px;
}

.benefit-text span {
    font-size: 0.9rem;
    color: #666;
}

/* Caixa de Garantia */
.guarantee-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 20px;
    background: rgba(27, 94, 59, 0.05);
    border: 1px solid rgba(27, 94, 59, 0.2);
    border-radius: 12px;
    margin-top: 1.5rem;
}

.guarantee-text strong {
    display: block;
    color: var(--color-green-dark);
    margin-bottom: 2px;
}

.guarantee-text span {
    font-size: 0.9rem;
    color: #666;
}

/* Card de Preço */
.purchase-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--color-green);
    position: sticky;
    top: 100px;
}

.card-badge {
    display: inline-block;
    background: var(--gradient-green);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.card-header h3 {
    font-size: 1.5rem;
    color: var(--color-gray-dark);
    margin-bottom: 4px;
}

.card-header p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.card-pricing {
    text-align: center;
    padding: 24px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 1.5rem;
}

.price-old {
    color: #999;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.price-old span {
    text-decoration: line-through;
}

.price-current {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    color: var(--color-green-dark);
}

.price-current .currency {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 8px;
}

.price-current .value {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
}

.price-current .cents {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 8px;
}

.price-installment {
    color: #666;
    font-size: 0.95rem;
    margin-top: 8px;
}

/* Checklist */
.card-checklist {
    list-style: none;
    margin-bottom: 1.5rem;
}

.card-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: var(--color-gray-dark);
    font-size: 0.95rem;
}

/* CTA Button */
.card-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px 32px;
    background: var(--gradient-green);
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: pulse-button 2s infinite;
}

@keyframes pulse-button {
    0%, 100% { box-shadow: 0 0 0 0 rgba(140, 198, 63, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(140, 198, 63, 0); }
}

.card-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(140, 198, 63, 0.4);
}

.card-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 1rem;
    color: #666;
    font-size: 0.85rem;
}

/* Countdown */
.offer-countdown {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    text-align: center;
}

.offer-countdown p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

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

.countdown-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-green-dark);
    background: rgba(140, 198, 63, 0.1);
    padding: 8px 16px;
    border-radius: 8px;
}

.countdown-label {
    font-size: 0.75rem;
    color: #666;
}

.countdown-separator {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-green);
}

/* Countdown Grande no Topo */
.offer-countdown-top {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.offer-countdown-top p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
}

.countdown-timer-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.countdown-item-large {
    text-align: center;
}

.countdown-value-large {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-green-dark);
    background: rgba(140, 198, 63, 0.15);
    padding: 16px 28px;
    border-radius: 12px;
    min-width: 90px;
}

.countdown-label-large {
    font-size: 0.85rem;
    color: #666;
    margin-top: 8px;
    display: block;
}

.countdown-separator-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-green);
}

/* Bloco de Garantia Separado */
.guarantee-section {
    padding: 60px 0;
    background: #f8fdf8;
}

.guarantee-block {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
    padding: 32px 40px;
    background: #fff;
    border: 2px solid var(--color-green);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(140, 198, 63, 0.15);
}

.guarantee-icon-large {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(140, 198, 63, 0.1);
    border-radius: 50%;
    margin-top: 8px;
}

.guarantee-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gray-dark);
    margin-bottom: 12px;
}

.guarantee-content .underline-green {
    text-decoration: underline;
    text-decoration-color: var(--color-green);
    text-underline-offset: 4px;
}

.guarantee-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 8px;
}

.guarantee-content .guarantee-highlight {
    font-weight: 600;
    color: var(--color-green-dark);
}

.guarantee-cta-button {
    margin-top: 1.5rem;
}

/* Section Title Global */
.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gray-dark);
    margin-bottom: 1rem;
}

.section-title .underline-green {
    text-decoration: underline;
    text-decoration-color: var(--color-green);
    text-underline-offset: 4px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2.5rem;
}

/* Seção de Bônus Exclusivos */
.bonus-section {
    padding: 60px 0;
    background: #fff;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 2rem;
}

.bonus-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: #f8fdf8;
    border-radius: 16px;
    border: 1px solid rgba(140, 198, 63, 0.2);
}

.bonus-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.bonus-text strong {
    display: block;
    font-size: 1.1rem;
    color: var(--color-gray-dark);
    margin-bottom: 6px;
}

.bonus-text span {
    font-size: 0.95rem;
    color: #666;
}

.bonus-cta {
    text-align: center;
    margin-top: 2rem;
}

.cta-button-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 50px;
    background: var(--gradient-green);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(140, 198, 63, 0.4);
    transition: var(--transition);
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(140, 198, 63, 0.5);
}

/* Seção de Transformação */
.transformation-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.transformation-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.transformation-card {
    flex: 1;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.transformation-card.before {
    background: #fff;
    border-left: 4px solid #e74c3c;
}

.transformation-card.after {
    background: #fff;
    border-left: 4px solid var(--color-green);
}

.transformation-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-gray-dark);
}

.transformation-card ul {
    list-style: none;
}

.transformation-card li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.95rem;
    color: #555;
}

.icon-x {
    color: #e74c3c;
    font-weight: bold;
    flex-shrink: 0;
}

.icon-check {
    color: var(--color-green);
    font-weight: bold;
    flex-shrink: 0;
}

.transformation-arrow {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Seção de Depoimentos de Membros */
.testimonials-members {
    padding: 80px 0;
    background: #fff;
}

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

.member-card {
    text-align: center;
    padding: 32px 24px;
    background: #f8f8f8;
    border-radius: 16px;
}

.member-avatar {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--color-green);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.member-quote {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
}

.member-info strong {
    display: block;
    font-size: 1rem;
    color: var(--color-gray-dark);
}

.member-info span {
    font-size: 0.85rem;
    color: #888;
}

/* Seção FAQ */
.faq-section {
    padding: 80px 0;
    background: #f8f8f8;
}

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

.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-gray-dark);
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    background: #f8fdf8;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--color-green);
    transition: var(--transition);
}

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

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

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: #666;
    line-height: 1.6;
}

/* Seção Final CTA */
.final-cta-section {
    padding: 80px 0;
    background: var(--color-gray-dark);
    text-align: center;
}

.final-cta-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.final-cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 24px;
    line-height: 1.6;
}

.final-cta-price-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.final-cta-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-green);
    margin-bottom: 24px;
}

.final-cta-button {
    display: inline-block;
    padding: 20px 50px;
    background: var(--color-green);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
}

.final-cta-button:hover {
    background: #6B9B2F;
    transform: translateY(-3px);
}

.final-cta-secure {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Depoimentos Mini */
.testimonials-mini {
    padding: 60px 0;
    background: #fff;
}

.testimonials-mini h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--color-gray-dark);
}

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

.testimonial-mini {
    padding: 24px;
    background: #f8f8f8;
    border-radius: 16px;
    text-align: center;
}

.testimonial-stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.testimonial-mini p {
    font-size: 0.95rem;
    color: var(--color-gray-dark);
    margin-bottom: 0.75rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.85rem;
    color: #666;
}

/* Footer */
.footer {
    padding: 40px 0;
    background: var(--color-gray-dark);
    text-align: center;
    color: #fff;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer p {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    display: flex;
}

.modal-container {
    background: #fff;
    border-radius: 20px;
    width: 90%;
    max-width: 450px;
    overflow: hidden;
    animation: modalSlide 0.3s ease;
}

@keyframes modalSlide {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #eee;
}

.modal-header h3 {
    font-size: 1.2rem;
    color: var(--color-gray-dark);
    margin: 0;
}

.modal-close {
    width: 32px;
    height: 32px;
    border: none;
    background: #f0f0f0;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: background 0.3s ease;
}

.modal-close:hover {
    background: #e0e0e0;
}

.modal-body {
    padding: 24px;
}

.modal-description {
    text-align: center;
    color: #666;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-gray-dark);
    margin-bottom: 6px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-green);
    box-shadow: 0 0 0 3px rgba(140, 198, 63, 0.1);
}

.modal-footer {
    padding: 0 24px 24px;
}

.modal-button {
    width: 100%;
    padding: 16px 32px;
    background: var(--gradient-green);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.modal-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(140, 198, 63, 0.4);
}

/* Responsivo */
@media (max-width: 992px) {
    .purchase-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .purchase-card {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    /* Ajuste do vídeo para tablets */
    .video-wrapper {
        max-height: 65vh;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .wait-message {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .social-proof {
        flex-direction: column;
        gap: 8px;
    }

    .purchase-title {
        font-size: 1.6rem;
    }

    .price-current .value {
        font-size: 3rem;
    }

    .countdown-value {
        font-size: 1.4rem;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .hero-video {
        padding: 100px 0 40px;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    /* Ajustes específicos para o vídeo em mobile */
    .video-wrapper {
        max-height: 60vh;
        padding-bottom: 56.25%;
    }

    .video-container {
        margin-bottom: 1.5rem;
    }

    .play-button {
        width: 70px;
        height: 70px;
    }

    .play-button svg {
        width: 50px;
        height: 50px;
    }
    
    .benefit-item {
        padding: 12px;
    }
    
    .purchase-card {
        padding: 24px 20px;
    }
    
    .card-cta {
        padding: 16px 24px;
        font-size: 0.9rem;
    }
    
    /* Responsivo para countdown grande */
    .countdown-value-large {
        font-size: 2rem;
        padding: 12px 20px;
        min-width: 70px;
    }
    
    .countdown-separator-large {
        font-size: 1.8rem;
    }
    
    .countdown-label-large {
        font-size: 0.75rem;
    }
    
    /* Responsivo para bloco de garantia */
    .guarantee-block {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }

    .guarantee-icon-large {
        margin-top: 0;
    }

    .guarantee-content h3 {
        font-size: 1.3rem;
    }

    .guarantee-cta-button {
        margin-top: 1.5rem;
    }

    .guarantee-cta-button .cta-button-large {
        width: 100%;
        padding: 16px 24px;
        font-size: 0.95rem;
    }
    
    /* Responsivo para CTA do vídeo */
    .video-cta-button {
        padding: 16px 30px;
        font-size: 1rem;
    }
    
    /* Responsivo para Bônus */
    .bonus-grid {
        grid-template-columns: 1fr;
    }
    
    .bonus-item {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-button-large {
        padding: 16px 30px;
        font-size: 1rem;
    }
    
    /* Responsivo para Transformação */
    .transformation-grid {
        flex-direction: column;
        gap: 20px;
    }
    
    .transformation-arrow {
        transform: rotate(90deg);
    }
    
    .transformation-card {
        padding: 24px;
    }
    
    /* Responsivo para Membros */
    .members-grid {
        grid-template-columns: 1fr;
    }
    
    /* Responsivo para FAQ */
    .faq-question {
        font-size: 0.9rem;
        padding: 16px 20px;
    }
    
    /* Responsivo para Final CTA */
    .final-cta-section h2 {
        font-size: 1.5rem;
    }
    
    .final-cta-price {
        font-size: 2rem;
    }
    
    .final-cta-button {
        padding: 16px 30px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}
