/* ============================================
   AppYper - Landing Page Styles
   Design moderno inspirado em Shopbot/Leadster
   ============================================ */

:root {
    /* Cores Principais */
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #8b5cf6;
    
    /* Cores de Destaque */
    --green: #10b981;
    --green-dark: #059669;
    --green-light: #34d399;
    --orange: #f97316;
    --orange-dark: #ea580c;
    --orange-light: #fb923c;
    --blue: #3b82f6;
    --blue-dark: #2563eb;
    --blue-light: #60a5fa;
    --teal: #14b8a6;
    --teal-dark: #0d9488;
    --yellow: #eab308;
    --yellow-dark: #ca8a04;
    --purple: #8b5cf6;
    --purple-dark: #7c3aed;
    
    /* Neutros */
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    --white: #ffffff;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-hero: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #4c1d95 100%);
    --gradient-green: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-orange: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    --gradient-blue: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    --gradient-purple: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    
    /* Sombras */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Tipografia */
    --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Transições */
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

img {
    max-width: 100%;
    height: auto;
}

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

ul {
    list-style: none;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 0;
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.logo-text .highlight {
    color: var(--primary-light);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 15px;
    position: relative;
}

.nav-link:hover {
    color: var(--white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-light);
    transition: var(--transition);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-login {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    padding: 8px 16px;
}

.btn-login:hover {
    color: var(--white);
}

.btn-primary-nav {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 14px;
}

.btn-primary-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(99, 102, 241, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(59, 130, 246, 0.2) 0%, transparent 40%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.gradient-text {
    background: linear-gradient(135deg, #a5b4fc 0%, #fbbf24 50%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    max-width: 540px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
    transition: var(--transition);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 16px;
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-mockup {
    position: relative;
}

.mockup-phone {
    width: 320px;
    height: 640px;
    background: var(--gray-900);
    border-radius: 40px;
    padding: 12px;
    box-shadow: var(--shadow-2xl), 0 0 60px rgba(99, 102, 241, 0.3);
    margin: 0 auto;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #075e54 0%, #128c7e 100%);
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.chat-header {
    background: #075e54;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #075e54;
    font-size: 18px;
}

.chat-info {
    flex: 1;
}

.chat-name {
    display: block;
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
}

.chat-status {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #25d366;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.chat-messages {
    flex: 1;
    padding: 16px;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") #ece5dd;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow: hidden;
}

.message {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.4;
    position: relative;
}

.message.received {
    background: var(--white);
    color: var(--gray-800);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.message.sent {
    background: #dcf8c6;
    color: var(--gray-800);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.message p {
    margin-bottom: 4px;
}

.message .time {
    font-size: 11px;
    color: var(--gray-500);
    display: block;
    text-align: right;
}

.menu-options {
    font-size: 13px;
    line-height: 1.6;
    margin-top: 8px;
}

.message.typing {
    padding: 14px 18px;
}

.typing-indicator {
    display: flex;
    gap: 4px;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: var(--gray-400);
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out;
}

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

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

/* Floating Cards */
.floating-card {
    position: absolute;
    background: var(--white);
    padding: 14px 18px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 6s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 80px;
    left: -60px;
    animation-delay: 0s;
}

.floating-card.card-2 {
    top: 200px;
    right: -40px;
    animation-delay: 2s;
}

.floating-card.card-3 {
    bottom: 100px;
    left: -40px;
    animation-delay: 4s;
}

.floating-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
}

.floating-icon.green {
    background: var(--gradient-green);
}

.floating-icon.blue {
    background: var(--gradient-blue);
}

.floating-icon.purple {
    background: var(--gradient-purple);
}

.floating-content {
    display: flex;
    flex-direction: column;
}

.floating-title {
    font-weight: 700;
    font-size: 15px;
    color: var(--gray-900);
}

.floating-subtitle {
    font-size: 13px;
    color: var(--gray-500);
}

/* ============================================
   SOCIAL PROOF
   ============================================ */
.social-proof {
    background: var(--gray-50);
    padding: 40px 0;
    border-bottom: 1px solid var(--gray-200);
}

.proof-content {
    text-align: center;
}

.proof-text {
    color: var(--gray-600);
    font-size: 15px;
    margin-bottom: 24px;
}

.proof-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray-400);
}

.proof-item i {
    font-size: 32px;
}

.proof-item span {
    font-size: 13px;
    font-weight: 500;
}

/* ============================================
   MODULE SECTIONS (Common Styles)
   ============================================ */
.module-section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.whatsapp-badge {
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
}

.delivery-badge {
    background: rgba(249, 115, 22, 0.1);
    color: var(--orange);
}

.websites-badge {
    background: rgba(59, 130, 246, 0.1);
    color: var(--blue);
}

.produtos-badge {
    background: rgba(20, 184, 166, 0.1);
    color: var(--teal);
}

.marketplace-badge {
    background: rgba(234, 179, 8, 0.1);
    color: var(--yellow-dark);
}

.plans-badge {
    background: rgba(139, 92, 246, 0.1);
    color: var(--purple);
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 16px;
}

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

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

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

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

.highlight-yellow {
    color: var(--yellow-dark);
}

.section-description {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ============================================
   WHATSAPP SECTION
   ============================================ */
.whatsapp-section {
    background: var(--white);
}

.whatsapp-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    background: var(--gray-100);
    padding: 6px;
    border-radius: var(--radius-full);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: none;
    background: transparent;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-600);
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover {
    color: var(--gray-900);
}

.tab-btn.active {
    background: var(--white);
    color: var(--gray-900);
    box-shadow: var(--shadow);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-text h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.content-text > p {
    color: var(--gray-600);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.price-tag {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.price-tag.free {
    background: rgba(16, 185, 129, 0.1);
}

.price-tag.premium {
    background: rgba(139, 92, 246, 0.1);
}

.price-tag .price {
    font-size: 32px;
    font-weight: 800;
    color: var(--gray-900);
}

.price-tag .price-old {
    font-size: 18px;
    color: var(--gray-400);
    text-decoration: line-through;
}

.price-tag .period {
    font-size: 14px;
    color: var(--gray-500);
}

.feature-list {
    margin-bottom: 32px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: var(--gray-700);
}

.feature-list li i {
    color: var(--green);
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.btn-section {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 15px;
    color: var(--white);
    transition: var(--transition);
}

.btn-section.green {
    background: var(--gradient-green);
}

.btn-section.purple {
    background: var(--gradient-purple);
}

.btn-section.orange {
    background: var(--gradient-orange);
}

.btn-section:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Visual Card */
.visual-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.visual-card.premium-card {
    border-color: var(--purple-light);
}

.visual-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}

.visual-title {
    font-weight: 600;
    color: var(--gray-900);
}

.visual-badge {
    padding: 4px 12px;
    background: var(--green-light);
    color: var(--green-dark);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
}

.visual-badge.premium {
    background: var(--purple-light);
    color: var(--white);
}

.visual-body {
    padding: 24px;
}

.menu-demo {
    background: #ece5dd;
    padding: 16px;
    border-radius: var(--radius-md);
}

.menu-message {
    background: var(--white);
    padding: 14px;
    border-radius: var(--radius-md);
    font-size: 14px;
    color: var(--gray-800);
}

.menu-message p {
    margin-bottom: 8px;
}

.menu-buttons {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 12px;
}

.menu-buttons button {
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    padding: 10px 14px;
    border-radius: var(--radius);
    font-size: 13px;
    color: var(--gray-700);
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.menu-buttons button:hover {
    background: var(--gray-200);
}

/* IA Demo */
.ia-demo {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ia-message {
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 14px;
}

.ia-message.user {
    background: #dcf8c6;
    color: var(--gray-800);
    align-self: flex-end;
    max-width: 80%;
}

.ia-message.bot {
    background: var(--white);
    border: 1px solid var(--gray-200);
    display: flex;
    gap: 12px;
    align-self: flex-start;
}

.bot-avatar {
    width: 36px;
    height: 36px;
    background: var(--gradient-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    flex-shrink: 0;
}

.bot-content p {
    color: var(--gray-700);
    line-height: 1.5;
    margin-bottom: 8px;
}

.ia-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: var(--purple);
    background: rgba(139, 92, 246, 0.1);
    padding: 4px 8px;
    border-radius: var(--radius);
}

/* Painel de Atendimento em Tempo Real */
.whatsapp-panel-section {
    margin-top: 80px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(37, 211, 102, 0.15);
}

.panel-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    text-align: left;
}

.panel-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--green) 0%, var(--purple) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    flex-shrink: 0;
}

.panel-intro h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.panel-intro p {
    color: var(--gray-600);
    font-size: 1rem;
}

.panel-modes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.panel-mode {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
    position: relative;
}

.panel-mode:hover {
    border-color: var(--green);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.panel-mode.featured {
    border-color: var(--purple);
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.03) 0%, var(--white) 100%);
}

.panel-mode.featured:hover {
    border-color: var(--purple);
}

.mode-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}

.mode-icon.auto {
    background: rgba(37, 211, 102, 0.15);
    color: var(--green);
}

.mode-icon.copilot {
    background: rgba(139, 92, 246, 0.15);
    color: var(--purple);
}

.mode-icon.human {
    background: rgba(59, 130, 246, 0.15);
    color: var(--blue);
}

.mode-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.mode-content p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.5;
}

.mode-badge {
    position: absolute;
    top: 12px;
    right: 12px;
}

.mode-badge span {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    background: var(--gray-100);
    color: var(--gray-600);
}

.panel-mode.featured .mode-badge span {
    background: var(--purple);
    color: white;
}

.panel-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.panel-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    font-size: 0.9rem;
    color: var(--gray-700);
    font-weight: 500;
}

.panel-feature i {
    color: var(--green);
    font-size: 1.1rem;
}

@media (max-width: 1024px) {
    .panel-modes {
        grid-template-columns: 1fr;
    }
    
    .panel-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .whatsapp-panel-section {
        padding: 24px;
        margin-top: 60px;
    }
    
    .panel-header {
        flex-direction: column;
        text-align: center;
    }
    
    .panel-features-grid {
        grid-template-columns: 1fr;
    }
    
    .panel-intro h3 {
        font-size: 1.25rem;
    }
}

/* Base de Conhecimento e Personalização da IA */
.ia-knowledge-section {
    margin-top: 40px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(37, 211, 102, 0.05) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(139, 92, 246, 0.15);
}

.knowledge-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.knowledge-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--purple) 0%, var(--green) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.knowledge-intro h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.knowledge-intro p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

.knowledge-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.knowledge-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.knowledge-card:hover {
    border-color: var(--purple);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.knowledge-card.featured {
    border-color: var(--purple);
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.05) 0%, var(--white) 100%);
}

.k-icon {
    width: 40px;
    height: 40px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
    font-size: 18px;
    margin-bottom: 12px;
}

.knowledge-card.featured .k-icon {
    background: var(--purple);
    color: white;
}

.knowledge-card h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 6px;
}

.knowledge-card p {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.knowledge-benefits {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.kb-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--gray-700);
    font-weight: 500;
}

.kb-item i {
    color: var(--purple);
    font-size: 1rem;
}

@media (max-width: 1024px) {
    .knowledge-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ia-knowledge-section {
        padding: 20px;
        margin-top: 32px;
    }
    
    .knowledge-header {
        flex-direction: column;
        text-align: center;
    }
    
    .knowledge-grid {
        grid-template-columns: 1fr;
    }
    
    .knowledge-benefits {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}

/* ============================================
   DELIVERY SECTION
   ============================================ */
.delivery-section {
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.delivery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.delivery-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.delivery-feature {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.delivery-feature:hover {
    border-color: var(--orange-light);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.delivery-feature .feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.delivery-feature .feature-icon.orange {
    background: rgba(249, 115, 22, 0.1);
    color: var(--orange);
}

.delivery-feature .feature-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.delivery-feature .feature-content p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.5;
}

/* Delivery Visual */
.delivery-visual {
    position: relative;
}

.delivery-mockup {
    position: relative;
}

.delivery-phone {
    width: 280px;
    height: 560px;
    background: var(--gray-900);
    border-radius: 36px;
    padding: 10px;
    box-shadow: var(--shadow-2xl);
    margin: 0 auto;
}

.delivery-screen {
    width: 100%;
    height: 100%;
    background: #ece5dd;
    border-radius: 28px;
    overflow: hidden;
}

.delivery-header {
    background: #075e54;
    padding: 14px 16px;
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
}

.delivery-chat {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.d-message {
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13px;
    line-height: 1.4;
}

.d-message.received {
    background: var(--white);
    color: var(--gray-800);
    max-width: 90%;
}

.d-message.sent {
    background: #dcf8c6;
    color: var(--gray-800);
    align-self: flex-end;
    padding: 8px 14px;
}

.d-options, .d-categories {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 8px;
    font-size: 12px;
}

.delivery-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 16px;
    width: 200px;
}

.delivery-card.card-order {
    top: 40px;
    right: 0;
    animation: float 6s ease-in-out infinite;
}

.order-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 12px;
    color: var(--orange);
    font-weight: 600;
    font-size: 13px;
}

.order-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--gray-600);
}

.order-total {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-900);
    padding-top: 8px;
    border-top: 1px solid var(--gray-200);
    margin-top: 4px;
}

