﻿/* ==================== VARIABLES ==================== */
:root {
    --bg-primary: #0F0F14;
    --bg-secondary: #16161D;
    --bg-tertiary: #1C1C26;
    --bg-card: #1A1A24;
    --primary: #6C4DFF;
    --primary-light: #8B72FF;
    --secondary: #00D4FF;
    --secondary-light: #4DE4FF;
    --text-primary: #F6F6F6;
    --text-secondary: #A0A0B0;
    --text-muted: #6B6B7B;
    --border: #2A2A3A;
    --gradient-primary: linear-gradient(135deg, #6C4DFF 0%, #00D4FF 100%);
    --font-display: 'Sora', sans-serif;
    --font-body: 'Inter', sans-serif;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

/* ==================== RESET ==================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==================== UTILITIES ==================== */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-label {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 16px;
    padding: 8px 16px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 100px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== BUTTONS ==================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    color: white;
    background: var(--gradient-primary);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-light) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(108, 77, 255, 0.3);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary span, .btn-primary svg {
    position: relative;
    z-index: 1;
}

.btn-primary.large {
    padding: 18px 36px;
    font-size: 16px;
}

.btn-primary.full-width {
    width: 100%;
    justify-content: center;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s var(--ease-out-expo);
}

.btn-secondary:hover {
    background: var(--bg-tertiary);
    border-color: var(--primary);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s var(--ease-out-expo);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-secondary);
}

.btn-outline svg {
    transition: transform 0.3s var(--ease-out-expo);
}

.btn-outline:hover svg {
    transform: scale(1.1);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: white;
    background: #25D366;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s var(--ease-out-expo);
}

.btn-whatsapp:hover {
    background: #20BD5A;
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.3);
}

/* ==================== NAVBAR ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(15, 15, 20, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s var(--ease-out-expo);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(15, 15, 20, 0.95);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: 8px;
    position: relative;
}

.logo-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
}

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

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s var(--ease-out-expo);
}

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

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

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s var(--ease-out-expo);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease-out-expo);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.mobile-menu a {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
}

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

#heroCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-glow {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(108, 77, 255, 0.2) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}

.hero-glow.secondary {
    top: 40%;
    left: auto;
    right: 5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    max-width: 580px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(108, 77, 255, 0.1);
    border: 1px solid rgba(108, 77, 255, 0.2);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--text-primary) 30%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 36px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* Phone Mockup */
.hero-phone {
    position: relative;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.phone-frame {
    width: 280px;
    height: 580px;
    background: linear-gradient(145deg, #2A2A3A 0%, #1A1A24 100%);
    border-radius: 40px;
    padding: 12px;
    position: relative;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
    transform-style: preserve-3d;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotateY(-5deg) rotateX(5deg); }
    50% { transform: translateY(-20px) rotateY(-8deg) rotateX(8deg); }
}

.phone-notch {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    background: var(--bg-primary);
    border-radius: 20px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    border-radius: 32px;
    overflow: hidden;
    padding: 50px 16px 16px;
    display: flex;
    flex-direction: column;
}

.phone-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.phone-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 12px;
}

.phone-event-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.phone-event-name {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.phone-event-date {
    font-size: 12px;
    color: var(--text-muted);
}

.phone-content {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.phone-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--border);
    transition: all 0.3s var(--ease-out-expo);
}

.phone-card:hover {
    background: var(--bg-tertiary);
    border-color: var(--primary);
}

.phone-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    position: relative;
}

.phone-card-icon.tables {
    background: linear-gradient(135deg, rgba(108, 77, 255, 0.2), rgba(108, 77, 255, 0.1));
}

.phone-card-icon.tables::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    border-radius: 4px;
}

.phone-card-icon.photos {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 212, 255, 0.1));
}

.phone-card-icon.photos::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    border: 2px solid var(--secondary);
    border-radius: 50%;
}

