@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&family=JetBrains+Mono&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css");
/* CSS específico generado desde voicebots-ia.html.
   Se excluyen reglas de clases del header/footer común porque se movieron a assets/header.css y assets/footer.css. */

/* Copiado desde style.css */
:root {
    --bg: #05080d;
    --bg-accent: #0a1118;
    --primary: #ff5e00;
    /* Naranja intenso */
    --primary-dark: #cc4a00;
    --accent: #ffd04d;
    /* Soft Amber / Yellow */
    --accent-dark: #cc993d;
    --text: #f1f5f9;
    --text-dim: #94a3b8;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
    --font-sans: 'Outfit', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --header-height: 80px;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Elements */
canvas#bgCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
}

.orb {
    position: fixed;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -2;
    opacity: 0.12;
    pointer-events: none;
    animation: floatOrb 25s infinite alternate;
}

.orb-1 {
    background: radial-gradient(circle, var(--primary), transparent 70%);
    top: -200px;
    left: -200px;
}

.orb-2 {
    background: radial-gradient(circle, var(--accent), transparent 70%);
    bottom: -200px;
    right: -200px;
    animation-delay: -7s;
}

@keyframes floatOrb {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(150px, 150px) scale(1.1);
    }
}

/* Typography */
h1,
h2,
h3,
h4 {
    letter-spacing: -0.02em;
}

.highlight {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 800;
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Hero Section */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding-top: calc(var(--header-height) + 30px);
    padding-bottom: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 94, 0, 0.1);
    border: 1px solid rgba(255, 94, 0, 0.2);
    padding: 8px 16px;
    border-radius: 100px;
    color: var(--primary);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-dim);
    max-width: 600px;
    margin-bottom: 35px;
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.img-container {
    width: 75%;
    position: relative;
}

.img-container img {
    width: 100%;
    border-radius: 24px;
    border: 1px solid var(--card-border);
    mask-image: linear-gradient(to bottom, black 80%, transparent);
}

/* Solutions Section (Image Style) */
.solutions-section {
    padding: 70px 30px;
    background: var(--bg);
    position: relative;
    z-index: 10;
}

.solutions-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.solutions-header h2 {
    font-size: 2.22rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.solutions-header p {
    color: var(--text-dim);
    font-size: 1rem;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.solution-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.solution-card .sol-icon {
    font-size: 2.8rem;
    color: var(--accent);
    margin-bottom: 15px;
    transition: var(--transition);
    z-index: 2;
}

.solution-card h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 700;
    z-index: 2;
}

.solution-card p {
    font-size: 0.95rem;
    color: var(--text-dim);
    margin-bottom: 35px;
    line-height: 1.6;
    flex-grow: 1;
    z-index: 2;
}

/* Watermark Icon (Top-Left Dynamic) */
.sol-watermark {
    position: absolute;
    top: -40px;
    left: -40px;
    font-size: 15rem;
    color: var(--primary);
    opacity: 0;
    /* Fully hidden until hover */
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    pointer-events: none;
    z-index: 0;
    transform: rotate(-15deg) scale(0.8);
}

/* Hover Effect (Image 2 Style) */
.solution-card:hover {
    background: rgba(13, 20, 33, 0.9);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 94, 0, 0.1);
    border-color: var(--accent);
}

.solution-card:hover .sol-watermark {
    opacity: 0.08;
    /* Subtle large icon watermark on the left */
    transform: rotate(-5deg) scale(1.1);
    left: -20px;
}

.solution-card:hover .sol-icon {
    transform: scale(1.1);
    color: var(--primary);
}

.solution-card:hover h3,
.solution-card:hover p {
    color: #fff;
}

/* Stats Bar Section */
.stats-bar-section {
    background: #05080d;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 5;
}

.stats-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
    padding: 0 30px;
}

.stat-item {
    text-align: center;
    flex: 1;
    position: relative;
    padding: 5px;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 4px;
    font-family: var(--font-sans);
    letter-spacing: -0.5px;
    position: relative;
}

.stat-text {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--text-dim);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: var(--font-mono);
}