/* Canais de Pedido */
.delivery-channels {
    margin-top: 80px;
    margin-bottom: 60px;
}

.channels-header {
    text-align: center;
    margin-bottom: 40px;
}

.channels-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.channels-header p {
    color: var(--gray-600);
    font-size: 1.1rem;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.channel-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 32px;
    border: 2px solid var(--gray-200);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.channel-card:hover {
    border-color: var(--orange);
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.channel-card.featured {
    border-color: var(--orange);
    background: linear-gradient(180deg, rgba(249, 115, 22, 0.03) 0%, var(--white) 100%);
}

.channel-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
}

.channel-icon.whatsapp {
    background: rgba(37, 211, 102, 0.15);
    color: var(--green);
}

.channel-icon.mobile {
    background: rgba(139, 92, 246, 0.15);
    color: var(--purple);
}

.channel-icon.website {
    background: rgba(249, 115, 22, 0.15);
    color: var(--orange);
}

.channel-icon.coupon {
    background: rgba(236, 72, 153, 0.15);
    color: #EC4899;
}

.channel-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.channel-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
}

.channel-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    background: var(--gray-100);
    color: var(--gray-600);
}

.channel-tag.highlight {
    background: var(--orange);
    color: white;
}

.channels-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.05) 0%, rgba(251, 146, 60, 0.05) 100%);
    border-radius: var(--radius-xl);
    padding: 24px 32px;
    border: 1px solid rgba(249, 115, 22, 0.15);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.benefit-item i {
    color: var(--orange);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.benefit-item strong {
    color: var(--gray-900);
}

@media (max-width: 1024px) {
    .channels-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .channels-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .channels-grid {
        grid-template-columns: 1fr;
    }
    .delivery-channels {
        margin-top: 60px;
        margin-bottom: 40px;
    }
    
    .channels-header h3 {
        font-size: 1.5rem;
    }
    
    .channels-benefits {
        grid-template-columns: 1fr;
        padding: 20px;
    }
}

/* Delivery CTA */
.delivery-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: var(--radius-xl);
    padding: 32px 40px;
}

