/* ===== AVISOGO.COM - MODERN DESIGN ===== */
/* Inspirado en las mejores prácticas de UI/UX modernas */

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #0f172a;
    background-color: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== CSS VARIABLES ===== */
:root {
    --primary: #ff1b6d;
    --primary-light: #ff4081;
    --secondary: #40e0d0;
    --accent: #6366f1;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --white: #ffffff;
    --black: #000000;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    --container-width: 1280px;
    --section-padding: 120px;
    --header-height: 72px;
}

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

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--gray-100);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 24px;
}

.section-title {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--gray-900);
    margin-bottom: 24px;
}

.section-title em {
    color: var(--primary);
    font-style: normal;
    position: relative;
}

.section-title em::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.section-description {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== BUTTONS ===== */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 24px;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: var(--white);
    color: var(--gray-700);
    border: 2px solid var(--gray-200);
}

.btn-secondary:hover {
    background: var(--gray-50);
    border-color: var(--gray-300);
    transform: translateY(-1px);
}

.btn-primary.large,
.btn-secondary.large {
    padding: 20px 32px;
    font-size: 18px;
}

.full-width {
    width: 100%;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 55px;
    width: auto;
}

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

.nav-item {
    font-weight: 500;
    color: var(--gray-700);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

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

.nav-highlight {
    color: var(--primary) !important;
    font-weight: 700 !important;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-login {
    font-weight: 500;
    color: var(--gray-700);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.nav-cta {
    padding: 12px 20px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
}

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ===== HERO SECTION ===== */
.hero-section {
    padding: calc(var(--header-height) + 80px) 0 120px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 27, 109, 0.05) 0%, rgba(64, 224, 208, 0.05) 100%);
    border-radius: 50% 0 0 50%;
    z-index: 1;
}

.hero-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 32px;
}

.hero-title {
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--gray-900);
    margin-bottom: 24px;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

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

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-200);
}

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

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.phone-container {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.phone-mockup {
    position: relative;
}

.phone-frame {
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #1f2937, #111827);
    border-radius: 40px;
    padding: 12px;
    position: relative;
    box-shadow: 
        0 0 0 4px #374151,
        0 25px 50px rgba(0, 0, 0, 0.25);
}

.phone-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 20px;
    background: #111827;
    border-radius: 12px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.phone-screen iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 32px;
}

.phone-shadow {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 40px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-scroll {
    text-align: center;
    margin-top: 80px;
}

.scroll-indicator {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray-500);
    font-size: 14px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.scroll-indicator:hover {
    color: var(--primary);
}

.scroll-indicator i {
    animation: bounce 2s infinite;
}

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

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% { transform: translateY(0); }
    40%, 43% { transform: translateY(-15px); }
    70% { transform: translateY(-5px); }
    90% { transform: translateY(-2px); }
}

/* ===== FEATURES SECTION ===== */
.features-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

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

.feature-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gray-300);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
}