.phone-card-icon.music {
    background: linear-gradient(135deg, rgba(255, 100, 100, 0.2), rgba(255, 100, 100, 0.1));
}

.phone-card-icon.music::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    background: #FF6464;
    border-radius: 50% 50% 50% 0;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.phone-card-icon.info {
    background: linear-gradient(135deg, rgba(100, 255, 150, 0.2), rgba(100, 255, 150, 0.1));
}

.phone-card-icon.info::after {
    content: 'i';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    font-weight: 700;
    color: #64FF96;
}

.phone-card span {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-secondary);
    text-align: center;
}

.phone-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.nav-item {
    width: 8px;
    height: 8px;
    background: var(--border);
    border-radius: 50%;
}

.nav-item.active {
    width: 24px;
    border-radius: 4px;
    background: var(--primary);
}

.phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(108, 77, 255, 0.3) 0%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; height: 60px; }
    50% { opacity: 1; height: 80px; }
}

/* ==================== QUE ES LUMINA ==================== */
.que-es {
    position: relative;
    padding: 120px 0;
    background: var(--bg-secondary);
}

.que-es-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.que-es-text {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.que-es-text .lead {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.que-es-text p:last-child {
    font-size: 16px;
    color: var(--text-secondary);
}

.que-es-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.que-es-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s var(--ease-out-expo);
    opacity: 1;
    transform: translateY(0);
}

.que-es-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(108, 77, 255, 0.15);
}

.qe-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: 20px;
    position: relative;
}

.qe-icon.invitations {
    background: linear-gradient(135deg, rgba(108, 77, 255, 0.2), rgba(108, 77, 255, 0.05));
}

.qe-icon.invitations::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    border: 3px solid var(--primary-light);
    border-radius: 6px;
}

.qe-icon.tables {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 212, 255, 0.05));
}

.qe-icon.tables::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 28px;
    border: 3px solid var(--secondary);
    border-radius: 50%;
}

.qe-icon.selfie {
    background: linear-gradient(135deg, rgba(255, 100, 150, 0.2), rgba(255, 100, 150, 0.05));
}

.qe-icon.selfie::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background: #FF6496;
    border-radius: 6px;
}

.qe-icon.interaction {
    background: linear-gradient(135deg, rgba(100, 255, 150, 0.2), rgba(100, 255, 150, 0.05));
}

.qe-icon.interaction::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 26px;
    height: 26px;
    border: 3px solid #64FF96;
    border-radius: 50%;
    border-right-color: transparent;
}

.que-es-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.que-es-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==================== PROBLEMA ==================== */
.problema {
    position: relative;
    padding: 120px 0;
}

.problema-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.problema-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s var(--ease-out-expo);
    opacity: 1;
    transform: translateY(0);
}

.problema-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 100, 100, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.problema-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(255, 100, 100, 0.15) 0%, rgba(255, 100, 100, 0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.problema-icon svg {
    width: 32px;
    height: 32px;
    stroke: #FF6464;
}

.problema-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.problema-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==================== COMO FUNCIONA ==================== */
.como-funciona {
    position: relative;
    padding: 120px 0;
    background: var(--bg-secondary);
}

.pasos-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.paso {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 300px;
    opacity: 1;
    transform: translateY(0);
    margin-bottom: 40px;
}

.paso-numero {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 24px;
}

.paso-content {
    padding: 0 20px;
}

.paso-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(108, 77, 255, 0.15), rgba(0, 212, 255, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.paso-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--primary-light);
}

.paso-content h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.paso-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.paso-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 60px;
    margin: 0 20px;
}

.connector-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.connector-dot {
    width: 12px;
    height: 12px;
    background: var(--secondary);
    border-radius: 50%;
    margin-top: -7px;
    animation: connectorPulse 2s infinite;
}

@keyframes connectorPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

/* ==================== ESTADISTICAS ==================== */
.estadisticas {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

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

.stat-item {
    text-align: center;
    padding: 40px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: scale(1);
    transition: all 0.5s var(--ease-out-expo);
}

.stat-item:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.stat-icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.05;
}

