@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 integradores-sistemas.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 Integradores - Estilo Dark-Tech */
        :root {
            --int-bg: #050811;
            --int-primary: #3b82f6;
            --int-primary-glow: rgba(59, 130, 246, 0.4);
            --int-accent: #f59e0b;
            --int-accent-glow: rgba(245, 158, 11, 0.4);
            --int-alert: #ef4444;
            --int-success: #10b981;
            --int-text: #f1f5f9;
            --int-text-dim: #94a3b8;
            --int-border: rgba(255, 255, 255, 0.08);
            --int-radius: 16px;
        }

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

/* Ocultar elementos globales flotantes de index.html si es que interfiere */
        #bgCanvas,
        .orb {
            display: none !important;
        }

/* Canvas de Fondo Geométrico Futurista */
        #geometryCanvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: -2;
            pointer-events: none;
        }

/* Gradientes de ambiente sobre el canvas */
        .int-bg-network {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: -1;
            pointer-events: none;
            background:
                radial-gradient(ellipse at 15% 30%, rgba(59, 130, 246, 0.07), transparent 50%),
                radial-gradient(ellipse at 85% 70%, rgba(245, 158, 11, 0.07), transparent 50%),
                radial-gradient(ellipse at 50% 50%, rgba(5, 8, 17, 0.5), transparent 80%);
        }

/* Utilidades Globales */
        .int-section {
            padding: 80px 20px;
            position: relative;
            z-index: 10;
            max-width: 1300px;
            margin: 0 auto;
        }

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

.int-header h2 {
            font-size: 3rem;
            color: #ffffff;
            margin-bottom: 15px;
            font-weight: 800;
            letter-spacing: -1px;
        }

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

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

/* Hero Section */
        .int-hero {
            min-height: 90vh;
            padding-top: calc(var(--header-height) + 80px);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 50px;
        }

.int-hero-content {
            flex: 1;
            max-width: 650px;
            animation: fadeInSlideUp 0.8s ease-out forwards;
        }

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

.int-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(245, 158, 11, 0.1);
            border: 1px solid rgba(245, 158, 11, 0.3);
            color: var(--int-accent);
            padding: 8px 18px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 25px;
            box-shadow: 0 0 20px rgba(245, 158, 11, 0.2);
        }

.int-hero h1 {
            font-size: 4.2rem;
            line-height: 1.1;
            font-weight: 800;
            margin-bottom: 25px;
            letter-spacing: -1.5px;
        }

.int-hero h1 .text-accent {
            background: linear-gradient(90deg, #f59e0b, #f97316);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
            /* fallback estándar para -webkit-text-fill-color */
            text-shadow: 0 0 30px rgba(245, 158, 11, 0.3);
        }

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

.int-hero-btns {
            display: flex;
            gap: 20px;
            align-items: center;
        }

.int-btn {
            padding: 16px 36px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.05rem;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
        }

.int-btn-primary {
            background: linear-gradient(135deg, #f59e0b, #f97316);
            color: white;
            border: none;
            box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4);
        }

.int-btn-primary:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 15px 35px rgba(245, 158, 11, 0.6);
        }

.int-btn-outline {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(5px);
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

.int-btn-outline:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.3);
            transform: translateY(-4px);
        }

/* Hero Visual Dashboard */
        .int-hero-visual {
            flex: 1;
            position: relative;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: fadeInSlideUp 1s ease-out 0.2s forwards;
            opacity: 0;
            perspective: 1000px;
        }

.dashboard-mockup {
            width: 110%;
            height: 100%;
            background: linear-gradient(145deg, rgba(15, 23, 42, 0.8), rgba(5, 8, 17, 0.95));
            border: 1px solid rgba(59, 130, 246, 0.3);
            border-radius: 20px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 50px rgba(59, 130, 246, 0.2);
            backdrop-filter: blur(15px);
            transform: rotateY(-15deg) rotateX(5deg);
            display: flex;
            flex-direction: column;
            overflow: hidden;
            transition: transform 0.5s ease;
        }

.dashboard-mockup:hover {
            transform: rotateY(-5deg) rotateX(2deg) translateY(-10px);
        }

.dash-header {
            height: 40px;
            background: rgba(255, 255, 255, 0.05);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            padding: 0 20px;
            gap: 8px;
        }

