/* =========================================
   MASSFLOW - ULTRA-MODERN SAAS DESIGN SYSTEM
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary-color: #b036ea;
    --primary-hover: #9427ca;
    --primary-glow: none;
    --secondary-accent: #8b18ca;
    --success-color: #10B981;
    --dark-bg: #0F172A;
    --darker-bg: #0B0F19;
    --card-dark: #1E293B;
    --card-bg: #FFFFFF;
    --text-main: #0F172A;
    --text-muted: #475569;
    --text-light: #F8FAFC;
    --text-light-muted: #94A3B8;
    --border-color: #E2E8F0;
    --border-dark: #334155;
    --gradient-blue: #b036ea;
    --gradient-hero: none;
    --gradient-glow: none;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 20px rgba(0,0,0,0.06);
    --shadow-lg: 0 16px 36px rgba(0,0,0,0.08);
    --shadow-glow: none;
    --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition: all 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 85px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: #FFFFFF;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .hero-title, .section-header h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 800 !important;
}

.logo, button, .btn-primary, .btn-secondary, .btn-secondary-white, .btn-login, .btn-compare-plans, .btn-pricing-secondary, .btn-channel-cta, .btn-compare, .btn-large, .t-nav-btn, .section-tag, .hero-badge, .hero-pill-item {
    font-family: 'Montserrat', 'Inter', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

/* CONTAINER AMPLO, EXPANSIVO & EQUILIBRADO */
.container {
    width: 96%;
    max-width: 1560px;
    margin: 0 auto;
    padding: 0 28px;
}

.container-fluid {
    width: 100%;
    padding: 0 24px;
    margin: 0 auto;
}

.bg-light {
    background-color: #F8FAFC;
}

.text-center {
    text-align: center !important;
}

.gradient-text, .gradient-text-light, .gradient-text-blue, .text-blue {
    background: linear-gradient(135deg, #b036ea 0%, #e080ff 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: #b036ea !important;
    font-weight: 800 !important;
    display: inline-block;
}

/* SECTION TAG HOVER ANIMATION */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(176, 54, 234, 0.08);
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 18px;
    border: 1px solid rgba(176, 54, 234, 0.18);
    transition: var(--transition-smooth);
    cursor: default;
    box-shadow: 0 4px 12px rgba(176, 54, 234, 0.06);
}

.section-tag:hover {
    transform: translateY(-2px) scale(1.04);
    background: rgba(176, 54, 234, 0.15);
    box-shadow: 0 8px 20px rgba(176, 54, 234, 0.2);
}

.section-tag:hover i {
    transform: rotate(360deg);
}

.section-tag i {
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-tag.dark-tag {
    background: rgba(255, 255, 255, 0.08);
    color: #e7b3ff;
    border-color: rgba(255, 255, 255, 0.18);
}

.section-header {
    margin-bottom: 56px;
}

.section-header h2 {
    font-size: 2.85rem;
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-main);
    transition: var(--transition-smooth);
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.18rem;
    max-width: 760px;
    margin: 0 auto;
}

/* BUTTONS WITH HOVER & ICON SLIDE */
.btn-primary, .btn-secondary, .btn-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary i, .btn-secondary i {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary {
    background: #b036ea !important;
    color: white !important;
    box-shadow: 0 6px 20px rgba(176, 54, 234, 0.25);
    border: none !important;
}

.btn-primary:hover {
    background: #9427ca !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(176, 54, 234, 0.38);
    filter: none !important;
}

.btn-primary:hover i {
    transform: translateX(5px) scale(1.1);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.08);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.45);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.08rem;
}

/* FLOATING CARD HEADER (Transparente sem rolagem, Vidro Card ao rolar) */
.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 96%;
    max-width: 1560px;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 14px 28px;
    border-radius: 50px;
    border: none !important;
    box-shadow: none !important;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.header.scrolled {
    top: 12px;
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(20px) saturate(200%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(200%) !important;
    border: 1px solid rgba(176, 54, 234, 0.12) !important;
    box-shadow: 0 10px 30px rgba(176, 54, 234, 0.08) !important;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.65rem;
    font-weight: 800;
    color: #0F172A;
    transition: var(--transition-smooth);
}

.logo:hover {
    transform: scale(1.03);
}

.logo i {
    color: var(--primary-color);
    font-size: 2rem;
    transition: var(--transition-slow);
}

.logo:hover i {
    transform: rotate(18deg) scale(1.15);
    color: #8b18ca;
}

.navbar .nav-links {
    display: flex;
    gap: 36px;
}

.nav-links li a {
    color: #475569;
    font-size: 0.98rem;
    font-weight: 600;
    padding: 6px 0;
    position: relative;
    transition: var(--transition-smooth);
}

.nav-links li a:hover, .nav-links li a.active {
    color: var(--primary-color);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.nav-links li a:hover::after, .nav-links li a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-actions .btn-primary, .btn-login {
    padding: 10px 24px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 30px;
    background: #b036ea !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 16px rgba(176, 54, 234, 0.3);
    border: none !important;
    transition: var(--transition-smooth);
}

.header-actions .btn-primary:hover, .btn-login:hover {
    background: #9427ca !important;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 24px rgba(176, 54, 234, 0.45);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #0F172A;
    font-size: 2rem;
    cursor: pointer;
    padding: 4px;
}

/* HERO SECTION (100VH + CENTRALIZADA + VARREDURA GRID + BRANCO & AZUL) */
.hero.hero-white-blue {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    background-image: none !important;
    padding: 120px 0 60px 0;
    position: relative;
    overflow: hidden;
}

.hero-grid-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: 36px 36px;
    background-image: 
        linear-gradient(to right, rgba(176, 54, 234, 0.16) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(176, 54, 234, 0.16) 1px, transparent 1px);
    mask-image: radial-gradient(ellipse at 50% 50%, transparent 20%, black 85%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 50%, transparent 20%, black 85%);
    pointer-events: none;
    z-index: 1;
}

/* Grid Scanning Beam & Spotlight (Removidos para visual limpo sem gradientes) */
.grid-scan-beam, .grid-spotlight {
    display: none !important;
}

.hero-stars {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.hero-stars .star {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #b036ea;
    border-radius: 50%;
    box-shadow: 0 0 10px #b036ea, 0 0 20px #b036ea;
}

@keyframes floatStar1 {
    0% { transform: translate(0, 0) scale(0.9); opacity: 0.3; }
    50% { transform: translate(35px, -45px) scale(1.6); opacity: 1; }
    100% { transform: translate(-25px, 35px) scale(0.8); opacity: 0.4; }
}

@keyframes floatStar2 {
    0% { transform: translate(0, 0) scale(1.3); opacity: 0.9; }
    50% { transform: translate(-45px, 40px) scale(0.7); opacity: 0.3; }
    100% { transform: translate(30px, -30px) scale(1.5); opacity: 1; }
}

.hero-stars .star.s1 { top: 18%; left: 12%; animation: floatStar1 9s ease-in-out infinite alternate; }
.hero-stars .star.s2 { top: 28%; left: 82%; animation: floatStar2 11s ease-in-out infinite alternate; width: 6px; height: 6px; }
.hero-stars .star.s3 { top: 72%; left: 16%; animation: floatStar1 10s ease-in-out infinite alternate 1s; }
.hero-stars .star.s4 { top: 80%; left: 78%; animation: floatStar2 8s ease-in-out infinite alternate 2s; }
.hero-stars .star.s5 { top: 12%; left: 68%; animation: floatStar2 12s ease-in-out infinite alternate 0.5s; width: 5px; height: 5px; }
.hero-stars .star.s6 { top: 86%; left: 46%; animation: floatStar1 7s ease-in-out infinite alternate 1.5s; width: 6px; height: 6px; }
.hero-stars .star.s7 { top: 45%; left: 8%; animation: floatStar2 9.5s ease-in-out infinite alternate 0.8s; }
.hero-stars .star.s8 { top: 52%; left: 90%; animation: floatStar1 10.5s ease-in-out infinite alternate 1.8s; }

.hero-container-centered {
    position: relative;
    z-index: 3;
    max-width: 980px;
    margin: 0 auto;
    width: 100%;
}

.hero-content-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-white-blue .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 22px;
    background: rgba(176, 54, 234, 0.06);
    border: 1px solid rgba(176, 54, 234, 0.25);
    color: #b036ea;
    border-radius: 30px;
    font-size: 0.88rem;
    font-weight: 400 !important;
    margin-bottom: 28px;
    box-shadow: 0 4px 15px rgba(176, 54, 234, 0.08);
    transition: var(--transition-smooth);
    cursor: default;
}

.hero-white-blue .hero-badge:hover {
    background: rgba(176, 54, 234, 0.12);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 22px rgba(176, 54, 234, 0.18);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10B981;
    box-shadow: 0 0 10px #10B981;
    display: inline-block;
}

.hero-white-blue .hero-title {
    font-size: 4.1rem;
    font-weight: 400 !important;
    line-height: 1.15;
    color: #0F172A;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    text-align: center;
}

.gradient-text-blue {
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #b036ea !important;
    color: #b036ea !important;
    font-weight: 400 !important;
    display: inline-block;
}

.hero-white-blue .hero-description {
    color: #475569;
    font-size: 1.25rem;
    font-weight: 400 !important;
    margin-bottom: 40px;
    max-width: 800px;
    line-height: 1.65;
    text-align: center;
}

.hero-white-blue .hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-bottom: 48px;
    width: 100%;
}

.btn-secondary-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 500 !important;
    font-size: 1.02rem;
    background: #FFFFFF;
    color: #0F172A;
    border: 1px solid rgba(176, 54, 234, 0.25);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
    transition: var(--transition-smooth);
}

.btn-secondary-white:hover {
    background: #F8FAFC;
    border-color: #b036ea;
    color: #b036ea;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(176, 54, 234, 0.15);
}

.hero-features-pills {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-pill-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(176, 54, 234, 0.22);
    color: #1E293B;
    font-size: 0.92rem;
    font-weight: 400 !important;
    box-shadow: 0 4px 14px rgba(176, 54, 234, 0.06);
    transition: var(--transition-smooth);
    cursor: default;
}

