/* --------------------------------------------------
   DESIGN SYSTEM - LP TORTAS SALGADAS NO POTE (560px Cap)
   Coress: Laranja Gourmet, Amarelo Ouro e Marrom Chocolate Profundo
   Geometria: 20px-24px (Soft/Friendly/Bento)
-------------------------------------------------- */

:root {
    /* HSL Tailored Colors - Alimentar/Gourmet */
    --bg-primary: hsl(36, 65%, 98%);      /* Off-white quente/bege suave */
    --card-bg: hsl(0, 0%, 100%);           /* Branco puro */
    --text-main: hsl(25, 80%, 12%);        /* Marrom chocolate escuro */
    --text-muted: hsl(25, 20%, 35%);       /* Marrom suave */
    
    --brand-primary: hsl(25, 100%, 50%);   /* Laranja quente */
    --brand-secondary: hsl(43, 100%, 48%); /* Amarelo ouro */
    --brand-dark: hsl(25, 80%, 8%);        /* Chocolate ultra profundo */
    
    --success: hsl(142, 70%, 45%);         /* Verde sucesso */
    --border-color: hsl(28, 40%, 92%);     /* Borda suave bege */
    --bonus-bg: hsl(43, 100%, 97%);        /* Fundo bônus amarelo suave */
    
    /* Geometria Extremismo (Bento-soft friendly) */
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 10px;
    
    /* Sombras e Profundidade */
    --shadow-sm: 0 2px 8px rgba(56, 20, 4, 0.04);
    --shadow-md: 0 8px 24px rgba(56, 20, 4, 0.08);
    --shadow-lg: 0 16px 40px rgba(56, 20, 4, 0.12);
}

/* Reset e Configurações Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    background-color: #120702; /* Fundo escuro externo ao container */
    color: var(--text-main);
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
}

/* Container Centralizado Cap de 560px */
.lp-container {
    width: 100%;
    max-width: 560px;
    background-color: var(--bg-primary);
    min-height: 100vh;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
    position: relative;
    padding-bottom: 40px;
    overflow-x: hidden;
}

/* Faixa de Alerta Superior */
.alert-bar {
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
    color: var(--brand-dark);
    text-align: center;
    padding: 10px 15px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Header */
.main-header {
    padding: 40px 24px 24px 24px;
    text-align: center;
}

.badge {
    background-color: var(--brand-primary);
    color: white;
    font-size: 11px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 100px;
    display: inline-block;
    margin-bottom: 16px;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(255, 107, 0, 0.2);
}

.main-header h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.25;
    color: var(--brand-dark);
    margin-bottom: 16px;
}

.main-header h1 .highlight {
    color: var(--brand-primary);
    background: linear-gradient(120deg, rgba(255,107,0,0.1) 0%, rgba(255,170,0,0.15) 100%);
    padding: 2px 6px;
    border-radius: 6px;
}

.subtitle {
    font-size: 15px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Seção da Mini VSL e Vídeo */
.vsl-section {
    padding: 0 20px;
    margin-bottom: 24px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 320px; /* Cap para o formato Reels vertical */
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border-color);
}

