/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cores Neon Melhoradas */
:root {
    --neon-cyan: #00d4ff;
    --neon-magenta: #ff0080;
    --neon-green: #00ff88;
    --neon-blue: #0066ff;
    --neon-purple: #8000ff;
    --dark-bg: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    --darker-bg: linear-gradient(135deg, #0a0a1a 0%, #141428 100%);
    --card-bg: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(22, 33, 62, 0.6) 100%);
    --section-bg: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
    --text-primary: #ffffff;
    --text-secondary: #b8c5d1;
    --text-muted: #8892b0;
    --border-color: rgba(100, 255, 255, 0.1);
    --border-glow: rgba(0, 212, 255, 0.3);
    --shadow-neon: 0 0 20px rgba(0, 212, 255, 0.15);
}

.neon-subtitle {
    color: var(--neon-cyan);
    text-shadow: 
        0 0 1px var(--neon-cyan),
        0 0 3px var(--neon-cyan),
        0 0 5px var(--neon-cyan);
    animation: neonPulseSubtitle 3s ease-in-out infinite alternate;
}

/* Efeitos Neon */
.neon-text {
    color: var(--neon-cyan);
    text-shadow: 
        0 0 1px var(--neon-cyan),
        0 0 3px var(--neon-cyan),
        0 0 5px var(--neon-cyan);
    animation: neonPulseTitle 3s ease-in-out infinite alternate;
}

.neon-icon {
    color: var(--neon-cyan);
    filter: drop-shadow(0 0 5px var(--neon-cyan));
}

.icons {
    height: 48px;
    width: 48px;
}

.brand-logo {
    height: 40px;
    width: auto;
    margin-right: 10px;
}

/* Se quiser manter o efeito neon na logo */
.brand-logo {
    filter: drop-shadow(0 0 1px var(--neon-cyan))
           drop-shadow(0 0 2px var(--neon-cyan));
}

@keyframes neonPulseTitle {
    from {
        text-shadow: 
            0 0 2px var(--neon-cyan),
            0 0 4px var(--neon-cyan),
            0 0 6px var(--neon-cyan);
    }
    to {
        text-shadow: 
            0 0 1px var(--neon-cyan),
            0 0 2px var(--neon-cyan),
            0 0 3px var(--neon-cyan);
    }
}

@keyframes neonPulseSubtitle {
    from {
        text-shadow: 
            0 0 1px var(--neon-cyan),
            0 0 3px var(--neon-cyan),
            0 0 5px var(--neon-cyan);
    }
    to {
        text-shadow: 
            0 0 1px var(--neon-cyan),
            0 0 2px var(--neon-cyan),
            0 0 3px var(--neon-cyan);
    }
}

/* Header Transparente Inicial */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    border-bottom: 1px solid transparent;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-glow);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Melhora a visibilidade dos links no header transparente */
.header .nav-menu a {
    color: var(--text-secondary);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
}

.header.scrolled .nav-menu a {
    text-shadow: none;
}

.header .brand-text {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
}

.header.scrolled .brand-text {
    text-shadow: none;
}

.header .nav-menu a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 5px var(--neon-cyan);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.nav-brand .neon-icon {
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-magenta));
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--neon-cyan);
    filter: drop-shadow(0 0 5px var(--neon-cyan));
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--neon-cyan);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    /* Use real viewport height on mobile to account for browser bars */
    min-height: calc(var(--vh, 1vh) * 100);
    /* Modern browsers: use dynamic viewport height */
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
        var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(0, 255, 255, 0.05) 50%, transparent 70%);
    animation: heroShine 6s ease-in-out infinite;
}

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

.hero-content {
    max-width: 800px;
    z-index: 2;
    position: relative;
    /* Otimizações para parallax fluido */
    will-change: transform;
    backface-visibility: hidden;
    /* Variável CSS para parallax controlado pelo JS */
    --parallax-y: 0px;
    transform: translate3d(0, var(--parallax-y), 0);
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}


@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Otimizações para títulos */
.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    /* Otimização de renderização */
    transform: translate3d(0, 0, 0);
    will-change: auto;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    /* Otimização de renderização */
    transform: translate3d(0, 0, 0);
    will-change: auto;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--neon-cyan);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 10;
}

/* Mobile fix for browser bars (Chrome, Safari, etc.) */
@media (max-width: 768px) {
    .hero-scroll {
        /* Use calc with real viewport height to avoid browser bar issues */
        bottom: calc(var(--vh, 1vh) * 10); /* 10% from bottom using real height */
        /* Enhanced visibility */
    }
}