.delivery-cta .cta-content {
    display: flex;
    align-items: center;
    gap: 32px;
}

.cta-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cta-price .old-price {
    font-size: 14px;
    color: var(--gray-400);
    text-decoration: line-through;
}

.cta-price .current-price {
    font-size: 36px;
    font-weight: 800;
    color: var(--orange);
}

.cta-price .current-price small {
    font-size: 16px;
    font-weight: 500;
}

.cta-price .discount-label {
    background: var(--orange);
    color: var(--white);
    padding: 4px 10px;
    border-radius: var(--radius);
    font-size: 12px;
    font-weight: 600;
    margin-top: 4px;
}

.cta-info h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.cta-info p {
    font-size: 14px;
    color: var(--gray-600);
}

/* ============================================
   WEBSITES SECTION
   ============================================ */
.websites-section {
    background: var(--white);
}

.websites-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.showcase-feature {
    display: flex;
    gap: 14px;
    padding: 20px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.showcase-feature:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.sf-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.sf-icon.blue {
    background: rgba(59, 130, 246, 0.1);
    color: var(--blue);
}

.sf-content h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.sf-content p {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.4;
}

/* Browser Mockup */
.showcase-visual {
    position: relative;
}

.browser-mockup {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.browser-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    background: var(--gray-100);
    border-bottom: 1px solid var(--gray-200);
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.browser-dots span:nth-child(1) {
    background: #ff5f56;
}

.browser-dots span:nth-child(2) {
    background: #ffbd2e;
}

.browser-dots span:nth-child(3) {
    background: #27ca40;
}

.browser-url {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 8px 14px;
    border-radius: var(--radius);
    font-size: 13px;
    color: var(--gray-600);
}

.browser-url i {
    color: var(--green);
}

.browser-content {
    padding: 0;
}

.site-preview {
    min-height: 300px;
}

.preview-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
}

.preview-logo {
    font-weight: 700;
    color: var(--gray-900);
}

.preview-links {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--gray-600);
}

