/* Reset & Base */
:root {
    --primary: #FF6B00;
    --primary-dark: #e65100;
    --accent: #00C853;
    --bg: #121212;
    --card-bg: #1E1E1E;
    --text: #E0E0E0;
    --heading: #FFFFFF;
    --border: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 50px;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    -webkit-tap-highlight-color: transparent;
}

/* Typography - Mobile First */
h1,
h2,
h3 {
    color: var(--heading);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 1.2rem;
    text-align: center;
}

h2 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.1rem;
}

.text-primary {
    color: var(--primary);
}

.text-accent {
    color: var(--accent);
    font-weight: 700;
}

.text-center {
    text-align: center;
}

/* Layout - Mobile Optimized */
.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

/* Components - Touch Optimized with Enhanced Animations */
.btn {
    display: inline-block;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.75rem;
    touch-action: manipulation;
    user-select: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4);
}

.btn:active {
    transform: scale(0.98) translateY(0);
    opacity: 0.9;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #ff8c00);
    color: white;
    box-shadow: 0 4px 0 #bf360c, 0 6px 20px rgba(255, 107, 0, 0.3);
    animation: btnGlow 2s ease-in-out infinite;
}

.btn-primary:hover {
    box-shadow: 0 6px 0 #bf360c, 0 10px 30px rgba(255, 107, 0, 0.5);
}

.btn-secondary {
    background: #444;
    color: white;
    box-shadow: 0 4px 0 #222;
}

.btn-secondary:hover {
    background: #555;
    box-shadow: 0 6px 0 #222, 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.btn-lg {
    font-size: 1rem;
    padding: 1.1rem 2rem;
}

/* Top Bar - Fixed at Top with Pulse Animation */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: #ff0000;
    color: #fff;
    text-align: center;
    padding: 0.6rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-bottom: 1px solid var(--border);
    line-height: 1.4;
    z-index: 1000;
    animation: topBarPulse 2s ease-in-out infinite;
}

.alert-red {
    color: #ffffff;
    font-weight: 800;
}

#countdown {
    display: inline-block;
    font-weight: 800;
    font-size: 0.85rem;
    color: #fff;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    animation: countdownPulse 1.5s ease-in-out infinite;
}

