/* ================================================================
   OFERTAPP - Para Comercios
   static/css/landing/paracomercios.css
   ================================================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    color: #2d3748;
    line-height: 1.6;
    overflow-x: hidden;
    background: #fafafa;
}

/* Back Button */
.back-btn-floating {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.back-btn-floating:hover {
    transform: translateX(-5px);
    box-shadow: 0 6px 25px rgba(255, 107, 107, 0.25);
}

/* Hero */
.business-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 50%, #ffd93d 100%);
    position: relative;
    overflow: hidden;
    padding: 2rem;
}

.hero-bg-shapes { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; }
.shape { position: absolute; border-radius: 50%; background: rgba(255, 255, 255, 0.1); }
.shape-1 { width: 400px; height: 400px; top: -100px; right: -100px; animation: float-shape 8s ease-in-out infinite; }
.shape-2 { width: 300px; height: 300px; bottom: -50px; left: -50px; animation: float-shape 10s ease-in-out infinite reverse; }
.shape-3 { width: 200px; height: 200px; top: 50%; left: 60%; animation: float-shape 12s ease-in-out infinite; }

@keyframes float-shape {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(10deg); }
}

.business-hero-content { text-align: center; z-index: 1; max-width: 700px; }

.hero-icon-container { position: relative; width: 120px; height: 120px; margin: 0 auto 2rem; }
.hero-icon-pulse {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 120px; height: 120px; border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%; animation: icon-pulse 2s ease-out infinite;
}
@keyframes icon-pulse {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}
.hero-icon {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 90px; height: 90px; background: white; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}
.hero-icon i { font-size: 2.5rem; color: #ff6b6b; }

.business-hero h1 { font-size: 3rem; font-weight: 800; color: white; margin-bottom: 1rem; line-height: 1.2; }
.business-hero h1 span { color: #fd322b; }
.hero-subtitle { font-size: 1.25rem; color: rgba(255, 255, 255, 0.95); margin-bottom: 2rem; }

.hero-cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-btn-primary, .hero-btn-secondary {
    display: inline-flex; align-items: center; gap: 0.6rem;
    padding: 1rem 2rem; border-radius: 50px; font-weight: 700;
    text-decoration: none; transition: all 0.3s ease;
}
.hero-btn-primary {
    background: white; color: #ff6b6b;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.hero-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3); }
.hero-btn-secondary { background: rgba(255, 255, 255, 0.2); color: white; border: 2px solid rgba(255, 255, 255, 0.5); }
.hero-btn-secondary:hover { background: rgba(255, 255, 255, 0.3); border-color: white; }

.hero-scroll-hint { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; color: rgba(255, 255, 255, 0.8); animation: bounce-down 2s infinite; }
@keyframes bounce-down { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(10px); } }

/* Benefits */
.benefits-section { padding: 4rem 5%; background: white; }
.benefits-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; max-width: 1000px; margin: 0 auto; }
.benefit-card {
    text-align: center; padding: 2rem 1.5rem; background: #fafafa;
    border-radius: 20px; border: 1px solid #f0f0f0; transition: all 0.3s ease;
}
.benefit-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(255, 107, 107, 0.1); border-color: #ff6b6b; }
.benefit-icon {
    width: 60px; height: 60px; background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem; box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}
.benefit-icon i { font-size: 1.5rem; color: white; }
.benefit-card h3 { font-size: 2rem; font-weight: 800; color: #1a1a2e; margin-bottom: 0.25rem; }
.benefit-card p { color: #64748b; font-size: 0.95rem; }

/* Section Header */
.section-header-business { text-align: center; margin-bottom: 3rem; }
.section-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.5rem 1.2rem; background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(255, 142, 83, 0.1) 100%);
    border-radius: 50px; color: #ff6b6b; font-size: 0.9rem; font-weight: 600; margin-bottom: 1rem;
}
.section-header-business h2 { font-size: 2.2rem; font-weight: 800; color: #1a1a2e; margin-bottom: 0.75rem; }
.section-header-business p { font-size: 1.1rem; color: #64748b; max-width: 600px; margin: 0 auto; }

/* Register Section */
.register-section { padding: 5rem 5%; background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%); }
.register-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; max-width: 1000px; margin: 0 auto 3rem; }
.register-step {
    text-align: center; padding: 2.5rem 2rem; background: white;
    border-radius: 20px; border: 1px solid #f0f0f0; position: relative; transition: all 0.3s ease;
}
.register-step:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08); }
.step-number {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    width: 40px; height: 40px; background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 800; font-size: 1.1rem; box-shadow: 0 5px 20px rgba(255, 107, 107, 0.4);
}
.step-icon {
    width: 80px; height: 80px; background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(255, 142, 83, 0.1) 100%);
    border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem;
}
.step-icon i { font-size: 2rem; color: #ff6b6b; }
.register-step h3 { font-size: 1.3rem; font-weight: 700; color: #1a1a2e; margin-bottom: 0.75rem; }
.register-step p { color: #64748b; font-size: 0.95rem; line-height: 1.6; }

.register-cta { text-align: center; }
.btn-register {
    display: inline-flex; align-items: center; gap: 0.6rem;
    padding: 1.1rem 2.5rem; background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: white; border-radius: 50px; font-weight: 700; font-size: 1.1rem;
    text-decoration: none; box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3); transition: all 0.3s ease;
}
.btn-register:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4); }