.preview-hero {
    background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
    padding: 40px 20px;
    text-align: center;
    color: var(--white);
}

.preview-hero h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.preview-hero p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 16px;
}

.preview-hero button {
    background: var(--white);
    color: var(--blue);
    border: none;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
}

.preview-cards {
    display: flex;
    gap: 12px;
    padding: 20px;
    background: var(--gray-50);
}

.p-card {
    flex: 1;
    background: var(--white);
    padding: 16px;
    border-radius: var(--radius);
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-700);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.p-card i {
    font-size: 20px;
    color: var(--blue);
}

.website-badge-float {
    position: absolute;
    bottom: 20px;
    right: -20px;
    background: var(--green);
    color: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
}

/* Recursos Completos do Módulo Websites */
.websites-power-section {
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(59, 130, 246, 0.15);
}

.websites-power-section .power-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
}

.websites-power-section .power-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    flex-shrink: 0;
}

.websites-power-section .power-intro h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.websites-power-section .power-intro p {
    color: var(--gray-600);
    font-size: 1rem;
}

/* Temas Section */
.websites-themes {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 32px;
    border: 1px solid var(--gray-200);
}

.websites-themes h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.websites-themes h4 i {
    color: var(--blue);
}

.websites-themes p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 16px;
}

.themes-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.themes-tags span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--blue);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
}

