/* 
  FINSMART SALES PAGE - Premium Dark Theme
  Estilo: Verde & Preto | Alta Conversão | Mobile First
*/

/* ===== VARIABLES ===== */
:root {
    --bg-page: #070c0e;
    --bg-card: #11181c;
    --bg-card-elevated: #1a2328;
    --border-color: #1e2a30;
    --border-highlight: #00c85333;

    --accent: #00c853;
    --accent-glow: rgba(0, 200, 83, 0.15);
    --accent-dark: #00963e;

    --text-primary: #f0f4f8;
    --text-secondary: #8899a6;
    --text-muted: #556270;

    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 20px;
}

/* ===== RESET ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

img, video {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== MAIN CONTAINER ===== */
.page-container {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    padding: 20px 16px 100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ===== FLOATING CARD BASE ===== */
.floating-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.floating-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 200, 83, 0.2), transparent);
}

.floating-card:hover {
    border-color: rgba(0, 200, 83, 0.25);
}

/* ===== 1. BRAND HEADER ===== */
.brand-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
}

.brand-logo {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background-color: #ffffff;
    border: 1px solid #ffffff;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-title-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.brand-name {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.verified-badge {
    width: 16px;
    height: 16px;
}

.brand-tagline {
    font-size: 0.78rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ===== 2. HERO SECTION ===== */
.hero-section {
    text-align: center;
    padding: 8px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-glow);
    border: 1px solid var(--border-highlight);
    border-radius: 999px;
    padding: 6px 16px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 20px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-title {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.highlight {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
    max-width: 320px;
    margin: 0 auto;
}

/* ===== 2.5 SPREADSHEET MOCKUP ===== */
.mockup-section {
    padding: 12px;
    border-color: rgba(0, 200, 83, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.mockup-container {
    background: #1e2a30;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.browser-header {
    height: 28px;
    background: #151e22;
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.browser-header .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.browser-header .dot.red { background: #ff5f56; }
.browser-header .dot.yellow { background: #ffbd2e; }
.browser-header .dot.green { background: #27c93f; }

.browser-title {
    margin-left: auto;
    margin-right: auto;
    font-size: 0.65rem;
    color: var(--text-secondary);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.spreadsheet-mockup {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mockup-container:hover .spreadsheet-mockup {
    transform: scale(1.03);
}

.mockup-caption {
    text-align: center;
    margin-top: 10px;
    font-size: 0.78rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ===== 3. VSL VIDEO & PLAY OVERLAY ===== */
.vsl-section {
    padding: 0;
    overflow: hidden;
    border-color: var(--accent);
    box-shadow: 0 0 20px var(--accent-glow), 0 4px 30px rgba(0,0,0,0.4);
}

.vsl-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    background: #000;
}

.vsl-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 12, 14, 0.75);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: opacity 0.3s ease;
}

.play-btn-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.play-btn-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent);
    border-radius: 50%;
    animation: play-ring-pulse 2s infinite;
}

.play-btn {
    width: 64px;
    height: 64px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 200, 83, 0.4);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.play-btn svg {
    width: 28px;
    height: 28px;
    transform: translateX(2px);
}

.play-overlay:hover .play-btn {
    transform: scale(1.1);
    background-color: #33d97a;
}

.play-text {
    font-size: 0.85rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

@keyframes play-ring-pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.vsl-caption {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    background: var(--bg-card);
}

/* ===== 4. PREMIUM CTA BUTTON ===== */
.cta-button {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 100%;
    padding: 20px 24px;
    background: linear-gradient(135deg, #00e676, #00a844);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 24px rgba(0, 230, 118, 0.25), inset 0 2px 4px rgba(255,255,255,0.2);
    overflow: hidden;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    animation: shine 4.5s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 230, 118, 0.45), inset 0 2px 4px rgba(255,255,255,0.2);
    filter: brightness(1.05);
}

.cta-button:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 230, 118, 0.3);
}

.cta-text {
    font-size: 1.05rem;
    font-weight: 800;
    color: #04090b;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.cta-subtext {
    font-size: 0.75rem;
    color: rgba(4, 9, 11, 0.8);
    font-weight: 600;
}

/* ===== 5. BENEFITS ===== */
.benefits-header {
    text-align: center;
    padding: 12px 0 0;
}

.section-icon {
    margin: 0 auto 8px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-glow);
    border-radius: 50%;
    border: 1px solid var(--border-highlight);
}

.section-title {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.section-title.center {
    text-align: center;
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.1), rgba(0, 200, 83, 0.03));
    border: 1px solid rgba(0, 200, 83, 0.2);
    border-radius: 14px;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.05);
}

.benefit-icon svg {
    filter: drop-shadow(0 2px 8px var(--accent-glow));
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon svg {
    transform: scale(1.15) rotate(5deg);
}

.benefit-content h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.benefit-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.45;
}

/* ===== 6. FEATURES GRID ===== */
.features-section {
    padding: 8px 0;
}

.features-section .section-title {
    margin-bottom: 20px;
    line-height: 1.3;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 20px 12px;
}

.feature-icon-circle {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.1), rgba(0, 200, 83, 0.03));
    border: 1px solid rgba(0, 200, 83, 0.2);
    border-radius: 50%;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.05);
}