@media (max-width: 991px) {
.stats-bar-container {
        flex-wrap: wrap;
        gap: 50px;
    }

.stat-item {
        flex: 1 1 40%;
    }

.stat-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
.stat-item {
        flex: 1 1 100%;
    }
}

/* Flashy Ticker Section */
.ticker-section {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    padding: 20px 0;
    overflow: hidden;
    position: relative;
    z-index: 5;
    box-shadow: 0 10px 30px rgba(255, 94, 0, 0.2);
    margin: 40px 0;
}

.ticker-wrapper {
    display: flex;
    white-space: nowrap;
}

.ticker-track {
    display: flex;
    align-items: center;
    gap: 100px; /* Space between items */
    animation: scrollTicker 40s linear infinite;
}

.ticker-item {
    display: flex;
    flex-direction: row; /* Icon beside text */
    align-items: center;
    gap: 15px; /* Small space between icon and word */
}

.ticker-item i {
    font-size: 1.8rem; 
    color: #fff;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.ticker-item span {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.ticker-track .dot {
    display: none; /* Removed as we use gaps now */
}

@keyframes scrollTicker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Pause on hover */
.ticker-section:hover .ticker-track {
    animation-play-state: paused;
}

/* Products and Services List Section */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 170px;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 0;
}

.value-added-section {
    padding: 60px 30px;
}

.bento-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    padding: 22px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
}

.bento-item:hover {
    background: rgba(255, 94, 0, 0.08);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-medium {
    grid-column: span 2;
    grid-row: span 1;
}

.bento-small {
    grid-column: span 1;
    grid-row: span 1;
}

.bento-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.bento-icon {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 12px;
}

.bento-item h3 {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 10px;
}

.bento-item p {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.6;
}

.bento-list {
    margin-top: auto;
    list-style: none;
}

.bento-list li {
    font-size: 0.85rem;
    color: var(--accent);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bento-badge {
    margin-top: auto;
    align-self: flex-start;
    background: rgba(255, 208, 131, 0.1);
    color: var(--accent);
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid rgba(241, 212, 131, 0.2);
}

.bento-bg-icon {
    position: absolute;
    bottom: -30px;
    right: -30px;
    font-size: 12rem;
    color: var(--primary);
    opacity: 0.03;
    transition: var(--transition);
}

.bento-item:hover .bento-bg-icon {
    opacity: 0.1;
    transform: scale(1.1) rotate(-5deg);
}

@media (max-width: 1024px) {
.bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

.bento-large,
    .bento-medium,
    .bento-small {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
.bento-grid {
        grid-template-columns: 1fr;
    }

.bento-item {
        grid-column: span 1;
    }
}

/* Data Sovereignty Section */
.data-sovereignty-section {
    padding: 80px 30px;
    background: linear-gradient(135deg, rgba(10, 17, 24, 0.8), rgba(5, 8, 13, 0.9));
    position: relative;
    z-index: 10;
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
    margin-bottom: 40px;
}

.sovereignty-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

.sovereignty-content {
    flex: 1;
}

.sovereignty-content h2 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 10px;
}

.sovereignty-content h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.sovereignty-info p {
    color: var(--text-dim);
    font-size: 1.05rem;
    margin-bottom: 20px;
}

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

.sovereignty-list li {
    margin-bottom: 15px;
    color: var(--text-dim);
    font-size: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}

.sovereignty-list li i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 3px;
}

.sovereignty-list li strong {
    color: var(--text);
}

.sovereignty-alert {
    background: rgba(255, 94, 0, 0.1);
    border-left: 4px solid var(--primary);
    padding: 15px 20px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 30px;
}

.sovereignty-alert p {
    color: #ffcc80;
    font-weight: 600;
    font-size: 1.05rem;
    margin: 0;
}

.sovereignty-message-container {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0;
}

.sovereignty-message {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.sovereignty-message p {
    color: var(--text);
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.6;
}

.sovereignty-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.sovereignty-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 94, 0, 0.2);
    border: 1px solid rgba(255, 94, 0, 0.3);
    transition: var(--transition);
}