.themes-tags span i {
    font-size: 0.75rem;
}

/* Páginas Grid */
.websites-pages {
    margin-bottom: 32px;
}

.pages-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.pages-title i {
    color: var(--blue);
}

.pages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.page-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.page-item:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow-md);
}

.page-item.featured {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%);
    border-color: var(--blue);
}

.page-icon {
    width: 40px;
    height: 40px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: 18px;
    flex-shrink: 0;
}

.page-item.featured .page-icon {
    background: var(--blue);
    color: white;
}

.page-content h5 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.page-content p {
    font-size: 0.8rem;
    color: var(--gray-500);
    line-height: 1.4;
}

/* Benefícios Websites */
.websites-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.benefit-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: var(--blue);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.benefit-card i {
    font-size: 28px;
    color: var(--blue);
    margin-bottom: 12px;
}

.benefit-card h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.benefit-card p {
    font-size: 0.8rem;
    color: var(--gray-500);
}

@media (max-width: 1024px) {
    .pages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .websites-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .websites-power-section {
        padding: 24px;
        margin-top: 40px;
    }
    
    .websites-power-section .power-header {
        flex-direction: column;
        text-align: center;
    }
    
    .pages-grid {
        grid-template-columns: 1fr;
    }
    
    .websites-benefits {
        grid-template-columns: 1fr;
    }
    
    .themes-tags {
        justify-content: center;
    }
    
    .websites-power-section .power-intro h3 {
        font-size: 1.25rem;
    }
}

