/* ============================================
   FACILCATALOGO - LANDING PAGE
   Design Moderno e Profissional
   ============================================ */

:root {
    --primary: #ff6b35;
    --primary-dark: #e85a25;
    --primary-light: #ff8a50;
    --secondary: #6c5ce7;
    --secondary-light: #a29bfe;
    --dark: #0f1219;
    --darker: #0a0c12;
    --text: #1e293b;
    --text-muted: #64748b;
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --bg-dark: #07080c;
    --border: #e2e8f0;
    --success: #10b981;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-accent: linear-gradient(135deg, #ff6b35 0%, #ff4500 50%, #6c5ce7 100%);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.08);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.25s cubic-bezier(0.16,1,0.3,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-head {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-head h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.section-head p {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(226,232,240,0.5);
    z-index: 1000;
    transition: box-shadow var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    background: rgba(255,255,255,0.92);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 0;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.header-logo i { font-size: 1.5rem; background: var(--gradient-accent); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.header-logo:hover { color: var(--primary); }

.header-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-nav a {
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text);
    transition: color 0.2s;
}

.header-nav a:hover { color: var(--primary); }

.nav-login {
    color: var(--text) !important;
    padding: 0.5rem 1rem;
}

.nav-cta {
    background: var(--gradient-accent) !important;
    color: #fff !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 8px;
    font-weight: 600 !important;
    transition: all 0.3s !important;
}

.nav-cta:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text);
    cursor: pointer;
    padding: 0.25rem;
}

/* ===== HERO ===== */
.hero-section {
    padding: 140px 0 80px;
    background: linear-gradient(180deg, #fafbfc 0%, var(--bg-alt) 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.07) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.05) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(108, 92, 231, 0.1));
    border: 1px solid rgba(255, 107, 53, 0.15);
    color: var(--primary);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
    animation: float-badge 3s ease-in-out infinite;
}

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

.hero-title {
    font-size: 3.25rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 520px;
}

.hero-form { max-width: 520px; }

.hero-input-group {
    display: flex;
    background: #fff;
    border-radius: 60px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    overflow: hidden;
    border: 1.5px solid var(--border);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.hero-input-group:focus-within {
    border-color: var(--primary);
    box-shadow: 0 4px 24px rgba(255, 107, 53, 0.12);
}

.hero-input {
    flex: 1;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    outline: none;
    background: transparent;
}

.hero-btn {
    background: var(--gradient-accent);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
}

.hero-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
}

.hero-btn:active {
    transform: translateY(0);
}

.hero-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.hero-info i {
    color: var(--success);
    margin-right: 0.25rem;
}

.hero-social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-avatars { display: flex; }

.ha-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.875rem;
    border: 2px solid #fff;
    margin-left: -8px;
    box-shadow: var(--shadow-sm);
}

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

.hero-stars { font-size: 0.875rem; }

.stars-row { color: #fbbf24; font-size: 0.875rem; }

/* Hero Mockup */
.hero-mockup { position: relative; }

.mockup-device {
    background: #1a1a1a;
    border-radius: 42px;
    box-shadow: 0 0 0 2px #3a3a3a, 0 0 0 6px #222, 0 28px 60px rgba(0,0,0,0.45);
    overflow: hidden;
    position: relative;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
    padding: 14px 10px;
}

.mockup-device iframe {
    width: 100%; height: 620px;
    border: none; display: block;
    border-radius: 38px;
    background: #fff;
}

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

.float-card {
    position: absolute;
    background: #fff;
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8125rem;
    z-index: 2;
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
}

.fc-1 {
    top: 10%;
    left: -60px;
    color: var(--primary);
    animation-delay: 0.5s;
}

.fc-2 {
    bottom: 15%;
    right: -50px;
    color: #25d366;
    animation-delay: 1s;
}

.float-card i { font-size: 1.25rem; }

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

/* ===== LOJISTAS (Scroll Continuo CSS) ===== */
.lojistas-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.lojistas-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.lojistas-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(108, 92, 231, 0.08));
    border: 1px solid rgba(255, 107, 53, 0.12);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary);
    backdrop-filter: blur(8px);
}

.lojistas-subtitle {
    margin-top: 0.75rem;
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.lojistas-track-wrap {
    overflow: hidden;
    width: 100%;
}

.lojistas-track {
    display: flex;
    gap: 16px;
    width: max-content;
}

.lojistas-track-forward {
    animation: scrollForward 30s linear infinite;
}

.lojistas-track-reverse {
    animation: scrollReverse 30s linear infinite;
}

@keyframes scrollForward {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scrollReverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.lojistas-track .case {
    display: flex;
    border-radius: 50%;
    border: 2px solid var(--border);
    background-color: #fff;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    width: 70px;
    min-width: 70px;
    height: 70px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
}

.lojistas-track .case:hover {
    border-color: var(--primary);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.15);
    transform: translateY(-3px) scale(1.04);
}

.lojistas-track .case img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.featured-stores-slider-reverse-wrapper {
    direction: ltr;
}

/* ===== INTEGRAÇÕES / PLUGINS ===== */
.integracoes-section {
    padding: 50px 0 40px;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.integracoes-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.08), rgba(99, 102, 241, 0.08));
    border: 1px solid rgba(99, 102, 241, 0.12);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #6366f1;
    backdrop-filter: blur(8px);
}