.sovereignty-image img:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 94, 0, 0.4);
}

@media (max-width: 991px) {
.sovereignty-container {
        flex-direction: column;
        text-align: center;
    }

.sovereignty-list li {
        text-align: left;
    }

.sovereignty-alert {
        text-align: left;
    }

.sovereignty-message {
        text-align: left;
    }
}

/* Holding / Cloud Perú Section */
.holding-section {
    padding: 80px 30px;
    background: #05080d;
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(255, 94, 0, 0.2);
    border-bottom: 1px solid var(--card-border);
}

.holding-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--card-border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(255, 94, 0, 0.05);
}

.holding-content {
    flex: 1;
}

.holding-content h2 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
}

.holding-content p {
    color: var(--text-dim);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.holding-content p:last-child {
    margin-bottom: 0;
}

.holding-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.holding-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    /* Destello naranja por defecto + sombra oscura */
    box-shadow: 0 0 30px rgba(255, 94, 0, 0.3), 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.holding-image img:hover {
    transform: scale(1.02);
    /* Destello naranja intensificado al pasar el mouse */
    box-shadow: 0 0 50px rgba(255, 94, 0, 0.6), 0 15px 40px rgba(0, 0, 0, 0.6);
}

@media (max-width: 991px) {
.holding-container {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
}

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 94, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 102, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 102, 0, 0);
    }
}

@media (max-width: 1024px) {
.hero h1 {
        font-size: 3rem;
    }

.bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

.span-4,
    .span-6,
    .span-8 {
        grid-column: span 12;
    }
}

/* Estilos inline bloque 1 */
/* CSS Específico para la página de Voicebots - Estilo Dark-Tech */
        :root {
            --vb-bg: #050b14;
            --vb-card: #0a1120;
            --vb-primary: #10b981; /* Verde esmeralda claro (mint) */
            --vb-primary-glow: rgba(16, 185, 129, 0.3);
            --vb-accent: #f97316; /* Naranja OSLatino adaptado */
            --vb-text: #f1f5f9;
            --vb-text-dim: #94a3b8;
            --vb-border: rgba(255, 255, 255, 0.08);
            --vb-radius: 16px;
        }

body {
            background-color: var(--vb-bg);
            color: var(--vb-text);
            overflow-x: hidden;
        }

/* Ocultar el canvas global para usar nuestro propio fondo dinámico */
        #bgCanvas, .orb {
            display: none;
        }

/* Fondo de Burbujas Dinámico */
        .bubble-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: -2;
            overflow: hidden;
            background: radial-gradient(circle at 15% 50%, rgba(16, 185, 129, 0.05), transparent 40%),
                        radial-gradient(circle at 85% 30%, rgba(249, 115, 22, 0.05), transparent 40%);
        }

.bubble {
            position: absolute;
            background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.01));
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.05);
            bottom: -100px;
            animation: floatUp linear infinite;
        }

.bubble:nth-child(1) { width: 80px; height: 80px; left: 10%; animation-duration: 18s; animation-delay: 0s; }

.bubble:nth-child(2) { width: 120px; height: 120px; left: 25%; animation-duration: 22s; animation-delay: 4s; }

.bubble:nth-child(3) { width: 60px; height: 60px; left: 40%; animation-duration: 15s; animation-delay: 2s; }

.bubble:nth-child(4) { width: 90px; height: 90px; left: 60%; animation-duration: 19s; animation-delay: 8s; }

.bubble:nth-child(5) { width: 150px; height: 150px; left: 75%; animation-duration: 25s; animation-delay: 1s; }

.bubble:nth-child(6) { width: 50px; height: 50px; left: 90%; animation-duration: 14s; animation-delay: 5s; }

@keyframes floatUp {
            0% { transform: translateY(0) scale(0.8); opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 0.5; }
            100% { transform: translateY(-120vh) scale(1.2); opacity: 0; }
        }

/* Utilidades Globales para Voicebot */
        .vb-section {
            padding: 80px 20px;
            position: relative;
            z-index: 10;
        }

.vb-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 50px;
        }