.websites-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    margin-top: 48px;
    font-size: 14px;
    color: var(--gray-600);
}

.websites-note i {
    color: var(--blue);
    font-size: 18px;
}

/* ============================================
   PRODUTOS SECTION
   ============================================ */
.produtos-section {
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.produto-card {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: var(--transition);
}

.produto-card:hover {
    border-color: var(--teal-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.produto-icon {
    width: 60px;
    height: 60px;
    background: rgba(20, 184, 166, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--teal);
    margin: 0 auto 16px;
}

.produto-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.produto-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.5;
}

.produtos-integration {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 40px;
    text-align: center;
}

.integration-header h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.integration-header p {
    color: var(--gray-500);
    font-size: 14px;
    margin-bottom: 24px;
}

.integration-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.int-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 32px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.int-logo:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.int-logo i {
    font-size: 32px;
    color: var(--teal);
}

.int-logo span {
    font-weight: 600;
    color: var(--gray-700);
    font-size: 14px;
}

.int-logo.coming {
    position: relative;
}

.int-logo.coming i {
    color: var(--gray-400);
}

.int-logo.coming small {
    font-size: 10px;
    color: var(--gray-500);
    background: var(--gray-200);
    padding: 2px 8px;
    border-radius: var(--radius);
}

/* Potência dos Módulos Integrados */
.produtos-power-section {
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(20, 184, 166, 0.15);
}

.power-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.power-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--teal) 0%, var(--blue) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    flex-shrink: 0;
}

.power-intro h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.power-intro p {
    color: var(--gray-600);
    font-size: 1rem;
}

.power-intro strong {
    color: var(--teal);
}

.power-description {
    background: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    margin-bottom: 32px;
    border-left: 4px solid var(--teal);
}

.power-description p {
    color: var(--gray-700);
    line-height: 1.7;
    font-size: 1rem;
}

.power-description strong {
    color: var(--gray-900);
}

/* Canais de Venda de Produtos */
.produtos-channels {
    margin-bottom: 32px;
}

.channels-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.channels-title i {
    color: var(--teal);
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.channel-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
    position: relative;
}

.channel-card:hover {
    border-color: var(--teal);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.channel-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 16px;
}

.channel-icon.whatsapp {
    background: rgba(37, 211, 102, 0.15);
    color: var(--green);
}

.channel-icon.catalog {
    background: rgba(139, 92, 246, 0.15);
    color: var(--purple);
}

.channel-icon.website {
    background: rgba(59, 130, 246, 0.15);
    color: var(--blue);
}

.channel-icon.google {
    background: rgba(234, 67, 53, 0.15);
    color: #EA4335;
}

.channel-card h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.channel-card p {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: 12px;
}

.channel-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    background: var(--teal);
    color: white;
}

/* Preparado para o Futuro */
.produtos-future {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 32px;
}

.future-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    color: var(--teal-light);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.future-badge i {
    font-size: 1rem;
}

.future-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.future-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.future-item > i {
    font-size: 28px;
    color: var(--teal-light);
    flex-shrink: 0;
}

.future-item h5 {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.future-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Benefícios Inclusos Produtos */
.produtos-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.produtos-benefits .benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    font-size: 0.9rem;
    color: var(--gray-700);
    font-weight: 500;
}

.produtos-benefits .benefit-item i {
    color: var(--teal);
    font-size: 1.1rem;
}

@media (max-width: 1024px) {
    .channels-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .future-content {
        grid-template-columns: 1fr;
    }
    
    .produtos-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .produtos-power-section {
        padding: 24px;
        margin-top: 40px;
    }
    
    .power-header {
        flex-direction: column;
        text-align: center;
    }
    
    .channels-grid {
        grid-template-columns: 1fr;
    }
    
    .produtos-benefits {
        grid-template-columns: 1fr;
    }
    
    .power-intro h3 {
        font-size: 1.25rem;
    }
}