.integracoes-track-wrap {
    overflow: hidden;
    width: 100%;
}

.integracoes-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: scrollIntegracoes 40s linear infinite;
}

@keyframes scrollIntegracoes {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.integracoes-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0 8px;
}

.integracoes-slide img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: grayscale(0.4);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.integracoes-slide img:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.05);
}

/* Ajustes tiny-slider dentro da seção */
.lojistas-section .tns-outer {
    position: relative;
    overflow: hidden;
}

.lojistas-section .tns-ovh {
    overflow: hidden;
}

.lojistas-section .tns-inner {
    margin: 0 !important;
    padding: 0;
}

.lojistas-section .tns-item {
    padding: 0;
}

/* Remove clone visibility flash */
.tns-slide-cloned {
    opacity: 1 !important;
}

.tns-visually-hidden {
    display: none;
}

/* Forcar formato circular nos cases do slider de lojistas */
.fss .tns-item {
    width: auto !important;
    padding: 0 !important;
}
.featured-stores-slider-reverse-wrapper .tns-item {
    width: auto !important;
    padding: 0 !important;
}

/* ===== HOW SECTION ===== */
.how-section {
    padding: 80px 0;
    background: var(--bg);
}

.how-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-lg);
    background: var(--bg);
    border: 1px solid var(--border);
    transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
    position: relative;
    overflow: hidden;
}

.how-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 20%; right: 20%; height: 3px;
    background: var(--gradient-accent);
    border-radius: 3px;
    opacity: 0;
    transition: all 0.35s ease;
}

.how-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 48px rgba(0,0,0,0.08);
    border-color: transparent;
}

.how-card:hover::before {
    opacity: 1;
    left: 15%;
    right: 15%;
}

.how-number {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
}

.how-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.1), rgba(108, 92, 231, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
}

.how-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.how-card p { color: var(--text-muted); font-size: 0.9375rem; }

/* ===== FEATURES ===== */
.features-section {
    padding: 80px 0;
    background: var(--bg-alt);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-item {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.feature-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 48px rgba(0,0,0,0.08);
    border-color: transparent;
}

.feature-item:hover::before {
    opacity: 1;
}

.fi-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: #fff;
    margin-bottom: 1.25rem;
}

.feature-item h3 { font-size: 1.125rem; margin-bottom: 0.75rem; }
.feature-item p { color: var(--text-muted); font-size: 0.9375rem; }

/* ===== TOOLS DARK SECTION ===== */
.tools-dark-section {
    padding: 80px 0;
    background: linear-gradient(160deg, #07080c 0%, #0f1219 40%, #1a1025 100%);
    position: relative;
    overflow: hidden;
}

.tools-dark-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, var(--primary) 1px, transparent 1px),
        radial-gradient(circle, var(--secondary) 0.5px, transparent 0.5px);
    background-size: 50px 50px, 30px 30px;
    background-position: 0 0, 15px 15px;
    opacity: 0.04;
    pointer-events: none;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    position: relative;
    z-index: 1;
}

.tool-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,140,0,0.2);
    border-radius: var(--radius);
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
    transition: all 0.3s;
}

.tool-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(255, 140, 0, 0.15);
    background: rgba(255,255,255,0.07);
}

.tool-item i {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tool-item span {
    font-size: 0.875rem;
    font-weight: 500;
    color: #fff;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 80px 0;
    background: var(--bg);
}

.about-img { width: 100%; max-width: 100%; }

.about-points { display: flex; flex-direction: column; gap: 1.25rem; }

.about-point {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 0.75rem;
    border-radius: var(--radius);
    transition: background var(--transition);
}

.about-point:hover {
    background: var(--bg-alt);
}

.about-point i { font-size: 1.25rem; margin-top: 0.15rem; }
.about-point strong { display: block; margin-bottom: 0.2rem; font-size: 0.9375rem; }

/* ===== PRICING ===== */
.pricing-section {
    padding: 80px 0;
    background: var(--bg-alt);
}

.plan-card {
    background: #fff;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 60px rgba(0,0,0,0.08);
}

.plan-card:hover::before {
    opacity: 1;
}

.plan-recommended {
    border: 2px solid var(--primary);
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.12);
}

.plan-badge {
    position: absolute;
    top: 1.25rem;
    right: -2rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    padding: 0.35rem 2.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    transform: rotate(45deg);
}