@media (max-width: 480px) {
    .hero-scroll {
        bottom: calc(var(--vh, 1vh) * 10); /* 12% from bottom on small screens */
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Sections com mais variação */
.section {
    padding: 6rem 0;
    position: relative;
}

.dark-section {
    background: var(--section-bg);
    position: relative;
}

.dark-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 212, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(128, 0, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
    position: relative;
    z-index: 2;
}

.section-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--neon-cyan);
    position: relative;
    z-index: 2;
}

.section-description {
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-secondary);
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

/* Features Grid Melhorado */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-neon);
}

.feature-card .neon-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
}

/* Products Melhorados */
.products {
    display: grid;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.product {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.product::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 212, 255, 0.02), rgba(255, 0, 128, 0.02));
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product:hover::before {
    opacity: 1;
}

.product:hover {
    border-color: var(--neon-magenta);
    box-shadow: 0 15px 40px rgba(255, 0, 128, 0.2);
    transform: translateY(-3px);
}

.product h3 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--text-primary);
}

.product p {
    margin-bottom: 2rem;
    margin-left: 5rem;
    margin-right: 5rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
    text-align: center;
}

.product ul {
    list-style: none;
    margin-bottom: 2rem;
}

.product li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.product li .neon-icon {
    margin-top: 0.2rem;
    font-size: 1rem;
}

.product-subtitle {
    color: var(--text-primary);
    font-weight: 600;
}

/* Smart Scheduling Flow */
.smart-scheduling-flow {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--darker-bg);
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.flow-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.flow-icon {
    font-size: 2rem;
    color: var(--neon-cyan);
    filter: drop-shadow(0 0 5px var(--neon-cyan));
}

.flow-header h4 {
    font-size: 1.5rem;
    color: var(--neon-cyan);
    margin: 0;
}

.flow-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.flow-step {
    display: flex;
    align-items: flex-start;
    height: 130px;
    gap: 1rem;
    padding: 1rem;
    background: var(--card-bg);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.flow-step:hover {
    border-color: var(--neon-blue);
    box-shadow: 0 5px 15px rgba(0, 128, 255, 0.2);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, var(--neon-cyan), var(--neon-blue));
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h5 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.step-content p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.action-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.action-card {
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.action-card-create {
    background: rgba(0, 255, 0, 0.1);
    border-color: var(--neon-green);
}

.action-card-create:hover {
    background: rgba(0, 255, 0, 0.2);
    box-shadow: 0 5px 20px rgba(0, 255, 0, 0.3);
}

.action-card-cancel {
    background: rgba(255, 0, 0, 0.1);
    border-color: #ff4444;
}

.action-card-cancel:hover {
    background: rgba(255, 0, 0, 0.2);
    box-shadow: 0 5px 20px rgba(255, 68, 68, 0.3);
}

.action-card i {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.action-card-create i {
    color: var(--neon-green);
}

.action-card-cancel i {
    color: #ff4444;
}

.action-card h5 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.action-card p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
}

.time-saving-section {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.time-saving-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 255, 0.05), transparent);
    z-index: 1;
}

.time-saving-section > * {
    position: relative;
    z-index: 2;
}

.time-saving-section i {
    font-size: 2.5rem;
    color: var(--neon-cyan);
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px var(--neon-cyan));
}

.time-saving-section h4 {
    color: var(--neon-cyan);
    font-size: 1.3rem;
    margin: 0 0 1rem 0;
}

.time-saving-section p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.time-saving-section strong {
    color: var(--text-primary);
}

/* Responsive para o flow */
@media (max-width: 768px) {
    .action-cards {
        grid-template-columns: 1fr;
    }
    
    .flow-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto 1rem auto;
    }
}

/* Tech Grid com mais visual */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.tech-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tech-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 255, 136, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tech-card:hover::after {
    opacity: 1;
}

.tech-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-green);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.tech-card .neon-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.tech-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.tech-card p {
    color: var(--text-secondary);
}

/* Industries List */
.industries-list {
    list-style: none;
    max-width: 600px;
    margin: 2rem auto;
}

.industries-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.subsection-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--neon-magenta);
    text-align: center;
}

/* Contact Form Melhorado */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    position: relative;
    z-index: 2;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.02) 0%, rgba(128, 0, 255, 0.02) 100%);
    border-radius: 20px;
    z-index: -1;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
    background: rgba(26, 26, 46, 0.8);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* CTA Button Elegante e Sofisticado */