.stat-icon-bg svg {
    width: 120px;
    height: 120px;
    stroke: var(--primary);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
    position: relative;
}

.stat-label {
    font-size: 15px;
    color: var(--text-secondary);
    position: relative;
}

/* ==================== SOLUCION ==================== */
.solucion {
    position: relative;
    padding: 120px 0;
}

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

.solucion-column {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.4s var(--ease-out-expo);
    opacity: 1;
    transform: translateY(0);
}

.solucion-column:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.solucion-column.featured {
    background: linear-gradient(180deg, rgba(108, 77, 255, 0.1) 0%, var(--bg-card) 100%);
    border-color: rgba(108, 77, 255, 0.3);
}

.column-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.column-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.column-icon svg {
    width: 24px;
    height: 24px;
}

.column-header.antes .column-icon {
    background: linear-gradient(135deg, rgba(100, 200, 255, 0.2), rgba(100, 200, 255, 0.1));
}

.column-header.antes .column-icon svg {
    stroke: #64C8FF;
}

.column-header.durante .column-icon {
    background: linear-gradient(135deg, rgba(108, 77, 255, 0.3), rgba(108, 77, 255, 0.1));
}

.column-header.durante .column-icon svg {
    stroke: var(--primary-light);
}

.column-header.despues .column-icon {
    background: linear-gradient(135deg, rgba(100, 255, 150, 0.2), rgba(100, 255, 150, 0.1));
}

.column-header.despues .column-icon svg {
    stroke: #64FF96;
}

.column-header h3 {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}

.column-header.antes h3 { color: #64C8FF; }
.column-header.durante h3 { color: var(--primary-light); }
.column-header.despues h3 { color: #64FF96; }

.column-list {
    list-style: none;
}

.column-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 15px;
    color: var(--text-secondary);
    transition: color 0.2s;
}

.column-list li:last-child {
    border-bottom: none;
}

.column-list li:hover {
    color: var(--text-primary);
}

.check {
    width: 20px;
    height: 20px;
    background: rgba(100, 255, 150, 0.1);
    border-radius: 6px;
    position: relative;
    flex-shrink: 0;
}

.check::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #64FF96;
    border-radius: 3px;
}

/* ==================== MURO SELFIE ==================== */
.muro-selfie {
    position: relative;
    padding: 120px 0;
    background: var(--bg-secondary);
    overflow: hidden;
}

.muro-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
}

.muro-feed {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-height: 500px;
    overflow: hidden;
}

.muro-post {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s var(--ease-out-expo);
}

.muro-post:hover {
    transform: scale(1.02);
    border-color: var(--primary);
}

.muro-post-image {
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
}

.muro-post-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    opacity: 0.3;
}

.muro-post-info {
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.muro-post-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gradient-primary);
}

.muro-post-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
}

.muro-post-likes {
    font-size: 12px;
    color: var(--text-muted);
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 4px;
}

.muro-post-likes svg {
    width: 14px;
    height: 14px;
    fill: #FF6B9D;
}

.muro-activity {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
}

.activity-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px;
    border-bottom: 1px solid var(--border);
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--text-primary);
}

.activity-dot {
    width: 10px;
    height: 10px;
    background: #64FF96;
    border-radius: 50%;
    animation: activityPulse 1.5s infinite;
}

@keyframes activityPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.activity-list {
    max-height: 400px;
    overflow-y: auto;
}

.activity-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.activity-icon.photo {
    background: rgba(255, 100, 150, 0.15);
}

.activity-icon.photo svg {
    width: 18px;
    height: 18px;
    stroke: #FF6496;
}

.activity-icon.song {
    background: rgba(108, 77, 255, 0.15);
}

.activity-icon.song svg {
    width: 18px;
    height: 18px;
    stroke: var(--primary-light);
}