.dash-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #475569;
        }

.dash-dot.red {
            background: #ef4444;
        }

.dash-dot.yellow {
            background: #f59e0b;
        }

.dash-dot.green {
            background: #10b981;
        }

.dash-body {
            padding: 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            flex: 1;
        }

.dash-chart {
            background: rgba(255, 255, 255, 0.02);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            padding: 15px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            position: relative;
            overflow: hidden;
        }

.dash-chart-title {
            width: 40%;
            height: 8px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
        }

.dash-chart-bar {
            height: 100%;
            background: linear-gradient(180deg, var(--int-primary), rgba(59, 130, 246, 0.1));
            border-radius: 4px;
            opacity: 0.8;
        }

.dash-chart.accent .dash-chart-bar {
            background: linear-gradient(180deg, var(--int-accent), rgba(245, 158, 11, 0.1));
        }

.dash-bars {
            display: flex;
            gap: 8px;
            align-items: flex-end;
            height: 100%;
        }

.dash-bars div {
            flex: 1;
            border-radius: 4px 4px 0 0;
        }

/* Floating elements over dashboard */
        .float-card {
            position: absolute;
            background: rgba(15, 23, 42, 0.9);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(16, 185, 129, 0.4);
            padding: 15px 20px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            gap: 15px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(16, 185, 129, 0.2);
            animation: floatBubble 5s alternate infinite ease-in-out;
        }

.float-card.c1 {
            bottom: 10%;
            left: -10%;
            color: #10b981;
        }

.float-card.c2 {
            top: 20%;
            right: -15%;
            border-color: rgba(245, 158, 11, 0.4);
            color: #f59e0b;
            animation-delay: 1.5s;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(245, 158, 11, 0.2);
        }

@keyframes floatBubble {
            0% {
                transform: translateY(0);
            }

            100% {
                transform: translateY(-15px);
            }
        }

/* ─── NUEVA ESTRUCTURA DE COMPARACIÓN ─── */

        /* --- Sección 1: Franja de Problemas (ancho completo) --- */
        .problems-section {
            padding: 60px 20px 0;
            position: relative;
            z-index: 10;
            max-width: 1300px;
            margin: 0 auto;
        }

.problems-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: #fca5a5;
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 35px;
        }

.problems-strip {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

.problem-card {
            background: linear-gradient(160deg, rgba(30, 10, 10, 0.7), rgba(15, 5, 5, 0.9));
            border: 1px solid rgba(239, 68, 68, 0.12);
            border-top: 2px solid rgba(239, 68, 68, 0.4);
            border-radius: 16px;
            padding: 28px 24px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(239, 68, 68, 0.02);
            position: relative;
            overflow: hidden;
            will-change: transform;
        }

.problem-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(105deg, transparent 40%, rgba(239, 68, 68, 0.03) 50%, transparent 60%);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

.problem-card:hover::after {
            transform: translateX(100%);
        }

.problem-card:hover {
            border-top-color: rgba(239, 68, 68, 0.8);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(239, 68, 68, 0.2);
        }

.problem-icon {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            background: rgba(239, 68, 68, 0.1);
            border: 1px solid rgba(239, 68, 68, 0.2);
            color: #ef4444;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            margin-bottom: 16px;
            transition: all 0.3s ease;
        }

.problem-card:hover .problem-icon {
            background: rgba(239, 68, 68, 0.2);
            box-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
        }

.problem-card h4 {
            font-size: 1.05rem;
            color: #fecaca;
            margin-bottom: 8px;
            font-weight: 600;
        }

.problem-card p {
            font-size: 0.88rem;
            color: rgba(148, 163, 184, 0.8);
            line-height: 1.5;
        }

/* --- Sección 2: Soluciones + Visual (2 columnas) --- */
        .solution-section {
            padding: 50px 20px 80px;
            position: relative;
            z-index: 10;
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

.solution-column {
            background: linear-gradient(160deg, rgba(5, 20, 10, 0.6), rgba(5, 8, 17, 0.85));
            border: 1px solid rgba(16, 185, 129, 0.08);
            border-top: 2px solid rgba(16, 185, 129, 0.45);
            border-radius: 24px;
            padding: 45px 40px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
        }

.solution-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--int-accent);
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 35px;
            line-height: 1.3;
        }