.hero-pill-item:hover {
    transform: translateY(-2px) scale(1.03);
    border-color: #b036ea;
    background: #FFFFFF;
    box-shadow: 0 8px 20px rgba(176, 54, 234, 0.15);
}

.hero-pill-item i {
    color: #10B981;
    font-size: 1.25rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(176, 54, 234, 0.14);
    border: 1px solid rgba(176, 54, 234, 0.35);
    color: #d980ff;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
    cursor: default;
    box-shadow: 0 4px 15px rgba(176, 54, 234, 0.15);
}

.hero-badge:hover {
    background: rgba(176, 54, 234, 0.28);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 24px rgba(176, 54, 234, 0.3);
}

.hero-badge i {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-badge:hover i {
    transform: rotate(180deg);
}

.hero-title {
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-light);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-description {
    color: var(--text-light-muted);
    font-size: 1.28rem;
    margin-bottom: 40px;
    max-width: 95%;
    line-height: 1.65;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    margin-bottom: 40px;
}

.hero-features {
    display: flex;
    gap: 28px;
    color: var(--text-light-muted);
    font-size: 0.95rem;
    font-weight: 600;
}

.hero-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
    cursor: default;
    padding: 6px 12px;
    border-radius: 8px;
}

.hero-features span:hover {
    color: white;
    transform: translateY(-2px);
    background: rgba(255,255,255,0.06);
}

.hero-features i {
    color: #10B981;
    font-size: 1.2rem;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-features span:hover i {
    transform: scale(1.3) rotate(12deg);
}

/* DASHBOARD MOCKUP */
.dashboard-mockup {
    position: relative;
    border-radius: 20px;
    box-shadow: 0 25px 70px rgba(176, 54, 234, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
    transition: var(--transition-smooth);
    animation: continuousFloat 5s ease-in-out infinite alternate;
}

.dashboard-mockup:hover {
    transform: scale(1.03) translateY(-8px);
    box-shadow: 0 35px 90px rgba(176, 54, 234, 0.35);
    border-color: rgba(176, 54, 234, 0.4);
}

@keyframes continuousFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-12px); }
}

.dashboard-mockup img {
    width: 100%;
    height: auto;
    display: block;
}

/* SOCIAL PROOF LOGOS */
.social-proof {
    padding: 48px 0;
    background: white;
    border-bottom: 1px solid var(--border-color);
}

.social-title {
    color: var(--text-muted);
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.carousel-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.carousel-container::before, .carousel-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 140px;
    height: 100%;
    z-index: 2;
}

.carousel-container::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.carousel-container::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

.carousel-track {
    display: flex;
    align-items: center;
    gap: 72px;
    width: max-content;
    animation: scrollCarousel 40s linear infinite;
}

.carousel-track img {
    height: 52px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0) opacity(0.5);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.carousel-track img.logo-xl { height: 95px; }
.carousel-track img.logo-lg { height: 75px; }
.carousel-track img.logo-sm { height: 38px; }

.carousel-track img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.16);
}

@keyframes scrollCarousel {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 36px)); }
}

/* =========================================
   ANIMATED REVEAL CARDS & TEXT (SCROLL FLUIDO)
   ========================================= */
.reveal-card, .reveal-text, .clean-feature-card, .clean-solution-card, .process-3d-card, .channel-feature-item, .channel-dashboard-card, .stat-card, .pricing-card, .testimonial-card, .faq-item, .section-header {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-card.revealed, .reveal-text.revealed, .clean-feature-card.revealed, .clean-solution-card.revealed, .process-3d-card.revealed, .channel-feature-item.revealed, .channel-dashboard-card.revealed, .stat-card.revealed, .pricing-card.revealed, .testimonial-card.revealed, .faq-item.revealed, .section-header.revealed {
    opacity: 1;
    transform: translateY(0);
}

.features-clean-grid .clean-feature-card:nth-child(1),
.solutions-clean-grid .clean-solution-card:nth-child(1),
.pricing-grid .pricing-card:nth-child(1),
.testimonials-grid .testimonial-card:nth-child(1),
.channels-info-col .channel-feature-item:nth-child(1),
.process-3d-grid .process-3d-card:nth-child(1) { transition-delay: 0.05s; }

.features-clean-grid .clean-feature-card:nth-child(2),
.solutions-clean-grid .clean-solution-card:nth-child(2),
.pricing-grid .pricing-card:nth-child(2),
.testimonials-grid .testimonial-card:nth-child(2),
.channels-info-col .channel-feature-item:nth-child(2),
.process-3d-grid .process-3d-card:nth-child(2) { transition-delay: 0.15s; }

.features-clean-grid .clean-feature-card:nth-child(3),
.solutions-clean-grid .clean-solution-card:nth-child(3),
.pricing-grid .pricing-card:nth-child(3),
.testimonials-grid .testimonial-card:nth-child(3),
.channels-info-col .channel-feature-item:nth-child(3),
.process-3d-grid .process-3d-card:nth-child(3) { transition-delay: 0.25s; }

.features-clean-grid .clean-feature-card:nth-child(4),
.solutions-clean-grid .clean-solution-card:nth-child(4),
.channels-info-col .channel-feature-item:nth-child(4),
.process-3d-grid .process-3d-card:nth-child(4) { transition-delay: 0.35s; }

.features-clean-grid .clean-feature-card:nth-child(5),
.solutions-clean-grid .clean-solution-card:nth-child(5) { transition-delay: 0.45s; }

.features-clean-grid .clean-feature-card:nth-child(6) { transition-delay: 0.55s; }

/* =========================================
   SECTION 1: RECURSOS (GRID LIMPO)
   ========================================= */
.features-section {
    padding: 110px 0;
    background: #FFFFFF;
}

.features-clean-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 56px;
}

.clean-feature-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 36px 30px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
}

.clean-feature-card:hover {
    transform: translateY(-6px);
    border-color: #b036ea;
    box-shadow: 0 16px 36px rgba(176, 54, 234, 0.09);
}

.clean-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(176, 54, 234, 0.08);
    color: #b036ea;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 22px;
    transition: var(--transition-smooth);
}

.clean-feature-card:hover .clean-feature-icon {
    background: #b036ea;
    color: #FFFFFF;
    transform: scale(1.1) rotate(6deg);
}

.clean-feature-card h3 {
    font-size: 1.25rem;
    font-weight: 400 !important;
    color: #0F172A;
    margin-bottom: 10px;
}

.clean-feature-card p {
    font-size: 0.98rem;
    color: #475569;
    line-height: 1.65;
}

/* =========================================
   SECTION: GESTÃO CENTRALIZADA DE CANAIS
   ========================================= */
.channels-section {
    padding: 110px 0;
    background: #FFFFFF;
}

.channels-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 48px;
    align-items: center;
    margin-top: 56px;
}

.channels-info-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.channel-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    transition: var(--transition-smooth);
}

.channel-feature-item:hover {
    background: #FFFFFF;
    border-color: rgba(176, 54, 234, 0.3);
    transform: translateX(6px);
    box-shadow: 0 10px 30px rgba(176, 54, 234, 0.08);
}

.cf-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(176, 54, 234, 0.1);
    color: #b036ea;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.channel-feature-item:hover .cf-icon {
    background: #b036ea;
    color: #FFFFFF;
    transform: scale(1.1);
}

.cf-content h3 {
    font-size: 1.15rem;
    font-weight: 400 !important;
    color: #0F172A;
    margin-bottom: 6px;
}

.cf-content p {
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.6;
}

/* UI Mockup do Painel Canais */
.channels-ui-col {
    width: 100%;
}

.channel-dashboard-card {
    background: #FFFFFF;
    border-radius: 24px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
    padding: 28px;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.dash-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid #F1F5F9;
    margin-bottom: 24px;
}

.dash-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dash-user-email {
    font-size: 0.9rem;
    font-weight: 600;
    color: #0F172A;
}

.dash-plan-badge {
    font-size: 0.72rem;
    padding: 3px 8px;
    border-radius: 6px;
    background: #F1F5F9;
    color: #64748B;
}

.dash-btn-logout {
    background: none;
    border: 1px solid #E2E8F0;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.82rem;
    color: #64748B;
    cursor: pointer;
}

.dash-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.dash-title-row h3 {
    font-size: 1.75rem;
    font-weight: 400 !important;
    color: #0F172A;
    margin-bottom: 4px;
}

.dash-title-row p {
    font-size: 0.85rem;
    color: #64748B;
}

.dash-btn-add {
    background: #b036ea;
    color: #FFFFFF;
    border: none;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(176, 54, 234, 0.3);
}

.dash-progress-box {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 18px 20px;
    margin-bottom: 24px;
}

.dash-progress-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.dash-progress-text strong {
    font-size: 1.1rem;
    color: #0F172A;
}

.dash-progress-text span {
    font-size: 0.82rem;
    color: #64748B;
}

.dash-progress-track {
    width: 100%;
    height: 10px;
    background: #E2E8F0;
    border-radius: 10px;
    overflow: hidden;
}

.dash-progress-fill {
    width: 80%;
    height: 100%;
    background: #b036ea;
    border-radius: 10px;
}

.dash-filter-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.dash-pills {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dash-pill {
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.82rem;
    background: #F1F5F9;
    color: #475569;
    cursor: pointer;
}

.dash-pill.active {
    background: #b036ea;
    color: #FFFFFF;
}

.dash-search-box {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 0.85rem;
    color: #94A3B8;
}

.dash-search-box input {
    border: none;
    background: none;
    outline: none;
    font-size: 0.82rem;
    color: #0F172A;
    width: 110px;
}

.dash-table-wrapper {
    overflow-x: auto;
}

.dash-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.82rem;
}

.dash-table th {
    text-align: left;
    padding: 12px 10px;
    color: #64748B;
    font-weight: 600;
    border-bottom: 1px solid #E2E8F0;
    background: #F8FAFC;
}

.dash-table td {
    padding: 14px 10px;
    border-bottom: 1px solid #F1F5F9;
    color: #334155;
    vertical-align: middle;
}

.channel-type-badge.wa {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #25D366;
    font-weight: 700;
    font-size: 0.78rem;
}

.status-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-badge.connected {
    background: #DCFCE7;
    color: #15803D;
}

.status-badge.disconnected {
    background: #FEE2E2;
    color: #B91C1C;
}

