/* Reset y base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Bloquear scroll cuando el menú móvil está abierto */
body.menu-open {
    overflow: hidden;
}

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

/* Header y navegación */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative; /* Para anclar el menú móvil */
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #6366f1;
    text-decoration: none;
    transition: color 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.logo i {
    font-size: 1.8rem;
}

.logo:hover {
    color: #4f46e5;
}

.logo:focus,
.logo:focus-visible {
    outline: none;
    box-shadow: none;
}

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.nav-menu a:visited {
    color: #333;
}

.nav-menu a:hover {
    color: #6366f1;
}

.nav-menu a.active {
    color: #6366f1;
    font-weight: 600;
}

.nav-menu a.active:visited {
    color: #6366f1;
}

.nav-menu a:focus,
.nav-menu a:focus-visible {
    outline: none;
    box-shadow: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Ilustración en el hero */
.hero-illustration { width: 100%; max-width: 520px; margin: 0 auto; }
.hero-illustration img { width: 100%; height: auto; display: block; }

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.highlight {
    color: #fbbf24;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #fbbf24;
    color: #1f2937;
}

.btn-primary:hover {
    background: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #6366f1;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

/* Phone Mockup */
.phone-mockup {
    width: 300px;
    height: 600px;
    background: #1f2937;
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.app-interface {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.camera-icon {
    font-size: 4rem;
    opacity: 0.9;
}

.upload-text {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Mini uploader demo */
.mini-uploader {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 18px;
}
.mini-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    letter-spacing: .3px;
    color: #e0e7ff;
}
.mini-header .led{
    width: 8px; height: 8px; border-radius: 999px; background: #34d399;
    box-shadow: 0 0 0 4px rgba(52,211,153,.2);
}
.mini-event{
    margin-top: 6px;
    font-size: 12px; color:#e5e7eb; opacity:.85;
}
.mini-grid{
    margin-top: 14px;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px;
    flex: 1; align-content: start;
}
.mini-photo{ width: 100%; padding-top: 100%; border-radius: 10px; background-size: cover; background-position:center; box-shadow: inset 0 0 0 2px rgba(255,255,255,.08);}
.mini-btn{
    margin-top: 10px; display:inline-flex; align-items:center; justify-content:center; gap:8px;
    background:#fbbf24; color:#1f2937; border:0; border-radius:12px; padding:10px 14px; font-weight:700; cursor:pointer;
    box-shadow:0 8px 20px rgba(251,191,36,.25);
}
.mini-btn:hover{ filter:brightness(1.05); transform: translateY(-1px);}
.mini-progress{ position: relative; margin-top:10px; height:10px; border-radius:999px; background: rgba(255,255,255,.18); overflow:hidden; display:none;}
.mini-progress .bar{ height:100%; width:0%; background:#22c55e; transition: width .15s ease;}
.mini-progress .pct{ position:absolute; right:8px; top:50%; transform:translateY(-50%); font-size:10px; color:#fff; text-shadow: 0 1px 2px rgba(0,0,0,.4);}
.mini-hint{ margin-top:8px; font-size:10px; color:#e5e7eb; opacity:.7;}

/* Secciones generales */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.section-header p {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Features */
.features {
    padding: 80px 0;
    background: #f9fafb;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* How it works */
.how-it-works {
    padding: 80px 0;
    background: white;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.step-content p {
    color: #6b7280;
    line-height: 1.6;
}

/* Events */
.events {
    padding: 80px 0;
    background: #f9fafb;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.event-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.event-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.event-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.event-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Demo */
.demo {
    padding: 80px 0;
    background: white;
}

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

.demo-container {
    position: relative;
    display: block;
    margin-top: 3rem;
    overflow: visible;
}

.demo-phone {
    width: 260px;
    height: 520px;
    background: #1f2937;
    border-radius: 26px;
    padding: 14px;
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.35);
    position: absolute;
    right: -20px;
    bottom: -20px;
    z-index: 5;
}

.demo-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 15px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
}

.demo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.demo-header h3 {
    font-size: 1rem;
    color: #1f2937;
}

.demo-status {
    background: #10b981;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.demo-photos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.demo-photo {
    width: 100%;
    height: 60px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.demo-photo:hover {
    transform: scale(1.05);
}

.demo-camera {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #f3f4f6;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.demo-camera:hover {
    background: #e5e7eb;
}

.demo-camera i {
    font-size: 1.5rem;
    color: #6366f1;
}

.demo-camera span {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

.demo-screen-large {
    background: #1f2937;
    border-radius: 20px;
    padding: 2rem;
    color: white;
    text-align: center;
}

.screen-content h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.screen-photo {
    width: 100%;
    background: #111827;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16 / 9;
    min-height: 300px;
}

.screen-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.screen-empty {
    color: #cbd5e1;
    opacity: 0.85;
    font-size: 0.95rem;
    text-align: center;
    padding: 0 16px;
}

/* Responsive: en pantallas chicas, el teléfono va debajo y no superpuesto */
@media (max-width: 980px) {
    .demo-container {
        padding-bottom: 560px; /* espacio para el teléfono */
    }
    .demo-phone {
        right: 50%;
        transform: translateX(50%);
        bottom: -20px;
    }
}

/* Shot simulator inside demo */
.shot-sim {
    background: #0f0f12;
    color: #e5e7eb;
    padding: 10px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.35;
    position: relative;
    overflow: hidden;
}

.shot-sim .mp-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.shot-sim .mp-brand { display:flex; align-items:center; gap:10px; }
.shot-sim .mp-brand-icon { width:28px; height:28px; border-radius:10px; background:#5b61ff; display:flex; align-items:center; justify-content:center; color:#fff; }
.shot-sim .mp-brand-text { font-weight:600; }
.shot-sim .mp-user { display:flex; align-items:center; gap:8px; color:#cbd5e1; font-size:12px; }
.shot-sim .mp-user img { width:22px; height:22px; border-radius:999px; }

.shot-sim .mp-card {
    background:#18181b;
    border:1px solid rgba(255,255,255,0.06);
    border-radius:14px;
    padding:12px;
    margin-top:10px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.35);
}

.shot-sim .mp-label { color:#a1a1aa; font-size:11px; }
.shot-sim .mp-event-name { font-weight:700; font-size:16px; color:#fff; }
.shot-sim .mp-muted { color:#a1a1aa; font-size:11px; margin-top:6px; }
.shot-sim .mp-event-row { display:flex; align-items:center; justify-content:space-between; gap:10px; }
.shot-sim .mp-event-actions { display:flex; align-items:center; gap:8px; }
.shot-sim .mp-code { background:#2a2a33; color:#e5e7eb; padding:3px 6px; border-radius:8px; font-size:11px; }
.shot-sim .mp-icon-btn { background:#2a2a33; color:#e5e7eb; border:none; border-radius:8px; padding:6px 8px; cursor:pointer; }

.shot-sim .mp-upload-title { text-align:center; font-weight:700; font-size:16px; color:#fff; }
.shot-sim .mp-upload-sub { text-align:center; color:#b3b3c0; font-size:11px; margin-top:2px; }
.shot-sim .mp-actions { margin-top:12px; display:flex; flex-direction:column; gap:12px; }
.shot-sim .mp-btn {
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:14px 16px;
    height:48px;
    border-radius:18px;
    border:none;
    cursor:pointer;
    font-weight:700;
    font-size:15px;
    letter-spacing:0.2px;
    width:100%;
    -webkit-appearance:none;
    appearance:none;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.shot-sim .mp-btn i { font-size:18px; line-height:0; }

/* Primary MuchPic style */
.shot-sim .mp-btn-primary {
    color:#ffffff;
    background: linear-gradient(180deg, #6268ff 0%, #4f56ff 100%);
    box-shadow: 0 10px 22px rgba(99,102,241,0.35), inset 0 -2px 0 rgba(0,0,0,0.15);
}
.shot-sim .mp-btn-primary:hover { filter: brightness(1.04); }
.shot-sim .mp-btn-primary:active { transform: translateY(1px); box-shadow: 0 6px 14px rgba(99,102,241,0.28), inset 0 -1px 0 rgba(0,0,0,0.2); }
.shot-sim .mp-btn-primary i { color:#ffffff; }

/* Secondary (white) */
.shot-sim .mp-btn-light {
    background:#ffffff;
    color:#0f172a;
    box-shadow: 0 6px 16px rgba(0,0,0,0.12), inset 0 0 0 1px rgba(0,0,0,0.08);
}
.shot-sim .mp-btn-light:hover { background:#fafafa; }
.shot-sim .mp-btn-light:active { transform: translateY(1px); box-shadow: 0 4px 10px rgba(0,0,0,0.12), inset 0 0 0 1px rgba(0,0,0,0.1); }
.shot-sim .mp-btn-light i { color:#111827; }
.shot-sim .mp-note { text-align:center; color:#9ca3af; font-size:11px; margin-top:6px; }

.shot-sim .mp-myphotos-head { display:flex; align-items:center; justify-content:space-between; }
.shot-sim .mp-myphotos-title { font-weight:700; color:#fff; }
.shot-sim .mp-counter { color:#cbd5e1; font-size:12px; }
.shot-sim .mp-grid { display:grid; grid-template-columns:repeat(3, 1fr); gap:8px; margin-top:10px; }
.shot-sim .mp-thumb { position:relative; width:100%; padding-top:66%; border-radius:10px; overflow:hidden; background:#2a2a33; }
.shot-sim .mp-thumb img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.shot-sim .mp-badge { position:absolute; left:6px; bottom:6px; background:#10b981; color:#fff; font-size:10px; padding:2px 6px; border-radius:6px; }

.shot-sim .mp-modal { position:fixed; inset:0; background:rgba(0,0,0,0.5); display:flex; align-items:center; justify-content:center; z-index:2000; }
.shot-sim .mp-modal-card { background:#1f1f24; border:1px solid rgba(255,255,255,0.08); border-radius:16px; padding:16px; width:88%; max-width:240px; text-align:center; color:#fff; }
.shot-sim .mp-modal-title { font-weight:700; }
.shot-sim .mp-modal-sub { color:#cbd5e1; font-size:12px; margin-top:4px; }
.shot-sim .mp-progress { background:#2a2a33; height:10px; border-radius:999px; overflow:hidden; margin:14px 0 8px; }
.shot-sim .mp-progress-bar { height:100%; width:1%; background:linear-gradient(90deg,#4f46e5,#6366f1); border-radius:999px; }
.shot-sim .mp-pct { color:#e5e7eb; font-size:12px; }

/* iOS button highlight removal inside demo */
.shot-sim button:focus { outline: none; }
.shot-sim button { -webkit-tap-highlight-color: transparent; }

/* Camera overlay */
.shot-sim .mp-cam { position:absolute; inset:0; background:#000; border-radius:14px; display:flex; flex-direction:column; z-index:1500; }
.shot-sim .mp-cam-view { flex:1; display:flex; align-items:center; justify-content:center; background:#000; }
.shot-sim .mp-cam-view video,
.shot-sim .mp-cam-view img { width:100%; height:100%; object-fit:cover; }
.shot-sim .mp-cam-controls { height:90px; background:rgba(0,0,0,0.75); display:flex; align-items:center; justify-content:space-between; padding:0 16px; }
.shot-sim .mp-cam-text { background:none; border:none; color:#fff; font-weight:600; font-size:14px; }
.shot-sim .mp-cam-shutter { width:64px; height:64px; border-radius:999px; background:transparent; border:4px solid #fff; position:relative; }
.shot-sim .mp-cam-shutter::after { content:''; position:absolute; inset:6px; border-radius:999px; background:#fff; }

/* CTA */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1f2937, #374151);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fbbf24;
}

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

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

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #6366f1;
    transform: translateY(-2px);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #d1d5db;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Responsive */
@media (max-width: 768px) {
    /* Evitar que el contenido quede tapado cuando se abre el menú */
    .header { position: sticky; top: 0; }

    .nav-menu {
        display: none;
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 1.25rem;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(0, 0, 0, 0.06);
        z-index: 1001;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .demo-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid,
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
}

/* Animaciones CSS */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

/* Aplicar animaciones */
.feature-card,
.event-card,
.step {
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.phone-mockup {
    animation: float 3s ease-in-out infinite;
}

.demo-camera:hover {
    animation: pulse 0.6s ease-in-out;
}

/* Transiciones suaves */
* {
    transition: all 0.3s ease;
}

/* Efectos hover mejorados */
.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.feature-card:hover,
.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Focus visible para accesibilidad */
.btn:focus {
    outline: 2px solid #6366f1;
    outline-offset: 2px;
}