.cta-button {
    background: linear-gradient(135deg, rgba(45, 55, 72, 0.95), rgba(74, 85, 104, 0.95));
    color: var(--text-primary);
    border: 1px solid rgba(100, 255, 255, 0.2);
    padding: 1rem 2rem;
    border-radius: 16px;
    font-weight: 600;
    width: 100%;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: none;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(128, 0, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-button:hover::before {
    opacity: 1;
}

.cta-button:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(0, 212, 255, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    color: #ffffff;
}

/* Privacy Text */
.privacy-text {
    margin-top: 2rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.clients-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Footer Melhorado */
.footer {
    background: var(--darker-bg);
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--border-color);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 128, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.footer-section h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--neon-cyan);
}

.footer-brand {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.footer-brand .neon-icon {
    font-size: 2rem;
    margin-top: 0.2rem;
}

.footer-brand span {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    position: relative;
    z-index: 2;
}

/* ============================================= */
/* CSS da Nova Seção de Agendamento Inteligente  */
/* ============================================= */

/* Seção de Agendamento Inteligente Melhorada */
.product-redesigned {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    border-color: var(--border-color);
    position: relative;
}

.product-redesigned:hover {
    border-color: var(--border-glow);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.15);
}

.product-header {
    text-align: center;
    position: relative;
    z-index: 2;
}

.product-header .product-icon {
    font-size: 2.5rem;
    color: var(--neon-cyan);
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 8px var(--neon-cyan));
}

.product-header h3 {
    font-size: 2rem;
}

.product-header p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 1rem auto 0 auto;
    color: var(--text-secondary);
}

/* Container principal do fluxo de agendamento */
.intelligent-scheduling-container {
    background: var(--darker-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    width: 100%;
    position: relative;
}

.intelligent-scheduling-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.02) 0%, rgba(128, 0, 255, 0.02) 100%);
    border-radius: 16px;
    pointer-events: none;
}

.scheduling-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

/* Timeline melhorada */
.timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 2.5rem;
    z-index: 2;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--border-color), var(--border-glow), var(--border-color));
    transform: translateY(-50%);
    z-index: 0;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 30%;
    position: relative;
}

.timeline-step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 1;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-step-number {
    background: var(--neon-cyan);
    color: #0a0a0a;
    box-shadow: 0 0 15px var(--neon-cyan);
}

.timeline-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* Cards de ação melhorados */
.action-cards-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.action-card-new {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.action-card-new:hover {
    transform: translateY(-5px);
    border-color: var(--neon-magenta);
}

.action-card-new i {
    font-size: 1.8rem;
}

.action-card-new .card-content h5 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.action-card-new .card-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Cores específicas para os cards de ação */
.action-card-new.create i { color: var(--neon-green); }
.action-card-new.cancel i { color: #ff4444; }

.action-card-new.create:hover { 
    border-color: var(--neon-green); 
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.15); 
}
.action-card-new.cancel:hover { 
    border-color: #ff4444; 
    box-shadow: 0 5px 20px rgba(255, 68, 68, 0.15); 
}

/* Card de garantia melhorado */
.guarantee-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    text-align: left;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(0, 212, 255, 0.02));
    backdrop-filter: blur(10px);
    border: 1px solid var(--neon-cyan);
    border-radius: 12px;
    position: relative;
    z-index: 2;
}

.guarantee-card i {
    font-size: 2.5rem;
    color: var(--neon-cyan);
    filter: drop-shadow(0 0 10px var(--neon-cyan));
}

.guarantee-card h4 {
    font-size: 1.2rem;
    color: var(--text-primary);
}

.guarantee-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

.guarantee-card strong {
    color: var(--neon-cyan);
    font-weight: 600;
}

.product-footer {
    text-align: center;
    margin-top: 1rem;
    position: relative;
    z-index: 2;
}