.btn-table-action {
    background: #FFFFFF;
    border: 1px solid #CBD5E1;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.78rem;
    color: #0F172A;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.btn-table-action:hover {
    border-color: #b036ea;
    color: #b036ea;
}

/* WIDGET INTERATIVO: CALCULADORA DE CHANNEL */
.channel-calc-wrapper {
    margin-top: 48px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 24px;
    padding: 32px 36px;
    box-shadow: 0 10px 30px rgba(176, 54, 234, 0.05);
}

.calc-header {
    margin-bottom: 24px;
    text-align: center;
}

.calc-header h3 {
    font-size: 1.3rem;
    font-weight: 400 !important;
    color: #0F172A;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 6px;
}

.calc-header p {
    font-size: 0.9rem;
    color: #64748B;
}

.calc-body {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.calc-slider-row {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 18px;
    padding: 20px 28px;
}

.calc-label-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #334155;
}

.calc-label-group strong {
    color: #b036ea;
    font-size: 1.15rem;
}

.calc-range-input {
    width: 100%;
    height: 8px;
    border-radius: 6px;
    background: #E2E8F0;
    outline: none;
    accent-color: #b036ea;
    cursor: pointer;
}

.calc-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.calc-stat-box {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 18px 20px;
    text-align: center;
    transition: var(--transition-smooth);
}

.calc-stat-box:hover {
    border-color: rgba(176, 54, 234, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(176, 54, 234, 0.08);
}

.calc-label {
    display: block;
    font-size: 0.8rem;
    color: #64748B;
    margin-bottom: 6px;
}

.calc-stat-box strong {
    font-size: 1.15rem;
    color: #0F172A;
}

/* TOAST INTERATIVO */
.custom-toast-notification {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #0F172A;
    color: #FFFFFF;
    padding: 14px 24px;
    border-radius: 14px;
    font-size: 0.88rem;
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.3);
    z-index: 3000;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 4px solid #b036ea;
}

.custom-toast-notification.active {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   SECTION 2: PROCESSO / PASSO A PASSO (CARDS 3D)
   ========================================= */
.pipeline-section {
    padding: 110px 0;
    background: #F8FAFC;
}

.process-3d-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.process-3d-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 32px 24px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 8px 24px rgba(176, 54, 234, 0.04);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: var(--transition-smooth);
}

.process-3d-card:hover {
    transform: translateY(-8px);
    border-color: rgba(176, 54, 234, 0.35);
    box-shadow: 0 16px 40px rgba(176, 54, 234, 0.12);
}

.process-3d-img-wrapper {
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    background: radial-gradient(circle at center, rgba(238, 242, 255, 0.6) 0%, transparent 70%);
    border-radius: 18px;
    overflow: hidden;
}

.process-3d-img-wrapper img {
    max-width: 150px;
    max-height: 150px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.process-3d-img-wrapper.video-wrapper {
    height: 220px;
}

.process-3d-img-wrapper.video-wrapper.extra-large {
    height: 260px;
}

.process-3d-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 18px;
    background: transparent;
    transition: opacity 0.25s ease, transform 0.4s ease;
    opacity: 1;
}

.process-3d-video.fading-out {
    opacity: 0;
}

.process-3d-img-wrapper.video-wrapper.extra-large .process-3d-video {
    transform: scale(1.05);
}

.process-3d-card:hover .process-3d-img-wrapper img {
    transform: scale(1.08) translateY(-4px);
}

.process-3d-stage {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    background: #EEF2FF;
    color: #4F46E5;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.process-3d-card h3 {
    font-size: 1.2rem;
    font-weight: 400 !important;
    color: #0F172A;
    margin-bottom: 10px;
}

.process-3d-card p {
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.6;
}

/* =========================================
   SECTION 3: SOLUÇÕES POR SEGMENTO (GRID LIMPO)
   ========================================= */
.solutions-section {
    padding: 110px 0;
    background: #FFFFFF;
}

.solutions-clean-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 56px;
}

.clean-solution-card {
    background: #F8FAFC;
    border-radius: 20px;
    padding: 36px 32px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.clean-solution-card.wide-card {
    grid-column: span 2;
}

.clean-solution-card:hover {
    transform: translateY(-6px);
    border-color: #b036ea;
    box-shadow: 0 16px 36px rgba(176, 54, 234, 0.09);
    background: #FFFFFF;
}

.solution-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}

.clean-solution-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(176, 54, 234, 0.08);
    color: #b036ea;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.clean-solution-card:hover .clean-solution-icon {
    background: #b036ea;
    color: #FFFFFF;
}

.clean-metric-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.84rem;
    font-weight: 500;
}