.vb-header h2 {
            font-size: 2.8rem;
            color: #ffffff;
            margin-bottom: 15px;
            font-weight: 800;
        }

.vb-header h2 span {
            color: var(--vb-accent);
        }

.vb-header p {
            color: var(--vb-text-dim);
            font-size: 1.1rem;
            line-height: 1.6;
        }

/* Hero Section */
        .vb-hero {
            min-height: 85vh;
            padding-top: calc(var(--header-height) + 60px);
            display: flex;
            align-items: center;
            justify-content: center;
            max-width: 1300px;
            margin: 0 auto;
            gap: 50px;
        }

.vb-hero-content {
            flex: 1;
            max-width: 650px;
        }

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

.vb-hero-content {
            animation: fadeInSlideUp 0.8s ease-out forwards;
        }

.vb-hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(16, 185, 129, 0.1);
            border: 1px solid rgba(16, 185, 129, 0.3);
            color: var(--vb-primary);
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 25px;
            box-shadow: 0 0 15px var(--vb-primary-glow);
        }

.vb-hero h1 {
            font-size: 4.5rem;
            line-height: 1.1;
            font-weight: 800;
            margin-bottom: 25px;
            letter-spacing: -1px;
        }

.vb-hero h1 .text-green {
            color: var(--vb-primary);
        }

.vb-hero h1 .text-orange {
            color: var(--vb-accent);
        }

.vb-hero p {
            font-size: 1.25rem;
            color: var(--vb-text-dim);
            margin-bottom: 40px;
            line-height: 1.6;
        }

.vb-hero-btns {
            display: flex;
            gap: 20px;
            align-items: center;
            margin-bottom: 40px;
        }

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

.vb-btn-primary {
            background: var(--vb-accent);
            color: white;
            border: none;
            box-shadow: 0 5px 20px rgba(249, 115, 22, 0.4);
        }

.vb-btn-primary:hover {
            background: #e06510;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(249, 115, 22, 0.6);
        }

.vb-btn-outline {
            background: transparent;
            color: var(--vb-accent);
            border: 1px solid rgba(249, 115, 22, 0.5);
        }

.vb-btn-outline:hover {
            background: rgba(249, 115, 22, 0.05);
            border-color: var(--vb-accent);
        }

.vb-hero-footer {
            display: flex;
            gap: 25px;
            font-size: 0.9rem;
            color: var(--vb-text-dim);
        }

.vb-hero-footer span {
            display: flex;
            align-items: center;
            gap: 8px;
        }

.vb-hero-footer i.text-green { color: var(--vb-primary); }

.vb-hero-footer i.text-orange { color: var(--vb-accent); }

/* Abstract AI Visual (Reemplazo de imagen) */
        .vb-hero-visual {
            flex: 1;
            display: flex;
            justify-content: center;
            position: relative;
            animation: fadeInSlideUp 1s ease-out 0.2s forwards;
            opacity: 0;
        }