/* Features Section */
.features-section { padding: 5rem 5%; background: white; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto; }
.feature-card {
    background: #fafafa; border-radius: 20px; padding: 2rem;
    border: 1px solid #f0f0f0; transition: all 0.3s ease;
}
.feature-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1); }
.feature-card.feature-highlight { background: linear-gradient(135deg, rgba(255, 107, 107, 0.05) 0%, rgba(255, 142, 83, 0.05) 100%); border-color: rgba(255, 107, 107, 0.2); grid-column: span 2; }

.feature-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.feature-icon {
    width: 55px; height: 55px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.feature-icon i { font-size: 1.4rem; color: white; }
.offer-icon { background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%); }
.manage-icon { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.dashboard-icon { background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%); }
.followers-icon { background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%); }
.config-icon { background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%); }
.notif-icon { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); }

.feature-badge { padding: 0.3rem 0.8rem; background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%); color: white; border-radius: 20px; font-size: 0.75rem; font-weight: 700; }
.feature-card h3 { font-size: 1.2rem; font-weight: 700; color: #1a1a2e; margin-bottom: 0.75rem; }
.feature-card > p { color: #64748b; font-size: 0.95rem; margin-bottom: 1.25rem; line-height: 1.6; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.feature-list li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; color: #4a5568; }
.feature-list li i { color: #22c55e; font-size: 0.8rem; }

.feature-tip {
    display: flex; align-items: flex-start; gap: 0.75rem;
    margin-top: 1.25rem; padding: 1rem; background: rgba(255, 215, 0, 0.1);
    border-radius: 12px; border-left: 3px solid #ffd700;
}
.feature-tip i { color: #ffd700; font-size: 1.1rem; margin-top: 0.1rem; }
.feature-tip span { font-size: 0.9rem; color: #4a5568; line-height: 1.5; }

/* Premium Section */
.premium-section { padding: 5rem 5%; background: linear-gradient(135deg, #1a1a2e 0%, #2d3748 100%); overflow: hidden; }
.premium-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 4rem; align-items: center; }
.premium-content { color: white; }
.premium-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%); color: #1a1a2e; border-radius: 50px; font-size: 0.85rem; font-weight: 700; margin-bottom: 1.5rem; }
.premium-content h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 1rem; line-height: 1.2; }
.premium-content > p { font-size: 1.1rem; color: rgba(255, 255, 255, 0.8); margin-bottom: 2rem; }

.premium-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2rem; }
.premium-feature { display: flex; gap: 1rem; }
.pf-icon { width: 45px; height: 45px; background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pf-icon i { font-size: 1.1rem; color: #1a1a2e; }
.pf-content h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.25rem; }
.pf-content p { font-size: 0.85rem; color: rgba(255, 255, 255, 0.7); line-height: 1.4; }

.premium-cta { text-align: left; }
.btn-premium {
    display: inline-flex; align-items: center; gap: 0.6rem;
    padding: 1rem 2rem; background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a2e; border-radius: 50px; font-weight: 700; font-size: 1rem;
    text-decoration: none; box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3); transition: all 0.3s ease;
}
.btn-premium:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4); }
.premium-note { margin-top: 1rem; font-size: 0.9rem; color: rgba(255, 255, 255, 0.6); }

.premium-visual { display: flex; justify-content: center; }
.premium-phone {
    width: 240px; height: 480px; background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    border-radius: 35px; padding: 10px; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.phone-screen {
    width: 100%; height: 100%; background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    border-radius: 28px; padding: 40px 15px 15px; display: flex; flex-direction: column; align-items: center;
}
.phone-header { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.5rem; color: white; font-weight: 700; }
.phone-logo { width: 60px; height: 60px; background: white; border-radius: 15px; display: flex; align-items: center; justify-content: center; margin-bottom: 0.75rem; }
.phone-logo i { font-size: 1.8rem; color: #ff6b6b; }
.phone-name { color: white; font-weight: 700; font-size: 1.1rem; margin-bottom: 1.5rem; }
.phone-stats { display: flex; gap: 2rem; margin-bottom: auto; }
.ps { text-align: center; color: white; }
.ps span { display: block; font-size: 1.3rem; font-weight: 800; }
.phone-offer { background: white; border-radius: 12px; padding: 1rem; text-align: center; width: 100%; }
.po-badge { display: inline-block; background: #22c55e; color: white; padding: 0.2rem 0.6rem; border-radius: 10px; font-size: 0.7rem; font-weight: 700; margin-bottom: 0.3rem; }
.po-title { display: block; font-weight: 700; color: #1a1a2e; }

/* FAQ */
.faq-section { padding: 5rem 5%; background: #f8f9fa; }
.faq-container { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-item { background: white; border-radius: 16px; overflow: hidden; border: 1px solid #f0f0f0; transition: all 0.3s ease; }
.faq-item:hover { border-color: #ff6b6b; }
.faq-item.active { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); }
.faq-question {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    padding: 1.25rem 1.5rem; background: none; border: none; cursor: pointer;
    text-align: left; font-family: 'Inter', sans-serif;
}
.faq-question span { display: flex; align-items: center; gap: 0.75rem; font-size: 1rem; font-weight: 600; color: #1a1a2e; }
.faq-question span i { width: 35px; height: 35px; background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(255, 142, 83, 0.1) 100%); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #ff6b6b; font-size: 0.9rem; }
.faq-arrow { color: #94a3b8; font-size: 0.9rem; transition: transform 0.3s ease; }
.faq-item.active .faq-arrow { transform: rotate(180deg); color: #ff6b6b; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.active .faq-answer { max-height: 200px; }
.faq-answer p { padding: 0 1.5rem 1.25rem 4.5rem; color: #64748b; font-size: 0.95rem; line-height: 1.7; }

/* Final CTA */
.final-cta { padding: 5rem 5%; background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%); text-align: center; position: relative; overflow: hidden; }
.final-cta::before { content: ''; position: absolute; top: -50%; right: -20%; width: 60%; height: 200%; background: rgba(255, 255, 255, 0.1); border-radius: 50%; }
.final-cta-content { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.cta-icon { width: 80px; height: 80px; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15); }
.cta-icon i { font-size: 2rem; color: #ff6b6b; }
.final-cta-content h2 { font-size: 2.2rem; font-weight: 800; color: white; margin-bottom: 0.75rem; }
.final-cta-content p { font-size: 1.15rem; color: rgba(255, 255, 255, 0.95); margin-bottom: 2rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-btn-primary, .cta-btn-secondary { display: inline-flex; align-items: center; gap: 0.6rem; padding: 1rem 2rem; border-radius: 50px; font-weight: 700; text-decoration: none; transition: all 0.3s ease; }
.cta-btn-primary { background: white; color: #ff6b6b; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); }
.cta-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3); }
.cta-btn-secondary { background: rgba(255, 255, 255, 0.2); color: white; border: 2px solid rgba(255, 255, 255, 0.5); }
.cta-btn-secondary:hover { background: rgba(255, 255, 255, 0.3); border-color: white; }

/* Footer */
.business-footer { padding: 3rem 5%; background: #1a1a2e; text-align: center; }
.footer-content { max-width: 600px; margin: 0 auto; }
.footer-logo { display: flex; align-items: center; justify-content: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer-logo img { width: 40px; height: 40px; }
.footer-logo span { font-size: 1.5rem; font-weight: 800; color: white; }
.business-footer p { color: rgba(255, 255, 255, 0.7); margin-bottom: 0.5rem; }
.footer-copy { font-size: 0.9rem; }
.footer-copy i { color: #ff6b6b; animation: heartbeat 1.5s ease infinite; }
@keyframes heartbeat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.2); } }

/* Responsive */
@media (max-width: 1024px) {
    .premium-container { grid-template-columns: 1fr; gap: 3rem; }
    .premium-visual { order: -1; }
    .premium-phone { width: 200px; height: 400px; }
    .feature-card.feature-highlight { grid-column: span 1; }
}

@media (max-width: 768px) {
    .back-btn-floating { width: 50px; height: 50px; padding: 0; justify-content: center; border-radius: 50%; }
    .back-btn-floating span { display: none; }
    .business-hero { min-height: auto; padding: 6rem 1.5rem 4rem; }
    .business-hero h1 { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-cta-buttons { flex-direction: column; align-items: center; }
    .hero-btn-primary, .hero-btn-secondary { width: 100%; max-width: 280px; justify-content: center; }
    .section-header-business h2 { font-size: 1.7rem; }
    .register-steps { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .premium-features { grid-template-columns: 1fr; }
    .premium-content h2 { font-size: 1.7rem; }
    .premium-cta { text-align: center; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .cta-btn-primary, .cta-btn-secondary { width: 100%; max-width: 280px; justify-content: center; }
    .faq-answer p { padding-left: 1.5rem; }
}

@media (max-width: 480px) {
    .business-hero h1 { font-size: 1.7rem; }
    .benefits-container { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .benefit-card { padding: 1.5rem 1rem; }
    .benefit-card h3 { font-size: 1.5rem; }
    .premium-phone { width: 180px; height: 360px; }
    .faq-question span i { display: none; }
}

@supports (padding: env(safe-area-inset-bottom)) {
    .business-footer { padding-bottom: calc(3rem + env(safe-area-inset-bottom)); }
    .back-btn-floating { top: calc(20px + env(safe-area-inset-top)); }
}