/* ============================================
   MARKETPLACE SECTION
   ============================================ */
.marketplace-section {
    background: var(--white);
    padding-bottom: 80px;
}

.marketplace-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.marketplace-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mp-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.mp-feature:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.mp-feature > i {
    font-size: 24px;
    color: var(--yellow-dark);
    flex-shrink: 0;
}

.mp-feature h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.mp-feature p {
    font-size: 14px;
    color: var(--gray-600);
}

.marketplace-logo-section {
    text-align: center;
    padding: 40px;
    background: var(--gray-50);
    border-radius: var(--radius-xl);
}

.ml-logo {
    max-width: 200px;
    margin-bottom: 16px;
}

.marketplace-logo-section > p {
    color: var(--gray-600);
    font-size: 14px;
    margin-bottom: 16px;
}

.mp-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--green-light);
    color: var(--green-dark);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 14px;
}

/* ============================================
   PLANS SECTION
   ============================================ */
.plans-section {
    background: linear-gradient(180deg, var(--gray-50) 0%, #eef2ff 100%);
    padding: 100px 0;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.plan-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    position: relative;
    transition: var(--transition);
}

.plan-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.plan-card.featured {
    border: 2px solid var(--orange);
    transform: scale(1.02);
}

.plan-card.featured:hover {
    transform: scale(1.04);
}

.plan-ribbon {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: var(--white);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.plan-header {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 24px;
}

.plan-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
}

.plan-badge.free {
    background: rgba(16, 185, 129, 0.1);
    color: var(--green);
}

.plan-badge.starter {
    background: rgba(139, 92, 246, 0.1);
    color: var(--purple);
}

.plan-badge.delivery {
    background: rgba(249, 115, 22, 0.1);
    color: var(--orange);
}

.plan-badge.marketplace {
    background: rgba(234, 179, 8, 0.1);
    color: var(--yellow-dark);
}

.plan-name {
    font-size: 24px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap;
}

.plan-price .price-old {
    font-size: 14px;
    color: var(--gray-400);
    text-decoration: line-through;
    width: 100%;
}

.plan-price .price {
    font-size: 40px;
    font-weight: 800;
    color: var(--gray-900);
}

.plan-price .period {
    font-size: 14px;
    color: var(--gray-500);
}

.plan-desc {
    font-size: 14px;
    color: var(--gray-500);
    margin-top: 8px;
}

.plan-features {
    margin-bottom: 24px;
}

.plan-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--gray-700);
}

.plan-feature i {
    font-size: 16px;
    color: var(--green);
    flex-shrink: 0;
    margin-top: 2px;
}

.plan-feature.highlight {
    color: var(--primary);
}

.plan-feature.disabled {
    color: var(--gray-400);
}

.plan-feature.disabled i {
    color: var(--gray-300);
}

/* Módulos dentro dos planos */
.plan-module {
    margin-bottom: 16px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
}

.plan-module:last-child {
    margin-bottom: 0;
}

.plan-module-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
}

.plan-module-header i {
    font-size: 14px;
}

.plan-module-header.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.plan-module-header.ia {
    background: var(--gradient-purple);
}

.plan-module-header.delivery {
    background: var(--gradient-orange);
}