.ai-core-container {
            width: 400px;
            height: 400px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

.ai-wave {
            position: absolute;
            border: 2px solid var(--vb-primary);
            border-radius: 50%;
            opacity: 0;
            animation: pulseWave 3s linear infinite;
        }

.ai-wave:nth-child(1) { width: 150px; height: 150px; animation-delay: 0s; }

.ai-wave:nth-child(2) { width: 250px; height: 250px; animation-delay: 1s; }

.ai-wave:nth-child(3) { width: 350px; height: 350px; animation-delay: 2s; border-color: var(--vb-accent); }

@keyframes pulseWave {
            0% { transform: scale(0.5); opacity: 0.8; border-width: 4px; }
            100% { transform: scale(1.5); opacity: 0; border-width: 1px; }
        }

.click-wave {
            position: absolute;
            width: 120px;
            height: 120px;
            border: 2px solid var(--vb-accent);
            border-radius: 50%;
            opacity: 0;
            pointer-events: none;
            z-index: 4;
            animation: fastPulseWave 2s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
        }

@keyframes fastPulseWave {
            0% { transform: scale(1); opacity: 0.9; border-width: 6px; }
            100% { transform: scale(5); opacity: 0; border-width: 0px; }
        }

.ai-core {
            width: 120px;
            height: 120px;
            background: radial-gradient(circle at 30% 30%, #34d399, var(--vb-primary));
            border-radius: 50%;
            z-index: 5;
            box-shadow: 0 0 50px var(--vb-primary-glow), inset 0 -15px 30px rgba(0,0,0,0.5);
            animation: floatCore 4s ease-in-out infinite alternate;
            position: relative;
            cursor: pointer;
            transition: filter 0.1s ease, box-shadow 0.1s ease;
        }

.ai-core:active {
            filter: brightness(1.3);
            box-shadow: 0 0 80px rgba(16, 185, 129, 0.8), inset 0 -5px 15px rgba(0,0,0,0.3);
        }

.ai-core::after {
            content: '';
            position: absolute;
            top: 20%;
            left: 20%;
            width: 25px;
            height: 25px;
            background: rgba(255,255,255,0.8);
            border-radius: 50%;
            filter: blur(2px);
        }

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

/* Results / Metrics Section */
        .vb-results {
            background: rgba(10, 17, 32, 0.6);
            border-top: 1px solid var(--vb-border);
            border-bottom: 1px solid var(--vb-border);
            padding: 80px 20px;
        }

.metrics-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }

.metric-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--vb-border);
            border-radius: var(--vb-radius);
            padding: 30px 20px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

.metric-card:hover {
            transform: translateY(-8px) scale(1.02);
            border-color: var(--vb-primary);
            background: rgba(16, 185, 129, 0.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.6), 0 0 30px rgba(16, 185, 129, 0.4), 0 0 50px rgba(16, 185, 129, 0.2);
        }

.metric-icon {
            width: 50px;
            height: 50px;
            background: rgba(16, 185, 129, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--vb-primary);
            font-size: 1.2rem;
            margin: 0 auto 20px;
        }

.metric-value {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--vb-accent);
            margin-bottom: 5px;
        }

.metric-value span {
            font-size: 1rem;
            color: var(--vb-text);
        }

.metric-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 10px;
        }

.metric-desc {
            font-size: 0.85rem;
            color: var(--vb-text-dim);
            line-height: 1.5;
        }

.metrics-footer {
            max-width: 1200px;
            margin: 40px auto 0;
            text-align: center;
        }

.availability-stats {
            display: flex;
            justify-content: center;
            gap: 60px;
            margin-bottom: 20px;
        }

.av-stat h4 {
            font-size: 1.6rem;
            color: var(--vb-accent);
            margin-bottom: 5px;
        }

.av-stat p {
            color: var(--vb-text-dim);
            font-size: 0.95rem;
        }

.metrics-note {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.4);
            font-family: var(--font-mono);
        }

/* Features Section (Bento Grid) */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            max-width: 1200px;
            margin: 0 auto;
        }