.card-icon.whatsapp { background: #25d366; }
.card-icon.sms { background: #ff6b35; }
.card-icon.email { background: #4285f4; }
.card-icon.calls { background: #34d399; }
.card-icon.chatbot { background: #8b5cf6; }
.card-icon.analytics { background: #f59e0b; }

.card-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
}

.feature-card p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 16px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.feature-tag {
    padding: 4px 12px;
    background: var(--gray-100);
    color: var(--gray-700);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

/* ===== PROCESS SECTION ===== */
.process-section {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 80px;
}

.timeline-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    position: relative;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.timeline-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.timeline-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border-radius: 50%;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 24px;
}

.timeline-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.timeline-content p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* ===== INDUSTRIES SECTION ===== */
.industries-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

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

.industry-card {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

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

.industry-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.industry-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.industry-card p {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.industry-stats {
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

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

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

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

.testimonial-content {
    margin-bottom: 24px;
}

.quote-icon {
    font-size: 48px;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 16px;
    font-family: Georgia, serif;
}

.testimonial-content p {
    font-size: 1.125rem;
    color: var(--gray-700);
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.author-info h4 {
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.author-info span {
    font-size: 14px;
    color: var(--gray-500);
}

.rating {
    margin-left: auto;
    color: #fbbf24;
    display: flex;
    gap: 2px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.cta-content h2 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
}

.cta-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

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

.cta-actions .btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    opacity: 0.8;
}

.cta-note i {
    color: #10b981;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 80px 0 32px;
}

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

.footer-top {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 80px;
    margin-bottom: 48px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    height: 70px;
    width: auto;
    margin-bottom: 0px;
}

.footer-brand p {
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 32px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

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

.footer-column h4 {
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
}

.footer-column a {
    display: block;
    color: var(--gray-400);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--gray-800);
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: var(--gray-500);
}

.footer-badges {
    display: flex;
    gap: 16px;
}

.footer-badges .badge {
    padding: 4px 12px;
    background: var(--gray-800);
    border-radius: 50px;
    font-size: 12px;
    color: var(--gray-400);
}

/* ===== MODALS ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    max-width: 600px;
    margin: 5% auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    max-height: 90vh;
    overflow-y: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.modal-content::-webkit-scrollbar {
    display: none; /* WebKit */
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 32px 0;
    margin-bottom: 24px;
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
}

.modal-close {
    width: 40px;
    height: 40px;
    background: var(--gray-100);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--gray-500);
}

.modal-close:hover {
    background: var(--gray-200);
    color: var(--gray-700);
}

.modal-body {
    padding: 0 32px 32px;
}

/* ===== FORMS ===== */
.modal-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

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

.form-group label {
    font-weight: 600;
    color: var(--gray-700);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 16px;
    transition: all 0.3s ease;
    background: var(--white);
}

.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(255, 27, 109, 0.1);
}

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

.form-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-500);
    text-align: center;
    justify-content: center;
}

.form-note i {
    color: #10b981;
}

/* ===== COMING SOON MODAL ===== */
.coming-soon-modal {
    max-width: 700px;
    background: linear-gradient(135deg, var(--white) 0%, #fafbfc 100%);
    animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-height: 90vh;
    overflow-y: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.coming-soon-modal::-webkit-scrollbar {
    display: none; /* WebKit */
}

.coming-soon-modal.animate {
    animation: modalPulse 0.6s ease-out;
}

.coming-soon-header {
    position: relative;
    padding: 40px 40px 20px;
    text-align: center;
    background: linear-gradient(45deg, var(--primary) 0%, var(--secondary) 25%, var(--accent) 50%, var(--primary) 75%, var(--secondary) 100%);
    background-size: 400% 400%;
    animation: gradientShift 3s ease-in-out infinite;
    overflow: hidden;
}

.coming-soon-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
    background-size: 25px 25px;
    animation: floatingDots 8s linear infinite;
    opacity: 0.6;
}

.coming-soon-icon {
    position: relative;
    z-index: 2;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--white);
    animation: rocketBounce 2s ease-in-out infinite, iconGlow 4s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.coming-soon-header .modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    z-index: 3;
}

.coming-soon-header .modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.coming-soon-body {
    padding: 30px;
    text-align: center;
    position: relative;
}

.coming-soon-animation {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.floating-circles {
    position: relative;
    width: 120px;
    height: 60px;
}

.circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    animation: floatingCircles 3s ease-in-out infinite;
}

.circle-1 {
    width: 20px;
    height: 20px;
    background: var(--primary);
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.circle-2 {
    width: 16px;
    height: 16px;
    background: var(--secondary);
    top: 20px;
    right: 20px;
    animation-delay: 0.5s;
}

.circle-3 {
    width: 12px;
    height: 12px;
    background: var(--accent);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1s;
}

.coming-soon-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gray-900);
    margin-bottom: 16px;
    margin-top: 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.coming-soon-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}

.coming-soon-description {
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}

.coming-soon-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--gray-700);
    margin-bottom: 16px;
}

.coming-soon-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    min-width: 120px;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.feature-item i {
    font-size: 24px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-item span {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    text-align: center;
}

.coming-soon-form {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.coming-soon-form .form-group input,
.coming-soon-form .form-group select,
.coming-soon-form .form-group textarea {
    border: 2px solid var(--gray-200);
    background: var(--gray-50);
    font-size: 16px;
    padding: 14px 18px;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    font-family: inherit;
    resize: vertical;
}

.coming-soon-form .form-group input:focus,
.coming-soon-form .form-group select:focus,
.coming-soon-form .form-group textarea:focus {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255, 27, 109, 0.1);
}

.coming-soon-form .form-group input::placeholder,
.coming-soon-form .form-group textarea::placeholder {
    color: var(--gray-500);
    font-weight: 500;
}

.coming-soon-form .form-group select {
    color: var(--gray-600);
    cursor: pointer;
}

.coming-soon-form .form-group select:invalid {
    color: var(--gray-500);
}

.coming-soon-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    font-size: 18px;
    font-weight: 700;
    padding: 18px 32px;
    border-radius: var(--radius-lg);
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.coming-soon-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.coming-soon-btn:hover::before {
    left: 100%;
}

.coming-soon-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(255, 27, 109, 0.3);
}

.coming-soon-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-500);
    position: relative;
    z-index: 2;
}