.solution-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 18px;
        }

.solution-item {
            background: rgba(16, 185, 129, 0.04);
            border: 1px solid rgba(16, 185, 129, 0.1);
            border-radius: 14px;
            padding: 22px 18px;
            transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            will-change: transform;
        }

.solution-item:hover {
            background: rgba(16, 185, 129, 0.08);
            border-color: rgba(16, 185, 129, 0.3);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 0 0 20px rgba(16, 185, 129, 0.1);
        }

.solution-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: rgba(16, 185, 129, 0.1);
            border: 1px solid rgba(16, 185, 129, 0.2);
            color: #10b981;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            margin-bottom: 14px;
            transition: all 0.3s ease;
        }

.solution-item:hover .solution-icon {
            background: rgba(16, 185, 129, 0.2);
            box-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
        }

.solution-item h4 {
            font-size: 1rem;
            color: #6ee7b7;
            margin-bottom: 7px;
            font-weight: 600;
        }

.solution-item p {
            font-size: 0.85rem;
            color: rgba(148, 163, 184, 0.8);
            line-height: 1.5;
        }

/* Visual CSS para la columna derecha */
        .integration-visual {
            position: relative;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

.int-visual-hub {
            width: 120px;
            height: 120px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.3), rgba(59, 130, 246, 0.05));
            border: 2px solid rgba(59, 130, 246, 0.5);
            border-radius: 50%;
            position: absolute;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.8rem;
            color: var(--int-primary);
            box-shadow: 0 0 60px rgba(59, 130, 246, 0.3), inset 0 0 30px rgba(59, 130, 246, 0.1);
            animation: hubPulse 3s ease-in-out infinite;
            z-index: 5;
        }

@keyframes hubPulse {

            0%,
            100% {
                box-shadow: 0 0 40px rgba(59, 130, 246, 0.3), inset 0 0 20px rgba(59, 130, 246, 0.1);
            }

            50% {
                box-shadow: 0 0 80px rgba(59, 130, 246, 0.5), inset 0 0 40px rgba(59, 130, 246, 0.2);
            }
        }

.int-orbit-node {
            position: absolute;
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(5, 8, 17, 0.95));
            border-radius: 16px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 5px;
            font-size: 0.65rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            transition: all 0.3s ease;
            cursor: default;
            z-index: 4;
        }

.int-orbit-node i {
            font-size: 1.4rem;
        }

.int-orbit-node:hover {
            transform: scale(1.15);
            z-index: 6;
        }

.node-sunat {
            border: 1px solid rgba(245, 158, 11, 0.5);
            color: #f59e0b;
            top: 8%;
            left: 50%;
            transform: translateX(-50%);
            box-shadow: 0 0 20px rgba(245, 158, 11, 0.2);
            animation: floatNode 4s ease-in-out infinite;
        }

.node-ventas {
            border: 1px solid rgba(59, 130, 246, 0.5);
            color: #3b82f6;
            top: 30%;
            left: 5%;
            box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
            animation: floatNode 5s ease-in-out 0.5s infinite;
        }

.node-inv {
            border: 1px solid rgba(16, 185, 129, 0.5);
            color: #10b981;
            top: 30%;
            right: 5%;
            box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
            animation: floatNode 4.5s ease-in-out 1s infinite;
        }

.node-cont {
            border: 1px solid rgba(168, 85, 247, 0.5);
            color: #a855f7;
            top: 65%;
            left: 8%;
            box-shadow: 0 0 20px rgba(168, 85, 247, 0.2);
            animation: floatNode 5.5s ease-in-out 1.5s infinite;
        }

.node-crm {
            border: 1px solid rgba(239, 68, 68, 0.5);
            color: #ef4444;
            top: 65%;
            right: 8%;
            box-shadow: 0 0 20px rgba(239, 68, 68, 0.2);
            animation: floatNode 4s ease-in-out 2s infinite;
        }

.node-rrhh {
            border: 1px solid rgba(245, 158, 11, 0.5);
            color: #f59e0b;
            bottom: 6%;
            left: 50%;
            transform: translateX(-50%);
            box-shadow: 0 0 20px rgba(245, 158, 11, 0.15);
            animation: floatNode 6s ease-in-out 0.8s infinite;
        }

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