/* --- Responsividade para a nova seção --- */
@media (max-width: 900px) {
    .timeline {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .timeline::before {
        left: 50%;
        right: 50%;
        top: 10%;
        bottom: 10%;
        width: 2px;
        height: 80%;
    }

    .timeline-item {
        width: 100%;
        max-width: 400px; /* Limita a largura no modo coluna */
    }
}

@media (max-width: 768px) {
    .action-cards-new {
        grid-template-columns: 1fr;
    }

    .guarantee-card, .action-card-new {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .guarantee-card .card-content, .action-card-new .card-content {
        text-align: center;
    }
}

/* Responsive Design para Tema Escuro Melhorado */
@media (max-width: 768px) {
    .nav-menu,
    .social-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid,
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .nav {
        padding: 1rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .action-cards {
        grid-template-columns: 1fr;
    }
    
    .flow-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto 1rem auto;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1.3rem;
    }
    
    .feature-card,
    .tech-card,
    .product {
        padding: 1.5rem;
    }
    
    .products .product-redesigned {
        padding: 1rem;
    }
    
    .hero-subtitle {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .timeline {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .timeline::before {
        left: 50%;
        right: 50%;
        top: 10%;
        bottom: 10%;
        width: 2px;
        height: 80%;
    }

    .timeline-item {
        width: 100%;
        max-width: 400px;
    }
    
    .action-cards-new {
        grid-template-columns: 1fr;
    }

    .guarantee-card, .action-card-new {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .guarantee-card .card-content, .action-card-new .card-content {
        text-align: center;
    }
}

/* Scroll Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    animation: fadeInUp 0.6s ease forwards;
}

/* ============================================= */
/* Nova Seção de Produtos Moderna              */
/* ============================================= */

.products-showcase {
    margin: 4rem 0;
    position: relative;
}

.products-header {
    text-align: center;
    margin-bottom: 4rem;
}

.products-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.products-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid de Produtos */
.products-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

/* Cards de Produto */
.product-card {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    border-radius: 24px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.02) 0%, rgba(128, 0, 255, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

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

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glow);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.15);
}

/* WhatsApp Card Specific */
.whatsapp-card:hover {
    border-color: rgba(37, 211, 102, 0.4);
    box-shadow: 0 20px 60px rgba(37, 211, 102, 0.15);
}

/* Calendar Card Specific */
.calendar-card:hover {
    border-color: rgba(66, 133, 244, 0.4);
    box-shadow: 0 20px 60px rgba(66, 133, 244, 0.15);
}

/* Header do Card */
.product-card-header {
    padding: 2rem 2rem 1rem;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-main-icon {
    font-size: 3rem;
    z-index: 3;
    position: relative;
}

.whatsapp-card .product-main-icon {
    color: #25d366;
}

.calendar-card .product-main-icon {
    color: #4285f4;
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.2) 0%, transparent 70%);
    animation: iconPulse 3s ease-in-out infinite;
}

.calendar-glow {
    background: radial-gradient(circle, rgba(66, 133, 244, 0.2) 0%, transparent 70%);
}

@keyframes iconPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

.product-badge {
    padding: 0.5rem 1rem;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: 20px;
    color: #25d366;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.calendar-badge {
    background: rgba(66, 133, 244, 0.1);
    border-color: rgba(66, 133, 244, 0.3);
    color: #4285f4;
}

/* Conteúdo do Card */
.product-card-content {
    padding: 0 2rem 2rem;
    flex: 1;
    position: relative;
    z-index: 2;
}

.product-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.highlight-green {
    color: #25d366;
    font-weight: 800;
}

.highlight-blue {
    color: #4285f4;
    font-weight: 800;
}

.product-card-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.5;
}

/* Lista de Features */
.features-list {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(37, 211, 102, 0.05);
    border-color: rgba(37, 211, 102, 0.2);
    transform: translateX(5px);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.2), rgba(37, 211, 102, 0.1));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: #25d366;
    font-size: 1.2rem;
}

.feature-content h5 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.feature-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* Stats do Produto */
.product-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #25d366;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Fluxo de Integração */
.integration-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.flow-step {
    text-align: center;
    flex: 1;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1rem;
}

.step-number {
    position: absolute;
    top: -12px;
    left: -12px;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #4285f4, #34a853);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 2px 8px rgba(66, 133, 244, 0.4);
    z-index: 10;
}

.step-content {
    padding-top: 0.5rem;
}

.step-content h6 {
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin: 0;
    line-height: 1.4;
}

.flow-arrow {
    color: #4285f4;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0.5rem;
    z-index: 5;
}

/* Grid de Benefícios */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(66, 133, 244, 0.05);
    border-color: rgba(66, 133, 244, 0.2);
}

.benefit-item i {
    color: #4285f4;
    font-size: 1rem;
}