.coming-soon-note i {
    color: #10b981;
    font-size: 16px;
}

/* ===== ANIMACIONES COMING SOON ===== */
@keyframes iconGlow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.25);
    }
    50% { 
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
        background: rgba(255, 255, 255, 0.35);
    }
}

@keyframes gradientShift {
    0% { 
        background-position: 0% 50%;
    }
    50% { 
        background-position: 100% 50%;
    }
    100% { 
        background-position: 0% 50%;
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

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

@keyframes rocketBounce {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
    }
    25% { 
        transform: translateY(-10px) rotate(-5deg); 
    }
    75% { 
        transform: translateY(-5px) rotate(5deg); 
    }
}

@keyframes floatingDots {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-10px, -10px) rotate(90deg); }
    50% { transform: translate(-20px, -20px) rotate(180deg); }
    75% { transform: translate(-30px, -30px) rotate(270deg); }
    100% { transform: translate(-40px, -40px) rotate(360deg); }
}

@keyframes floatingCircles {
    0%, 100% { 
        transform: translateY(0) scale(1); 
        opacity: 0.6; 
    }
    50% { 
        transform: translateY(-20px) scale(1.1); 
        opacity: 0.8; 
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    .hero-content {
        gap: 60px;
    }
    
    .footer-top {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .nav-menu,
    .nav-actions {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }

    /* Estilos para menú móvil activo */
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: fixed; /* ← Cambia absolute por fixed */
        top: 0;          /* Empieza desde el borde superior */
        left: 0;
        width: 100vw;    /* Ocupa todo el ancho visible */
        height: 100vh;   /* Ocupa toda la altura visible */
        backdrop-filter: blur(20px);
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        padding: 40px 24px;
        gap: 20px;
        border-top: none; /* Ya no hace falta borde superior */
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        opacity: 0.98;
        z-index: 9999;    /* Asegura que esté por encima del resto */ 
    }

    .nav-item {
        display: block;
        width: 100%;
        text-align: center;
        font-weight: 900;
        color: #fff;
        text-decoration: none;
        transition: color 0.3s ease;
        font-size: 30px;
    }

        
    .nav-actions.active {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding-top: 16px;
        border-top: 1px solid var(--gray-200);
        margin-top: 16px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .stat-divider {
        width: 100%;
        height: 1px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .phone-frame {
        width: 240px;
        height: 480px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions .btn-primary,
    .cta-actions .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        margin: 10% 16px;
    }
    
    .modal-header,
    .modal-body {
        padding-left: 24px;
        padding-right: 24px;
    }
    
    /* Coming Soon Modal Responsive */
    .coming-soon-modal {
        max-width: 90%;
        margin: 5% auto;
    }
    
    .coming-soon-header,
    .coming-soon-body {
        padding: 24px;
    }
    
    .coming-soon-title {
        font-size: 2rem;
    }
    
    .coming-soon-features {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .feature-item {
        min-width: auto;
        width: 100%;
        max-width: 200px;
    }
    
    .coming-soon-form {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .section-container {
        padding: 0 16px;
    }
    
    .nav-container {
        padding: 0 16px;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .phone-frame {
        width: 200px;
        height: 400px;
    }
    
    /* Coming Soon Modal Mobile */
    .coming-soon-header,
    .coming-soon-body {
        padding: 20px;
    }
    
    .coming-soon-title {
        font-size: 1.75rem;
    }
    
    .coming-soon-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .coming-soon-features {
        gap: 12px;
    }
    
    .coming-soon-form {
        padding: 20px;
    }
}

/* ===== ANIMATIONS ===== */
@media (prefers-reduced-motion: no-preference) {
    .fade-in {
        animation: fadeIn 0.6s ease-out;
    }
    
    .slide-up {
        animation: slideUp 0.8s ease-out;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* ===== PRINT STYLES ===== */
@media print {
    .navbar,
    .modal,
    .cta-section {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: #000;
        background: #fff;
    }
}


/* ===== CHAT SIMULADO STYLES ===== */
/* Estilos específicos para el chat IA dashboard */

/* Layout del Hero con Chat */
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Dashboard Principal */
.ai-dashboard {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    max-width: 450px;
    width: 100%;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

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

/* Efectos de fondo */
.ai-dashboard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 27, 109, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(64, 224, 208, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Efecto de líneas de escaneo */
.scanlines {
    position: relative;
}

.scanlines::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        transparent 50%,
        rgba(0, 255, 255, 0.03) 50%,
        rgba(0, 255, 255, 0.03) 51%,
        transparent 51%
    );
    background-size: 100% 4px;
    pointer-events: none;
    animation: scanlines 2s linear infinite;
}

@keyframes scanlines {
    0% { transform: translateY(0); }
    100% { transform: translateY(4px); }
}

/* Contenedor del Chat */
.chat-simulation {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

/* Header del Chat */
.chat-header-sim {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 27, 109, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255, 27, 109, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 27, 109, 0); }
}

.chat-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.chat-agent-name {
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.chat-status {
    color: #4ade80;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.chat-status::before {
    content: '●';
    animation: blink 2s infinite;
}

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

/* Mensajes del Chat */
.chat-messages-sim {
    min-height: 120px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 200px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.chat-messages-sim::-webkit-scrollbar {
    width: 4px;
}

.chat-messages-sim::-webkit-scrollbar-track {
    background: transparent;
}

.chat-messages-sim::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

.message-sim {
    display: flex;
    animation: fadeInMessage 0.5s ease-out;
}

.message-sim.user {
    justify-content: flex-end;
}

.message-sim.agent {
    justify-content: flex-start;
}

.message-bubble {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.4;
    position: relative;
}

.message-sim.user .message-bubble {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border-bottom-right-radius: 4px;
}

.message-sim.agent .message-bubble {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-bottom-left-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Indicador de escritura */
.typing-dots {
    display: flex;
    gap: 4px;
    align-items: center;
    padding: 4px 0;
}

.typing-dots span {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: typingDots 1.4s infinite ease-in-out;
}

.typing-dots span:nth-child(1) { animation-delay: 0s; }
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingDots {
    0%, 60%, 100% { 
        opacity: 0.3; 
        transform: scale(0.8); 
    }
    30% { 
        opacity: 1; 
        transform: scale(1); 
    }
}

/* Panel de Actividad */
.ai-activity {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 16px;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.activity-line {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    padding: 4px 0;
    opacity: 0;
    animation: activityFadeIn 0.5s ease-out forwards;
    border-left: 2px solid transparent;
    padding-left: 8px;
}

.activity-line:last-child {
    margin-bottom: 0;
}

.activity-line.processing {
    color: #fbbf24;
    border-left-color: #fbbf24;
}

.activity-line.success {
    color: #4ade80;
    border-left-color: #4ade80;
}

.activity-line.error {
    color: #ef4444;
    border-left-color: #ef4444;
}

/* Animaciones */
@keyframes fadeInMessage {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes activityFadeIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Efecto de brillo para el dashboard */
.ai-dashboard::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.05) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    animation: shine 3s infinite;
    pointer-events: none;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .ai-dashboard {
        max-width: 100%;
        margin: 0 auto;
        transform: none;
        padding: 20px;
    }
    
    .ai-dashboard:hover {
        transform: none;
    }
    
    .chat-simulation {
        padding: 16px;
    }
    
    .message-bubble {
        font-size: 13px;
        padding: 10px 14px;
    }
    
    .activity-line {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .ai-dashboard {
        padding: 16px;
    }
    
    .chat-header-sim {
        padding-bottom: 12px;
        margin-bottom: 16px;
    }
    
    .chat-avatar {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .chat-agent-name {
        font-size: 13px;
    }
    
    .chat-status {
        font-size: 11px;
    }
    
    .message-bubble {
        font-size: 12px;
        padding: 8px 12px;
    }
    
    .ai-activity {
        padding: 12px;
    }
    
    .activity-line {
        font-size: 9px;
        margin-bottom: 6px;
    }
}

/* Estados de hover para interactividad */
.chat-simulation:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.ai-activity:hover {
    background: rgba(0, 0, 0, 0.3);
}

/* Efectos de entrada */
.ai-dashboard {
    animation: dashboardEntry 1s ease-out;
}

@keyframes dashboardEntry {
    from {
        opacity: 0;
        transform: perspective(1000px) rotateY(-15deg) rotateX(10deg) translateY(50px);
    }
    to {
        opacity: 1;
        transform: perspective(1000px) rotateY(-5deg) rotateX(5deg) translateY(0);
    }
}

/* Variante de colores para diferentes estados */
.activity-line.warning {
    color: #f59e0b;
    border-left-color: #f59e0b;
}

.activity-line.info {
    color: #3b82f6;
    border-left-color: #3b82f6;
}

/* Estilos para mensajes de campaña */
.message-sim.campaign {
    justify-content: center;
    margin-bottom: 16px;
}

.campaign-bubble {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 16px;
    max-width: 90%;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary);
}

.campaign-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #666;
}

.campaign-content {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 8px;
    color: #333;
}

.campaign-metrics {
    font-size: 11px;
    color: #888;
    font-style: italic;
    border-top: 1px solid #eee;
    padding-top: 6px;
}

.channel-name {
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 0.5px;
}

/* ===== COMING SOON MODAL ===== */
.coming-soon-modal {
    max-width: 700px;
    background: linear-gradient(135deg, var(--white) 0%, #fafbfc 100%);
    animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-height: 90vh;
    overflow-y: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.coming-soon-modal::-webkit-scrollbar {
    display: none; /* WebKit */
}

.coming-soon-modal.animate {
    animation: modalPulse 0.6s ease-out;
}

.coming-soon-header {
    position: relative;
    padding: 40px 40px 20px;
    text-align: center;
    background: linear-gradient(-45deg, var(--primary), var(--secondary), var(--accent), var(--primary), var(--secondary));
    background-size: 400% 400%;
    animation: gradientShift 3s ease-in-out infinite;
    overflow: hidden;
}

.coming-soon-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
    background-size: 25px 25px;
    animation: floatingDots 8s linear infinite;
    opacity: 0.6;
}

.coming-soon-icon {
    position: relative;
    z-index: 2;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--white);
    animation: rocketBounce 2s ease-in-out infinite, iconGlow 4s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.coming-soon-header .modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    z-index: 3;
}

.coming-soon-header .modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.coming-soon-body {
    padding: 30px;
    text-align: center;
    position: relative;
}

.coming-soon-animation {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.floating-circles {
    position: relative;
    width: 120px;
    height: 60px;
}

.circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    animation: floatingCircles 3s ease-in-out infinite;
}

.circle-1 {
    width: 20px;
    height: 20px;
    background: var(--primary);
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.circle-2 {
    width: 16px;
    height: 16px;
    background: var(--secondary);
    top: 20px;
    right: 20px;
    animation-delay: 0.5s;
}

.circle-3 {
    width: 12px;
    height: 12px;
    background: var(--accent);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1s;
}

.coming-soon-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gray-900);
    margin-bottom: 16px;
    margin-top: 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.coming-soon-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}

.coming-soon-description {
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}

.coming-soon-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--gray-700);
    margin-bottom: 16px;
}

.coming-soon-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    min-width: 120px;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.feature-item i {
    font-size: 24px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-item span {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    text-align: center;
}

.coming-soon-form {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.coming-soon-form .form-group input,
.coming-soon-form .form-group select,
.coming-soon-form .form-group textarea {
    border: 2px solid var(--gray-200);
    background: var(--gray-50);
    font-size: 16px;
    padding: 14px 18px;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    font-family: inherit;
    resize: vertical;
}

.coming-soon-form .form-group input:focus,
.coming-soon-form .form-group select:focus,
.coming-soon-form .form-group textarea:focus {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255, 27, 109, 0.1);
}

.coming-soon-form .form-group input::placeholder,
.coming-soon-form .form-group textarea::placeholder {
    color: var(--gray-500);
    font-weight: 500;
}

.coming-soon-form .form-group select {
    color: var(--gray-600);
    cursor: pointer;
}

.coming-soon-form .form-group select:invalid {
    color: var(--gray-500);
}

.coming-soon-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    font-size: 18px;
    font-weight: 700;
    padding: 18px 32px;
    border-radius: var(--radius-lg);
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.coming-soon-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.coming-soon-btn:hover::before {
    left: 100%;
}

.coming-soon-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(255, 27, 109, 0.3);
}

.coming-soon-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-500);
    position: relative;
    z-index: 2;
}

.coming-soon-note i {
    color: #10b981;
    font-size: 16px;
}

/* ===== ANIMACIONES COMING SOON ===== */
@keyframes gradientShift {
    0% { 
        background-position: 0% 50%;
    }
    50% { 
        background-position: 100% 50%;
    }
    100% { 
        background-position: 0% 50%;
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

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

@keyframes rocketBounce {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
    }
    25% { 
        transform: translateY(-10px) rotate(-5deg); 
    }
    75% { 
        transform: translateY(-5px) rotate(5deg); 
    }
}

@keyframes iconGlow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.25);
    }
    50% { 
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
        background: rgba(255, 255, 255, 0.35);
    }
}

@keyframes floatingDots {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-10px, -10px) rotate(90deg); }
    50% { transform: translate(-20px, -20px) rotate(180deg); }
    75% { transform: translate(-30px, -30px) rotate(270deg); }
    100% { transform: translate(-40px, -40px) rotate(360deg); }
}

@keyframes floatingCircles {
    0%, 100% { 
        transform: translateY(0) scale(1); 
        opacity: 0.6; 
    }
    50% { 
        transform: translateY(-20px) scale(1.1); 
        opacity: 0.8; 
    }
}