.node-sunat,
        .node-rrhh {
            animation-name: floatNodeCenter;
        }

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

/* Líneas conectoras entre nodos y hub */
        .int-connector {
            position: absolute;
            background: linear-gradient(90deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.4), rgba(59, 130, 246, 0.1));
            height: 1px;
            transform-origin: left center;
            animation: lineGlow 3s ease-in-out infinite;
            pointer-events: none;
        }

@keyframes lineGlow {

            0%,
            100% {
                opacity: 0.3;
            }

            50% {
                opacity: 0.8;
            }
        }

/* Responsive nuevas secciones */
        @media (max-width: 1024px) {
            .problems-strip {
                grid-template-columns: repeat(2, 1fr);
            }

            .solution-section {
                grid-template-columns: 1fr;
            }

            .integration-visual {
                height: 380px;
            }
        }

@media (max-width: 768px) {
.problems-strip {
                grid-template-columns: 1fr;
            }

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

/* Ocultar el viejo .comparison-container */
        .comparison-container {
            display: none !important;
        }

.comp-column {
            background: linear-gradient(160deg, rgba(15, 23, 42, 0.6), rgba(5, 8, 17, 0.8));
            backdrop-filter: blur(12px);
            border-radius: 24px;
            padding: 50px 40px;
            border: 1px solid rgba(255, 255, 255, 0.03);
            position: relative;
            overflow: hidden;
        }

.comp-column.negative {
            border-top: 2px solid rgba(239, 68, 68, 0.5);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 30px 60px rgba(239, 68, 68, 0.02);
        }

.comp-column.positive {
            border-top: 2px solid rgba(16, 185, 129, 0.5);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 30px 60px rgba(16, 185, 129, 0.05);
        }

.comp-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 40px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

.comp-column.negative .comp-title {
            color: #fca5a5;
        }

.comp-column.positive .comp-title {
            color: #6ee7b7;
        }

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

.comp-item {
            background: rgba(255, 255, 255, 0.02);
            padding: 25px 20px;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: transform 0.3s ease;
        }

.comp-item:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.04);
        }

.comp-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            font-size: 1.2rem;
        }

.comp-column.negative .comp-icon {
            background: rgba(239, 68, 68, 0.1);
            color: #ef4444;
        }

.comp-column.positive .comp-icon {
            background: rgba(16, 185, 129, 0.1);
            color: #10b981;
        }

.comp-item h4 {
            font-size: 1.1rem;
            color: #fff;
            margin-bottom: 8px;
        }

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

/* Bento Grid: Por que elegirnos */
        .bento-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            margin-top: 50px;
        }

.bento-card {
            background: linear-gradient(145deg, rgba(10, 15, 29, 0.85), rgba(5, 8, 17, 0.95));
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-left: 2px solid rgba(59, 130, 246, 0.5);
            border-radius: 20px;
            padding: 40px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(59, 130, 246, 0.04);
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            overflow: hidden;
            will-change: transform;
        }

/* Shimmer sweep animado */
        .bento-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.04) 50%, transparent 60%);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
            pointer-events: none;
        }

.bento-card:hover::after {
            transform: translateX(100%);
        }

/* Borde animado con gradiente en hover */
        .bento-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--int-accent), rgba(59, 130, 246, 0.8), transparent);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

.bento-card:hover::before {
            opacity: 1;
        }

.bento-card:hover {
            background: linear-gradient(145deg, rgba(18, 27, 50, 0.95), rgba(10, 15, 29, 1));
            border-left-color: var(--int-accent);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6),
                0 0 40px rgba(245, 158, 11, 0.15),
                inset 0 0 30px rgba(245, 158, 11, 0.03);
        }

.bento-icon {
            width: 56px;
            height: 56px;
            background: rgba(59, 130, 246, 0.1);
            color: var(--int-primary);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            margin-bottom: 22px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(59, 130, 246, 0.15);
            box-shadow: 0 0 15px rgba(59, 130, 246, 0.1);
        }