.activity-icon.table {
    background: rgba(0, 212, 255, 0.15);
}

.activity-icon.table svg {
    width: 18px;
    height: 18px;
    stroke: var(--secondary);
}

.activity-text {
    flex: 1;
}

.activity-text strong {
    color: var(--text-primary);
    font-weight: 500;
}

.activity-text span {
    color: var(--text-secondary);
    font-size: 14px;
}

.activity-time {
    font-size: 12px;
    color: var(--text-muted);
}

/* ==================== TECNOLOGIA ==================== */
.tecnologia {
    position: relative;
    padding: 120px 0;
}

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

.tech-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px;
    transition: all 0.4s var(--ease-out-expo);
    opacity: 1;
    transform: translateY(0);
}

.tech-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(108, 77, 255, 0.15);
}

.tech-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(108, 77, 255, 0.2), rgba(0, 212, 255, 0.1));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.tech-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--primary-light);
}

.tech-card h3 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.tech-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.tech-detail {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    color: var(--secondary);
}

/* ==================== PARTNERS ==================== */
.partners {
    position: relative;
    padding: 120px 0;
    background: var(--bg-secondary);
}

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

.partner-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s var(--ease-out-expo);
    opacity: 1;
    transform: translateY(0);
}

.partner-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(108, 77, 255, 0.15);
}

.partner-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-icon svg {
    width: 36px;
    height: 36px;
}

.partner-icon.photographer {
    background: linear-gradient(135deg, rgba(255, 100, 150, 0.2), rgba(255, 100, 150, 0.05));
}

.partner-icon.photographer svg {
    stroke: #FF6496;
}

.partner-icon.dj {
    background: linear-gradient(135deg, rgba(108, 77, 255, 0.2), rgba(108, 77, 255, 0.05));
}

.partner-icon.dj svg {
    stroke: var(--primary-light);
}

.partner-icon.planner {
    background: linear-gradient(135deg, rgba(100, 255, 150, 0.2), rgba(100, 255, 150, 0.05));
}

.partner-icon.planner svg {
    stroke: #64FF96;
}

.partner-icon.venues {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 212, 255, 0.05));
}

.partner-icon.venues svg {
    stroke: var(--secondary);
}

.partner-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.partner-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.partner-benefit {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(108, 77, 255, 0.1);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-light);
}

.partners-cta {
    text-align: center;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
}

.partners-cta p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* ==================== BENEFICIOS ==================== */
.beneficios {
    position: relative;
    padding: 120px 0;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.beneficio-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-out-expo);
}

.beneficio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.beneficio-card.familias {
    border-color: rgba(108, 77, 255, 0.2);
}

.beneficio-card.salones {
    border-color: rgba(0, 212, 255, 0.2);
}

.beneficio-header {
    margin-bottom: 28px;
}

.beneficio-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.familias .beneficio-icon {
    background: linear-gradient(135deg, rgba(108, 77, 255, 0.2), rgba(108, 77, 255, 0.1));
}

.familias .beneficio-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary-light);
}

.salones .beneficio-icon {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 212, 255, 0.1));
}

.salones .beneficio-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--secondary);
}

.beneficio-header h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.beneficio-header p {
    font-size: 15px;
    color: var(--text-secondary);
}

.beneficio-list {
    list-style: none;
}

.beneficio-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    font-size: 15px;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.beneficio-list li:last-child {
    border-bottom: none;
}

.beneficio-list li svg {
    width: 20px;
    height: 20px;
    stroke: #64FF96;
    flex-shrink: 0;
}

