/* 
    Created on : 12/02/2026, 01:51:07
    Author     : eric ferraz | @ericferraz1
*/
:root {
            --bg-page: #060b14;
            --accent-green: #00C940;
            --accent-blue: #3b82f6;
            --accent-cyan: #06b6d4;
            --accent-purple: #8b5cf6;
            --accent-orange: #f59e0b;
            --text-muted: #94a3b8;
            --card-border: rgba(255, 255, 255, 0.1);
            --card-bg: #0f172a;
            --section-light: #ffffff;
        }

        body {
            background-color: var(--bg-page);
            font-family: 'Manrope', sans-serif;
            color: #fff;
            margin: 0;
            overflow-x: hidden;
        }

        /* --- FILTRO DA LOGO (BRANCO) --- */
        .hero-section .logo-placeholder img {
            max-height: 45px; width: auto;
            filter: brightness(0) invert(1); 
        }

        /* --- PADRONIZAÇÃO BOTÕES --- */
        .btn-cta, .btn-cta-dark, .btn-cta-vsl, .btn-submit {
            background: #72C2F0 !important;
            color: #fff !important;
            font-size: 1rem !important;
            padding: 16px 30px !important; /* Mais compacto */
            border-radius: 50px !important;
            text-transform: uppercase;
            font-weight: 800 !important;
            border: none !important;
            background-image: none !important;
            box-shadow: 0 0 25px rgba(114, 194, 240, 0.4) !important;
            display: inline-block; text-decoration: none; transition: all 0.3s ease; white-space: nowrap;
        }
        .btn-cta:hover, .btn-cta-dark:hover, .btn-cta-vsl:hover, .btn-submit:hover {
            transform: translateY(-3px);
            background: #5bb0e6 !important;
            box-shadow: 0 0 40px rgba(114, 194, 240, 0.7) !important;
            color: #fff !important;
        }

        /* =========================================
           GLOBAL: SEPARADORES (Ajustados para ocupar menos espaço)
           ========================================= */
        .tech-arrow-divider {
            position: absolute; bottom: -1px; left: 0; width: 100%; height: 50px; /* Reduzido altura da seta */
            z-index: 2; pointer-events: none;
        }
        .tech-arrow-divider svg { display: block; width: 100%; height: 100%; }
        .tech-arrow-divider path { fill: var(--section-light); }
        .tech-arrow-divider.dark-fill path { fill: var(--bg-page); }

        .tech-divider-sutil {
            display: flex; align-items: center; justify-content: center; gap: 15px;
            margin: 0 auto 20px auto; /* Reduzido de 40px */
            max-width: 400px; opacity: 0.6;
        }
        .tech-line { height: 1px; flex: 1; background: linear-gradient(90deg, transparent, var(--accent-blue), transparent); }
        .separator-icon-box {
            width: 24px; height: 24px; /* Icone menor */
            display: flex; align-items: center; justify-content: center;
            border: 1px solid rgba(59, 130, 246, 0.3); border-radius: 6px; background: rgba(15, 23, 42, 0.5);
        }
        .separator-icon-box svg { width: 12px; height: 12px; fill: var(--accent-blue); }
        .tech-divider-sutil.bottom { margin-top: 30px; margin-bottom: 0; } /* Reduzido de 60px */

        /* =========================================
           1. HERO SECTION
           ========================================= */
        .hero-section {
            padding: 30px 0 100px 0; /* Reduzido */
            min-height: 90vh; display: flex; align-items: center;
            background: radial-gradient(circle at 70% 40%, #1e293b 0%, var(--bg-page) 60%);
            position: relative; z-index: 1;
        }
        .logo-placeholder { margin-bottom: 30px; display: inline-block; }
        h1 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 2.5rem; line-height: 1.1; margin-bottom: 20px; }
        .highlight-green { color: var(--accent-green); background: rgba(0, 201, 64, 0.1); padding: 0 5px; border-radius: 4px; }
        .hero-sub { font-size: 1rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 30px; max-width: 500px; }
        
        /* Dashboard App */
        .dashboard-phone {
            background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 30px;
            padding: 0; max-width: 400px; margin: 0 auto; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            position: relative; overflow: hidden; z-index: 3;
        }
        .supervision-bar {
            background: rgba(0, 201, 64, 0.08); padding: 10px 20px; font-size: 0.7rem; color: #4ade80;
            display: flex; align-items: center; gap: 8px; border-bottom: 1px solid rgba(0, 201, 64, 0.1); font-weight: 600;
        }
        .card-body-inner { padding: 20px; }
        .app-user-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid var(--card-border); }
        .user-info { display: flex; align-items: center; gap: 10px; }
        .avatar { width: 38px; height: 38px; background: linear-gradient(135deg, #3b82f6, #06b6d4); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; border: 2px solid rgba(255,255,255,0.1); }
        .user-texts h6 { margin: 0; font-weight: 700; font-size: 0.9rem; color: #fff; }
        .user-texts span { font-size: 0.7rem; color: var(--text-muted); display: block; margin-top: 2px; }
        .header-icons-right { display: flex; gap: 10px; color: var(--text-muted); font-size: 1rem; }
        .balance-area { margin-bottom: 25px; }
        .balance-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
        .balance-value { font-family: 'Montserrat', sans-serif; font-size: 2rem; font-weight: 800; margin: 5px 0; color: #fff; }
        .balance-gain { font-size: 0.85rem; color: var(--accent-green); font-weight: 700; background: rgba(0, 201, 64, 0.1); padding: 3px 8px; border-radius: 20px; display: inline-block; }
        .balance-detail { font-size: 0.75rem; color: var(--text-muted); margin-top: 5px; display: block; }
        .allocation-title { margin-bottom: 8px; font-size: 0.7rem; color: #64748b; display:flex; justify-content:space-between; text-transform: uppercase; }
        .allocation-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 25px; min-height: 70px; }
        .alloc-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; padding: 10px; display: flex; flex-direction: column; justify-content: center; }
        .alloc-number { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1rem; margin-bottom: 2px; color: #fff; }
        .alloc-label { font-size: 0.65rem; color: var(--text-muted); line-height: 1.2; font-weight: 500; }
        .alloc-card.ai-style { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.12); }
        .mode-selector-title { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; margin-top: 5px; }
        .mode-card { background: rgba(255,255,255,0.02); border: 1px solid var(--card-border); border-radius: 10px; padding: 12px; margin-bottom: 8px; cursor: pointer; transition: all 0.3s; display: flex; align-items: center; gap: 12px; }
        .mode-icon { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; color: #64748b; font-size: 1rem; }
        .mode-texts h5 { font-size: 0.9rem; margin: 0 0 2px 0; font-weight: 700; }
        .mode-texts p { font-size: 0.7rem; margin: 0; color: var(--text-muted); line-height: 1.3; }
        .mode-card.active { background: rgba(59, 130, 246, 0.1); border-color: var(--accent-blue); }
        .mode-card.active .mode-icon { background: var(--accent-blue); color: #fff; box-shadow: 0 0 15px rgba(59, 130, 246, 0.4); }
        .ai-active-text { text-shadow: 0 0 20px rgba(0, 201, 64, 0.6); color: #fff; }

        /* =========================================
           2. SEÇÃO GALERIA (COMPACTA)
           ========================================= */
        .gallery-section { background-color: var(--section-light); padding: 50px 0 60px 0; color: #333; position: relative; }
        .gallery-stack { display: flex; flex-direction: column; gap: 30px; /* Reduzido de 60 */ max-width: 800px; margin: 0 auto 40px auto; }
        .gallery-item { border-radius: 15px; overflow: hidden; box-shadow: 0 15px 30px rgba(0,0,0,0.1); background: #f1f5f9; border: 1px solid #e2e8f0; opacity: 0; transform: translateY(50px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
        .gallery-item.visible { opacity: 1; transform: translateY(0); }
        .gallery-img-placeholder { width: 100%; height: auto; aspect-ratio: 16/9; object-fit: cover; display: flex; align-items: center; justify-content: center; background-color: #e2e8f0; color: #94a3b8; font-weight: 700; font-size: 1.2rem; }

        /* =========================================
           3. SEÇÃO VSL (COMPACTA)
           ========================================= */
        .vsl-section { background-color: var(--bg-page); padding: 50px 0 100px 0; position: relative; text-align: center; border-top: 1px solid #1e293b; z-index: 1; }
        .vsl-headline { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.8rem; color: #fff; margin-bottom: 10px; max-width: 850px; margin-left: auto; margin-right: auto; line-height: 1.3; }
        .vsl-subheadline { font-size: 1rem; color: var(--text-muted); margin-bottom: 30px; max-width: 700px; margin-left: auto; margin-right: auto; font-weight: 500; }
        .video-box { max-width: 750px; margin: 0 auto 30px auto; border-radius: 10px; overflow: hidden; box-shadow: 0 0 50px rgba(59, 130, 246, 0.15); border: 1px solid #334155; background: #000; }

        /* =========================================
           4. SEÇÃO IMPACTO (COMPACTA)
           ========================================= */
        .impact-section { background-color: var(--section-light); padding: 60px 0 60px 0; position: relative; text-align: center; color: #333; z-index: 1; }
        .impact-headline { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 2.2rem; color: #0f172a; margin-bottom: 20px; line-height: 1.2; }
        .impact-sub { font-size: 1.1rem; color: #475569; max-width: 750px; margin: 0 auto 30px auto; line-height: 1.5; font-weight: 500; }

        /* =========================================
           5. SEÇÃO INTELIGÊNCIA (COMPACTA)
           ========================================= */
        .intelligence-section { background-color: var(--bg-page); padding: 50px 0 50px 0; position: relative; color: #fff; }
        .intel-headline { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.8rem; text-transform: uppercase; margin-bottom: 30px; text-align: center; background: linear-gradient(90deg, #fff, #94a3b8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .custom-accordion { max-width: 850px; margin: 0 auto 30px auto; }
        .custom-accordion .accordion-item { background: rgba(255,255,255,0.02); border: 1px solid var(--card-border); margin-bottom: 10px; border-radius: 10px !important; }
        .custom-accordion .accordion-item:has(.accordion-button:not(.collapsed)) { border-color: var(--accent-blue); box-shadow: 0 0 15px rgba(59, 130, 246, 0.15); background: rgba(15, 23, 42, 0.6); }
        .custom-accordion .accordion-button { background-color: transparent; color: #fff; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1rem; text-transform: uppercase; padding: 20px; box-shadow: none; }
        .header-icon { margin-right: 12px; color: var(--accent-cyan); font-size: 1.2rem; width: 25px; text-align: center; }
        .custom-accordion .accordion-button:not(.collapsed) { background-color: transparent; color: var(--accent-blue); }
        .custom-accordion .accordion-button::after { filter: invert(1); transform: scale(0.8); transition: transform 0.3s; }
        .custom-accordion .accordion-button:not(.collapsed)::after { filter: invert(1) drop-shadow(0 0 5px var(--accent-blue)); }
        .custom-accordion .accordion-body { color: var(--text-muted); line-height: 1.6; padding: 0 20px 25px 20px; font-size: 0.95rem; }
        .intel-feature-list { list-style: none; padding: 0; margin-top: 15px; }
        .intel-feature-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 15px; padding: 12px; background: rgba(255,255,255,0.03); border-radius: 8px; border: 1px solid rgba(255,255,255,0.05); }
        .mini-icon { color: var(--accent-blue); font-size: 1.1rem; margin-top: 2px; }
        .intel-cta-wrapper { text-align: center; margin-bottom: 20px; }

        /* =========================================
           6. SEÇÃO GRÁFICO (COMPACTA)
           ========================================= */
        .chart-section { background-color: var(--bg-page); padding: 30px 0 50px 0; position: relative; text-align: center; }
        .chart-headline { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.8rem; color: #fff; margin-bottom: 5px; }
        .chart-sub { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 30px; }
        .chart-container { max-width: 900px; margin: 0 auto; background: rgba(15, 23, 42, 0.5); border: 1px solid var(--card-border); border-radius: 15px; padding: 15px; box-shadow: 0 15px 40px rgba(0,0,0,0.3); position: relative; height: 400px; }

        /* =========================================
           7. SEÇÃO ESPECIALISTAS (COMPACTA)
           ========================================= */
        .team-section { background-color: var(--bg-page); padding: 50px 0 60px 0; position: relative; text-align: center; color: #fff; overflow: hidden; }
        .team-headline { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.8rem; color: #fff; margin-bottom: 10px; max-width: 850px; margin-left: auto; margin-right: auto; }
        .team-subheadline { font-size: 1rem; color: var(--text-muted); margin-bottom: 10px; max-width: 700px; margin-left: auto; margin-right: auto; }
        .team-features { display: flex; flex-direction: column; gap: 8px; align-items: center; margin-bottom: 30px; color: #94a3b8; font-size: 0.9rem; }
        .carousel-wrapper { position: relative; width: 100%; overflow: hidden; margin-bottom: 30px; -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); }
        .carousel-track { display: flex; width: max-content; gap: 20px; animation: scroll-carousel 40s linear infinite; }
        @keyframes scroll-carousel { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        .team-card { width: 260px; flex-shrink: 0; background: #0f172a; border: 1px solid #334155; border-radius: 12px; overflow: hidden; transition: transform 0.3s; }
        .team-card:hover { transform: translateY(-5px); border-color: var(--accent-blue); }
        .team-img-box { width: 100%; height: 260px; background-color: #1e293b; display: flex; align-items: flex-end; justify-content: center; overflow: hidden; }
        .team-img-box img { width: 100%; height: 100%; object-fit: cover; }
        .team-img-placeholder { width: 100%; height: 100%; background: linear-gradient(to top, #0f172a, #334155); display: flex; align-items: center; justify-content: center; color: #64748b; font-weight: 700; }
        .team-info { padding: 15px; text-align: left; border-top: 2px solid var(--card-border); background: linear-gradient(180deg, rgba(15,23,42,0) 0%, rgba(59,130,246,0.05) 100%); }
        .team-name-row { display: flex; align-items: center; gap: 8px; margin-bottom: 3px; }
        .pegasus-icon { width: 18px; height: 18px; fill: var(--accent-blue); }
        .team-name { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 0.95rem; color: #fff; letter-spacing: 0.5px; text-transform: uppercase; }
        .team-role { font-size: 0.75rem; color: #94a3b8; font-weight: 500; }

        /* =========================================
           8. SEÇÃO DEPOIMENTOS (COMPACTA)
           ========================================= */
        .testimonials-section { background-color: var(--bg-page); padding: 40px 0 60px 0; position: relative; }
        .testi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 950px; margin: 0 auto 40px auto; }
        .testi-card { background: rgba(15, 23, 42, 0.4); border: 1px solid var(--card-border); border-radius: 15px; padding: 25px; display: flex; flex-direction: column; justify-content: space-between; transition: all 0.3s ease; position: relative; overflow: hidden; }
        .testi-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at bottom right, rgba(59,130,246,0.05), transparent 60%); pointer-events: none; }
        .testi-card:hover { border-color: var(--accent-blue); box-shadow: 0 10px 30px rgba(0,0,0,0.3); transform: translateY(-3px); }
        .testi-quote { font-size: 1rem; color: #e2e8f0; font-style: italic; line-height: 1.5; margin-bottom: 20px; font-weight: 500; }
        .testi-profile { display: flex; align-items: center; gap: 12px; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 15px; }
        .testi-avatar { width: 50px; height: 50px; border-radius: 10px; background-color: #334155; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); }
        .testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
        .testi-info h5 { margin: 0; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 0.95rem; color: #fff; display: flex; align-items: center; gap: 6px; text-transform: uppercase; }
        .testi-info h5 span { color: #64748b; font-weight: 400; font-size: 0.85rem; }
        .testi-role { font-size: 0.7rem; color: #94a3b8; margin-top: 2px; text-transform: uppercase; letter-spacing: 0.5px; }
        .testi-cta-container { text-align: center; margin-bottom: 30px; }

        /* =========================================
           9. SEÇÃO OFERTA (COMPACTA)
           ========================================= */
        .offer-section { background-color: var(--bg-page); padding: 50px 0 50px 0; position: relative; text-align: center; }
        .offer-headline { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.8rem; text-transform: uppercase; margin-bottom: 10px; color: #fff; }
        .offer-sub { font-size: 1rem; color: var(--text-muted); margin-bottom: 40px; max-width: 700px; margin-left: auto; margin-right: auto; }
        .offer-table { max-width: 900px; margin: 0 auto 40px auto; display: flex; flex-direction: column; gap: 10px; }
        .offer-row { display: grid; grid-template-columns: 1fr 1.5fr; gap: 15px; background: rgba(255, 255, 255, 0.03); border: 1px solid var(--card-border); border-radius: 10px; padding: 20px; text-align: left; transition: all 0.3s; align-items: flex-start; }
        .offer-row:hover { background: rgba(255, 255, 255, 0.05); border-color: var(--accent-blue); }
        .offer-component { display: flex; align-items: center; gap: 12px; }
        .offer-icon-box { width: 40px; height: 40px; background: rgba(59, 130, 246, 0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--accent-blue); font-size: 1.1rem; flex-shrink: 0; }
        .offer-title { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.95rem; color: #fff; }
        .offer-value { font-size: 0.9rem; color: #cbd5e1; line-height: 1.5; display: flex; align-items: center; }
        .offer-header { display: grid; grid-template-columns: 1fr 1.5fr; gap: 15px; padding: 0 20px 10px 20px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 5px; }
        .offer-header span { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: #94a3b8; font-weight: 700; }
        .warning-box { background: rgba(245, 158, 11, 0.1); border: 1px solid rgba(245, 158, 11, 0.3); border-radius: 10px; padding: 15px; max-width: 750px; margin: 0 auto 30px auto; color: #fbbf24; font-size: 0.9rem; line-height: 1.4; display: flex; align-items: center; justify-content: center; gap: 12px; }
        .warning-box i { font-size: 1.3rem; }
        .scarcity-block { max-width: 450px; margin: 25px auto 0 auto; text-align: center; }
        .scarcity-label { display: flex; justify-content: space-between; color: #fff; font-size: 0.8rem; font-weight: 700; margin-bottom: 6px; text-transform: uppercase; }
        .progress-track { height: 8px; background: #334155; border-radius: 4px; overflow: hidden; }
        .progress-fill { height: 100%; width: 88%; background: linear-gradient(90deg, #ef4444, #f59e0b); border-radius: 4px; position: relative; animation: pulse-fill 2s infinite ease-in-out; }
        @keyframes pulse-fill { 0% { opacity: 1; } 50% { opacity: 0.8; } 100% { opacity: 1; } }

        /* =========================================
           10. SEÇÃO FORMULÁRIO (COMPACTA)
           ========================================= */
        .form-section { background: linear-gradient(180deg, var(--bg-page) 0%, #0f172a 100%); padding: 60px 0 100px 0; position: relative; border-top: 1px solid #1e293b; z-index: 1; }
        .form-container { max-width: 550px; margin: 0 auto; background-color: var(--card-bg); padding: 30px; border-radius: 15px; border: 2px solid var(--accent-blue); box-shadow: 0 0 40px rgba(59, 130, 246, 0.15); }
        .custom-input { background-color: #060b14; border: 1px solid #334155; color: #fff; height: 50px; width: 100%; border-radius: 8px; padding: 0 15px; margin-bottom: 12px; font-size: 0.95rem; }
        .input-label { display: block; margin-bottom: 6px; font-size: 0.85rem; color: var(--text-muted); font-weight: 600; }
        .btn-submit { width: 100%; padding: 18px; font-size: 1.1rem; margin-top: 5px; }
        .security-badge { text-align: center; margin-top: 15px; font-size: 0.8rem; color: #94a3b8; display: flex; align-items: center; justify-content: center; gap: 6px; }

        /* =========================================
           11. SEÇÃO FAQ (COMPACTA)
           ========================================= */
        .faq-section { background-color: var(--section-light); padding: 60px 0 80px 0; position: relative; color: #333; z-index: 1; }
        .faq-headline { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.8rem; text-align: center; color: #0f172a; margin-bottom: 40px; }
        .faq-accordion .accordion-item { background: #fff; border: 1px solid #e2e8f0; margin-bottom: 10px; border-radius: 10px !important; }
        .faq-accordion .accordion-button { background-color: transparent; color: #0f172a; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1rem; padding: 18px 20px; box-shadow: none; }
        .faq-accordion .accordion-button:not(.collapsed) { background-color: #f8fafc; color: var(--accent-blue); }
        .faq-accordion .accordion-body { color: #475569; padding: 20px; line-height: 1.6; font-size: 0.95rem; }
        .faq-accordion .accordion-button::after { filter: brightness(0); }
        .faq-accordion .accordion-button:not(.collapsed)::after { filter: none; }
        
        /* Footer */
        footer { background: #000; padding: 30px 0; text-align: center; font-size: 0.75rem; color: #666; border-top: 1px solid #222; }
        .footer-logo { max-height: 25px; opacity: 0.7; margin-bottom: 15px; }

        @media(max-width: 991px) {
            h1 { font-size: 1.8rem; }
            .hero-section { text-align: center; padding-top: 20px; }
            .hero-sub { margin: 0 auto 30px auto; }
            .dashboard-phone { margin-top: 30px; }
            .gallery-stack { padding: 0 15px; gap: 30px; }
            .vsl-headline, .impact-headline, .intel-headline, .team-headline, .offer-headline, .faq-headline { font-size: 1.5rem; padding: 0 10px; }
            .testi-grid { grid-template-columns: 1fr; padding: 0 10px; }
            .warning-box { flex-direction: column; text-align: center; }
            .offer-row { grid-template-columns: 1fr; gap: 10px; }
            .offer-header { display: none; }
            .btn-cta, .btn-cta-dark, .btn-cta-vsl, .btn-submit { font-size: 0.75rem !important; padding: 14px 20px !important; white-space: normal; max-width: 100%; }
        }