.clean-metric-pill.green { background: #DCFCE7; color: #15803D; }
.clean-metric-pill.blue { background: #DBEAFE; color: #7c22ab; }
.clean-metric-pill.purple { background: #F3E8FF; color: #7E22CE; }
.clean-metric-pill.orange { background: #FFEDD5; color: #C2410C; }
.clean-metric-pill.cyan { background: #E0F2FE; color: #0369A1; }

.clean-solution-card h3 {
    font-size: 1.25rem;
    font-weight: 400 !important;
    color: #0F172A;
    margin-bottom: 10px;
}

.clean-solution-card p {
    font-size: 0.98rem;
    color: #475569;
    line-height: 1.65;
}

/* STATS SECTION */
.stats-section { padding: 110px 0; background: white; }
.stats-wrapper {
    background: #F8FAFC; border: 1px solid var(--border-color);
    border-radius: 28px; padding: 64px 48px; box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.stats-wrapper:hover {
    border-color: rgba(176, 54, 234, 0.35);
    box-shadow: var(--shadow-lg);
}

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 48px; }

.stat-card {
    display: flex; align-items: center; gap: 20px;
    padding: 0 24px; border-right: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    cursor: default;
}

.stat-card:hover { transform: translateY(-5px); }
.stat-card:last-child { border-right: none; }

.stat-icon {
    width: 60px; height: 60px; border-radius: 50%;
    background: rgba(176, 54, 234, 0.1); color: var(--primary-color);
    display: flex; align-items: center; justify-content: center; font-size: 1.85rem; flex-shrink: 0;
    transition: var(--transition-slow);
}

.stat-card:hover .stat-icon {
    transform: scale(1.2) rotate(12deg);
    background: var(--gradient-blue);
    color: white;
    box-shadow: 0 10px 20px rgba(176, 54, 234, 0.4);
}

.stat-info h3 { font-size: 2.5rem; font-weight: 800; color: var(--text-main); line-height: 1; margin-bottom: 6px; transition: var(--transition-smooth); }
.stat-card:hover .stat-info h3 { color: var(--primary-color); transform: scale(1.05); }
.stat-info p { color: var(--text-muted); font-size: 0.95rem; }

/* PRICING SECTION (#precos) */
.pricing-section { padding: 110px 0; }
.pricing-toggle-wrapper { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 36px; }
.toggle-label { font-size: 1.05rem; font-weight: 600; color: var(--text-muted); transition: var(--transition-smooth); }
.toggle-label.active { color: var(--text-main); }

.discount-badge {
    background: #DCFCE7; color: #166534; padding: 4px 12px;
    border-radius: 14px; font-size: 0.8rem; font-weight: 700;
}

.switch { position: relative; display: inline-block; width: 60px; height: 32px; }
.switch input { opacity: 0; width: 0; height: 0; }

.slider {
    position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0;
    background-color: #CBD5E1; transition: .4s; border-radius: 34px;
}

.slider:before {
    position: absolute; content: ""; height: 24px; width: 24px;
    left: 4px; bottom: 4px; background-color: white; transition: .4s; border-radius: 50%;
}

input:checked + .slider { background-color: var(--primary-color); }
input:checked + .slider:before { transform: translateX(28px); }

.pricing-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 36px; margin-top: 64px; align-items: stretch;
}

.pricing-card {
    background: white; border: 1px solid var(--border-color);
    border-radius: 24px; padding: 48px 36px;
    display: flex; flex-direction: column; justify-content: space-between;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(176, 54, 234, 0.2);
    border-color: rgba(176, 54, 234, 0.45);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    box-shadow: 0 20px 40px rgba(176, 54, 234, 0.12);
}

.pricing-card.featured:hover {
    box-shadow: 0 32px 65px rgba(176, 54, 234, 0.3);
    transform: translateY(-12px) scale(1.03);
}

.popular-badge {
    position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
    background: #b036ea; color: white; padding: 6px 20px;
    border-radius: 20px; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.03em;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(176, 54, 234, 0.3);
}

.pricing-card.featured:hover .popular-badge { transform: translateX(-50%) scale(1.1); box-shadow: 0 6px 16px rgba(176, 54, 234, 0.4); }

.pricing-header h3 { font-size: 1.65rem; font-weight: 800; margin-bottom: 10px; transition: var(--transition-smooth); }
.pricing-card:hover .pricing-header h3 { color: var(--primary-color); }
.pricing-header p { color: var(--text-muted); font-size: 0.98rem; margin-bottom: 32px; min-height: 48px; }

.price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 36px; }
.currency { font-size: 1.3rem; font-weight: 700; color: var(--text-main); }
.amount { font-size: 3.5rem; font-weight: 800; color: var(--text-main); line-height: 1; transition: var(--transition-smooth); }
.pricing-card:hover .amount { color: var(--primary-color); }
.period { color: var(--text-muted); font-size: 1rem; }

.pricing-features { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
.pricing-features li { display: flex; align-items: center; gap: 12px; font-size: 0.98rem; color: var(--text-main); transition: var(--transition-smooth); cursor: default; }
.pricing-features li:hover { transform: translateX(6px); color: var(--primary-color); }
.pricing-features i { color: #10B981; font-size: 1.25rem; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.pricing-features li:hover i { transform: scale(1.3); }

.btn-pricing { width: 100%; text-align: center; }
.btn-pricing-secondary {
    display: block; width: 100%; text-align: center;
    padding: 14px 24px; border-radius: 12px; background: #F1F5F9;
    color: var(--text-main); font-weight: 700; transition: var(--transition-smooth);
}

.btn-pricing-secondary:hover { background: #E2E8F0; transform: translateY(-2px); color: var(--primary-color); }

/* TESTIMONIALS SECTION (CARROSSEL FLUIDO 3 POR LINHA) */
.testimonials-section { padding: 110px 0; background: white; }

.testimonial-carousel-container {
    position: relative;
    margin-top: 56px;
    padding: 0 36px;
}

.t-carousel-viewport {
    overflow: hidden;
    width: 100%;
    border-radius: 24px;
    padding: 24px 12px;
    margin: -18px -12px;
}

.t-carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.t-carousel-track .testimonial-card {
    flex: 0 0 calc((100% - 48px) / 3);
    box-sizing: border-box;
    background: #F8FAFC;
    border-radius: 24px;
    padding: 36px 28px 30px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.t-carousel-track .testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(176, 54, 234, 0.12);
    border-color: rgba(176, 54, 234, 0.3);
    background: #FFFFFF;
}

.t-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid #CBD5E1;
    color: #0F172A;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.12);
    transition: all 0.3s ease;
}

.t-nav-btn:hover {
    background: #b036ea;
    color: #FFFFFF;
    border-color: #b036ea;
    transform: translateY(-50%) scale(1.1);
}

.t-prev-btn { left: -10px; }
.t-next-btn { right: -10px; }

.t-dots-wrapper {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.t-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #CBD5E1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.t-dot.active {
    width: 28px;
    border-radius: 10px;
    background: #b036ea;
}

.author-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #b036ea;
    flex-shrink: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 24px;
}

/* HERO STAGGER ANIMATIONS */
.hero-stagger-1 { animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards; opacity: 0; }
.hero-stagger-2 { animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards; opacity: 0; }
.hero-stagger-3 { animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards; opacity: 0; }
.hero-stagger-4 { animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards; opacity: 0; }
.hero-stagger-5 { animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards; opacity: 0; }

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

.stars { color: #F59E0B; font-size: 1.15rem; margin-bottom: 18px; display: flex; gap: 5px; transition: var(--transition-smooth); transform-origin: left center; }
.testimonial-card:hover .stars { transform: scale(1.04); color: #fbbf24; }

.testimonial-card p {
    color: var(--text-main); font-size: 1rem; line-height: 1.65;
    margin-bottom: 32px; font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: 16px; }
.author-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--gradient-blue); color: white; font-weight: 700;
    display: flex; align-items: center; justify-content: center; font-size: 1rem;
    transition: var(--transition-slow);
}

.testimonial-card:hover .author-avatar { transform: scale(1.18) rotate(6deg); box-shadow: 0 6px 16px rgba(176, 54, 234, 0.3); }

.testimonial-author strong { display: block; font-size: 1rem; }
.testimonial-author span { color: var(--text-muted); font-size: 0.85rem; }

/* FAQ SECTION */
.faq-section { padding: 110px 0; }
.faq-accordion { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }

.faq-item { border: 1px solid var(--border-color); border-radius: 16px; overflow: hidden; transition: var(--transition-smooth); background: white; }
.faq-item:hover { border-color: rgba(176, 54, 234, 0.45); transform: translateY(-3px); box-shadow: 0 10px 24px rgba(176, 54, 234, 0.1); }
.faq-item.open { border-color: var(--primary-color); box-shadow: 0 12px 28px rgba(176, 54, 234, 0.15); }

.faq-question {
    width: 100%; padding: 24px 32px; background: white; border: none;
    text-align: left; font-size: 1.1rem; font-weight: 700; color: var(--text-main);
    display: flex; justify-content: space-between; align-items: center;
    cursor: pointer; transition: var(--transition-smooth);
}

.faq-question:hover { color: var(--primary-color); }
.faq-icon { font-size: 1.4rem; transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.faq-item.open .faq-icon { transform: rotate(180deg); color: var(--primary-color); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1); background: #F8FAFC; }
.faq-answer p { padding: 0 32px 24px 32px; color: var(--text-muted); font-size: 0.98rem; line-height: 1.65; }

/* BOTTOM CTA SECTION */
.cta-section {
    background: #0B0F19;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 15%;
    transform: translateY(-50%);
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(176, 54, 234, 0.16) 0%, rgba(176, 54, 234, 0.02) 60%, transparent 80%);
    pointer-events: none;
    z-index: 0;
}

.cta-container { display: grid; grid-template-columns: 1.2fr 1.1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }

.cta-badge {
    background: rgba(176, 54, 234, 0.15) !important;
    color: #38BDF8 !important;
    border: 1px solid rgba(176, 54, 234, 0.3) !important;
    margin-bottom: 20px;
}

.cta-content h2 {
    color: var(--text-light); font-size: 3.2rem; line-height: 1.2;
    margin-bottom: 20px; letter-spacing: -0.02em;
}

.cta-content p { color: var(--text-light-muted); font-size: 1.15rem; margin-bottom: 28px; line-height: 1.65; }

.cta-check-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 12px;
}

.cta-check-list li {
    color: #E2E8F0;
    font-size: 0.98rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-check-list li i {
    color: #10B981;
    font-size: 1.3rem;
}

.cta-gsap-container { position: relative; height: 460px; width: 100%; }
.cta-svg-lines { position: absolute; width: 100%; height: 100%; top: 0; left: 0; pointer-events: none; z-index: 1; overflow: visible; }

.animated-flow-line {
    stroke-dasharray: 8 8;
    animation: strokeFlow 3s linear infinite;
}

@keyframes strokeFlow {
    from { stroke-dashoffset: 32; }
    to { stroke-dashoffset: 0; }
}

.cta-floating-elements { position: absolute; width: 100%; height: 100%; top: 0; left: 0; }

.cta-card {
    position: absolute; background: white; border-radius: 18px;
    padding: 12px 18px; box-shadow: 0 14px 35px rgba(0,0,0,0.35);
    display: flex; align-items: center; gap: 12px;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.cta-card:hover {
    transform: scale(1.08) translateY(-6px) !important;
    box-shadow: 0 25px 50px rgba(176, 54, 234, 0.4);
    border-color: #b036ea !important;
}

.cta-card strong { display: block; color: #1a202c; font-size: 0.88rem; }
.cta-card span { color: #64748b; font-size: 0.75rem; }

/* Node Floating Animations */
.float-node-1 { animation: floatNode1 4s ease-in-out infinite alternate; }
.float-node-2 { animation: floatNode2 4.5s ease-in-out infinite alternate; }
.float-node-3 { animation: floatNode3 3.8s ease-in-out infinite alternate; }
.float-node-4 { animation: floatNode4 4.2s ease-in-out infinite alternate; }

@keyframes floatNode1 { from { transform: translateY(0); } to { transform: translateY(-10px); } }
@keyframes floatNode2 { from { transform: translateY(0); } to { transform: translateY(-8px); } }
@keyframes floatNode3 { from { transform: translateY(0); } to { transform: translateY(-12px); } }
@keyframes floatNode4 { from { transform: translateY(0); } to { transform: translateY(-9px); } }

/* Superior Esquerdo: Bot Online Dark */
.cta-bot-online {
    top: -10px; left: -35px;
    background: rgba(15, 23, 42, 0.94) !important; backdrop-filter: blur(14px);
    border: 1px solid rgba(176, 54, 234, 0.3) !important; z-index: 2;
}

.cta-bot-online strong { color: white; }
.cta-bot-online span { color: #94A3B8; }

/* Inferior Esquerdo: Conversões +250% */
.cta-conversions {
    bottom: -10px; left: -35px; flex-direction: column; align-items: flex-start;
    gap: 4px; z-index: 3; background: rgba(255, 255, 255, 0.98) !important;
    min-width: 150px; padding: 14px 18px; border: 1px solid #E2E8F0;
}

.cta-card-tag { color: #64748b; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.5px; }
.cta-conversions h3 { color: #10B981; font-size: 2rem; margin:0; line-height: 1; font-weight: 800; }
.cta-card-footer { display: flex; justify-content: space-between; width: 100%; align-items: center; gap: 8px; margin-top: 2px; }
.cta-card-footer span { color: #64748b; font-size: 0.75rem; }
.cta-card-footer i { color: #10B981; font-size: 1.3rem; }

/* Superior Direito: Robô MassFlow */
.cta-bot-right { top: -10px; right: -35px; z-index: 2; background: rgba(255, 255, 255, 0.98) !important; border: 1px solid #E2E8F0; }
.bot-icon-wrapper {
    width: 36px; height: 36px; background: rgba(176, 54, 234, 0.1); color: #b036ea;
    border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}

/* Inferior Direito: Dark Chart Card */
.cta-chart-dark {
    bottom: -10px; right: -35px; width: 165px; flex-direction: column; align-items: stretch;
    background: rgba(15, 23, 42, 0.94) !important; backdrop-filter: blur(14px);
    border: 1px solid rgba(176, 54, 234, 0.3) !important; z-index: 3;
    padding: 12px 16px;
}

.chart-header-row { display: flex; justify-content: space-between; align-items: center; width: 100%; margin-bottom: 8px; }
.chart-header-row span { color: #94A3B8; font-size: 0.78rem; font-weight: 600; }
.chart-badge { color: #10B981; background: rgba(16, 185, 129, 0.15); padding: 2px 6px; border-radius: 6px; font-size: 0.72rem; font-weight: 700; }

/* Centro: Janela do Chat Principal */
.cta-chat-main {
    position: absolute; top: 8%; left: calc(50% - 165px); width: 330px;
    background: rgba(15, 23, 42, 0.94) !important; backdrop-filter: blur(20px);
    border-radius: 22px; border: 1px solid rgba(176, 54, 234, 0.35) !important;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6); z-index: 2;
    transition: var(--transition-smooth);
    cursor: pointer;
    overflow: hidden;
}

.cta-chat-main:hover { transform: scale(1.04) translateY(-4px); border-color: #b036ea !important; box-shadow: 0 35px 70px rgba(176, 54, 234, 0.25); }

.chat-header {
    padding: 14px 18px; border-bottom: 1px solid rgba(255,255,255,0.1);
    color: white; font-weight: 600; display: flex; align-items: center; justify-content: space-between;
    background: rgba(255, 255, 255, 0.03);
}

.chat-header-info { display: flex; align-items: center; gap: 12px; }
.chat-avatar {
    width: 34px; height: 34px; border-radius: 50%; background: #b036ea;
    color: white; display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}

.chat-header-info strong { display: block; font-size: 0.9rem; color: #FFFFFF; line-height: 1.2; }
.online-status { font-size: 0.72rem; color: #94A3B8; }
.header-dots { color: #64748B; font-size: 1.2rem; }

.chat-messages { padding: 18px; display: flex; flex-direction: column; gap: 14px; }

.msg {
    padding: 12px 14px; border-radius: 16px; font-size: 0.88rem; max-width: 88%;
    line-height: 1.45; position: relative; transition: var(--transition-smooth);
    display: flex; flex-direction: column; gap: 4px;
}

.msg-time { font-size: 0.68rem; opacity: 0.7; align-self: flex-end; display: flex; align-items: center; gap: 3px; }
.msg.from { background: #FFFFFF; color: #0F172A; align-self: flex-start; border-bottom-left-radius: 4px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.msg.from .msg-time { color: #64748B; }
.msg.to { background: #b036ea; color: #FFFFFF; align-self: flex-end; border-bottom-right-radius: 4px; box-shadow: 0 4px 14px rgba(176, 54, 234, 0.4); }
.msg.to .msg-time { color: rgba(255, 255, 255, 0.85); }

/* FOOTER */
.footer {
    background-color: var(--dark-bg); color: var(--text-light-muted);
    padding-top: 90px; border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-container { display: grid; grid-template-columns: 1.5fr 3fr; gap: 64px; margin-bottom: 64px; }
.footer-brand .logo { margin-bottom: 22px; }
.footer-brand p { font-size: 0.98rem; margin-bottom: 28px; max-width: 340px; }

.social-links { display: flex; gap: 16px; }
.social-links a {
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,0.06); display: flex; align-items: center;
    justify-content: center; color: var(--text-light); font-size: 1.3rem; transition: var(--transition-smooth);
}

.social-links a:hover { background: var(--primary-color); transform: translateY(-5px) scale(1.15); box-shadow: 0 10px 24px rgba(176, 54, 234, 0.45); }

.footer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.footer-col h4 {
    color: var(--text-light); font-size: 1.05rem; margin-bottom: 26px;
    font-weight: 700; display: flex; justify-content: space-between; align-items: center;
}

.footer-col h4 .toggle-icon { display: none; }
.footer-col ul li { margin-bottom: 14px; }
.footer-col ul li a { font-size: 0.95rem; color: var(--text-light-muted); transition: var(--transition-smooth); display: inline-block; }
.footer-col ul li a:hover { color: var(--text-light); transform: translateX(6px); }
.footer-bottom { background-color: rgba(0,0,0,0.2); padding: 28px 0; text-align: center; font-size: 0.92rem; }

/* WHATSAPP DIRECT FLOATING BUTTON */
.whatsapp-floating-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    font-size: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: var(--transition-smooth);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-floating-btn:hover {
    transform: scale(1.16) rotate(10deg);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.7);
}

.whatsapp-tooltip {
    position: absolute;
    right: 76px;
    background: #0F172A;
    color: white;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateX(10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.whatsapp-floating-btn:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@keyframes whatsappPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* =========================================
   RESPONSIVIDADE MOBILE IMPECÁVEL
   ========================================= */

/* TABLETS (até 1024px) */
@media (max-width: 1024px) {
    .container { width: 92%; padding: 0 16px; }
    .hero { padding: 130px 0 80px 0; }
    .hero-container { grid-template-columns: 1fr; gap: 48px; text-align: center; }
    .hero-buttons { justify-content: center; }
    .hero-features { justify-content: center; flex-wrap: wrap; gap: 16px; }
    
    .hero-content { transform: translateY(-40px); }
    .hero-image { transform: translateY(40px); }
    .hero.hero-entered .hero-content, .hero.hero-entered .hero-image { transform: translateY(0); }

    .features-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .solutions-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    
    .channel-display-content { grid-template-columns: 1fr; text-align: center; }
    
    .pipeline-steps-wrapper { flex-direction: column; gap: 24px; }
    .pipeline-connector { transform: rotate(90deg); margin: 8px 0; }
    
    .cta-container { grid-template-columns: 1fr; text-align: center; }
    .cta-gsap-container { display: none; }
    .footer-container { grid-template-columns: 1fr; gap: 40px; }
}

/* SMARTPHONES GRANDES & MÉDIOS (até 768px) */
@media (max-width: 768px) {
    .header {
        top: 12px;
        width: 94%;
        padding: 10px 18px;
        border-radius: 30px;
    }
    .header.scrolled {
        top: 8px;
        padding: 8px 16px;
    }
    .header-actions { display: none; }
    .menu-toggle { display: block; font-size: 1.8rem; color: #0F172A; }
    
    .navbar .nav-links {
        display: none !important;
        position: absolute;
        top: 56px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px 18px;
        text-align: center;
        gap: 16px;
        border-radius: 24px;
        border: 1px solid rgba(176, 54, 234, 0.15);
        box-shadow: 0 20px 45px rgba(176, 54, 234, 0.18);
    }
    
    .navbar.active .nav-links { display: flex !important; }
    .nav-links li a { font-size: 1rem; color: #0F172A; }
    
    .hero.hero-white-blue { padding: 120px 0 50px 0; }
    .hero-white-blue .hero-title { font-size: 2.1rem; margin-bottom: 16px; line-height: 1.25; }
    .hero-white-blue .hero-description { font-size: 0.98rem; margin-bottom: 24px; }
    .hero-white-blue .hero-badge { font-size: 0.78rem; padding: 6px 14px; margin-bottom: 16px; }
    .hero-white-blue .hero-buttons { flex-direction: column; gap: 12px; width: 100%; margin-bottom: 28px; }
    .hero-features-pills { flex-direction: column; gap: 10px; width: 100%; }
    .hero-pill-item { width: 100%; justify-content: center; font-size: 0.85rem; padding: 10px 16px; }
    
    .btn-primary, .btn-secondary, .btn-secondary-white, .btn-large { 
        width: 100%; 
        padding: 14px 20px; 
        font-size: 0.95rem; 
        justify-content: center;
        text-align: center;
        white-space: normal;
        word-break: break-word;
    }
    
    .hero-features { gap: 10px; font-size: 0.88rem; }
    
    .section-header { margin-bottom: 28px; }
    .section-header h2 { font-size: 1.65rem; margin-bottom: 10px; }
    .section-header p { font-size: 0.95rem; line-height: 1.5; }
    .section-tag { font-size: 0.78rem; padding: 6px 14px; margin-bottom: 12px; }

    .features-section, .channels-section, .pipeline-section, 
    .solutions-section, .stats-section, .pricing-section, 
    .testimonials-section, .faq-section { padding: 48px 0; }
    
    .features-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 28px; }
    .feature-card { padding: 22px 18px; border-radius: 16px; }
    .feature-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
    .feature-card p { font-size: 0.9rem; line-height: 1.5; }
    .feature-icon { width: 48px; height: 48px; font-size: 1.5rem; margin-bottom: 16px; border-radius: 12px; }
    
    .channels-tab-wrapper.light-tab { 
        padding: 16px 12px !important; 
        border-radius: 16px !important; 
        margin-top: 20px !important; 
    }
    
    /* NAV DE PILLS COM SCROLL HORIZONTAL FLUIDO NO MOBILE */
    .channel-pills-nav.light-pills { 
        display: flex !important; 
        flex-direction: row !important; 
        flex-wrap: nowrap !important; 
        overflow-x: auto !important; 
        gap: 8px !important; 
        margin-bottom: 18px !important; 
        padding-bottom: 8px !important; 
        justify-content: flex-start !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .channel-pills-nav.light-pills::-webkit-scrollbar { display: none; }
    
    .channel-pills-nav.light-pills .channel-pill { 
        flex: 0 0 auto !important; 
        white-space: nowrap !important; 
        padding: 10px 18px !important; 
        font-size: 0.88rem !important; 
        border-radius: 24px !important; 
    }
    
    .channel-display-card.light-display { 
        padding: 18px 14px !important; 
        border-radius: 14px !important; 
        background: #F8FAFC !important;
    }
    
    .channel-display-info { 
        display: flex !important; 
        flex-direction: column !important; 
        align-items: center !important; 
        text-align: center !important; 
    }
    .channel-display-card.light-display .channel-display-info h3 { 
        font-size: 1.35rem !important; 
        margin-bottom: 10px !important; 
        color: #0F172A !important; 
        word-break: break-word !important;
    }
    .channel-display-card.light-display .channel-display-info p { 
        font-size: 0.88rem !important; 
        margin-bottom: 16px !important; 
        color: #475569 !important; 
        line-height: 1.5 !important;
    }
    
    .channel-display-card.light-display .channel-feature-checklist { 
        display: flex !important; 
        flex-direction: column !important; 
        width: 100% !important; 
        gap: 10px !important; 
        margin: 0 0 18px 0 !important; 
        text-align: left !important; 
    }
    
    .channel-display-card.light-display .channel-feature-checklist li { 
        display: flex !important; 
        align-items: flex-start !important; 
        gap: 8px !important; 
        font-size: 0.85rem !important; 
        padding: 8px 10px !important; 
        background: #FFFFFF !important; 
        border-radius: 8px !important; 
        width: 100% !important; 
        line-height: 1.4 !important;
    }
    
    .channel-display-card.light-display .channel-feature-checklist li i { 
        flex-shrink: 0 !important; 
        font-size: 1.1rem !important; 
        margin-top: 1px !important; 
        color: #10B981 !important; 
    }
    
    .btn-channel-cta { 
        width: 100% !important; 
        justify-content: center !important; 
        padding: 12px 16px !important; 
        font-size: 0.9rem !important; 
        margin-bottom: 16px !important;
    }
    
    .channel-display-card.dark-display .channel-preview-box { 
        padding: 16px 12px !important; 
        border-radius: 14px !important; 
        background: #1E293B !important; 
        margin-top: 4px !important;
    }
    .channel-preview-header { 
        display: flex !important; 
        justify-content: space-between !important; 
        align-items: center !important; 
        gap: 6px !important; 
        margin-bottom: 12px !important; 
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important; 
        padding-bottom: 10px !important;
    }
    .channel-preview-title { 
        font-size: 0.9rem !important; 
        font-weight: 700 !important; 
        color: white !important; 
        display: flex !important; 
        align-items: center !important; 
        gap: 6px !important; 
    }
    .channel-preview-badge { 
        font-size: 0.72rem !important; 
        padding: 3px 8px !important; 
        border-radius: 8px !important; 
        flex-shrink: 0 !important; 
    }
    .channel-display-card.dark-display .channel-preview-item { 
        display: flex !important; 
        align-items: center !important; 
        justify-content: space-between !important; 
        gap: 8px !important; 
        padding: 10px 12px !important; 
        background: rgba(255, 255, 255, 0.05) !important; 
        border-radius: 10px !important; 
        margin-bottom: 8px !important; 
    }
    .channel-preview-item div { text-align: left !important; }
    .channel-preview-item strong { font-size: 0.85rem !important; display: block !important; }
    .channel-preview-item span { font-size: 0.75rem !important; color: #94A3B8 !important; }
    .channel-display-card.dark-display .channel-preview-item i { flex-shrink: 0 !important; font-size: 1.2rem !important; }
    
    .channels-showcase-grid { grid-template-columns: 1fr; gap: 32px; margin-top: 28px; }
    .channel-dashboard-card { padding: 20px 16px; border-radius: 18px; }
    
    .features-clean-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 28px; }
    .clean-feature-card { padding: 24px 20px; border-radius: 16px; }

    .process-3d-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 28px; }
    .process-3d-card { padding: 24px 20px; border-radius: 20px; }
    .process-3d-img-wrapper { height: 150px; }
    .process-3d-img-wrapper.video-wrapper { height: 180px; }
    .process-3d-img-wrapper.video-wrapper.extra-large { height: 210px; }
    .process-3d-img-wrapper img { max-width: 120px; max-height: 120px; }

    .solutions-clean-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 28px; }
    .clean-solution-card { padding: 24px 20px; border-radius: 16px; }
    .clean-solution-card.wide-card { grid-column: span 1; }

    .stats-wrapper { padding: 28px 18px; border-radius: 20px; }
    .stats-grid { grid-template-columns: 1fr; gap: 18px; margin-top: 28px; }
    .stat-card { border-right: none; border-bottom: 1px solid var(--border-color); padding: 0 0 16px 0; gap: 16px; }
    .stat-card:last-child { border-bottom: none; padding-bottom: 0; }
    .stat-icon { width: 48px; height: 48px; font-size: 1.5rem; }
    .stat-info h3 { font-size: 2rem; margin-bottom: 2px; }
    .stat-info p { font-size: 0.88rem; }

    .pricing-toggle-wrapper { margin-top: 24px; gap: 14px; }
    .toggle-label { font-size: 0.95rem; }
    .pricing-grid { grid-template-columns: 1fr; gap: 20px; margin-top: 32px; }
    .pricing-card { padding: 28px 20px; border-radius: 20px; }
    .pricing-header h3 { font-size: 1.45rem; margin-bottom: 8px; }
    .pricing-header p { font-size: 0.9rem; margin-bottom: 24px; min-height: auto; line-height: 1.5; }
    .price { margin-bottom: 28px; gap: 4px; }
    .price .currency { font-size: 1.15rem; }
    .price .amount { font-size: 2.6rem; }
    .price .period { font-size: 0.9rem; }
    .pricing-features { gap: 12px; margin-bottom: 28px; }
    .pricing-features li { font-size: 0.9rem; gap: 10px; }
    .btn-pricing-secondary { padding: 14px 18px; font-size: 0.95rem; }

    .testimonials-grid-clean { grid-template-columns: 1fr; gap: 18px; margin-top: 28px; }
    .testimonial-card { padding: 22px 18px; border-radius: 16px; }
    .stars { font-size: 1.05rem; margin-bottom: 14px; }
    .testimonial-card p { font-size: 0.92rem; line-height: 1.55; margin-bottom: 20px; }
    .author-avatar { width: 44px; height: 44px; font-size: 0.92rem; }
    .testimonial-author strong { font-size: 0.95rem; }
    .testimonial-author span { font-size: 0.8rem; }

    .faq-accordion { gap: 12px; }
    .faq-item { border-radius: 14px; }
    .faq-question { padding: 16px 18px; font-size: 0.95rem; }
    .faq-icon { font-size: 1.25rem; }
    .faq-answer p { padding: 0 18px 16px 18px; font-size: 0.88rem; line-height: 1.55; }

    .cta-section { padding: 56px 0; }
    .cta-content h2 { font-size: 1.8rem; margin-bottom: 16px; }
    .cta-content p { font-size: 0.98rem; margin-bottom: 28px; }

    /* FOOTER TOTALMENTE CENTRALIZADO NO MOBILE */
    .footer { 
        padding-top: 48px; 
        text-align: center; 
    }
    .footer-container { 
        grid-template-columns: 1fr; 
        gap: 32px; 
        justify-items: center; 
        text-align: center; 
        margin-bottom: 40px;
    }
    .footer-brand { 
        display: flex; 
        flex-direction: column; 
        align-items: center; 
        text-align: center; 
        width: 100%; 
    }
    .footer-brand .logo { 
        justify-content: center; 
        margin: 0 auto 14px auto; 
        font-size: 1.5rem;
    }
    .footer-brand p { 
        text-align: center; 
        max-width: 100%; 
        margin: 0 auto 20px auto; 
        font-size: 0.9rem; 
        line-height: 1.55;
    }
    .social-links { 
        justify-content: center; 
        width: 100%; 
        margin: 0 auto; 
        gap: 14px;
    }
    .social-links a {
        width: 40px; height: 40px; font-size: 1.2rem;
    }
    .footer-links { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 28px 18px; 
        width: 100%; 
        text-align: center; 
    }
    .footer-col { 
        display: flex; 
        flex-direction: column; 
        align-items: center; 
        text-align: center; 
    }
    .footer-col h4 { 
        justify-content: center; 
        text-align: center; 
        margin-bottom: 14px; 
        width: 100%; 
        font-size: 0.98rem; 
    }
    .footer-col h4 .toggle-icon { display: none; }
    .footer-col ul { 
        text-align: center; 
        padding: 0; 
        margin: 0; 
        width: 100%; 
        list-style: none; 
    }
    .footer-col ul li { 
        text-align: center; 
        margin-bottom: 10px; 
    }
    .footer-col ul li a { 
        text-align: center; 
        display: inline-block; 
        font-size: 0.9rem; 
    }
    .footer-col ul li a:hover { 
        transform: translateY(-2px); 
        color: var(--text-light); 
    }
    .footer-bottom { 
        text-align: center; 
        padding: 24px 0; 
        font-size: 0.85rem;
    }
    .footer-bottom p { 
        text-align: center; 
        margin: 0 auto; 
    }
    
    .whatsapp-floating-btn {
        width: 52px; height: 52px; font-size: 1.8rem;
        bottom: 20px; right: 20px;
        z-index: 999;
    }
    .whatsapp-tooltip { display: none; }

    .semicircle-decor-left {
        display: none;
    }
}

/* SMALL PHONES (até 480px) */
@media (max-width: 480px) {
    .container { width: 95%; padding: 0 12px; }
    .hero-title { font-size: 1.8rem; }
    .hero-description { font-size: 0.9rem; }
    .hero-features { flex-direction: column; align-items: center; gap: 8px; font-size: 0.85rem; }
    .section-header h2 { font-size: 1.45rem; }
    .cta-content h2 { font-size: 1.55rem; }
    .price .amount { font-size: 2.2rem; }
    .channel-display-info h3 { font-size: 1.2rem; }
    .channel-preview-title { font-size: 0.85rem; }
    .feature-card, .step-card, .solution-card, .testimonial-card, .pricing-card { padding: 18px 14px; }
    .footer-links { grid-template-columns: 1fr; gap: 24px; text-align: center; }
}

/* =========================================
   STATS SECTION (AZUL SÓLIDO)
   ========================================= */
.stats-wrapper.stats-blue-card {
    background: #b036ea;
    border: none;
    color: #FFFFFF;
    box-shadow: 0 20px 50px rgba(176, 54, 234, 0.25);
    border-radius: 28px;
    padding: 56px 40px;
}

.stats-wrapper.stats-blue-card .section-header h2 {
    color: #FFFFFF !important;
}

.stats-wrapper.stats-blue-card .section-header h2 span {
    color: #FFFFFF !important;
    background: none !important;
    -webkit-text-fill-color: #FFFFFF !important;
}

.stats-wrapper.stats-blue-card .stat-card {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.stats-wrapper.stats-blue-card .stat-card:last-child {
    border-right: none;
}

.stats-wrapper.stats-blue-card .stat-icon {
    background: rgba(255, 255, 255, 0.18);
    color: #FFFFFF;
}

.stats-wrapper.stats-blue-card .stat-info h3 {
    color: #FFFFFF !important;
}

.stats-wrapper.stats-blue-card .stat-info p {
    color: rgba(255, 255, 255, 0.85);
}

/* BOTÃO COMPARAR PLANOS */
.compare-btn-wrapper {
    margin-top: 24px;
    text-align: center;
}

.btn-compare-plans {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FFFFFF;
    border: 1px solid #CBD5E1;
    color: #0F172A;
    padding: 10px 22px;
    border-radius: 24px;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.btn-compare-plans:hover {
    border-color: #b036ea;
    color: #b036ea;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(176, 54, 234, 0.15);
}

/* MODAL DE COMPARATIVO DE PLANOS */
.plan-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.plan-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.plan-modal-card {
    background: #FFFFFF;
    border-radius: 28px;
    width: 100%;
    max-width: 900px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.25);
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.plan-modal-overlay.active .plan-modal-card {
    transform: scale(1);
}

.plan-modal-header {
    padding: 24px 32px;
    border-bottom: 1px solid #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.plan-modal-header h3 {
    font-size: 1.4rem;
    font-weight: 400 !important;
    color: #0F172A;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.plan-modal-header p {
    font-size: 0.88rem;
    color: #64748B;
}

.plan-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #64748B;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.plan-modal-close:hover {
    color: #0F172A;
    transform: scale(1.1);
}

.plan-modal-body {
    padding: 24px 32px;
    overflow-y: auto;
    flex: 1;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.comparison-table th {
    text-align: center;
    padding: 14px;
    border-bottom: 2px solid #E2E8F0;
    color: #0F172A;
    font-weight: 700;
    background: #F8FAFC;
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table td {
    padding: 12px 14px;
    border-bottom: 1px solid #F1F5F9;
    text-align: center;
    color: #334155;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.table-category-row td {
    background: #F1F5F9;
    font-weight: 700 !important;
    color: #b036ea !important;
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.5px;
    padding: 10px 14px;
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #DCFCE7;
    color: #16A34A;
    font-size: 1.2rem;
}

.cross-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #FEE2E2;
    color: #DC2626;
    font-size: 1.2rem;
}

.plan-modal-footer {
    padding: 20px 32px;
    border-top: 1px solid #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    background: #F8FAFC;
}

/* =========================================
   HERO-ONLY 4 EXTREME CORNERS FLOATING TOASTS (WHITE GLASS CARD)
   ========================================= */
.hero-floating-toast {
    position: absolute;
    z-index: 35;
    background: rgba(255, 255, 255, 0.98);
    color: #0F172A;
    border: 1px solid rgba(176, 54, 234, 0.22);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 18px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 16px 36px rgba(176, 54, 234, 0.14), 0 4px 14px rgba(15, 23, 42, 0.06);
    max-width: 330px;
    opacity: 0;
    transform: scale(0.9) translateY(10px);
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

/* 4 Extreme Corners inside #hero */
.hero-floating-toast.corner-top-left {
    top: 95px;
    left: 28px;
    bottom: auto;
    right: auto;
}

.hero-floating-toast.corner-top-right {
    top: 95px;
    right: 28px;
    bottom: auto;
    left: auto;
}

.hero-floating-toast.corner-bottom-left {
    bottom: 28px;
    left: 28px;
    top: auto;
    right: auto;
}

.hero-floating-toast.corner-bottom-right {
    bottom: 28px;
    right: 28px;
    top: auto;
    left: auto;
}

.hero-floating-toast.active {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: auto;
}

.toast-icon-box {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    flex-shrink: 0;
    background: rgba(176, 54, 234, 0.08);
}

.toast-content-box {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.toast-content-box strong {
    font-size: 0.86rem;
    color: #0F172A;
    font-weight: 700;
    line-height: 1.35;
}

.toast-content-box span {
    font-size: 0.76rem;
    color: #64748B;
    margin-top: 2px;
}

@media (max-width: 768px) {
    .hero-floating-toast {
        max-width: 280px;
        padding: 10px 14px;
    }
    .hero-floating-toast.corner-top-left, .hero-floating-toast.corner-top-right { top: 80px; }
    .hero-floating-toast.corner-bottom-left, .hero-floating-toast.corner-bottom-right { bottom: 16px; }
}

.hero-live-badge:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 15px 35px rgba(176, 54, 234, 0.15);
    border-color: #b036ea;
}

.live-pulse-green {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #10B981;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: livePulse 1.8s infinite;
    flex-shrink: 0;
}

@keyframes livePulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.bolt-icon {
    font-size: 1.4rem;
    color: #F59E0B;
}

.badge-text {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.badge-text strong {
    font-size: 0.85rem;
    color: #0F172A;
    line-height: 1.2;
}

.badge-text span {
    font-size: 0.75rem;
    color: #64748B;
}

/* Floating WhatsApp Button Pulse */
.whatsapp-floating-btn {
    animation: whatsappGlow 2.5s infinite;
}

@keyframes whatsappGlow {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Hover Card Shimmer Accents */
.clean-feature-card:hover, .clean-solution-card:hover, .process-3d-card:hover {
    border-color: rgba(176, 54, 234, 0.35) !important;
    box-shadow: 0 20px 45px rgba(176, 54, 234, 0.1) !important;
}

/* Section Ambient Background Glows */
.channels-section, .features-section, .solutions-section {
    position: relative;
    overflow: hidden;
}

.channels-section::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(176, 54, 234, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* =========================================
   LIVE CHAT WIDGET FLUTUANTE (ESTILO WHATSAPP)
   ========================================= */
.live-chat-widget {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 99999;
    font-family: 'Inter', sans-serif;
}

/* Floating Trigger Button - WhatsApp Green */
.live-chat-toggle {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.1rem;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.live-chat-toggle:hover {
    transform: scale(1.08);
    box-shadow: 0 14px 38px rgba(37, 211, 102, 0.65);
}

.live-chat-toggle .chat-icon-close {
    display: none;
    font-size: 1.8rem;
}

.live-chat-widget.active .live-chat-toggle .chat-icon-open {
    display: none;
}

.live-chat-widget.active .live-chat-toggle .chat-icon-close {
    display: block;
}

/* Pulse effect behind floating button */
.chat-badge-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    opacity: 0.6;
    z-index: -1;
    animation: chatPulse 2.2s infinite;
}

@keyframes chatPulse {
    0% { transform: scale(1); opacity: 0.6; }
    70% { transform: scale(1.4); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}

/* Live Chat Box Window */
.live-chat-box {
    position: absolute;
    bottom: 78px;
    right: 0;
    width: 360px;
    height: 480px;
    max-height: calc(100vh - 100px);
    background: #FFFFFF;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(7, 94, 84, 0.22);
    border: 1px solid #E2E8F0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: bottom right;
}

.live-chat-widget.active .live-chat-box {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Chat Header - WhatsApp Dark Teal */
.live-chat-header {
    background: linear-gradient(135deg, #075E54 0%, #128C7E 100%);
    color: #FFFFFF;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-header-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar-wrapper {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    position: relative;
}

.chat-avatar-wrapper .online-indicator {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #25D366;
    border: 2px solid #075E54;
}

.chat-header-title {
    display: flex;
    flex-direction: column;
}

.chat-header-title strong {
    font-size: 0.95rem;
    font-weight: 700;
}

.chat-header-title span {
    font-size: 0.72rem;
    color: #A7F3D0;
}

.chat-close-btn {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #FFFFFF;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.chat-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Chat Body & Messages */
.live-chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #ECE5DD; /* WhatsApp Chat Pattern Tone */
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.chat-message {
    display: flex;
    flex-direction: column;
    max-width: 84%;
}

.chat-message.bot {
    align-self: flex-start;
}

.chat-message.user {
    align-self: flex-end;
}

.chat-message .msg-content {
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 0.88rem;
    line-height: 1.45;
}

.chat-message.bot .msg-content {
    background: #FFFFFF;
    color: #1E293B;
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.chat-message.user .msg-content {
    background: #DCF8C6;
    color: #075E54;
    font-weight: 500;
    border-bottom-right-radius: 4px;
    box-shadow: 0 2px 6px rgba(7, 94, 84, 0.12);
}

.chat-message .msg-time {
    font-size: 0.68rem;
    color: #64748B;
    margin-top: 4px;
    align-self: flex-end;
}

.chat-message.bot .msg-time {
    align-self: flex-start;
}

/* Quick Action Options */
.chat-quick-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 4px;
}

.chat-quick-actions button {
    background: #FFFFFF;
    border: 1px solid #128C7E;
    color: #075E54;
    padding: 9px 14px;
    border-radius: 12px;
    font-size: 0.82rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
}

.chat-quick-actions button:hover {
    background: #25D366;
    color: #FFFFFF;
    border-color: #25D366;
    transform: translateX(4px);
}

/* Typing Indicator */
.chat-typing-indicator {
    padding: 8px 20px;
    font-size: 0.75rem;
    color: #075E54;
    display: none;
    align-items: center;
    gap: 6px;
    background: #ECE5DD;
}

.chat-typing-indicator.active {
    display: flex;
}

.chat-typing-indicator span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #25D366;
    animation: typingDots 1.4s infinite ease-in-out;
}

.chat-typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingDots {
    0%, 100% { transform: translateY(0); opacity: 0.4; }
    50% { transform: translateY(-4px); opacity: 1; }
}

/* Chat Footer Form */
.live-chat-footer {
    padding: 12px 16px;
    background: #FFFFFF;
    border-top: 1px solid #E2E8F0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.live-chat-footer input {
    flex: 1;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 10px 16px;
    font-size: 0.88rem;
    outline: none;
    transition: border-color 0.2s ease;
}

.live-chat-footer input:focus {
    border-color: #25D366;
}

.chat-send-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #25D366;
    color: #FFFFFF;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.chat-send-btn:hover {
    background: #128C7E;
    transform: scale(1.05);
}

@media (max-width: 480px) {
    .live-chat-widget {
        bottom: 20px;
        right: 20px;
    }
    .live-chat-box {
        right: -10px;
        width: calc(100vw - 32px);
        height: 440px;
    }
}

/* =========================================
   MODAL DE COMPARAÇÃO DE PLANOS (PLAN MODAL)
   ========================================= */
.plan-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.plan-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.plan-modal-container {
    background: #FFFFFF;
    width: 100%;
    max-width: 860px;
    max-height: 88vh;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.35);
    border: 1px solid #E2E8F0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.92) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.plan-modal-overlay.active .plan-modal-container {
    transform: scale(1) translateY(0);
}

/* Modal Header */
.plan-modal-header {
    padding: 24px 32px;
    background: linear-gradient(135deg, #0A1128 0%, #b036ea 100%);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-modal-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.plan-modal-header h3 i {
    font-size: 1.4rem;
    color: #d980ff;
}

.plan-modal-close {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #FFFFFF;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.plan-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Modal Body & Table */
.plan-modal-body {
    padding: 24px 32px;
    overflow-y: auto;
    flex: 1;
    background: #FFFFFF;
}

.plan-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.plan-table th {
    padding: 16px 20px;
    font-size: 0.92rem;
    font-weight: 700;
    color: #0F172A;
    background: #F8FAFC;
    border-bottom: 2px solid #E2E8F0;
    text-align: center;
}

.plan-table th:first-child {
    text-align: left;
    width: 40%;
}

.plan-table th:nth-child(3) {
    color: #b036ea;
    background: #EEF2FF;
}

.plan-table td {
    padding: 14px 20px;
    font-size: 0.9rem;
    color: #334155;
    border-bottom: 1px solid #F1F5F9;
    text-align: center;
    vertical-align: middle;
}

.plan-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: #1E293B;
}

.plan-table tbody tr:hover {
    background: #F8FAFC;
}

/* Category Row Headers */
.table-category-row td {
    background: #EEF2FF !important;
    color: #b036ea !important;
    font-weight: 800 !important;
    font-size: 0.82rem !important;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 12px 20px !important;
    text-align: left !important;
    border-top: 1px solid #E0E7FF;
    border-bottom: 1px solid #E0E7FF;
}

/* Check & Cross Icons */
.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #D1FAE5;
    color: #10B981;
    font-size: 1.1rem;
}

.cross-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #FEE2E2;
    color: #EF4444;
    font-size: 1.1rem;
}

/* Modal Footer */
.plan-modal-footer {
    padding: 20px 32px;
    background: #F8FAFC;
    border-top: 1px solid #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

.btn-secondary {
    background: #E2E8F0;
    color: #334155;
    padding: 12px 24px;
    border-radius: 14px;
    font-size: 0.92rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary:hover {
    background: #CBD5E1;
    color: #0F172A;
}

/* =========================================
   WIDGET CALCULADORA DE CAPACIDADE DE CANAIS
   ========================================= */
.channel-calc-wrapper {
    margin-top: 48px;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 24px;
    box-shadow: 0 12px 36px rgba(176, 54, 234, 0.06);
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.calc-header {
    background: transparent !important;
    color: #0F172A !important;
    padding: 28px 32px 16px 32px !important;
    text-align: center;
    border-bottom: 1px solid #F1F5F9;
}

.calc-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0F172A !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 6px;
}

.calc-header h3 i {
    color: #b036ea !important;
}

.calc-header p {
    color: #475569 !important;
    font-size: 0.95rem;
}

.calc-body {
    padding: 32px;
    background: #FFFFFF;
}

.calc-slider-row {
    margin-bottom: 24px;
    background: #F8FAFC;
    padding: 24px;
    border-radius: 18px;
    border: 1px solid #E2E8F0;
}

.calc-label-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    font-size: 1rem;
    color: #1E293B;
    flex-wrap: wrap;
    gap: 8px;
}

.calc-label-group span {
    font-weight: 600;
    color: #475569;
}

.calc-label-group strong {
    font-size: 1.15rem;
    font-weight: 800;
    color: #b036ea;
    background: #EEF2FF;
    padding: 4px 14px;
    border-radius: 20px;
    border: 1px solid rgba(176, 54, 234, 0.2);
}

.calc-range-input {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #E2E8F0;
    outline: none;
    accent-color: #b036ea;
    cursor: pointer;
}

.calc-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.calc-stat-box {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    transition: var(--transition-smooth);
}

.calc-stat-box:hover {
    transform: translateY(-4px);
    border-color: rgba(176, 54, 234, 0.3);
    box-shadow: 0 10px 25px rgba(176, 54, 234, 0.08);
}

.calc-stat-box .calc-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.calc-stat-box strong {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0F172A;
}

/* =========================================
   SISTEMA DE RESPONSIVIDADE COMPLETO (ALL VIEWPORTS)
   ========================================= */

/* Global Fluid Media */
img, video, canvas, svg {
    max-width: 100%;
}

/* 1. DISPOSITIVOS GRANDES (1200px - 1400px) */
@media (max-width: 1400px) {
    .container {
        width: 98%;
        padding: 0 20px;
    }
    .hero-title {
        font-size: 3.1rem;
    }
}

/* 2. LAPTOPS E DESKTOPS PEQUENOS (993px - 1200px) */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 2.7rem;
    }
    .features-clean-grid, .solutions-clean-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .process-3d-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .cta-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .cta-mockup {
        max-width: 600px;
        margin: 0 auto;
    }
}

/* 3. TABLETS E MONITORES PEQUENOS (769px - 992px) */
@media (max-width: 992px) {
    section {
        scroll-margin-top: 100px !important;
        padding: 75px 0 !important;
    }
    
    /* Header & Navigation */
    .menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
    
    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 24px 32px;
        box-shadow: 0 15px 35px rgba(176, 54, 234, 0.12);
        border-radius: 20px;
        border: 1px solid rgba(176, 54, 234, 0.1);
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 10px;
    }
    
    .navbar.active {
        display: flex !important;
    }
    
    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        width: 100%;
    }
    
    .nav-links li a {
        font-size: 1.05rem;
    }

    /* Hero */
    .hero.hero-white-blue {
        padding-top: 155px !important;
        padding-bottom: 60px !important;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.3rem;
        line-height: 1.25;
    }
    
    .hero-description {
        font-size: 1.05rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons .btn-primary, .hero-buttons .btn-secondary-white {
        width: 100%;
        justify-content: center;
    }
    
    .hero-features-pills {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    /* Channels Showcase */
    .channels-showcase-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .dash-filter-row {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .dash-pills {
        overflow-x: auto;
        padding-bottom: 6px;
        justify-content: flex-start;
    }

    /* Pricing Grid */
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
        gap: 24px;
    }

    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

/* 4. DISPOSITIVOS MÓVEIS (320px - 768px) */
@media (max-width: 768px) {
    section {
        scroll-margin-top: 90px !important;
        padding: 60px 0 !important;
    }

    /* Hero Padding for Fixed Header Offset */
    .hero.hero-white-blue {
        padding-top: 175px !important;
        padding-bottom: 50px !important;
    }

    .hero-white-blue .hero-badge {
        font-size: 0.78rem !important;
        padding: 6px 14px !important;
        margin-bottom: 16px !important;
        white-space: normal !important;
        text-align: center !important;
        line-height: 1.4 !important;
    }

    .hero-title {
        font-size: 1.85rem !important;
        line-height: 1.28 !important;
        margin-bottom: 16px !important;
    }

    .hero-description {
        font-size: 0.95rem !important;
        line-height: 1.55 !important;
        margin-bottom: 24px !important;
    }

    .section-header {
        margin-bottom: 32px !important;
    }

    .section-header h2 {
        font-size: 1.75rem !important;
        line-height: 1.3 !important;
    }
    
    .section-header p {
        font-size: 0.95rem !important;
    }

    /* Grids to 1 Column */
    .features-clean-grid,
    .solutions-clean-grid,
    .process-3d-grid,
    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 18px;
    }

    .process-3d-img-wrapper.video-wrapper.extra-large {
        height: 200px;
    }

    .channel-feature-item {
        padding: 16px !important;
        gap: 12px !important;
    }

    .channel-feature-item .cf-content h3 {
        font-size: 1.05rem !important;
    }

    .channel-feature-item .cf-content p {
        font-size: 0.88rem !important;
    }

    /* Dashboard & Tables Scrollable */
    .channels-showcase-grid,
    .channels-info-col,
    .channels-ui-col,
    .channel-dashboard-card,
    .channel-calc-wrapper {
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .channel-dashboard-card {
        padding: 16px !important;
        border-radius: 18px !important;
    }

    .dash-top-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        width: 100% !important;
    }

    .dash-title-row {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
        width: 100% !important;
    }

    .dash-title-row div {
        width: 100% !important;
    }

    .dash-title-row h3 {
        font-size: 1.35rem !important;
    }

    .dash-title-row p {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
        word-break: break-word !important;
    }

    .dash-btn-add {
        width: 100% !important;
        justify-content: center !important;
    }

    .dash-table-wrapper {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        width: 100% !important;
        border-radius: 12px !important;
        margin-top: 14px !important;
    }

    .dash-table {
        min-width: 600px !important;
    }

    .dash-table th, .dash-table td {
        padding: 10px 14px !important;
        font-size: 0.82rem !important;
        white-space: nowrap !important;
    }

    /* Calculator Widget */
    .calc-header {
        padding: 18px 16px !important;
        background: transparent !important;
        border-bottom: 1px solid #F1F5F9 !important;
    }
    .calc-header h3 {
        font-size: 1.05rem !important;
        color: #0F172A !important;
    }
    .calc-header p {
        color: #475569 !important;
        font-size: 0.85rem !important;
    }
    .calc-body {
        padding: 16px !important;
    }
    .calc-slider-row {
        padding: 16px !important;
    }
    .calc-label-group {
        flex-direction: column !important;
        align-items: center !important;
        gap: 8px !important;
        text-align: center !important;
    }
    .calc-stats-row {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    .calc-stat-box {
        padding: 14px !important;
    }

    /* Solutions Cards */
    .clean-solution-card {
        padding: 20px 18px;
    }

    /* Pricing Toggle */
    .pricing-toggle-wrapper {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }

    /* Testimonials Navigation */
    .t-nav-btn {
        width: 38px;
        height: 38px;
    }
    .t-prev-btn { left: -10px; }
    .t-next-btn { right: -10px; }

    /* CTA Section */
    .cta-content h2 {
        font-size: 1.85rem !important;
    }

    .cta-chat-main {
        width: 100%;
        max-width: 100%;
    }

    .float-node-1, .float-node-2, .float-node-3, .float-node-4 {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        margin-bottom: 12px;
        width: 100% !important;
    }

    .cta-svg-lines {
        display: none;
    }

    /* Footer Links Stacked */
    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-col h4 {
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .footer-col h4::after {
        content: '+';
        font-size: 1.2rem;
        transition: transform 0.3s ease;
    }

    .footer-col.open h4::after {
        content: '-';
    }

    .footer-col ul {
        display: none;
        padding-top: 10px;
    }

    .footer-col.open ul {
        display: block;
    }

    /* Live Chat Mobile */
    .live-chat-widget {
        bottom: 16px;
        right: 16px;
    }

    .live-chat-toggle {
        width: 54px;
        height: 54px;
        font-size: 1.8rem;
    }

    .live-chat-box {
        right: -6px;
        width: calc(100vw - 24px);
        height: 430px;
        bottom: 70px;
    }

    /* Modal Mobile */
    .plan-modal-container {
        width: 96%;
        max-height: 92vh;
        border-radius: 16px;
    }

    .plan-modal-header {
        padding: 16px;
    }

    .plan-modal-header h3 {
        font-size: 1.05rem;
    }

    .plan-modal-body {
        padding: 12px;
        overflow-x: auto;
    }

    .plan-table {
        min-width: 500px;
    }

    .plan-modal-footer {
        padding: 12px 16px;
    }
}


/* LOGO IMAGE STYLING */
.logo-img {
    height: 28px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.04);
}

.footer .logo-img {
    height: 44px;
    filter: brightness(0) invert(1);
}
