/* Reset y Variables */
:root {
    --primary: #fe9a6b;
    --primary-dark: #e8845a;
    --primary-light: #ffb899;
    --secondary: #5b88f4;
    --accent: #feca5d;
    --dark: #1a1a1a;
    --dark-light: #2d2d2d;
    --gray: #64748b;
    --gray-light: #cbd5e1;
    --light: #f5f0ee;
    --white: #ffffff;
    --success: #10b981;
    --error: #ef4444;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    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: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

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

/* Header/Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: var(--transition);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.nav-logo .logo {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

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

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

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

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--dark);
    transition: var(--transition);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(254, 154, 107, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(254, 154, 107, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

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

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}

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

.btn-block {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f0ee 0%, #ffeee5 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-blob {
    position: absolute;
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.blob-1 {
    top: 10%;
    left: -10%;
    width: 500px;
    height: 500px;
}

.blob-2 {
    bottom: 10%;
    right: -10%;
    width: 600px;
    height: 600px;
    animation-delay: -5s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 20px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease-out 0.4s both;
}

.dashboard-mockup {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: var(--transition);
}

.dashboard-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.dashboard-img {
    width: 100%;
    height: auto;
    display: block;
}

.mockup-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(254, 154, 107, 0.2), rgba(91, 136, 244, 0.2));
    opacity: 0;
    transition: var(--transition);
}

.dashboard-mockup:hover .mockup-glow {
    opacity: 1;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    color: var(--primary);
    animation: bounce 2s infinite;
    cursor: pointer;
}

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

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

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

/* Section Styles */
section {
    padding: 100px 0;
}

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

.section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray);
}

/* Benefits Section */
.benefits {
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    padding: 40px 30px;
    background: var(--light);
    border-radius: 16px;
    transition: var(--transition);
    cursor: pointer;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.benefit-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.benefit-description {
    color: var(--gray);
    line-height: 1.7;
}

/* Zocio AI Demo Section */
.zocio-demo {
    background: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.zocio-logo-header {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.zocio-logo {
    width: 220px;
    height: 260px;
    filter: drop-shadow(0 10px 30px rgba(254, 154, 107, 0.3));
}

.zocio-logo-gif {
    width: 320px;
    height: 240px;
    filter: drop-shadow(0 10px 30px rgba(254, 154, 107, 0.3));
    border-radius: 12px;
}

/* Animación del cuerpo flotando */
.zocio-body {
    animation: floatBody 3s ease-in-out infinite;
    transform-origin: center center;
}

@keyframes floatBody {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-5px) rotate(1deg); }
    50% { transform: translateY(-8px) rotate(0deg); }
    75% { transform: translateY(-5px) rotate(-1deg); }
}

/* Animación de los ojos */
.zocio-eye {
    animation: eyeGlow 2s ease-in-out infinite;
}

.left-eye {
    animation-delay: 0s;
}

.right-eye {
    animation-delay: 0.1s;
}

@keyframes eyeGlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Parpadeo de pupilas */
.pupil {
    animation: blink 4s ease-in-out infinite;
}

@keyframes blink {
    0%, 45%, 55%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.1); }
}

/* Luz del pecho */
.chest-light {
    animation: chestPulse 1.5s ease-in-out infinite;
}

@keyframes chestPulse {
    0%, 100% { opacity: 0.8; r: 5; }
    50% { opacity: 1; r: 6; }
}

/* Luz de la antena */
.antenna-light {
    animation: antennaGlow 1s ease-in-out infinite;
}

@keyframes antennaGlow {
    0%, 100% { fill: #5b88f4; opacity: 1; }
    50% { fill: #feca5d; opacity: 0.8; }
}

/* Brazo izquierdo suave movimiento */
.left-arm {
    animation: leftArmMove 4s ease-in-out infinite;
    transform-origin: 70px 108px;
}

@keyframes leftArmMove {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(-5deg); }
}

/* Brazo derecho escribiendo */
.right-arm {
    animation: rightArmWrite 1.2s ease-in-out infinite;
    transform-origin: 130px 108px;
}

@keyframes rightArmWrite {
    0%, 100% { transform: rotate(0deg) translateY(0); }
    25% { transform: rotate(3deg) translateY(2px); }
    50% { transform: rotate(-2deg) translateY(-1px); }
    75% { transform: rotate(2deg) translateY(1px); }
}

/* Mano derecha escribiendo */
.right-hand {
    animation: handWrite 0.6s ease-in-out infinite;
    transform-origin: center;
}

@keyframes handWrite {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(3px) translateY(2px); }
    50% { transform: translateX(-2px) translateY(-1px); }
    75% { transform: translateX(2px) translateY(1px); }
}

/* Stylus movimiento */
.stylus {
    animation: stylusWrite 0.4s ease-in-out infinite;
    transform-origin: 158px 142px;
}

@keyframes stylusWrite {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(8deg); }
}

/* Partículas de escritura */
.writing-particles .particle {
    animation: particleFade 1.5s ease-out infinite;
}

.particle.p1 {
    animation-delay: 0s;
}