.benefit-item span {
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Footer do Card */
.product-card-footer {
    padding: 0 2rem 2rem;
    position: relative;
    z-index: 2;
}

.product-cta-button {
    width: 100%;
    padding: 1rem 2rem;
    border: none;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-cta-button.primary {
    background: linear-gradient(135deg, #25d366, #20c05c);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.product-cta-button.primary:hover {
    background: linear-gradient(135deg, #20c05c, #1ea952);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

.product-cta-button.secondary {
    background: linear-gradient(135deg, #4285f4, #3367d6);
    color: white;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

.product-cta-button.secondary:hover {
    background: linear-gradient(135deg, #3367d6, #2c5bc6);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
    transform: translateY(-2px);
}

/* Conector de Integração */
.integration-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 200px;
}

.connector-line {
    width: 2px;
    height: 100px;
    background: linear-gradient(180deg, rgba(37, 211, 102, 0.6), rgba(66, 133, 244, 0.6));
    position: relative;
}

.connector-line::before,
.connector-line::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
}

.connector-line::before {
    top: -4px;
    background: #25d366;
    box-shadow: 0 0 10px rgba(37, 211, 102, 0.5);
}

.connector-line::after {
    bottom: -4px;
    background: #4285f4;
    box-shadow: 0 0 10px rgba(66, 133, 244, 0.5);
}

.connector-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 2px solid var(--border-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: connectorPulse 2s ease-in-out infinite;
}

.connector-icon i {
    color: var(--neon-cyan);
    font-size: 1.5rem;
}

@keyframes connectorPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

.connector-text {
    position: absolute;
    bottom: -30px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    white-space: nowrap;
}

/* CTA Inferior */
.products-bottom-cta {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: space-between;
    padding: 3rem;
    background: var(--darker-bg);
    backdrop-filter: blur(15px);
    border-radius: 24px;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.products-bottom-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(255, 0, 128, 0.05) 100%);
}

.cta-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.cta-content h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Mega CTA Button Elegante */
.mega-cta-button {
    padding: 1.8rem 3rem;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(51, 65, 85, 0.95));
    border: 1px solid rgba(100, 255, 255, 0.25);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    backdrop-filter: blur(15px);
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.08) inset;
    overflow: hidden;
}

.mega-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(128, 0, 255, 0.08));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mega-cta-button:hover::before {
    opacity: 1;
}

.mega-cta-button:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 
        0 16px 40px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(0, 212, 255, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.15) inset;
    color: #ffffff;
}

.cta-text {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0.3px;
    line-height: 1.2;
}

.cta-subtext {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.85;
    color: var(--text-secondary);
}

.mega-cta-button:hover .cta-subtext {
    opacity: 1;
    color: rgba(255, 255, 255, 0.9);
}

.mega-cta-button i {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.mega-cta-button:hover i {
    opacity: 1;
    transform: translateY(-50%) translateX(3px);
    color: var(--neon-cyan);
}

/* Efeito de brilho sutil */
.mega-cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.mega-cta-button:hover::after {
    left: 100%;
}

/* Responsividade para a Nova Seção de Produtos */
@media (max-width: 1024px) {
    .products-grid {
        gap: 2rem;
    }
    
    .integration-connector {
        height: 150px;
    }
    
    .connector-line {
        height: 80px;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .integration-connector {
        height: 100px;
        flex-direction: row;
        justify-content: center;
    }
    
    .connector-line {
        width: 100px;
        height: 2px;
        background: linear-gradient(90deg, rgba(37, 211, 102, 0.6), rgba(66, 133, 244, 0.6));
    }
    
    .connector-line::before,
    .connector-line::after {
        width: 8px;
        height: 8px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .connector-line::before {
        left: -4px;
    }
    
    .connector-line::after {
        right: -4px;
        left: auto;
    }
    
    .connector-text {
        bottom: auto;
        top: -35px;
        font-size: 0.8rem;
    }
    
    .products-bottom-cta {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        padding: 2rem;
    }
    
    .mega-cta-button {
        padding: 1.25rem 2rem;
    }
    
    .mega-cta-button i {
        position: static;
        transform: none;
        margin-left: 0.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .product-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .stat-item {
        padding: 0.75rem;
    }
}

@media (max-width: 480px) {
    .products-showcase {
        margin: 2rem 0;
    }
    
    .products-header {
        margin-bottom: 2rem;
    }
    
    .products-title {
        font-size: 2rem;
    }
    
    .products-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .product-card {
        border-radius: 20px;
    }
    
    .product-card-header {
        padding: 1.5rem 1.5rem 1rem;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .product-card-content {
        padding: 0 1.5rem 1.5rem;
    }
    
    .product-card-title {
        font-size: 1.5rem;
    }
    
    .product-card-subtitle {
        font-size: 0.9rem;
    }
    
    .feature-item {
        padding: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .feature-content h5 {
        font-size: 1rem;
    }
    
    .feature-content p {
        font-size: 0.85rem;
    }
    
    .integration-flow {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }
    
    .product-card-footer {
        padding: 0 1.5rem 1.5rem;
    }
    
    .product-cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .products-bottom-cta {
        padding: 1.5rem;
    }
    
    .cta-content h4 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .mega-cta-button {
        padding: 1rem 1.5rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
    
    .cta-subtext {
        font-size: 0.8rem;
    }
}