.feature-box {
            background: rgba(255,255,255,0.02);
            border: 1px solid var(--vb-border);
            border-radius: var(--vb-radius);
            padding: 35px 30px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

.feature-box:hover {
            transform: translateY(-8px);
            border-color: var(--vb-primary);
            background: linear-gradient(145deg, rgba(255,255,255,0.03), rgba(16, 185, 129, 0.08));
            box-shadow: 0 15px 35px rgba(0,0,0,0.6), 0 0 25px rgba(16, 185, 129, 0.4), 0 0 60px rgba(16, 185, 129, 0.2);
        }

.feature-box i {
            color: var(--vb-primary);
            font-size: 1.8rem;
            margin-bottom: 20px;
        }

.feature-box h3 {
            font-size: 1.3rem;
            color: #fff;
            margin-bottom: 15px;
        }

.feature-box p {
            color: var(--vb-text-dim);
            font-size: 0.95rem;
            line-height: 1.6;
        }

/* Use Cases Section */
        .cases-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

.case-card {
            background: var(--vb-card);
            border: 1px solid var(--vb-border);
            border-radius: var(--vb-radius);
            padding: 40px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

.case-card:hover {
            transform: translateY(-8px);
            border-color: var(--vb-accent);
            box-shadow: 0 15px 40px rgba(0,0,0,0.7), 0 0 30px rgba(249, 115, 22, 0.35), 0 0 70px rgba(249, 115, 22, 0.15);
        }

.case-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 4px; height: 100%;
            background: var(--vb-primary);
            opacity: 0.5;
            transition: opacity 0.3s ease, background 0.3s ease;
        }

.case-card:hover::before { 
            opacity: 1; 
            background: var(--vb-accent);
        }

.case-icon {
            display: inline-flex;
            width: 45px; height: 45px;
            background: rgba(16, 185, 129, 0.1);
            color: var(--vb-primary);
            border-radius: 12px;
            align-items: center; justify-content: center;
            font-size: 1.3rem;
            margin-bottom: 20px;
        }

.case-card h3 {
            font-size: 1.5rem;
            color: #fff;
            margin-bottom: 15px;
        }

.case-card p {
            color: var(--vb-text-dim);
            margin-bottom: 25px;
            font-size: 1rem;
            line-height: 1.6;
        }

.case-quote {
            border-left: 2px solid var(--vb-accent);
            padding-left: 20px;
            font-style: italic;
            color: rgba(255,255,255,0.7);
            font-size: 0.95rem;
        }

/* Timeline Section */
        .implementation-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

.timeline-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            position: relative;
            z-index: 2;
        }

.timeline-line {
            position: absolute;
            top: 40px;
            left: 5%;
            right: 5%;
            height: 1px;
            background: var(--vb-border);
            z-index: 1;
        }

.timeline-step {
            text-align: center;
            padding: 0 15px;
            position: relative;
        }

.step-number {
            font-family: var(--font-mono);
            font-size: 2rem;
            font-weight: 800;
            color: rgba(16, 185, 129, 0.15);
            margin-bottom: 10px;
        }

.step-icon-wrap {
            width: 40px;
            height: 40px;
            background: var(--vb-bg);
            border: 2px solid var(--vb-primary);
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--vb-primary);
            position: relative;
            z-index: 2;
            box-shadow: 0 0 15px rgba(0,0,0,0.5);
        }

.timeline-step h4 {
            color: #fff;
            margin-bottom: 15px;
            font-size: 1.1rem;
        }

.timeline-step p {
            color: var(--vb-text-dim);
            font-size: 0.9rem;
            line-height: 1.6;
        }

/* Final CTA */
        .vb-cta-section {
            text-align: center;
            padding: 100px 20px;
            background: linear-gradient(180deg, var(--vb-bg) 0%, rgba(10, 17, 32, 0.8) 100%);
            border-top: 1px solid var(--vb-border);
        }

.vb-cta-section h2 {
            font-size: 3rem;
            color: #fff;
            margin-bottom: 20px;
        }

.vb-cta-section h2 .text-orange { color: var(--vb-accent); }

.vb-cta-section p {
            color: var(--vb-text-dim);
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto 40px;
        }

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

.btn-whatsapp-outline {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 600;
            border: 1px solid var(--vb-accent);
            color: var(--vb-accent);
            text-decoration: none;
            transition: all 0.3s ease;
        }

.btn-whatsapp-outline:hover {
            background: rgba(249, 115, 22, 0.1);
        }

/* Responsive */
        @media (max-width: 1024px) {
            .vb-hero { flex-direction: column; text-align: center; }
            .vb-hero-content { margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
            .vb-hero h1 { font-size: 3.5rem; }
            .metrics-grid { grid-template-columns: repeat(2, 1fr); }
            .features-grid { grid-template-columns: repeat(2, 1fr); }
            .cases-grid { grid-template-columns: 1fr; }
        }

@media (max-width: 768px) {
.vb-hero h1 { font-size: 2.8rem; }

.metrics-grid { grid-template-columns: 1fr; }

.features-grid { grid-template-columns: 1fr; }

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

.timeline-line { display: none; }

.availability-stats { flex-direction: column; gap: 20px; }

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