.plan-module-header.websites {
    background: linear-gradient(135deg, #3B82F6, #1D4ED8);
}

.plan-module-header.marketplace {
    background: linear-gradient(135deg, #10B981, #059669);
}

.plan-module-header.produtos {
    background: linear-gradient(135deg, #14B8A6, #0D9488);
}

.plan-module-features {
    padding: 8px 12px;
}

.plan-module-features .plan-feature {
    padding: 6px 0;
    font-size: 13px;
}

.plan-module-features .plan-feature i {
    font-size: 14px;
}

/* Card featured ajustes para módulos */
.plan-card.featured .plan-module {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(249, 115, 22, 0.2);
}

.plan-btn {
    display: block;
    width: 100%;
    padding: 14px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    transition: var(--transition);
}

.plan-btn.outline {
    border: 2px solid var(--gray-300);
    color: var(--gray-700);
    background: transparent;
}

.plan-btn.outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.plan-btn.primary {
    background: var(--gradient-purple);
    color: var(--white);
}

.plan-btn.primary:hover {
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
    transform: translateY(-2px);
}

.plan-btn.featured-btn {
    background: var(--gradient-orange);
    color: var(--white);
}

.plan-btn.featured-btn:hover {
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
    transform: translateY(-2px);
}

.plan-btn.secondary {
    background: linear-gradient(135deg, #eab308 0%, #ca8a04 100%);
    color: var(--white);
}

.plan-btn.secondary:hover {
    box-shadow: 0 4px 12px rgba(234, 179, 8, 0.4);
    transform: translateY(-2px);
}

.plans-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-600);
}

.plans-note i {
    color: var(--primary);
}

/* ============================================
   REGISTER SECTION
   ============================================ */
.register-section {
    background: var(--gradient-hero);
    padding: 100px 0;
}

.register-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.register-info {
    color: var(--white);
}

.register-info h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
}

.register-info > p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 40px;
}

.register-benefits {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit {
    display: flex;
    gap: 16px;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-light);
    flex-shrink: 0;
}

.benefit-text h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 4px;
}

.benefit-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Register Form */
.register-form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-2xl);
}

.form-header {
    text-align: center;
    margin-bottom: 32px;
}

.form-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.form-header p {
    font-size: 14px;
    color: var(--gray-600);
}

.form-header a {
    color: var(--primary);
    font-weight: 600;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    font-size: 18px;
}

.input-wrapper input {
    width: 100%;
    padding: 14px 14px 14px 44px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 15px;
    color: var(--gray-900);
    transition: var(--transition);
}

.input-wrapper input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.input-wrapper input::placeholder {
    color: var(--gray-400);
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 24px;
}

.form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
}

.form-check label {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.4;
}

.form-check a {
    color: var(--primary);
}

.alert {
    padding: 12px 16px;
    border-radius: var(--radius);
    margin-bottom: 16px;
    font-size: 14px;
}

.alert.hidden {
    display: none;
}

.alert.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--green-dark);
    border: 1px solid var(--green-light);
}

.alert.error {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid #fca5a5;
}

.btn-register {
    width: 100%;
    padding: 16px 24px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-register:hover {
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.4);
    transform: translateY(-2px);
}

.btn-register:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 13px;
    color: var(--gray-500);
}

.form-footer i {
    color: var(--green);
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
    background: linear-gradient(135deg, var(--primary) 0%, var(--purple) 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: var(--white);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 17px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-2xl);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark);
    padding: 80px 0 40px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand {
    padding-right: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: var(--transition);
}

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

.footer-links h4 {
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
}

.footer-bottom i {
    color: #ef4444;
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes typing {
    0%, 100% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .plan-card.featured {
        transform: none;
    }
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .content-grid,
    .delivery-grid,
    .websites-showcase,
    .marketplace-content {
        grid-template-columns: 1fr;
    }
    
    .content-visual,
    .delivery-visual,
    .showcase-visual {
        order: -1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-brand {
        grid-column: span 2;
        padding-right: 0;
    }
    
    .register-wrapper {
        grid-template-columns: 1fr;
    }
    
    .register-info {
        text-align: center;
    }
    
    .register-benefits {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark);
        padding: 20px;
        flex-direction: column;
        gap: 16px;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-actions .btn-primary-nav {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .produtos-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .showcase-features {
        grid-template-columns: 1fr;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .delivery-cta {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    
    .delivery-cta .cta-content {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        grid-column: 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 30px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .hero-ctas {
        flex-direction: column;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .produtos-grid {
        grid-template-columns: 1fr;
    }
    
    .integration-logos {
        flex-direction: column;
        gap: 16px;
    }
    
    .whatsapp-tabs {
        flex-direction: column;
        width: 100%;
    }
    
    .tab-btn {
        justify-content: center;
    }
    
    .register-form-card {
        padding: 24px;
    }
}