.plan-name {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.plan-price {
    margin-bottom: 1rem;
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.pp-currency { font-size: 1.25rem; font-weight: 700; }
.pp-value { font-size: 3.5rem; font-weight: 900; line-height: 1; }
.pp-period { font-size: 1rem; color: var(--text-muted); margin-left: 0.5rem; }

.plan-desc {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    min-height: 2.5rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.plan-features li {
    padding: 0.6rem 0;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.9375rem;
}

.plan-features li:last-child { border-bottom: none; }

.plan-features i { color: var(--success); font-size: 0.875rem; }

.trial-tag {
    background: rgba(255, 140, 0, 0.08);
    padding: 0.75rem;
    border-radius: 8px;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.25rem;
}

.trial-tag i { margin-right: 0.375rem; }

.plan-btn {
    display: block;
    text-align: center;
    padding: 0.875rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.plan-btn-free {
    background: var(--bg-alt);
    color: var(--text);
    border: 1px solid var(--border);
}

.plan-btn-free:hover {
    background: var(--border);
    color: var(--text);
}

.plan-btn-pro {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 16px rgba(255, 140, 0, 0.3);
}

.plan-btn-pro:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem 1.25rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.comparison-table th {
    background: var(--bg-alt);
    font-weight: 700;
}

.comparison-table tbody tr:hover { background: rgba(255, 140, 0, 0.03); }
.comparison-table tbody tr:last-child td { border-bottom: none; }

.cmp-highlight {
    background: rgba(255, 140, 0, 0.05);
}

/* ===== FAQ ===== */
.faq-section {
    padding: 80px 0;
    background: var(--bg);
}

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

.faq-item {
    background: var(--bg-alt);
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
    overflow: hidden;
    border: 1px solid var(--border);
}

.faq-q {
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s;
}

.faq-q:hover { background: rgba(255, 140, 0, 0.04); }

.faq-q i {
    color: var(--text-muted);
    transition: transform 0.3s;
    font-size: 0.875rem;
}

.faq-item.active .faq-q i { transform: rotate(180deg); color: var(--primary); }

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-a {
    max-height: 300px;
}

.faq-a p {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 60px 0;
    background: var(--bg-alt);
}

.cta-card {
    background: linear-gradient(135deg, #ff6b35 0%, #ff4500 40%, #6c5ce7 100%);
    border-radius: 24px;
    padding: 4.5rem 3rem;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(255, 107, 53, 0.15);
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    pointer-events: none;
}

.cta-card::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: rgba(108, 92, 231, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.cta-card h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.cta-card p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-form { max-width: 500px; margin: 0 auto; }

.cta-input-group {
    display: flex;
    gap: 0;
    background: #fff;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.cta-input {
    flex: 1;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    outline: none;
}

.cta-btn {
    background: var(--dark);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.cta-btn:hover { background: #000; }

.cta-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    font-size: 0.875rem;
    opacity: 0.85;
}

.cta-info i { margin-right: 0.375rem; }

/* ===== FOOTER ===== */
.site-footer {
    background: linear-gradient(180deg, #0f1219, #07080c);
    color: #fff;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.03);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.35rem;
    font-weight: 800;
}

.footer-logo i { color: var(--primary); }

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.site-footer h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.site-footer a {
    display: block;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
    transition: color 0.2s;
}

.site-footer a:hover { color: #fff; }

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s;
    text-decoration: none;
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

/* ===== SCROLL ANIMATION ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .header-nav { display: none; }
    .mobile-toggle { display: block; }

    .header-nav.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        padding: 1.5rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        gap: 1rem;
        border-top: 1px solid var(--border);
    }

    .hero-title { font-size: 2.5rem; }
    .hero-section { padding: 120px 0 60px; min-height: auto; }

    .float-card { display: none; }

    .features-grid { grid-template-columns: repeat(2, 1fr); }

    .section-head h2 { font-size: 2rem; }
    .cta-card { padding: 3rem 1.5rem; }
    .cta-card h2 { font-size: 1.75rem; }
    .cta-info { flex-direction: column; gap: 0.5rem; }
}

@media (max-width: 767px) {
    .hero-title { font-size: 2rem; }
    .hero-input-group { flex-direction: column; border-radius: var(--radius); }
    .hero-btn { border-radius: 0; padding: 0.875rem; }
    .hero-info { flex-direction: column; gap: 0.5rem; }

    .features-grid { grid-template-columns: 1fr; }
    .tools-grid { grid-template-columns: repeat(2, 1fr); }
    .tool-item { padding: 1rem 0.75rem; }
    .tool-item i { font-size: 1.5rem; }

    .how-card { padding: 2rem 1.25rem; }

    .mockup-device iframe { height: 460px; }

    .pp-value { font-size: 2.75rem; }
    .plan-card { padding: 2rem 1.5rem; }

    .comparison-table { font-size: 0.8125rem; }
    .comparison-table th,
    .comparison-table td { padding: 0.75rem 0.5rem; }

    .section-head { margin-bottom: 2.5rem; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.75rem; }
    .mockup-device iframe { height: 380px; }
    .tools-grid { gap: 10px; }
    .tool-item { padding: 0.875rem 0.5rem; }
}