.particle.p2 {
    animation-delay: 0.3s;
}

.particle.p3 {
    animation-delay: 0.6s;
}

@keyframes particleFade {
    0% { opacity: 0; transform: translate(0, 0) scale(0); }
    20% { opacity: 1; transform: translate(-5px, -5px) scale(1); }
    100% { opacity: 0; transform: translate(-15px, -20px) scale(0.5); }
}

/* Aura exterior */
.zocio-aura {
    animation: auraRotate 8s linear infinite;
    transform-origin: 100px 85px;
}

.aura-1 {
    animation-direction: normal;
}

.aura-2 {
    animation-direction: reverse;
    animation-duration: 12s;
}

@keyframes auraRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.zocio-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
    margin-top: 60px;
}

.zocio-explanation {
    position: sticky;
    top: 100px;
}

.zocio-subtitle {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--dark);
}

.zocio-features-list {
    list-style: none;
    padding: 0;
}

.zocio-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 17px;
    color: var(--dark);
    line-height: 1.6;
}

.feature-check {
    width: 24px;
    height: 24px;
    color: var(--success);
    flex-shrink: 0;
    margin-top: 2px;
}

.zocio-demo-container {
    position: relative;
}

.demo-card {
    background: linear-gradient(135deg, rgba(254, 154, 107, 0.05), rgba(91, 136, 244, 0.05));
    border: 2px solid rgba(254, 154, 107, 0.2);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.demo-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(254, 154, 107, 0.4);
}

.demo-header {
    text-align: center;
    margin-bottom: 30px;
}

.demo-header h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.demo-header p {
    color: var(--gray);
    font-size: 16px;
}

.btn-zocio-generate {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(254, 154, 107, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-zocio-generate::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-zocio-generate:hover::before {
    width: 300px;
    height: 300px;
}

.btn-zocio-generate:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(254, 154, 107, 0.6);
}

.btn-zocio-generate:active {
    transform: translateY(-1px);
}

.btn-zocio-generate.generating {
    pointer-events: none;
    opacity: 0.7;
}

.zocio-icon {
    width: 24px;
    height: 24px;
    z-index: 1;
}

.btn-zocio-generate.generating .zocio-icon {
    animation: sparkle 1s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(90deg) scale(1.2); }
    50% { transform: rotate(180deg) scale(1); }
    75% { transform: rotate(270deg) scale(1.2); }
}