/* ==================== FAQ ==================== */
.faq {
    position: relative;
    padding: 120px 0;
    background: var(--bg-secondary);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-question:hover {
    background: rgba(108, 77, 255, 0.05);
}

.faq-question span {
    flex: 1;
}

.faq-question svg {
    width: 24px;
    height: 24px;
    stroke: var(--text-muted);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(45deg);
    stroke: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(108, 77, 255, 0.02);
}

.faq-item.active .faq-answer {
    border-top: 1px solid var(--border);
    max-height: 300px;
}

.faq-answer p {
    padding: 20px 24px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ==================== CTA ==================== */
.cta {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(108, 77, 255, 0.25) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.cta-glow.secondary {
    background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.2) 0%, transparent 70%);
    transform: translate(-30%, -60%);
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* ==================== CONTACTO ==================== */
.contacto {
    position: relative;
    padding: 120px 0;
    background: var(--bg-secondary);
}

.contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contacto-info h2 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.contacto-info > p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contacto-canales {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.canal {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s var(--ease-out-expo);
}

.canal:hover {
    border-color: var(--primary);
    transform: translateX(8px);
}

.canal-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.canal.whatsapp .canal-icon {
    background: rgba(37, 211, 102, 0.15);
}

.canal.whatsapp .canal-icon svg {
    width: 24px;
    height: 24px;
    fill: #25D366;
}

.canal.email .canal-icon {
    background: rgba(108, 77, 255, 0.15);
}

.canal.email .canal-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-light);
}

.canal-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.canal-label {
    font-size: 13px;
    color: var(--text-muted);
}

.canal-value {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
}

.contacto-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
}

.contacto-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-primary);
    transition: all 0.3s var(--ease-out-expo);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(108, 77, 255, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236B6B7B' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
}

.form-group select option {
    background: var(--bg-card);
    color: var(--text-primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* ==================== FOOTER ==================== */
.footer {
    position: relative;
    padding: 80px 0 40px;
    border-top: 1px solid var(--border);
}

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

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

.footer-brand p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 16px 0 24px;
    max-width: 300px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: all 0.3s var(--ease-out-expo);
}

.footer-social a:hover {
    background: var(--bg-tertiary);
    border-color: var(--primary);
}

.footer-social a svg {
    width: 20px;
    height: 20px;
    stroke: var(--text-secondary);
    transition: stroke 0.2s;
}

.footer-social a:hover svg {
    stroke: var(--primary-light);
}

.footer-social a[href*="wa"] svg {
    stroke: none;
    fill: #25D366;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-column a {
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: var(--text-primary);
}

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

.footer-bottom p {
    font-size: 14px;
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: var(--text-secondary);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-phone {
        order: -1;
        margin-bottom: 40px;
    }
    
    .phone-frame {
        width: 240px;
        height: 500px;
    }
    
    .que-es-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pasos-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .paso-connector {
        transform: rotate(90deg);
        padding: 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .solucion-grid {
        grid-template-columns: 1fr;
    }
    
    .muro-container {
        grid-template-columns: 1fr;
    }
    
    .muro-feed {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .beneficios-grid {
        grid-template-columns: 1fr;
    }
    
    .contacto-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-buttons {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .phone-frame {
        width: 220px;
        height: 460px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .que-es-cards {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .muro-feed {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .contacto-form {
        grid-template-columns: 1fr;
    }
    
    .contacto-form-wrapper {
        padding: 24px;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 15px;
    }
    
    .faq-answer p {
        padding: 16px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .section-container {
        padding: 0 16px;
    }
    
    .phone-frame {
        width: 200px;
        height: 420px;
    }
    
    .phone-screen {
        padding: 40px 12px 12px;
    }
    
    .phone-card {
        padding: 12px;
    }
    
    .phone-card-icon {
        width: 32px;
        height: 32px;
    }
    
    .muro-feed {
        grid-template-columns: 1fr;
    }
    
    .canal {
        flex-direction: column;
        text-align: center;
    }
}

/* ==================== REDUCED MOTION ==================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .phone-frame {
        animation: none;
    }
    
    .scroll-line {
        animation: none;
    }
    
    .badge-dot {
        animation: none;
    }
    
    .connector-dot {
        animation: none;
    }
    
    .activity-dot {
        animation: none;
    }
}