.bento-card:hover .bento-icon {
            background: rgba(245, 158, 11, 0.12);
            color: var(--int-accent);
            border-color: rgba(245, 158, 11, 0.3);
            box-shadow: 0 0 25px rgba(245, 158, 11, 0.25);
            transform: scale(1.1) rotate(-3deg);
        }

.bento-card h3 {
            font-size: 1.4rem;
            color: #fff;
            margin-bottom: 12px;
            transition: color 0.3s;
        }

.bento-card:hover h3 {
            color: rgba(255, 255, 255, 0.95);
        }

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

/* Constructor de Planes */
        .plan-builder {
            background: linear-gradient(160deg, rgba(15, 23, 42, 0.6), rgba(5, 8, 17, 0.9));
            backdrop-filter: blur(15px);
            border-radius: 30px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            padding: 60px;
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
            margin-top: 40px;
        }

.builder-section {
            margin-bottom: 40px;
        }

.builder-section h3 {
            font-size: 1.3rem;
            color: #fff;
            margin-bottom: 20px;
            display: flex;
            justify-content: space-between;
        }

.module-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

.module-item {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            padding: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

.module-item:hover {
            background: rgba(255, 255, 255, 0.05);
        }

.module-item.active {
            background: rgba(245, 158, 11, 0.05);
            border-color: var(--int-accent);
            box-shadow: 0 0 20px rgba(245, 158, 11, 0.15);
        }

.module-check {
            width: 24px;
            height: 24px;
            border-radius: 6px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

.module-item.active .module-check {
            background: var(--int-accent);
            border-color: var(--int-accent);
            color: #fff;
        }

.module-info h4 {
            font-size: 1.1rem;
            color: #fff;
            margin-bottom: 5px;
        }

.module-info p {
            font-size: 0.9rem;
            color: var(--int-text-dim);
        }

.summary-card {
            background: rgba(10, 15, 29, 0.8);
            border-radius: 20px;
            padding: 40px 30px;
            border: 1px solid rgba(245, 158, 11, 0.2);
            position: sticky;
            top: 120px;
            display: flex;
            flex-direction: column;
        }

.summary-card h3 {
            font-size: 1.5rem;
            color: #fff;
            text-align: center;
            margin-bottom: 30px;
        }

.summary-list {
            margin-bottom: 30px;
            flex: 1;
        }

.summary-list li {
            display: flex;
            justify-content: space-between;
            padding: 15px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            color: var(--int-text-dim);
            font-size: 1rem;
        }

.summary-list li span:last-child {
            color: #fff;
            font-weight: 600;
        }

/* FAQ Section */
        .faq-container {
            max-width: 900px;
            margin: 50px auto 0;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

.faq-item {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s;
        }

.faq-question {
            padding: 25px 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 1.15rem;
            color: #fff;
            transition: background 0.3s;
        }

.faq-question:hover {
            background: rgba(255, 255, 255, 0.04);
        }

.faq-question i {
            transition: transform 0.3s;
            color: var(--int-accent);
        }

.faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
            background: rgba(0, 0, 0, 0.2);
        }

.faq-answer p {
            padding: 0 30px 25px;
            color: var(--int-text-dim);
            line-height: 1.7;
            font-size: 1rem;
        }

.faq-item.active .faq-answer {
            max-height: 200px;
        }

.faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

.faq-item.active {
            border-color: rgba(59, 130, 246, 0.3);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

/* Responsive */
        @media (max-width: 1024px) {
            .int-hero {
                flex-direction: column;
                text-align: center;
                padding-top: 150px;
            }

            .int-hero-content {
                margin: 0 auto;
                align-items: center;
                display: flex;
                flex-direction: column;
            }

            .int-hero h1 {
                font-size: 3.5rem;
            }

            .comparison-container,
            .plan-builder {
                grid-template-columns: 1fr;
            }

            .bento-grid {
                grid-template-columns: 1fr;
            }

            .dashboard-mockup {
                width: 100%;
                transform: rotateY(0) rotateX(0);
            }

            .dashboard-mockup:hover {
                transform: translateY(-10px);
            }
        }

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

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

.comp-column {
                padding: 30px 20px;
            }

.int-hero-btns {
                flex-direction: column;
                width: 100%;
            }

.int-btn {
                width: 100%;
                justify-content: center;
            }

.plan-builder {
                padding: 30px 20px;
            }
}