.demo-result {
    margin-top: 30px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.demo-result.visible {
    opacity: 1;
}

.result-item {
    margin-bottom: 25px;
}

.result-label {
    display: block;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.result-content {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    min-height: 60px;
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
}

.placeholder-text {
    color: var(--gray);
    font-style: italic;
}

.typing-animation.typing::after {
    content: '|';
    animation: blink 0.7s infinite;
    margin-left: 2px;
}

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

.demo-loading {
    display: none;
    text-align: center;
    margin-top: 30px;
}

.demo-loading.active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

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

.loading-spinner {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    border: 4px solid rgba(254, 154, 107, 0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.demo-loading p {
    color: var(--gray);
    font-size: 16px;
    font-weight: 500;
}

/* Demo Section */
.demo-section {
    background: linear-gradient(135deg, var(--dark) 0%, #1a1a2e 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.demo-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 70%, rgba(254, 154, 107, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(91, 136, 244, 0.1) 0%, transparent 50%);
    animation: rotateGradient 20s linear infinite;
}

@keyframes rotateGradient {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.demo-showcase {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.demo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(254, 154, 107, 0.2);
    border: 1px solid rgba(254, 154, 107, 0.3);
    border-radius: 50px;
    color: var(--primary-light);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.demo-badge svg {
    width: 18px;
    height: 18px;
}

.demo-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.demo-description {
    font-size: 18px;
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 30px;
}

.demo-highlights {
    list-style: none;
    margin-bottom: 40px;
}

.demo-highlights li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 16px;
    margin-bottom: 15px;
}

.demo-highlights svg {
    width: 22px;
    height: 22px;
    color: var(--success);
    flex-shrink: 0;
}

/* Animated Demo Button */
.btn-demo {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 12px;
    text-decoration: none;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 25px rgba(254, 154, 107, 0.5),
                0 0 40px rgba(254, 154, 107, 0.2);
}

.btn-demo:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 40px rgba(254, 154, 107, 0.6),
                0 0 60px rgba(254, 154, 107, 0.3);
}

.btn-demo-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
}

.btn-demo-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.btn-demo:hover .btn-demo-icon {
    transform: translateX(5px);
}

.btn-demo-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

/* Demo Preview Browser Mockup */
.demo-preview {
    position: relative;
}

.demo-browser {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: var(--transition);
}

.demo-browser:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

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

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

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

.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #febc2e; }
.browser-dots span:nth-child(3) { background: #28c840; }

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

.browser-url svg {
    width: 16px;
    height: 16px;
    color: var(--success);
}

.browser-content {
    padding: 0;
}

.store-preview {
    background: linear-gradient(135deg, #f5f0ee 0%, #ffeee5 100%);
    padding: 20px;
    min-height: 300px;
}

.store-header-mock {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 20px;
}

.store-logo-mock {
    width: 80px;
    height: 30px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 6px;
}

.store-nav-mock {
    display: flex;
    gap: 15px;
}

.store-nav-mock span {
    width: 50px;
    height: 10px;
    background: var(--gray-light);
    border-radius: 5px;
}

.store-products-mock {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.product-mock {
    background: var(--white);
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.product-img-mock {
    width: 100%;
    height: 100px;
    background: linear-gradient(135deg, rgba(254, 154, 107, 0.1), rgba(91, 136, 244, 0.1));
    border-radius: 8px;
    margin-bottom: 10px;
    animation: shimmer 2s infinite;
}

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

.product-info-mock {
    padding: 5px;
}

.product-title-mock {
    width: 80%;
    height: 12px;
    background: var(--gray-light);
    border-radius: 4px;
    margin-bottom: 8px;
}

.product-price-mock {
    width: 50%;
    height: 14px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 4px;
}

.demo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(254, 154, 107, 0.3) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
}

/* Demo Section Responsive */
@media (max-width: 968px) {
    .demo-showcase {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .demo-title {
        font-size: 36px;
    }

    .demo-preview {
        order: -1;
    }

    .demo-browser {
        transform: none;
    }

    .store-products-mock {
        grid-template-columns: repeat(2, 1fr);
    }

    .store-products-mock .product-mock:last-child {
        display: none;
    }
}

@media (max-width: 640px) {
    .demo-section {
        padding: 80px 0;
    }

    .demo-title {
        font-size: 28px;
    }

    .demo-description {
        font-size: 16px;
    }

    .btn-demo {
        width: 100%;
        padding: 18px 30px;
    }

    .btn-demo-content {
        font-size: 16px;
    }

    .store-preview {
        padding: 15px;
        min-height: 250px;
    }

    .product-img-mock {
        height: 70px;
    }
}

/* Pricing Section */
.pricing {
    background: linear-gradient(135deg, #f5f0ee 0%, #ffeee5 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
    border-color: var(--primary);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.08) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(254, 154, 107, 0.4);
}

.pricing-header {
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--light);
    margin-bottom: 30px;
}

.pricing-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.pricing-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.price-currency {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.price-amount {
    font-size: 56px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.price-period {
    font-size: 18px;
    color: var(--gray);
    align-self: flex-end;
    padding-bottom: 8px;
}

.pricing-description {
    color: var(--gray);
    font-size: 16px;
}

.setup-fee {
    margin-top: 12px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(254, 154, 107, 0.1), rgba(91, 136, 244, 0.1));
    border-radius: 8px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.feature-item-pricing {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 16px;
}

.feature-item-pricing.highlight {
    color: var(--primary);
    font-weight: 600;
}

.check-icon {
    width: 24px;
    height: 24px;
    color: var(--success);
    flex-shrink: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 100px 0;
}

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

.cta-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

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

/* Contact Section */
.contact {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-info-text {
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--light);
    border-radius: 12px;
    text-decoration: none;
    transition: var(--transition);
}

.contact-method:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

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

.contact-method-icon.whatsapp {
    background: #25d366;
}

.contact-method-icon.email {
    background: var(--primary);
}

.contact-method-icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.contact-method-label {
    font-size: 14px;
    color: var(--gray);
    font-weight: 500;
}

.contact-method-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--light);
    padding: 40px;
    border-radius: 20px;
}

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

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(254, 154, 107, 0.1);
}

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

.form-message {
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 8px;
    display: none;
    font-weight: 500;
}

.form-message.success {
    display: block;
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.form-message.error {
    display: block;
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 15px;
}

.footer-tagline {
    color: var(--gray-light);
    font-size: 16px;
}

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

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

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

.footer-list li {
    margin-bottom: 10px;
}

.footer-list a {
    color: var(--gray-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-list a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--dark-light);
    color: var(--gray-light);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

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

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        box-shadow: var(--shadow);
        transition: var(--transition);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-image {
        order: -1;
    }

    .dashboard-mockup {
        transform: none;
    }

    .section-title {
        font-size: 32px;
    }

    .benefits-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .zocio-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .zocio-explanation {
        position: static;
    }

    .zocio-logo {
        width: 150px;
        height: 150px;
    }

    .zocio-logo-gif {
        width: 280px;
        height: 210px;
    }

    .demo-card {
        padding: 30px 20px;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .benefit-card {
        padding: 30px 20px;
    }

    .zocio-logo {
        width: 120px;
        height: 120px;
    }

    .zocio-logo-gif {
        width: 240px;
        height: 180px;
    }

    .zocio-subtitle {
        font-size: 24px;
    }

    .zocio-features-list li {
        font-size: 15px;
    }

    .demo-card {
        padding: 25px 15px;
    }

    .btn-zocio-generate {
        font-size: 16px;
        padding: 15px 24px;
    }

    .result-content {
        font-size: 15px;
        padding: 15px;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}