.feature-icon-circle svg {
    filter: drop-shadow(0 2px 8px var(--accent-glow));
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon-circle svg {
    transform: scale(1.15) rotate(5deg);
}

.feature-label {
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.2;
}

.feature-desc {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.3;
}

/* ===== 7. TESTIMONIALS WITH REAL AVATARS ===== */
.social-proof {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 8px 0;
}

.social-proof .section-title {
    margin-bottom: 4px;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid var(--accent);
    box-shadow: 0 2px 8px rgba(0, 200, 83, 0.2);
}

.testimonial-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stars {
    font-size: 0.85rem;
    color: #facc15;
    letter-spacing: 1px;
}

.testimonial-text {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.55;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* ===== 8. GARANTIA ===== */
.guarantee-section {
    text-align: center;
    padding: 28px 20px;
    border-color: var(--border-highlight);
    background: linear-gradient(180deg, var(--bg-card), var(--bg-card-elevated));
}

.guarantee-icon {
    margin: 0 auto 12px;
}

.guarantee-title {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--accent);
}

.guarantee-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

/* ===== 9. FINAL CTA ===== */
.final-cta-section {
    text-align: center;
    padding: 12px 0;
}

.final-cta-title {
    font-size: 1.6rem;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 10px;
}

.final-cta-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.5;
}

/* ===== STICKY CTA WITH GLOW ===== */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    background: linear-gradient(to top, #070c0e 85%, transparent);
    z-index: 100;
    display: flex;
    justify-content: center;
}

.cta-button-sticky {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    max-width: 420px;
    padding: 22px 20px;
    text-align: center;
    font-family: var(--font);
    font-size: 1.1rem;
    font-weight: 900;
    color: #04090b;
    background: linear-gradient(135deg, #00e676, #00a844);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 230, 118, 0.4), inset 0 2px 4px rgba(255,255,255,0.2);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    animation: pulse-green 2.5s infinite;
}

@keyframes pulse-green {
    0% { box-shadow: 0 10px 30px rgba(0, 230, 118, 0.4), inset 0 2px 4px rgba(255,255,255,0.2); transform: scale(1); }
    50% { box-shadow: 0 15px 40px rgba(0, 230, 118, 0.6), inset 0 2px 4px rgba(255,255,255,0.2); transform: scale(1.02); }
    100% { box-shadow: 0 10px 30px rgba(0, 230, 118, 0.4), inset 0 2px 4px rgba(255,255,255,0.2); transform: scale(1); }
}

.cta-button-sticky::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    animation: shine 4.5s infinite 2.2s;
}

.cta-button-sticky:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 230, 118, 0.5), inset 0 2px 4px rgba(255,255,255,0.2);
    filter: brightness(1.1);
}

.cta-button-sticky:active {
    transform: translateY(-1px) scale(1);
}



/* ===== FOOTER ===== */
.footer {
    text-align: center;
    padding: 20px 0 40px;
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== ANIMATIONS ===== */
@media (prefers-reduced-motion: no-preference) {
    .floating-card {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.5s ease forwards;
    }

    .floating-card:nth-child(1) { animation-delay: 0.05s; }
    .floating-card:nth-child(2) { animation-delay: 0.1s; }
    .floating-card:nth-child(3) { animation-delay: 0.15s; }
    .floating-card:nth-child(4) { animation-delay: 0.2s; }
    .floating-card:nth-child(5) { animation-delay: 0.25s; }
    .floating-card:nth-child(6) { animation-delay: 0.3s; }

    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* ===== RESPONSIVE ===== */
@media (min-width: 480px) {
    .page-container {
        max-width: 460px;
        padding: 24px 20px 100px;
    }

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

@media (min-width: 768px) {
    .page-container {
        max-width: 520px;
        padding: 32px 24px 100px;
    }
}