.player-container {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16; /* Proporção vertical perfeita */
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-poster {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.player-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Botão de Play customizado na dobra */
.play-overlay-btn {
    position: absolute;
    z-index: 3;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    height: 100%;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-icon-wrapper {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 24px rgba(255, 107, 0, 0.4);
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: pulse-button 2s infinite;
}

.play-icon-wrapper svg {
    width: 32px;
    height: 32px;
    margin-left: 4px;
}

.play-text {
    color: white;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.5px;
    background: rgba(0, 0, 0, 0.8);
    padding: 6px 14px;
    border-radius: 100px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.1);
}

.play-overlay-btn:hover .play-icon-wrapper {
    transform: scale(1.1);
}

/* Controles Customizados do Vídeo */
.custom-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 44px;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 12px;
    z-index: 4;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.player-container:hover .custom-controls.active {
    opacity: 1;
    transform: translateY(0);
}

.control-btn {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.progress-bar-container {
    flex-grow: 1;
    height: 4px;
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}

.progress-bar {
    height: 100%;
    width: 0;
    background: var(--brand-primary);
    border-radius: 2px;
}

.video-time {
    color: white;
    font-size: 11px;
    font-weight: 600;
}

/* Live Viewers */
.live-counter {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 100px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255,255,255,0.1);
}

.live-dot {
    width: 8px;
    height: 8px;
    background-color: #ff3b30;
    border-radius: 50%;
    display: inline-block;
    animation: live-blink 1s infinite alternate;
}

.vsl-caption {
    text-align: center;
    margin-top: 10px;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
}

/* Seção CTA e Botões */
.cta-section {
    padding: 10px 24px 24px 24px;
    text-align: center;
}

.btn-primary {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff5500 0%, #ff8800 100%);
    color: white;
    text-decoration: none;
    padding: 18px 24px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 24px rgba(255, 85, 0, 0.35);
    transition: all 0.2s ease;
    animation: pulse-cta 2.2s infinite;
    border: 2px solid rgba(255,255,255,0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(255, 85, 0, 0.45);
}

.btn-primary:active {
    transform: translateY(1px);
}

.btn-text {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.3px;
}

.btn-subtext {
    font-size: 11px;
    font-weight: 600;
    opacity: 0.9;
    margin-top: 2px;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 12px;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
}

/* Seção Gatilho da Honestidade */
.trust-story-section {
    padding: 12px 20px;
}

.card {
    background-color: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
}

.trust-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 12px;
}

.trust-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.trust-card p:last-child {
    margin-bottom: 0;
}

/* Seção dos Entregáveis (Bento-soft) */
.deliverables-section {
    padding: 32px 20px;
}

.deliverables-section h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 800;
    text-align: center;
    color: var(--brand-dark);
    margin-bottom: 24px;
}

.deliverable-item {
    background-color: var(--card-bg);
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.deliverable-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background-color: #eee;
}

.deliverable-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tag-floating {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--brand-primary);
    color: white;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 100px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.deliverable-content {
    padding: 20px;
}

.deliverable-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.deliverable-content p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.features-list {
    list-style: none;
}

.features-list li {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 6px;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

/* Bônus Card */
.bonus-item {
    background-color: var(--bonus-bg);
    border: 2px dashed var(--brand-secondary);
    position: relative;
}

.bonus-tag {
    background-color: var(--brand-secondary);
    color: var(--brand-dark);
    font-size: 9px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    position: absolute;
    top: 0;
    left: 20px;
    letter-spacing: 0.5px;
}

.bonus-item .deliverable-content {
    padding-top: 28px;
}

/* Depoimentos */
.testimonials-section {
    padding: 24px 20px;
    background-color: #fdf6ee;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.testimonials-section h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 800;
    text-align: center;
    color: var(--brand-dark);
    margin-bottom: 20px;
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.testimonial-card {
    background-color: var(--card-bg);
    border-radius: var(--radius-md);
    padding: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.testimonial-text {
    font-size: 13px;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-name {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-main);
}

.author-badge {
    font-size: 10px;
    font-weight: 700;
    color: var(--success);
}

/* Oferta Comercial */
.offer-section {
    padding: 32px 20px;
}

.offer-card {
    background-color: var(--brand-dark);
    color: white;
    border-radius: var(--radius-lg);
    padding: 32px 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--brand-primary);
    position: relative;
    overflow: hidden;
}

/* Detalhe estético de fundo da oferta */
.offer-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,107,0,0.06) 0%, transparent 60%);
    pointer-events: none;
}

.promo-title {
    background-color: rgba(255, 107, 0, 0.15);
    color: var(--brand-secondary);
    font-size: 12px;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 100px;
    display: inline-block;
    border: 1px solid rgba(255,170,0,0.3);
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.price-container {
    margin-bottom: 24px;
}

.old-price {
    display: block;
    font-size: 16px;
    text-decoration: line-through;
    opacity: 0.6;
    margin-bottom: 4px;
}

.new-price {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 56px;
    font-weight: 800;
    color: var(--brand-secondary);
    line-height: 1;
    margin-bottom: 4px;
}

.price-details {
    display: block;
    font-size: 12px;
    opacity: 0.8;
}

.checkout-footer-info {
    margin-top: 16px;
    font-size: 11px;
    opacity: 0.8;
}

/* Garantia */
.garantia-section {
    padding: 12px 20px;
}

.garantia-card {
    background-color: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.garantia-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.garantia-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 10px;
}

.garantia-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* FAQ Accordion */
.faq-section {
    padding: 32px 20px;
}

.faq-section h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 800;
    text-align: center;
    color: var(--brand-dark);
    margin-bottom: 24px;
}

.faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background-color: var(--card-bg);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 18px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.faq-question span:first-child {
    line-height: 1.3;
}

.faq-icon {
    font-size: 16px;
    color: var(--brand-primary);
    transition: transform 0.2s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    padding: 0 18px;
    background-color: var(--bg-primary);
}

.faq-answer p {
    padding-bottom: 18px;
    font-size: 13px;
    color: var(--text-muted);
}

.faq-item.active {
    border-color: var(--brand-primary);
    box-shadow: var(--shadow-sm);
}

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

.faq-item.active .faq-answer {
    max-height: 1000px;
    transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

/* Footer */
.main-footer {
    text-align: center;
    padding: 32px 24px;
    background-color: var(--brand-dark);
    color: rgba(255,255,255,0.6);
    font-size: 11px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.main-footer strong {
    color: white;
    font-size: 12px;
}

.main-footer p {
    margin-bottom: 8px;
}

.main-footer p:last-child {
    margin-bottom: 0;
}

.termos-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: underline;
}

/* Animações e Keyframes */
@keyframes pulse-button {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 107, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0);
    }
}

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

@keyframes live-blink {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0.3;
    }
}
