:root {
  --bg-dark: #0f2038;
  --bg-light: #152d4d;
  --accent: #e86a63;
  --accent-hover: #ff7e75;
  --text-main: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.7);
  --glass: rgba(21, 45, 77, 0.6);
  --glass-strong: rgba(15, 32, 56, 0.95);
  --border: rgba(255, 255, 255, 0.1);
  --input-bg: rgba(255, 255, 255, 0.05);
  --whatsapp: #25D366;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background-color: var(--bg-dark); color: var(--text-main); overflow-x: hidden; line-height: 1.6; }
.bg-wrapper { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-dark) 100%); }
.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.4; animation: float 20s infinite ease-in-out alternate; }
.blob-1 { top: -10%; left: -10%; width: 50vw; height: 50vw; background: var(--bg-light); }
.blob-2 { bottom: -10%; right: -10%; width: 40vw; height: 40vw; background: var(--accent); opacity: 0.15; animation-delay: -5s; }
.blob-3 { top: 40%; left: 40%; width: 30vw; height: 30vw; background: #2563eb; opacity: 0.1; animation-delay: -10s; }
@keyframes float { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(30px, 50px) scale(1.1); } }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.btn { display: inline-block; padding: 12px 32px; border-radius: 50px; font-weight: 600; text-decoration: none; transition: all 0.3s ease; cursor: pointer; border: none; font-size: 1rem; }
.btn-primary { background: var(--accent); color: white; box-shadow: 0 4px 15px rgba(232, 106, 99, 0.4); }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232, 106, 99, 0.6); }
.btn-outline { background: transparent; border: 2px solid var(--border); color: white; }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-block { width: 100%; display: block; text-align: center; }
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; background-color: var(--whatsapp); color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); z-index: 100; transition: all 0.3s ease; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6); }
.whatsapp-float svg { width: 35px; height: 35px; fill: white; }
header { position: fixed; top: 0; width: 100%; z-index: 1000; padding: 20px 0; transition: 0.3s; background: rgba(15, 32, 56, 0.85); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
nav { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 40px; width: auto; }
.nav-links { display: flex; gap: 30px; list-style: none; align-items: center; }
.nav-links a { color: var(--text-main); text-decoration: none; font-size: 0.95rem; font-weight: 500; transition: 0.3s; }
.nav-links a:hover { color: var(--accent); }
.nav-cta { display: none; }
.nav-right { display: flex; align-items: center; gap: 16px; }
.lang-switch { display: flex; align-items: center; gap: 4px; background: rgba(255, 255, 255, 0.05); border: 1px solid var(--border); border-radius: 8px; padding: 4px; overflow: hidden; }
.lang-switch a { display: flex; align-items: center; gap: 5px; padding: 5px 10px; border-radius: 6px; font-size: 0.8rem; font-weight: 600; color: var(--text-muted); text-decoration: none; transition: all 0.2s ease; }
.lang-switch a:hover { color: white; background: rgba(255, 255, 255, 0.1); }
.lang-switch a.active { background: rgba(232, 106, 99, 0.2); color: white; pointer-events: none; }
.lang-flag { font-size: 1rem; line-height: 1; }
@media(min-width: 768px) { .nav-cta { display: block; } }
@media(max-width: 768px) { .nav-links { display: none; } }
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding-top: 80px; position: relative; }
.hero-content { max-width: 900px; margin: 0 auto; }
.hero h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1.1; font-weight: 800; margin-bottom: 24px; letter-spacing: -1px; }
.hero p { font-size: clamp(1.1rem, 2vw, 1.25rem); color: var(--text-muted); margin-bottom: 40px; max-width: 700px; margin-left: auto; margin-right: auto; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.exp-badge { display: inline-flex; align-items: center; padding: 8px 16px; background: rgba(255,255,255,0.05); border: 1px solid var(--border); border-radius: 30px; font-size: 0.9rem; margin-bottom: 30px; backdrop-filter: blur(5px); }
.exp-badge span { font-weight: 700; color: var(--accent); margin-right: 6px; }
.clients-section { padding: 40px 0; border-bottom: 1px solid var(--border); background: rgba(15, 32, 56, 0.3); overflow: hidden; }
.clients-label { text-align: center; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); margin-bottom: 30px; opacity: 0.6; }
.clients-section .container { width: 100%; max-width: 100%; padding: 0 20px; }
.clients-wrapper { position: relative; width: 100%; overflow: hidden; mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent); -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent); }
.clients-track { display: flex; flex-wrap: nowrap; width: max-content; gap: 70px; animation: scroll-left 40s linear infinite; align-items: center; padding: 20px 0; }
.clients-track:hover { animation-play-state: paused; }
.client-logo { height: 40px; width: auto; opacity: 0.3; filter: grayscale(100%) brightness(200%); transform: scale(1); will-change: transform, opacity, filter; flex-shrink: 0; }
@keyframes scroll-left { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.section { padding: 100px 0; }
.section-title { font-size: 2.5rem; font-weight: 700; margin-bottom: 16px; }
.section-subtitle { color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: 2px; font-size: 0.9rem; display: block; margin-bottom: 10px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 50px; }
.card { background: var(--glass); border: 1px solid var(--border); padding: 40px 30px; border-radius: 20px; transition: 0.4s; position: relative; overflow: hidden; }
.card:hover { transform: translateY(-10px); border-color: var(--accent); background: linear-gradient(145deg, rgba(21, 45, 77, 0.8), rgba(232, 106, 99, 0.05)); }
.card-icon { width: 60px; height: 60px; background: rgba(232, 106, 99, 0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; color: var(--accent); }
.card-icon svg { width: 30px; height: 30px; stroke-width: 2; }
.card h3 { font-size: 1.5rem; margin-bottom: 12px; }
.card p { color: var(--text-muted); font-size: 0.95rem; }

/* AI SECTION */
.ai-section { padding: 100px 0; position: relative; overflow: hidden; }
.ai-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(139, 92, 246, 0.15), transparent), radial-gradient(ellipse 60% 40% at 80% 100%, rgba(99, 102, 241, 0.1), transparent); pointer-events: none; }
.ai-hero-box { background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.05) 50%, rgba(15, 32, 56, 0.8) 100%); border: 1px solid rgba(139, 92, 246, 0.3); border-radius: 30px; padding: 60px; position: relative; overflow: hidden; }
.ai-hero-box::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: conic-gradient(from 0deg, transparent, rgba(139, 92, 246, 0.1), transparent 30%); animation: rotate-bg 20s linear infinite; pointer-events: none; }
@keyframes rotate-bg { 100% { transform: rotate(360deg); } }
.ai-content { position: relative; z-index: 2; display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 60px; align-items: center; }
.ai-badge { display: inline-flex; align-items: center; gap: 8px; background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2)); border: 1px solid rgba(139, 92, 246, 0.4); padding: 8px 18px; border-radius: 30px; font-size: 0.85rem; font-weight: 700; color: #a78bfa; margin-bottom: 24px; width: fit-content; }
.ai-badge-icon { width: 20px; height: 20px; background: linear-gradient(135deg, #6366f1, #a855f7); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; }
.ai-title { font-size: 2.8rem; font-weight: 800; line-height: 1.1; margin-bottom: 20px; }
.ai-title .gradient-text { background: linear-gradient(135deg, #818cf8, #c084fc, #e879f9); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.ai-description { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 30px; line-height: 1.7; }
.ai-stats { display: flex; gap: 40px; margin-bottom: 35px; flex-wrap: wrap; }
.ai-stat { text-align: left; }
.ai-stat-number { font-size: 2.5rem; font-weight: 800; background: linear-gradient(135deg, #818cf8, #c084fc); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }
.ai-stat-label { font-size: 0.85rem; color: var(--text-muted); margin-top: 4px; }
.ai-industries { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 35px; }
.ai-industry-tag { display: flex; align-items: center; gap: 8px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); padding: 10px 18px; border-radius: 12px; font-size: 0.9rem; color: #e2e8f0; transition: all 0.3s ease; }
.ai-industry-tag:hover { border-color: rgba(139, 92, 246, 0.5); background: rgba(139, 92, 246, 0.1); }
.ai-industry-tag svg { width: 18px; height: 18px; stroke: #a78bfa; }
.ai-cta-row { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-ai { background: linear-gradient(135deg, #6366f1, #8b5cf6); color: white; box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4); }
.btn-ai:hover { background: linear-gradient(135deg, #818cf8, #a78bfa); transform: translateY(-2px); box-shadow: 0 6px 25px rgba(99, 102, 241, 0.5); }
.ai-visual { position: relative; height: 400px; display: flex; align-items: center; justify-content: center; }
.ai-orb { position: absolute; width: 280px; height: 280px; border-radius: 50%; background: radial-gradient(circle at 30% 30%, rgba(139, 92, 246, 0.4), rgba(99, 102, 241, 0.2), transparent 70%); filter: blur(40px); animation: pulse-orb 4s ease-in-out infinite; }
@keyframes pulse-orb { 0%, 100% { transform: scale(1); opacity: 0.6; } 50% { transform: scale(1.1); opacity: 0.8; } }
.ai-brain-container { position: relative; z-index: 2; width: 200px; height: 200px; display: flex; align-items: center; justify-content: center; }
.ai-brain-ring { position: absolute; border-radius: 50%; border: 1px dashed rgba(139, 92, 246, 0.4); }
.ai-brain-ring-1 { width: 200px; height: 200px; animation: spin 15s linear infinite; }
.ai-brain-ring-2 { width: 160px; height: 160px; animation: spin 12s linear infinite reverse; border-color: rgba(99, 102, 241, 0.5); }
.ai-brain-ring-3 { width: 120px; height: 120px; animation: spin 10s linear infinite; border-color: rgba(168, 85, 247, 0.4); }
.ai-brain-icon { width: 80px; height: 80px; background: linear-gradient(135deg, #6366f1, #a855f7); border-radius: 20px; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 40px rgba(99, 102, 241, 0.5); position: relative; z-index: 3; }
.ai-brain-icon svg { width: 45px; height: 45px; stroke: white; stroke-width: 1.5; }
.ai-floating-tag { position: absolute; background: rgba(15, 32, 56, 0.9); border: 1px solid rgba(139, 92, 246, 0.3); padding: 8px 14px; border-radius: 10px; font-size: 0.75rem; color: #e2e8f0; white-space: nowrap; backdrop-filter: blur(10px); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); }
.ai-floating-tag-1 { top: 20px; left: -30px; animation: float-tag 5s ease-in-out infinite; }
.ai-floating-tag-2 { top: 60px; right: -40px; animation: float-tag 6s ease-in-out infinite 1s; }
.ai-floating-tag-3 { bottom: 80px; left: -20px; animation: float-tag 5.5s ease-in-out infinite 0.5s; }
.ai-floating-tag-4 { bottom: 30px; right: -30px; animation: float-tag 6.5s ease-in-out infinite 1.5s; }
@keyframes float-tag { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.ai-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
.ai-feature-card { background: rgba(21, 45, 77, 0.5); border: 1px solid rgba(139, 92, 246, 0.15); border-radius: 16px; padding: 30px; transition: all 0.3s ease; }
.ai-feature-card:hover { border-color: rgba(139, 92, 246, 0.4); transform: translateY(-5px); background: rgba(139, 92, 246, 0.08); }
.ai-feature-icon { width: 50px; height: 50px; background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2)); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.ai-feature-icon svg { width: 26px; height: 26px; stroke: #a78bfa; }
.ai-feature-card h4 { font-size: 1.15rem; margin-bottom: 10px; color: white; }
.ai-feature-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
@media(max-width: 900px) {
  .ai-hero-box { padding: 40px 25px; }
  .ai-content { grid-template-columns: 1fr; text-align: center; }
  .ai-badge { margin: 0 auto 24px; }
  .ai-title { font-size: 2rem; }
  .ai-stats { justify-content: center; }
  .ai-stat { text-align: center; }
  .ai-industries { justify-content: center; }
  .ai-cta-row { justify-content: center; }
  .ai-visual { height: 300px; margin-top: 40px; }
  .ai-features-grid { grid-template-columns: 1fr; }
  .ai-floating-tag { display: none; }
}

/* SOLUTIONS */
.solutions-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px; background: var(--border); border-radius: 24px; overflow: hidden; margin-top: 50px; border: 1px solid var(--border); }
.solution-item { background: var(--bg-dark); padding: 50px; display: flex; flex-direction: column; justify-content: center; transition: 0.3s; }
.solution-item:hover { background: #1a365d; }
.solution-item h3 { font-size: 1.8rem; margin-bottom: 10px; }
.solution-item ul { list-style: none; margin-top: 20px; }
.solution-item li { margin-bottom: 10px; padding-left: 20px; position: relative; color: var(--text-muted); }
.solution-item li::before { content: "•"; color: var(--accent); position: absolute; left: 0; font-weight: bold; }
@media(max-width: 768px) { .solutions-grid { grid-template-columns: 1fr; } }

/* PRODUCTS */
.product-box { background: linear-gradient(100deg, #10243e 0%, #0a1625 100%); border: 1px solid rgba(255,255,255,0.15); border-radius: 30px; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; box-shadow: 0 20px 60px rgba(0,0,0,0.4); margin-bottom: 60px; }
.product-box.reverse { grid-template-columns: 1fr 1fr; background: linear-gradient(100deg, #0a1625 0%, #152d4d 100%); }
.product-box.reverse .product-visual { order: -1; }
.product-box.reverse .product-info { order: 1; }
.product-info { padding: 60px; display: flex; flex-direction: column; justify-content: center; z-index: 2; }
.product-visual { background: radial-gradient(circle at center, rgba(232, 106, 99, 0.05), transparent 70%); position: relative; min-height: 520px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.prod-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(46, 204, 113, 0.15); color: #2ecc71; padding: 6px 14px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; margin-bottom: 20px; width: fit-content; border: 1px solid rgba(46, 204, 113, 0.3); }
.prod-badge.orange { background: rgba(255, 189, 46, 0.15); color: #ffbd2e; border-color: rgba(255, 189, 46, 0.3); }
.prod-badge.blue { background: rgba(59, 130, 246, 0.15); color: #60a5fa; border-color: rgba(59, 130, 246, 0.3); }
.prod-badge.purple { background: rgba(168, 85, 247, 0.15); color: #c084fc; border-color: rgba(168, 85, 247, 0.3); }
.feature-list { list-style: none; margin: 30px 0; display: grid; gap: 18px; }
.feature-item { display: flex; align-items: flex-start; gap: 14px; color: #e2e8f0; font-size: 0.95rem; line-height: 1.5; }
.feature-icon { color: #fff; background: var(--accent); width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-weight: bold; font-size: 0.8rem; box-shadow: 0 4px 10px rgba(232, 106, 99, 0.4); }

/* MOCKUPS */
.mockup-phone, .mockup-chat-phone, .mockup-menu-phone { width: 200px; height: 400px; background: #0f172a; border: 8px solid #334155; border-radius: 32px; position: absolute; box-shadow: 0 30px 70px rgba(0,0,0,0.6); z-index: 2; display: flex; flex-direction: column; padding: 10px; }
.mockup-dashboard { width: 480px; height: 300px; background: #1e293b; border: 1px solid #475569; border-radius: 16px; position: absolute; box-shadow: 0 20px 60px rgba(0,0,0,0.4); opacity: 0.95; display: grid; grid-template-columns: 80px 1fr; overflow: hidden; z-index: 1; }
.mockup-calendar { width: 320px; height: 310px; background: #1e293b; border: 1px solid #475569; border-radius: 20px; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); box-shadow: 0 30px 70px rgba(0,0,0,0.6); z-index: 2; display: flex; flex-direction: column; padding: 20px; }
.mockup-notification { position: absolute; bottom: 60px; right: 40px; width: 280px; background: rgba(32, 44, 51, 0.95); backdrop-filter: blur(10px); border-left: 4px solid var(--whatsapp); border-radius: 12px; padding: 15px; box-shadow: 0 15px 40px rgba(0,0,0,0.5); color: white; font-size: 0.8rem; z-index: 10; animation: float 6s ease-in-out infinite; }
.visual-logistica .mockup-dashboard { left: 50px; top: 50%; transform: translateY(-50%); }
.visual-logistica .mockup-phone { right: 60px; bottom: 0; transform: rotate(-8deg) translateY(20px); }
.visual-menu .mockup-menu-phone { left: 50%; top: 50%; transform: translate(-50%, -50%) rotate(5deg); }
.visual-rrhh .mockup-dashboard { left: 40px; top: 50%; transform: translateY(-50%); }
.visual-rrhh .mockup-chat-phone { right: 50px; bottom: 20px; transform: rotate(5deg); }
.visual-nightlife .mockup-dashboard { left: 40px; top: 50%; transform: translateY(-50%); }
.visual-nightlife .mockup-phone { right: 50px; bottom: 10px; transform: rotate(3deg) translateY(15px); }
.mockup-screen, .chat-screen { background: #1e293b; flex: 1; border-radius: 20px; overflow: hidden; position: relative; }
.m-header { height: 40px; border-bottom: 1px solid #334155; grid-column: 1 / -1; display: flex; align-items: center; padding: 0 15px; gap: 8px; background: #0f172a; }
.m-dot { width: 10px; height: 10px; border-radius: 50%; background: #475569; }
.m-sidebar { border-right: 1px solid #334155; background: #0f172a; }
.m-content { padding: 20px; display: grid; gap: 15px; grid-template-columns: 1fr 1fr; align-content: start; }
.m-box { background: rgba(255,255,255,0.05); height: 60px; border-radius: 8px; }
.m-chart { height: 100px; grid-column: 1 / -1; background: linear-gradient(180deg, rgba(232, 106, 99, 0.1), transparent); border-radius: 8px; border-top: 2px solid var(--accent); }
.app-header { height: 50px; background: var(--accent); margin-bottom: 15px; display: flex; align-items: center; justify-content: center; color: white; font-size: 0.8rem; font-weight: bold; }
.app-row { height: 30px; background: rgba(255,255,255,0.08); margin-bottom: 8px; border-radius: 4px; }
.app-sig { margin-top: auto; height: 70px; border: 1px dashed rgba(255,255,255,0.3); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.4); font-size: 0.7rem; }
.menu-header { height: 140px; background: #334155; position: relative; }
.menu-avatar { width: 60px; height: 60px; border-radius: 50%; background: #0f172a; position: absolute; bottom: -30px; left: 50%; transform: translateX(-50%); border: 4px solid #1e293b; }
.menu-item { background: rgba(255,255,255,0.05); padding: 10px; border-radius: 10px; margin-bottom: 10px; display: flex; gap: 10px; }
.menu-thumb { width: 45px; height: 45px; background: #475569; border-radius: 8px; flex-shrink:0; }
.chat-screen { background: #0b141a; display: flex; flex-direction: column; }
.chat-header { height: 50px; background: #202c33; display: flex; align-items: center; padding: 0 15px; gap: 10px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.chat-body { flex:1; padding: 15px; display: flex; flex-direction: column; gap: 12px; background-image: radial-gradient(#ffffff05 1px, transparent 1px); background-size: 20px 20px; }
.msg { padding: 10px 14px; border-radius: 8px; font-size: 0.75rem; max-width: 85%; position: relative; line-height: 1.4; }
.msg-in { background: #202c33; color: #fff; align-self: flex-start; border-top-left-radius: 0; }
.msg-out { background: #005c4b; color: #fff; align-self: flex-end; border-top-right-radius: 0; }
.cal-header { display: flex; justify-content: space-between; margin-bottom: 20px; color: white; font-weight: bold; font-size: 1rem; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 10px; text-align: center; font-size: 0.8rem; color: #94a3b8; }
.cal-day { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; border-radius: 6px; }
.cal-day.booked { background: rgba(231, 76, 60, 0.2); color: #e74c3c; }
.cal-day.selected { background: var(--accent); color: white; box-shadow: 0 4px 10px rgba(232, 106, 99, 0.4); font-weight: bold; }
.cal-day.free { background: rgba(255,255,255,0.05); }

@media(max-width: 900px) {
  .product-box { grid-template-columns: 1fr; margin-bottom: 40px; }
  .product-box.reverse { grid-template-columns: 1fr; }
  .product-box.reverse .product-visual { order: -1; }
  .product-visual { min-height: 450px; overflow: hidden; }
  .product-info { padding: 40px 20px; }
  .mockup-dashboard { width: 380px; height: 260px; left: 50%; top: 50%; transform: translate(-50%, -50%) scale(0.7); opacity: 0.5; z-index: 1; }
  .mockup-phone, .mockup-chat-phone, .mockup-menu-phone { width: 200px; height: 400px; left: 50%; top: 50%; right: auto; bottom: auto; transform: translate(-50%, -50%) scale(0.85); z-index: 2; }
  .visual-logistica .mockup-phone { transform: translate(-50%, -55%) scale(0.85) rotate(-5deg); }
  .visual-rrhh .mockup-chat-phone { transform: translate(-50%, -50%) scale(0.85) rotate(0deg); }
  .mockup-calendar { width: 320px; height: 310px; left: 50%; top: 45%; transform: translate(-50%, -50%) scale(0.85); }
  .mockup-notification { width: 260px; right: auto; left: 50%; bottom: 30px; transform: translateX(-50%); animation: none; }
  .visual-nightlife .mockup-dashboard { display: none; }
  .visual-nightlife .mockup-phone { width: 240px; height: 480px; left: 50%; top: 50%; right: auto; bottom: auto; transform: translate(-50%, -50%) scale(1) rotate(0deg) !important; z-index: 3; }
}

/* PARTNER / PHILOSOPHY */
.partner-box { background: linear-gradient(135deg, rgba(232, 106, 99, 0.05) 0%, rgba(21, 45, 77, 0.6) 100%); border: 1px solid var(--border); border-radius: 30px; padding: 50px; display: grid; grid-template-columns: 1.2fr 0.8fr; align-items: center; gap: 50px; position: relative; overflow: hidden; }
.partner-content h2 { font-size: 2.2rem; margin-bottom: 20px; line-height: 1.1; }
.partner-content p { color: var(--text-muted); margin-bottom: 15px; font-size: 1.05rem; }
.partner-content strong { color: #fff; font-weight: 600; }
.partner-features { display: flex; gap: 20px; margin-top: 30px; flex-wrap: wrap; }
.feat { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.9rem; background: rgba(255,255,255,0.05); padding: 8px 16px; border-radius: 20px; }
.check { color: var(--accent); font-weight: 800; }
.partner-visual { position: relative; height: 300px; display: flex; align-items: center; justify-content: center; }
.connection-circle { position: absolute; border-radius: 50%; border: 1px dashed var(--border); }
.c1 { width: 250px; height: 250px; animation: spin 20s linear infinite; }
.c2 { width: 180px; height: 180px; animation: spin 15s linear infinite reverse; border-color: var(--accent); opacity: 0.3; }
.team-card { width: 180px; height: 120px; background: var(--bg-dark); border: 1px solid var(--border); border-radius: 12px; box-shadow: 0 20px 40px rgba(0,0,0,0.3); position: relative; z-index: 2; padding: 15px; display: flex; flex-direction: column; gap: 10px; }
.team-card .dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; margin-right: 4px; }
.dot.red { background: #ff5f56; } .dot.yellow { background: #ffbd2e; } .dot.green { background: #27c93f; }
.code-lines .line { height: 6px; background: rgba(255,255,255,0.1); border-radius: 4px; margin-bottom: 6px; }
.w-70 { width: 70%; } .w-50 { width: 50%; } .w-90 { width: 90%; }
@keyframes spin { 100% { transform: rotate(360deg); } }
@media(max-width: 900px) {
  .partner-box { grid-template-columns: 1fr; padding: 30px; text-align: center; }
  .partner-features { justify-content: center; }
  .partner-visual { display: none; }
}

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 50px; }
.contact-card { background: var(--glass-strong); padding: 40px; border-radius: 24px; border: 1px solid var(--border); display: flex; flex-direction: column; }
.contact-header { margin-bottom: 30px; }
.contact-header h3 { font-size: 1.8rem; margin-bottom: 10px; }
.contact-header p { color: var(--text-muted); font-size: 0.95rem; }
.contact-header a { color: var(--accent); text-decoration: none; font-weight: 600; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.9rem; margin-bottom: 8px; color: var(--text-muted); }
.form-control { width: 100%; padding: 12px 16px; background: var(--input-bg); border: 1px solid var(--border); border-radius: 8px; color: #fff; font-family: inherit; font-size: 1rem; transition: 0.3s; }
.form-control:focus { outline: none; border-color: var(--accent); background: rgba(255,255,255,0.1); }
textarea.form-control { resize: vertical; min-height: 100px; }
.file-input-wrapper { position: relative; overflow: hidden; display: inline-block; width: 100%; }
.file-input-wrapper input[type=file] { font-size: 100px; position: absolute; left: 0; top: 0; opacity: 0; cursor: pointer; }
.btn-file { display: block; width: 100%; padding: 10px; text-align: center; border: 1px dashed var(--border); border-radius: 8px; color: var(--text-muted); cursor: pointer; transition: 0.3s; }
.btn-file:hover { border-color: var(--accent); color: var(--accent); }
@media(max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* FOOTER */
footer { border-top: 1px solid var(--border); padding: 50px 0; text-align: center; color: var(--text-muted); font-size: 0.9rem; }
footer a { color: var(--text-main); text-decoration: none; transition: 0.3s; }
footer a:hover { color: var(--accent); }
footer .sep { margin: 0 10px; color: var(--border); }

/* ANIMATIONS */
.fade-up { opacity: 0; transform: translateY(30px); transition: 0.8s ease-out; }
.fade-up.visible { opacity: 1; transform: translateY(0); }