/* Hero Section - Mobile */
.hero {
    padding: 2rem 0;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.hero h1 {
    margin-bottom: 1rem;
    font-size: 1.6rem;
    line-height: 1.3;
}

.hero-sub {
    font-size: 0.85rem;
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.hero-product-img {
    max-width: 100%;
    width: 100%;
    margin: 1.5rem auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* VSL Container - Responsivo 16:9 */
.vsl-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 1.5rem auto;
    padding-bottom: 56.25%;
    /* Proporção 16:9 (9/16 = 0.5625) */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    background: #000;
}

.vsl-container iframe,
.vsl-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

.vsl-container video {
    object-fit: cover;
}

.price-box {
    background: rgba(255, 255, 255, 0.05);
    display: inline-flex;
    flex-direction: column;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 0.85rem;
    color: #aaa;
    margin-bottom: 0.3rem;
}

.price-old {
    text-decoration: line-through;
    color: #ff0000;
}

.price-value {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.hero-badges {
    margin-top: 0.8rem;
    font-size: 0.75rem;
    color: #888;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

/* Persona - Mobile - IMPROVED */
.persona {
    padding: 3rem 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #121212 100%);
}

.persona h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.persona-title {
    color: #fff;
    font-size: 1.5rem !important;
    letter-spacing: 1px;
}

.persona-content {
    max-width: 100%;
    margin: 0 auto;
}

.persona-list {
    list-style: none;
}

.persona-list li {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.persona-item-with-img {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.9), rgba(20, 20, 20, 0.9));
    border-radius: 20px;
    padding: 1.5rem;
    border: 2px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.persona-item-with-img:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 12px 32px rgba(255, 107, 0, 0.3);
}

.persona-inline-img {
    width: 70%;
    max-width: 70%;
    border-radius: 16px;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.persona-item-text-centered {
    text-align: center;
    font-size: 1rem;
    line-height: 1.7;
    padding: 0 0.5rem;
}

.persona-footer {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), rgba(0, 200, 83, 0.1));
    border: 2px solid var(--primary);
    border-radius: 16px;
    color: #fff;
    font-style: normal;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.6;
}

/* Features - Mobile */
.features {
    padding: 1.5rem 0 3rem 0;
}

.section-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.card {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    text-align: center;
}

.icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.card p {
    font-size: 0.75rem;
    line-height: 1.5;
}

/* Preview - Mobile */
.preview {
    padding: 3rem 0;
    background: #000;
}

.check-list {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    max-width: 100%;
    margin: 0 auto;
}

.check-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    font-size: 0.75rem;
    line-height: 1.5;
}

.check-list li:last-child {
    border-bottom: none;
}

.check {
    color: var(--accent);
    margin-right: 10px;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.check-green {
    color: var(--accent);
}

/* Pricing - Mobile */
.pricing {
    padding: 3rem 0;
    background: #000;
}

.pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.pricing-card {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    width: 100%;
    position: relative;
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    background: #222;
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.pricing-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.price-from {
    text-decoration: line-through;
    color: #777;
    font-size: 0.85rem;
}

.price-final {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin: 0.5rem 0 1.2rem;
}

.price-old-red {
    color: #ff0000 !important;
    font-weight: 800;
}

.price-green {
    color: var(--accent) !important;
}

.benefits {
    text-align: left;
    margin-top: 1.5rem;
}

.benefits li {
    margin-bottom: 0.7rem;
    color: #ccc;
    font-size: 0.75rem;
}

.benefits li.disabled {
    opacity: 0.4;
    text-decoration: line-through;
}

/* FAQ - Mobile */
.faq {
    padding: 3rem 0;
}

.accordion-item {
    border-bottom: 1px solid var(--border);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.accordion-btn {
    width: 100%;
    text-align: left;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    touch-action: manipulation;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.accordion-btn:hover {
    background: rgba(255, 255, 255, 0.05);
}

.accordion-btn span {
    font-size: 1.2rem;
    margin-left: 1rem;
    flex-shrink: 0;
    color: var(--accent);
    font-weight: bold;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: transparent;
}

.accordion-content p {
    padding: 0 1.5rem 1.25rem 1.5rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 0.75rem;
}

/* Footer - Mobile */
footer {
    padding: 2rem 0;
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    border-top: 1px solid var(--border);
}

/* Animations */

/* Top Bar Pulse */
@keyframes topBarPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }

    50% {
        box-shadow: 0 0 20px 5px rgba(255, 0, 0, 0.3);
    }
}

/* Countdown Pulse */
@keyframes countdownPulse {

    0%,
    100% {
        transform: scale(1);
        background: rgba(0, 0, 0, 0.3);
    }

    50% {
        transform: scale(1.05);
        background: rgba(0, 0, 0, 0.5);
    }
}

/* Button Glow */
@keyframes btnGlow {

    0%,
    100% {
        box-shadow: 0 4px 0 #bf360c, 0 6px 20px rgba(255, 107, 0, 0.3);
    }

    50% {
        box-shadow: 0 4px 0 #bf360c, 0 6px 30px rgba(255, 107, 0, 0.6);
    }
}

/* CTA Pulse Animation */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}



/* Sales Notification */
#sales-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, #00C853, #00A844);
    color: white;
    padding: 0.7rem 1rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 200, 83, 0.4);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 99999 !important;
    width: auto;
    max-width: 320px;
    transform: translateX(-400px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#sales-notification.show {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.notification-icon {
    background: rgba(255, 255, 255, 0.3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.notification-content {
    flex: 1;
}

.notification-name {
    font-weight: 700;
    font-size: 0.75rem;
    margin-bottom: 0.2rem;
}

.notification-text {
    font-size: 0.75rem;
    opacity: 0.95;
    margin-bottom: 0.2rem;
}

.notification-time {
    font-size: 0.7rem;
    opacity: 0.8;
}

/* Guarantee Section */
.guarantee {
    padding: 3rem 0;
    background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
}

.guarantee-card {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.9), rgba(20, 20, 20, 0.9));
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    border: 2px solid #00C853;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 200, 83, 0.2);
}

.guarantee-icon {
    margin: 0 auto 1.5rem;
    width: 100px;
    height: 100px;
    background: rgba(0, 200, 83, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guarantee-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.guarantee-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 2rem;
}

.guarantee-list {
    list-style: none;
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

.guarantee-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #fff;
}

.guarantee-list svg {
    flex-shrink: 0;
}

/* Desktop Optimizations */
@media (min-width: 768px) {
    .container {
        max-width: 1200px;
        padding: 0 2rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .pricing-grid {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }

    .pricing-card {
        max-width: 400px;
    }

    .hero-badges {
        flex-direction: row;
        justify-content: center;
    }

    /* VSL Container - Desktop */
    .vsl-container {
        max-width: 900px;
    }
}