@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200&display=block');
/* =========================================
   JABATEC GLOBAL STYLES
   ========================================= */
:root {
    --primary: #1a1f36;
    --secondary: #0088cc;
    --accent: #2e7d32;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f9fbfd;
    --white: #ffffff;
    --border-color: #e2e8f0;
    --gradient: linear-gradient(135deg, #0088cc 0%, #6a5acd 100%);
    --wp-blue: #0073aa;
    --joomla-orange: #f47023;
    --joomla-blue: #0088cc;
    --hikashop-accent: #0077b6;
    --woo-purple: #7f54b3;
    /* Nuevos Tokens de Diseño (Google Stitch / Apple-tight) */
    --action-blue: #0066cc;
    --focus-blue: #0071e3;
    --sky-blue: #2997ff;
    --text-ink: #1d1d1f;
    --bg-parchment: #f5f5f7;
    --bg-pearl: #fafafc;
    --bg-dark-tile: #272729;
    /* Sobrescribir variables de tipografía nativas de Cassiopeia */
    --cassiopeia-font-sans-serif: 'Inter', system-ui, -apple-system, sans-serif !important;
    --cassiopeia-font-headings: 'Inter', system-ui, -apple-system, sans-serif !important;
}

/* Utilidades de Letreado (Apple-tight) */
.letter-tight-display {
    letter-spacing: -0.025em !important;
}

.letter-tight-ui {
    letter-spacing: -0.015em !important;
}

/* Utilidades de Colores de Diseño (Stitch) */
.bg-action-blue { background-color: var(--action-blue) !important; }

.bg-focus-blue { background-color: var(--focus-blue) !important; }

.bg-sky-blue { background-color: var(--sky-blue) !important; }

.bg-text-ink { background-color: var(--text-ink) !important; }

.bg-parchment { background-color: var(--bg-parchment) !important; }

.bg-pearl { background-color: var(--bg-pearl) !important; }

.bg-dark-tile { background-color: var(--bg-dark-tile) !important; }

.text-action-blue { color: var(--action-blue) !important; }

.text-sky-blue { color: var(--sky-blue) !important; }

.text-ink { color: var(--text-ink) !important; }

.text-parchment { color: var(--bg-parchment) !important; }

.text-pearl { color: var(--bg-pearl) !important; }

.text-dark-tile { color: var(--bg-dark-tile) !important; }

body, h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
}

/* ==========================================================================
   Tipografía y Jerarquía (Opción C - Monotipografía con Contraste)
   ========================================================================== */

/* Títulos principales del Hero (Extra Bold + tracking compacto) */
.hero h1, 
.hero-hikashop h1, 
.hero-woo h1, 
.hero-ia h1, 
.hero-portfolio h1, 
.contact-header h1, 
.nosotros-content h1,
.h1-linear {
    font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
    font-weight: 900 !important;
    letter-spacing: -0.03em !important;
}

/* Encabezados secundarios (H1 generales, H2, H3, H4, H5, H6) y clases de títulos */
h1, h2, h3, h4, h5, h6,
.section-header h2,
.section-title h2,
.section-cap h2,
.why-content h2,
.cta-box h2,
.title-centered h2,
.card h3,
.cap-card h3,
.project-content h3,
.stat-card h3,
.footer-col h4,
.feature-item h4,
.diff-card h4,
h1.fw-bold, h2.fw-bold, h3.fw-bold, h4.fw-bold, h5.fw-bold, h6.fw-bold,
.h1.fw-bold, .h2.fw-bold, .h3.fw-bold, .h4.fw-bold, .h5.fw-bold, .h6.fw-bold,
h1.fw-bolder, h2.fw-bolder, h3.fw-bolder, h4.fw-bolder, h5.fw-bolder, h6.fw-bolder,
.h1.fw-bolder, .h2.fw-bolder, .h3.fw-bolder, .h4.fw-bolder, .h5.fw-bolder, .h6.fw-bolder {
    font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
    font-weight: 400 !important;
    letter-spacing: -0.01em !important;
}

body {
    margin: 0;
    padding-top: 94px !important; /* Reservar espacio para la cabecera fija */
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden; /* Ocultar desbordamiento horizontal de las fajas */
}

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

/* Utilidades Flex */
.flex { display: flex; }

.flex-col { flex-direction: column; }

.items-center { align-items: center; }

.justify-center { justify-content: center; }

.justify-between { justify-content: space-between; }

.flex-wrap { flex-wrap: wrap; }

.gap-2 { gap: 0.5rem; }

.gap-4 { gap: 1rem; }

.gap-6 { gap: 1.5rem; }

.gap-8 { gap: 2rem; }

/* Page: portada.html */
/* Bento Grid Setup para Rediseño 2026 */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(280px, auto);
    gap: 1.5rem;
}

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

.bento-card {
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.bento-card:hover {
    transform: translateY(-4px);
    border-color: #0066cc !important; /* Action Blue */
}

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

}

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

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

}

    /* Hero Section */
    .hero {
        padding: 100px 0 60px;
        text-align: center;
    }

    .badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem 1.5rem;
        border-radius: 50px;
        background: rgba(0, 136, 204, 0.05);
        color: var(--secondary);
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        border: 1px solid rgba(0, 136, 204, 0.1);
        margin-bottom: 2rem;
    }

    .hero h1 {
        font-size: 4rem;
        color: var(--primary);
        margin: 0 auto 1.5rem;
        max-width: 900px;
        font-weight: 800;
        line-height: 1.1;
    }

    .hero .tagline {
        font-size: 1.25rem;
        color: var(--text-light);
        max-width: 700px;
        margin: 0 auto 3rem;
    }

    .btn-group {
        display: flex;
        gap: 1rem;
        justify-content: center;
    }

    .btn {
        padding: 1rem 2rem;
        border-radius: 8px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        cursor: pointer;
        border: none;
    }

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

    .btn-outline {
        border: 1px solid #ddd;
        color: var(--text-dark);
        background: var(--white);
    }

    /* Top Services Cards */
    .top-services {
        display: flex;
        gap: 2rem;
        margin-bottom: 80px;
    }

    .card {
        background: var(--white);
        padding: 2.5rem;
        border-radius: 12px;
        flex: 1;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
        border: 1px solid rgba(0, 0, 0, 0.02);
        position: relative;
    }

    .icon-box {
        width: 48px;
        height: 48px;
        background: rgba(0, 136, 204, 0.05);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--secondary);
        margin-bottom: 1.5rem;
    }

    .card h3 {
        margin-top: 1rem;
        font-size: 1.25rem;
    }

    .card p {
        color: var(--text-light);
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    /* AI Section */
    .ai-section {
        background: var(--white);
        border-radius: 24px;
        overflow: hidden;
        display: flex;
        align-items: center;
        margin-bottom: 80px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    }

    .ai-image {
        flex: 1;
        background: #eee;
        height: 450px;
        background-image: url('https://images.unsplash.com/photo-1677442136019-21780ecad995?q=80&w=1200');
        background-size: cover;
        background-position: center;
    }

    .ai-content {
        flex: 1;
        padding: 4rem;
    }

    /* 360 Solutions */
    .section-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
        color: var(--primary);
        margin-bottom: 1rem;
    }

    .grid-360 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-bottom: 100px;
    }

    .grid-item {
        background: var(--white);
        padding: 2.5rem;
        border-radius: 12px;
        text-align: left;
        border: 1px solid rgba(0, 0, 0, 0.03);
        transition: transform 0.3s ease;
    }

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

    .item-icon {
        color: var(--secondary);
        margin-bottom: 1rem;
        opacity: 0.8;
    }

    /* Footer */
    footer {
        background: var(--white);
        padding: 80px 0 40px;
        border-top: 1px solid #eee;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 4rem;
    }

    .footer-col h4 {
        margin-bottom: 1.5rem;
        font-size: 0.85rem;
        text-transform: uppercase;
        color: var(--text-light);
        letter-spacing: 1px;
    }

    .footer-col ul {
        list-style: none;
        padding: 0;
    }

    .footer-col li {
        margin-bottom: 0.75rem;
        color: var(--text-light);
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .footer-col li:hover {
        color: var(--secondary);
    }

    .form-call {
        background: #f1f5f9;
        padding: 1.5rem;
        border-radius: 8px;
    }

    .form-call input {
        width: 100%;
        padding: 0.75rem;
        margin-bottom: 1.5rem;
        border: 1px solid #ddd;
        border-radius: 4px;
        box-sizing: border-box;
        font-size: 1rem;
    }

    .btn-call {
        width: 100%;
        background: var(--secondary);
        color: white;
        border: none;
        padding: 0.75rem;
        border-radius: 4px;
        font-weight: 700;
        cursor: pointer;
        transition: background 0.3s ease;
    }

    .btn-call:hover {
        background: var(--primary);
    }

    @media (max-width: 900px) {
        .top-services,
        .footer-grid {
            grid-template-columns: 1fr;
            flex-direction: column;
        }

        .grid-360 {
            grid-template-columns: repeat(3, 1fr);
        }

        .ai-section {
            flex-direction: column;
        }

        .hero h1 {
            font-size: 2.5rem;
        }

        .ai-content {
            padding: 2rem;
        }

    }

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

    }

/* Page: joomla.html */
/* Hero Joomla */
        .hero {
            padding: 120px 0 80px;
            text-align: center;
        }

        .hero h1 {
            font-size: 3.5rem;
            color: var(--primary);
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero h1 span { color: var(--joomla-orange); }

        .hero p {
            font-size: 1.25rem;
            color: var(--text-light);
            max-width: 800px;
            margin: 0 auto 3rem;
        }

        .btn-joomla {
            background-color: var(--joomla-orange);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: transform 0.3s ease;
            display: inline-block;
        }

        .btn-joomla:hover { transform: translateY(-3px); }

        /* Potencia y Flexibilidad */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            margin-bottom: 100px;
        }

        .feature-card {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.03);
            text-align: left;
        }

        .icon-joomla {
            width: 40px;
            height: 40px;
            background: rgba(244, 112, 35, 0.1);
            color: var(--joomla-orange);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            margin-bottom: 1.5rem;
        }

        /* Metodología (Timeline) */
        .methodology {
            padding: 100px 0;
            background: #fff;
            margin-bottom: 80px;
        }

        .timeline {
            max-width: 800px;
            margin: 50px auto 0;
            position: relative;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            width: 2px;
            height: 100%;
            background: #eee;
            transform: translateX(-50%);
        }

        .step {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            margin-bottom: 40px;
            position: relative;
        }

        .step-dot {
            position: absolute;
            left: 50%;
            width: 20px;
            height: 20px;
            background: var(--joomla-orange);
            border: 4px solid white;
            border-radius: 50%;
            transform: translateX(-50%);
            z-index: 2;
        }

        .step-content {
            width: 45%;
        }

        .step:nth-child(even) .step-content { text-align: left; margin-left: auto; }

        .step:nth-child(odd) .step-content { text-align: right; margin-right: auto; }

        /* Ventajas */
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-bottom: 100px;
        }

        .advantage-item {
            background: #fff;
            padding: 1.5rem;
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 1rem;
            border: 1px solid #f0f0f0;
        }

        /* Proyectos Destacados */
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-bottom: 60px;
        }

        .project-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        .project-img { height: 200px; background: #eee; }

        .project-info { padding: 1.5rem; }

        /* CTA Final */
        .cta-final {
            background: #fff5eb;
            padding: 80px 0;
            text-align: center;
        }

        @media (max-width: 900px) {
            .features-grid, .projects-grid, .advantages-grid { grid-template-columns: 1fr; }

            .timeline::before, .step-dot { display: none; }

            .step-content { width: 100%; text-align: center !important; }

            .hero h1 { font-size: 2.5rem; }

        }

/* Page: wordpress.html */
/* Hero WordPress */
        .hero {
            padding: 120px 0 80px;
            text-align: center;
        }

        .hero h1 {
            font-size: 3.5rem;
            color: var(--primary);
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero h1 span { color: var(--wp-blue); }

        .hero p {
            font-size: 1.25rem;
            color: var(--text-light);
            max-width: 800px;
            margin: 0 auto 3rem;
        }

        .btn-wp {
            background-color: var(--wp-blue);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: transform 0.3s ease;
            display: inline-block;
        }

        .btn-wp:hover { transform: translateY(-3px); }

        /* Herramienta de Crecimiento */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            margin-bottom: 100px;
        }

        .feature-card {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.03);
            text-align: left;
        }

        .icon-wp {
            width: 40px;
            height: 40px;
            background: rgba(0, 115, 170, 0.1);
            color: var(--wp-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            margin-bottom: 1.5rem;
        }

        /* Proceso de Creación (Timeline) */
        .process {
            padding: 100px 0;
            background: #fff;
            margin-bottom: 80px;
        }

        .timeline {
            max-width: 800px;
            margin: 50px auto 0;
            position: relative;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            width: 2px;
            height: 100%;
            background: #eee;
            transform: translateX(-50%);
        }

        .step {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            margin-bottom: 40px;
            position: relative;
        }

        .step-dot {
            position: absolute;
            left: 50%;
            width: 20px;
            height: 20px;
            background: var(--wp-blue);
            border: 4px solid white;
            border-radius: 50%;
            transform: translateX(-50%);
            z-index: 2;
        }

        .step-content {
            width: 45%;
        }

        .step:nth-child(even) .step-content { text-align: left; margin-left: auto; }

        .step:nth-child(odd) .step-content { text-align: right; margin-right: auto; }

        /* Tipo de Web */
        .web-types-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-bottom: 100px;
        }

        .type-item {
            background: #fff;
            padding: 1.5rem;
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 1rem;
            border: 1px solid #f0f0f0;
        }

        /* Proyectos WordPress */
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-bottom: 60px;
        }

        .project-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        .project-img { height: 200px; background: #eee; }

        .project-info { padding: 1.5rem; }

        /* CTA Final */
        .cta-final {
            background: #f0f7ff;
            padding: 80px 0;
            text-align: center;
        }

        @media (max-width: 900px) {
            .features-grid, .projects-grid, .web-types-grid { grid-template-columns: 1fr; }

            .timeline::before, .step-dot { display: none; }

            .step-content { width: 100%; text-align: center !important; }

            .hero h1 { font-size: 2.5rem; }

        }

/* Page: hikashop.html */
.flex-wrap {
            flex-wrap: wrap;
        }

        /* Hero Hikashop */
        .hero-hikashop {
            padding: 120px 0 100px;
            background: linear-gradient(rgba(26, 31, 54, 0.7), rgba(26, 31, 54, 0.7)), url('https://images.unsplash.com/photo-1507608616759-54f48f0af0ee?q=80&w=1920&auto=format&fit=crop');
            background-size: cover;
            background-position: center;
            text-align: center;
            color: white;
            border-radius: 0 0 30px 30px;
            margin-bottom: 60px;
        }

        .hero-hikashop h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero-hikashop h1 span {
            color: #8ecae6;
        }

        .hero-hikashop p {
            font-size: 1.25rem;
            max-width: 800px;
            margin: 0 auto 3rem;
            opacity: 0.9;
        }

        .btn-hikashop {
            background-color: var(--secondary);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
        }

        .btn-hikashop:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 136, 204, 0.3);
        }

        /* Service Cards Grid (Top) */
        .services-top-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-bottom: 80px;
        }

        .service-card {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            flex: 1 1 calc(33.333% - 1rem);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
            border: 1px solid rgba(0, 0, 0, 0.01);
            transition: transform 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-5px);
        }

        .icon-circle {
            width: 50px;
            height: 50px;
            background: rgba(0, 136, 204, 0.05);
            color: var(--secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            margin-bottom: 1.5rem;
        }

        /* Section Title Utilitaria */
        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .section-title p {
            color: var(--text-light);
            font-size: 1.1rem;
        }

        /* Why Hikashop Section */
        .why-hikashop {
            background: white;
            padding: 80px 0;
            border-radius: 20px;
            margin-bottom: 80px;
        }

        .features-horizontal {
            display: flex;
            gap: 2rem;
            justify-content: center;
        }

        .feature-box {
            text-align: center;
            flex: 1;
            padding: 2rem;
            max-width: 300px;
        }

        .feature-box i {
            color: #f4a261;
            margin-bottom: 1rem;
        }

        /* Portfolio Grid */
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-bottom: 80px;
        }

        .project-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .project-img {
            height: 220px;
            background: #eee;
        }

        .project-info {
            padding: 1.5rem;
        }

        /* FAQ Section */
        .faq-section {
            max-width: 800px;
            margin: 0 auto 100px;
        }

        .faq-item {
            background: white;
            margin-bottom: 1rem;
            border-radius: 8px;
            border: 1px solid #f0f0f0;
            overflow: hidden;
        }

        .faq-question {
            padding: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 600;
            color: var(--primary);
        }

        /* CTA Final */
        .cta-hikashop {
            background: #e9f5ff;
            padding: 80px 40px;
            border-radius: 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-hikashop i.bg-icon {
            position: absolute;
            right: -20px;
            bottom: -20px;
            font-size: 200px;
            opacity: 0.05;
            color: var(--secondary);
            transform: rotate(-15deg);
        }

        @media (max-width: 900px) {
            .services-top-grid,
            .features-horizontal {
                flex-direction: column;
                display: flex;
            }

            .service-card {
                flex: 1 1 100%;
            }

            .hero-hikashop h1 {
                font-size: 2.5rem;
            }

            .projects-grid {
                grid-template-columns: repeat(3, 1fr);
            }

        }

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

        }

/* Page: woocommerce.html */
/* Hero WooCommerce */
        .hero-woo {
            padding: 120px 0 100px;
            background: linear-gradient(rgba(26, 31, 54, 0.8), rgba(26, 31, 54, 0.8)), url('https://images.unsplash.com/photo-1523275335684-37898b6baf30?q=80&w=1920&auto=format&fit=crop');
            background-size: cover;
            background-position: center;
            text-align: center;
            color: white;
            border-radius: 0 0 30px 30px;
            margin-bottom: 60px;
        }

        .hero-woo h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero-woo h1 span {
            color: #d8b4fe;
        }

        .hero-woo p {
            font-size: 1.25rem;
            max-width: 800px;
            margin: 0 auto 3rem;
            opacity: 0.9;
        }

        .btn-woo {
            background-color: var(--secondary);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
        }

        .btn-woo:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(99, 102, 241, 0.4);
        }

        /* Service Cards Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-bottom: 80px;
        }

        .service-card {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
            border: 1px solid rgba(0, 0, 0, 0.01);
            transition: transform 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-5px);
        }

        .icon-box {
            width: 48px;
            height: 48px;
            background: rgba(127, 84, 179, 0.05);
            color: var(--woo-purple);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            margin-bottom: 1.5rem;
        }

        /* Section Title */
        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        /* Why WooCommerce Section */
        .why-woo {
            background: white;
            padding: 80px 40px;
            border-radius: 20px;
            margin-bottom: 80px;
            text-align: center;
        }

        .features-flex {
            display: flex;
            gap: 3rem;
            justify-content: center;
            margin-top: 3rem;
        }

        .feature-item {
            flex: 1;
            max-width: 300px;
        }

        .feature-item h4 {
            margin: 1rem 0;
            font-size: 1.1rem;
        }

        .feature-item p {
            font-size: 0.9rem;
            color: var(--text-light);
        }

        /* Projects Section */
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-bottom: 80px;
        }

        .project-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .project-img {
            height: 220px;
            background: #eee;
        }

        .project-info {
            padding: 1.5rem;
        }

        /* FAQ */
        .faq-container {
            max-width: 800px;
            margin: 0 auto 100px;
        }

        .faq-item {
            background: white;
            margin-bottom: 1rem;
            border-radius: 8px;
            border: 1px solid #f0f0f0;
        }

        .faq-header {
            padding: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 600;
        }

        /* CTA Final */
        .cta-woo {
            background: #f5f3ff;
            padding: 80px 40px;
            border-radius: 24px;
            text-align: center;
        }

        @media (max-width: 900px) {
            .services-grid,
            .projects-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .features-flex {
                flex-direction: column;
                align-items: center;
            }

            .hero-woo h1 {
                font-size: 2.5rem;
            }

        }

        @media (max-width: 768px) {
            .services-grid,
            .projects-grid {
                grid-template-columns: 1fr;
            }

        }

/* Page: ia.html */
/* Hero IA */
        .hero-ia {
            padding: 120px 0 80px;
            text-align: center;
            background: radial-gradient(circle at center, rgba(0, 191, 165, 0.05) 0%, transparent 70%);
        }

        .badge-ia {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1.25rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--accent-teal);
            margin-bottom: 2rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .hero-ia h1 {
            font-size: 4rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        .highlight-ia {
            background: var(--gradient-ia);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
        }

        .hero-ia p {
            font-size: 1.2rem;
            color: var(--text-silver);
            max-width: 700px;
            margin: 0 auto 3rem;
        }

        .btn-group {
            display: flex;
            gap: 1rem;
            justify-content: center;
        }

        .btn {
            padding: 1rem 2rem;
            border-radius: 8px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-primary {
            background-color: var(--accent-teal);
            color: #0b0f1a;
        }

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

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        /* Capacidades */
        .section-cap {
            padding: 80px 0;
            text-align: center;
        }

        .section-cap h2 {
            font-size: 2.2rem;
            margin-bottom: 1rem;
        }

        .section-cap p.lead {
            color: var(--text-silver);
            margin-bottom: 4rem;
        }

        .cap-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .cap-card {
            background: var(--dark-card);
            padding: 3rem 2rem;
            border-radius: 16px;
            text-align: left;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
        }

        .cap-card:hover {
            border-color: var(--accent-teal);
            transform: translateY(-5px);
        }

        .cap-icon {
            width: 48px;
            height: 48px;
            background: rgba(0, 191, 165, 0.1);
            color: var(--accent-teal);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            margin-bottom: 2rem;
        }

        .cap-card h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
        }

        .cap-card p {
            color: var(--text-silver);
            font-size: 0.95rem;
        }

        /* Por qué IA */
        .why-ia {
            padding: 100px 0;
            display: flex;
            align-items: center;
            gap: 4rem;
        }

        .why-content {
            flex: 1;
        }

        .why-content h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            line-height: 1.2;
        }

        .why-list {
            list-style: none;
            padding: 0;
        }

        .why-list li {
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            color: var(--text-silver);
            font-size: 1rem;
        }

        .why-list i {
            color: var(--accent-teal);
        }

        .why-viz {
            flex: 1;
            background: #000;
            border-radius: 12px;
            padding: 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
            font-family: 'Courier New', Courier, monospace;
            font-size: 0.85rem;
        }

        .viz-header {
            display: flex;
            gap: 6px;
            margin-bottom: 1.5rem;
        }

        .viz-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
        }

        .viz-line {
            margin-bottom: 0.75rem;
            color: #ddd;
        }

        .viz-accent {
            color: var(--accent-teal);
        }

        /* CTA Box */
        .cta-box {
            background: linear-gradient(rgba(11, 15, 26, 0.8), rgba(11, 15, 26, 0.8)), url('https://images.unsplash.com/photo-1677442136019-21780ecad995?q=80&w=1200');
            background-size: cover;
            background-position: center;
            padding: 80px;
            border-radius: 24px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
            margin-bottom: 100px;
        }

        .cta-box h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .cta-box p {
            color: var(--text-silver);
            margin-bottom: 2.5rem;
            font-size: 1.1rem;
        }

        /* Footer simple adaptado */
        footer {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding: 60px 0;
            color: var(--text-silver);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 4rem;
        }

        @media (max-width: 900px) {
            .why-ia,
            .footer-grid {
                grid-template-columns: 1fr;
                flex-direction: column;
            }

            .cap-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .hero-ia h1 {
                font-size: 2.5rem;
            }

            .why-viz {
                margin-top: 2rem;
            }

            .cta-box {
                padding: 40px 20px;
            }

        }

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

        }

/* Page: portafolio.html */
/* Hero Portfolio */
        .hero-portfolio {
            margin-top: 40px;
            padding: 100px 0;
            background: linear-gradient(rgba(26, 31, 54, 0.8), rgba(26, 31, 54, 0.8)), url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&q=80&w=1200');
            background-size: cover;
            background-position: center;
            text-align: center;
            color: white;
            border-radius: 24px;
        }

        .hero-portfolio h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .hero-portfolio p {
            font-size: 1.25rem;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
        }

        /* Portfolio Grid */
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            padding: 80px 0;
        }

        .portfolio-card {
            background: var(--white);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .portfolio-card:hover {
            transform: translateY(-8px);
        }

        .project-img {
            height: 240px;
            background-size: cover;
            background-position: center;
            border-bottom: 1px solid var(--border-color);
        }

        .project-content {
            padding: 2rem;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .project-tag {
            font-size: 0.7rem;
            color: var(--text-light);
            text-transform: lowercase;
            margin-bottom: 0.5rem;
            font-family: monospace;
            background: #f1f5f9;
            padding: 2px 8px;
            border-radius: 4px;
            display: inline-block;
            width: fit-content;
        }

        .project-content h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--primary);
        }

        .project-content p {
            font-size: 0.95rem;
            color: var(--text-light);
            margin-bottom: 1.5rem;
            flex: 1;
        }

        .tech-pill-group {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 2rem;
        }

        .tech-pill {
            font-size: 0.75rem;
            background: #f8fafc;
            color: var(--text-light);
            padding: 4px 12px;
            border-radius: 50px;
            border: 1px solid var(--border-color);
        }

        .project-link {
            font-weight: 700;
            color: var(--secondary);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
        }

        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.5rem;
            padding-bottom: 100px;
        }

        .page-btn {
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            background: #e2e8f0;
            color: var(--text-light);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .page-btn.active {
            background: var(--secondary);
            color: white;
        }

        .page-btn:hover:not(.active) {
            background: #cbd5e1;
        }

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

        }

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

            .hero-portfolio h1 {
                font-size: 2.5rem;
            }

        }

/* Page: contacto.html */
/* Header Contacto */
        .contact-header {
            padding: 100px 0 60px;
            text-align: center;
        }

        .contact-header h1 {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .contact-header p {
            font-size: 1.1rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }

        /* Main Section */
        .contact-main {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 4rem;
            padding-bottom: 100px;
        }

        /* Form Card */
        .form-card {
            background: var(--white);
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.04);
            border: 1px solid rgba(0,0,0,0.02);
        }

        .form-card h2 {
            font-size: 1.8rem;
            margin-bottom: 2rem;
            color: var(--primary);
        }

        .form-row {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .form-group {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }

        .form-group label {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-dark);
        }

        .form-group input, .form-group textarea {
            padding: 0.85rem 1rem;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }

        .form-group input:focus, .form-group textarea:focus {
            border-color: var(--secondary);
        }

        .btn-send {
            width: 100%;
            background-color: var(--secondary);
            color: white;
            padding: 1rem;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s;
            margin-top: 1rem;
        }

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

        /* Info Column */
        .info-col h2 {
            font-size: 1.8rem;
            margin-bottom: 2.5rem;
            color: var(--primary);
        }

        .info-item {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 2.5rem;
        }

        .info-icon {
            width: 48px;
            height: 48px;
            background: #eef7ff;
            color: var(--secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            flex-shrink: 0;
        }

        .info-text h4 {
            margin: 0 0 0.25rem 0;
            font-size: 1.1rem;
        }

        .info-text p {
            margin: 0;
            font-size: 0.95rem;
            color: var(--text-light);
            white-space: pre-line;
        }

        /* Map Utility */
        .map-placeholder {
            width: 100%;
            height: 300px;
            background: #e5e5e5;
            border-radius: 20px;
            margin-top: 2rem;
            position: relative;
            overflow: hidden;
            background-image: url('https://images.unsplash.com/photo-1526778548025-fa2f459cd5c1?q=80&w=800&auto=format&fit=crop');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--border-color);
        }

        .btn-map {
            background: white;
            color: var(--text-dark);
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.85rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            position: relative;
            z-index: 2;
        }

        @media (max-width: 900px) {
            .contact-main {
                grid-template-columns: 1fr;
            }

            .form-row {
                flex-direction: column;
                gap: 0;
            }

        }

/* Page: laempresa.html */
/* Hero / Nosotros */
        .nosotros-hero {
            padding: 80px 0;
            display: flex;
            align-items: center;
            gap: 4rem;
        }

        .nosotros-content {
            flex: 1.2;
        }

        .breadcrumbs {
            font-size: 0.8rem;
            color: var(--text-light);
            margin-bottom: 2rem;
            display: flex;
            gap: 0.5rem;
        }

        .badge {
            background: var(--secondary);
            color: white;
            padding: 0.4rem 1rem;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: inline-block;
            margin-bottom: 2rem;
        }

        .nosotros-content h1 {
            font-size: 3.5rem;
            line-height: 1.1;
            color: var(--primary);
            font-weight: 800;
            margin-bottom: 2rem;
        }

        .nosotros-content h1 span {
            color: var(--secondary);
        }

        .nosotros-content p {
            font-size: 1.1rem;
            color: var(--text-light);
            max-width: 550px;
            margin-bottom: 3rem;
        }

        .btn-nosotros {
            background: var(--primary);
            color: white;
            padding: 1rem 2rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.9rem;
            display: inline-block;
            transition: all 0.3s;
        }

        .btn-nosotros:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(26, 31, 54, 0.1);
        }

        .nosotros-image {
            flex: 0.8;
            position: relative;
        }

        .nosotros-image img {
            width: 100%;
            border-radius: 40px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        /* Stats Section */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin: 60px 0 100px;
        }

        .stat-card {
            background: white;
            padding: 2.5rem 1.5rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
            border: 1px solid rgba(0, 0, 0, 0.01);
        }

        .stat-icon {
            width: 48px;
            height: 48px;
            background: rgba(0, 136, 204, 0.05);
            color: var(--secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            margin: 0 auto 1.5rem;
        }

        .stat-card h3 {
            font-size: 2rem;
            color: var(--primary);
            margin: 0;
            font-weight: 800;
        }

        .stat-card p {
            font-size: 0.75rem;
            color: var(--text-light);
            text-transform: uppercase;
            font-weight: 700;
            margin-top: 0.5rem;
            letter-spacing: 1px;
        }

        /* Diferenciales */
        .title-centered {
            text-align: center;
            margin-bottom: 4rem;
        }

        .title-centered h2 {
            font-size: 2.5rem;
            color: var(--primary);
        }

        .title-centered h2 span {
            border-bottom: 4px solid var(--secondary);
        }

        .diff-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-bottom: 100px;
        }

        .diff-card {
            background: white;
            padding: 3rem 2rem;
            border-radius: 24px;
            text-align: center;
            border: 1px solid #f1f5f9;
        }

        .diff-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
        }

        .diff-card h4 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: var(--primary);
        }

        .diff-card p {
            color: var(--text-light);
            font-size: 0.95rem;
        }

        /* Banner Final */
        .pixel-banner {
            background: #101828;
            border-radius: 30px;
            padding: 100px 60px;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
            margin-bottom: 100px;
        }

        .pixel-banner h2 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
        }

        .pixel-banner p {
            color: #98a2b3;
            max-width: 800px;
            margin: 0 auto 3rem;
            font-size: 1.1rem;
        }

        .team-pill {
            background: var(--secondary);
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 700;
        }

        @media (max-width: 900px) {
            .nosotros-hero {
                flex-direction: column;
                text-align: center;
                gap: 3rem;
            }

            .nosotros-content p {
                margin: 0 auto 3rem;
            }

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

            .diff-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .pixel-banner {
                padding: 60px 20px;
            }

            .nosotros-content h1 {
                font-size: 2.5rem;
            }

        }

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

        }

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

        }

/* Page: configuradorproductoswoocommerce.html */
.text-center {
            text-align: center;
        }

        /* Hero */
        .hero {
            padding: 100px 0 60px;
        }

        .hero h1 {
            font-size: 3.5rem;
            color: var(--primary);
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.15rem;
            color: var(--text-light);
            max-width: 800px;
            margin: 0 auto 3rem;
        }

        .btn-group {
            display: flex;
            gap: 1rem;
            justify-content: center;
        }

        .btn {
            padding: 1rem 2rem;
            border-radius: 8px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s;
        }

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

        .btn-outline {
            border: 1px solid var(--border-color);
            color: var(--text-dark);
            background: white;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        }

        /* Value Cards */
        .value-section {
            padding: 60px 0;
        }

        .tagline {
            color: var(--secondary);
            font-weight: 700;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 0.5rem;
            display: block;
        }

        .value-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .value-card {
            background: white;
            padding: 3rem 2rem;
            border-radius: 20px;
            border: 1px solid rgba(0, 0, 0, 0.02);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
        }

        .icon-box {
            width: 44px;
            height: 44px;
            background: rgba(99, 102, 241, 0.08);
            color: var(--secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            margin: 0 auto 1.5rem;
        }

        /* Config Types */
        .config-section {
            padding: 100px 0;
        }

        .config-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 4rem;
        }

        .config-card {
            background: white;
            padding: 2.5rem;
            border-radius: 16px;
            text-align: left;
            border: 1px solid #f1f5f9;
            transition: border-color 0.3s;
        }

        .config-card:hover {
            border-color: var(--secondary);
        }

        .config-card .icon-small {
            color: var(--secondary);
            margin-bottom: 1.5rem;
            opacity: 0.7;
        }

        .config-card h4 {
            margin-top: 0;
            margin-bottom: 0.75rem;
            font-size: 1.15rem;
        }

        .config-card p {
            font-size: 0.9rem;
            color: var(--text-light);
            margin: 0;
            line-height: 1.5;
        }

        /* Pills Section */
        .pills-section {
            background: #fff;
            padding: 80px 40px;
            border-radius: 24px;
            margin: 60px 0;
            text-align: center;
        }

        .pill-group {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            margin-top: 2rem;
        }

        .pill {
            background: white;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            border: 1px solid #eee;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-light);
        }

        /* Final CTA */
        .cta-box {
            background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
            border-radius: 30px;
            padding: 80px 40px;
            text-align: center;
            color: white;
            margin-bottom: 100px;
            position: relative;
            overflow: hidden;
        }

        .cta-box::after {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }

        .cta-box h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .cta-box p {
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto 2.5rem;
        }

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

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

            .value-grid,
            .config-grid {
                grid-template-columns: repeat(3, 1fr);
            }

        }

        @media (max-width: 768px) {
            .value-grid,
            .config-grid {
                grid-template-columns: 1fr;
            }

        }

/* Page: soportejoomla.html */
.text-center {
            text-align: center;
        }

        /* Header */
        .page-header {
            padding: 100px 0 60px;
        }

        .page-header h1 {
            font-size: 3.5rem;
            color: var(--primary);
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .page-header h1 span {
            color: var(--joomla-orange);
        }

        .page-header p {
            font-size: 1.15rem;
            color: var(--text-light);
            max-width: 800px;
            margin: 0 auto 3rem;
        }

        .btn-main {
            background-color: var(--joomla-orange);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            display: inline-block;
            transition: transform 0.3s;
        }

        .btn-main:hover {
            transform: translateY(-3px);
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-bottom: 80px;
        }

        .service-box {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            display: flex;
            gap: 1.5rem;
            border: 1px solid rgba(0, 0, 0, 0.02);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
        }

        .service-icon {
            width: 48px;
            height: 48px;
            background: rgba(244, 112, 35, 0.05);
            color: var(--joomla-orange);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            flex-shrink: 0;
        }

        .service-content h4 {
            margin: 0 0 0.5rem 0;
            font-size: 1.2rem;
            color: var(--primary);
        }

        .service-content p {
            margin: 0;
            font-size: 0.9rem;
            color: var(--text-light);
            line-height: 1.5;
        }

        /* Pricing Section */
        .pricing-section {
            background: #fff;
            padding: 80px 40px;
            border-radius: 24px;
            margin-bottom: 80px;
            border: 1px solid #f1f5f9;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 4rem;
        }

        .pricing-card {
            background: white;
            padding: 3rem 2rem;
            border-radius: 16px;
            border: 1px solid var(--border-color);
            position: relative;
        }

        .pricing-card.recommended {
            border: 2px solid var(--joomla-orange);
            transform: scale(1.05);
            z-index: 2;
        }

        .recommended-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--joomla-orange);
            color: white;
            padding: 0.4rem 1rem;
            border-radius: 50px;
            font-size: 0.7rem;
            font-weight: 800;
            text-transform: uppercase;
        }

        .pricing-card h4 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        .pricing-card .p-desc {
            font-size: 0.8rem;
            color: var(--text-light);
            margin-bottom: 2rem;
        }

        .price {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--joomla-orange);
        }

        .price span {
            font-size: 0.9rem;
            color: var(--text-light);
            font-weight: 400;
        }

        /* FAQ */
        .faq-section {
            max-width: 800px;
            margin: 0 auto 100px;
        }

        .faq-item {
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 1rem;
            border: 1px solid #f0f0f0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 600;
            color: var(--primary);
        }

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

            .pricing-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .pricing-card.recommended {
                transform: none;
                margin: 2rem 0;
            }

            .page-header h1 {
                font-size: 2.5rem;
            }

        }

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

        }

/* Page: desarrollojoomlaamedida.html */
.text-center {
            text-align: center;
        }

        /* Header */
        .page-header {
            padding: 100px 0 60px;
        }

        .page-header h1 {
            font-size: 3rem;
            color: var(--primary);
            font-weight: 800;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .page-header h1 span {
            color: var(--joomla-orange);
        }

        .page-header p {
            font-size: 1.15rem;
            color: var(--text-light);
            max-width: 800px;
            margin: 0 auto 3rem;
        }

        .btn-main {
            background-color: var(--joomla-orange);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            display: inline-block;
            transition: transform 0.3s;
        }

        .btn-main:hover {
            transform: translateY(-3px);
        }

        /* Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-bottom: 80px;
        }

        .feature-box {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            display: flex;
            gap: 1.5rem;
            border: 1px solid rgba(0, 0, 0, 0.02);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
        }

        .feature-icon {
            width: 54px;
            height: 54px;
            background: rgba(244, 112, 35, 0.05);
            color: var(--joomla-orange);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            flex-shrink: 0;
            border: 1px solid rgba(244, 112, 35, 0.1);
        }

        .feature-content h4 {
            margin: 0 0 0.75rem 0;
            font-size: 1.25rem;
            color: var(--primary);
        }

        .feature-content p {
            margin: 0;
            font-size: 0.9rem;
            color: var(--text-light);
            line-height: 1.6;
        }

        /* Standards Section */
        .standards-section {
            padding: 80px 0;
            text-align: center;
        }

        .standards-section h2 {
            font-size: 2.2rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .standards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .standard-card {
            background: #f8fafc;
            padding: 2.5rem;
            border-radius: 12px;
            border: 1px solid #eef2f6;
        }

        .standard-card h5 {
            margin-bottom: 0.75rem;
            font-size: 1rem;
            font-weight: 700;
            color: var(--primary);
        }

        .standard-card p {
            font-size: 0.8rem;
            color: var(--text-light);
            margin: 0;
        }

        /* FAQ */
        .faq-section {
            background: #fff;
            padding: 80px 40px;
            border-radius: 20px;
            margin: 60px 0;
            border: 1px solid #f1f5f9;
        }

        .faq-section h2 {
            margin-bottom: 3rem;
            font-size: 2rem;
        }

        .faq-item {
            padding: 1.5rem;
            border-bottom: 1px solid #f0f0f0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 600;
            color: var(--primary);
        }

        .faq-item:last-child {
            border-bottom: none;
        }

        /* Final CTA */
        .cta-footer {
            background: #fff5eb;
            padding: 80px 40px;
            border-radius: 24px;
            text-align: center;
            margin-bottom: 100px;
        }

        .cta-footer h2 {
            font-size: 2.2rem;
            color: #c2410c;
            margin-bottom: 1rem;
        }

        .cta-footer p {
            color: #9a3412;
            margin-bottom: 2.5rem;
        }

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

            .standards-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .page-header h1 {
                font-size: 2.5rem;
            }

        }

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

        }

/* Page: HUB.html */
body.page-hub,
        html.page-hub {
            margin: 0;
            padding: 0;
            height: 100%;
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            overflow: hidden;
            background: var(--bg-main);
        }

        .layout {
            display: flex;
            height: 100vh;
        }

        /* Sidebar */
        .sidebar {
            width: 300px;
            background: var(--bg-sidebar);
            color: var(--white);
            display: flex;
            flex-direction: column;
            box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
            z-index: 10;
        }

        .sidebar-header {
            padding: 2rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--secondary);
        }

        .nav-list {
            flex: 1;
            overflow-y: auto;
            padding: 1.5rem 1rem;
        }

        .nav-group {
            margin-bottom: 2rem;
        }

        .nav-group-title {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-muted);
            margin-bottom: 1rem;
            padding-left: 1rem;
        }

        .nav-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.85rem 1rem;
            color: #cbd5e1;
            text-decoration: none;
            border-radius: 8px;
            font-size: 0.9rem;
            transition: all 0.2s;
            margin-bottom: 0.25rem;
            cursor: pointer;
        }

        .nav-item:hover {
            background: rgba(255, 255, 255, 0.05);
            color: var(--white);
        }

        .nav-item.active {
            background: var(--secondary);
            color: var(--white);
        }

        /* Main Perspective */
        .main {
            flex: 1;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .top-bar {
            height: 64px;
            background: var(--white);
            border-bottom: 1px solid #e2e8f0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 2rem;
        }

        .view-controls {
            display: flex;
            gap: 0.5rem;
            background: #f1f5f9;
            padding: 4px;
            border-radius: 8px;
        }

        .view-btn {
            padding: 6px 12px;
            border-radius: 6px;
            border: none;
            cursor: pointer;
            background: transparent;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 600;
            font-size: 0.8rem;
        }

        .view-btn.active {
            background: var(--white);
            color: var(--primary);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }

        .preview-container {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: flex-start;
            padding: 2rem;
            overflow: auto;
            transition: all 0.3s ease;
        }

        iframe {
            width: 100%;
            height: 100%;
            border: none;
            background: white;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
            border-radius: 12px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* iframe sizes */
        .preview-desktop iframe {
            width: 100%;
        }

        .preview-tablet iframe {
            width: 768px;
            height: 1024px;
        }

        .preview-mobile iframe {
            width: 375px;
            height: 667px;
        }

/* Page: servicios-joomla.html - Joomla Expert */
.comparison-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.comparison-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.comparison-card-avoid {
    border-top: 5px solid #dc3545;
}

.comparison-card-deliver {
    border-top: 5px solid #2e7d32;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
}

.comparison-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.comparison-item .icon-avoid {
    color: #dc3545;
}

.comparison-item .icon-deliver {
    color: #2e7d32;
}

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

}

/* Navigation Menu Helper Styles */
.hover-white:hover {
    color: #ffffff !important;
}

.bg-black {
    background-color: #000000 !important;
}

.navbar-nav .nav-link {
    transition: color 0.2s ease-in-out;
}

/* Page: servicios-woocommerce.html & servicios-hikashop.html */
.product-configurator {
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.color-selector {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.color-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform 0.2s, border-color 0.2s;
}

.color-circle:hover, .color-circle.active {
    transform: scale(1.1);
    border-color: var(--secondary);
}

.color-blue { background-color: #0066cc; }

.color-purple { background-color: #7f54b3; }

.color-dark { background-color: #1a1f36; }

.scope-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.scope-btn {
    border: 1px solid var(--border-color);
    background: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.scope-btn:hover, .scope-btn.active {
    border-color: var(--secondary);
    background: rgba(0, 136, 204, 0.02);
    color: var(--secondary);
}

/* Card hover effects and custom links */
.card-enlace {
    background-color: #ffffff;
    border: 1px solid #e5e5e7;
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    text-decoration: none;
    display: block;
}

.card-enlace:hover {
    border-color: #0066cc;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.08);
}

.card-enlace:active {
    transform: scale(0.97);
}

/* ==========================================================================
   Rediseño 2026 - Utilidades y Componentes para Evitar Estilos Inline
   ========================================================================== */
.divider-accent {
    height: 3px;
    width: 80px;
    margin-top: 15px;
    background-color: var(--secondary);
    border-radius: 50px;
}

.hero-img {
    max-height: 500px;
    width: 100%;
    object-fit: cover;
}

.icon-giant {
    font-size: 100px !important;
}

.experience-badge {
    max-width: 280px;
    transform: translate(5%, 5%);
}

.icon-box-small {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.process-number {
    width: 60px;
    flex-shrink: 0;
}

.product-overlay-color {
    mix-blend-mode: multiply;
    transition: background-color 0.3s ease;
}

.code-panel {
    font-size: 0.80rem;
    color: #00ff66;
    min-height: 200px;
    font-family: monospace;
}

.portfolio-img {
    object-fit: cover;
}

.score-circle {
    width: 130px;
    height: 130px;
    transition: all 0.5s ease;
}

.score-label {
    font-size: 0.65rem;
    font-weight: bold;
    text-transform: uppercase;
}

.console-log-panel {
    font-size: 0.8rem;
    min-height: 150px;
    max-height: 200px;
    overflow-y: auto;
}

.range-value-label {
    min-width: 60px;
    text-align: right;
}

.shadow-deep {
    box-shadow: rgba(0, 0, 0, 0.15) 0px 10px 40px;
}

.max-w-md {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.max-w-xl {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

/* Imagen del Hero estilo Stitch (Recorte de dos columnas) */
.hero-img-stitch {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 24px; /* rounded-3xl en Stitch */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.5s ease;
}

@media (max-width: 991px) {
    .hero-img-stitch {
        height: 280px;
        margin-top: 1.5rem;
    }

}

/* =========================================
   STRIPE HERO & LINEAR NAVIGATION INTEGRATION (LIGHT MODE)
   ========================================= */
/* 1. Cabecera nativa de Cassiopeia flotante y centrada */
header.header {
    position: fixed !important;
    top: 0;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    width: 100% !important;
    max-width: 1400px !important;
    background: rgba(255, 255, 255, 0.6) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    z-index: 1000 !important;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
    padding: 0 32px !important;
    height: 80px !important;
    border-radius: 0 0 16px 16px;
}
@media (max-width: 1400px) {
    header.header {
        border-radius: 0px !important;
    }
}

/* 2. Logotipo nativo en Cassiopeia */
header.header .navbar-brand span, 
header.header .navbar-brand,
header.header .brand-logo {
    font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
    font-size: 1.35rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.18em !important;
    color: #1d1d1f !important;
    text-transform: uppercase;
    text-decoration: none !important;
    border: none !important;
    box-shadow: none !important;
}

/* 3. Menú nativo en Cassiopeia */
header.header .navbar-nav .nav-link,
header.header .navbar-nav a,
header.header .metismenu .nav-link,
header.header .metismenu a {
    color: #6e6e73 !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
    transition: color 0.25s ease !important;
}
header.header .navbar-nav .nav-link:hover,
header.header .navbar-nav .nav-link.active,
header.header .navbar-nav a:hover,
header.header .navbar-nav a.active,
header.header .metismenu .nav-link:hover,
header.header .metismenu .nav-link.active,
header.header .metismenu a:hover,
header.header .metismenu a.active {
    color: #1d1d1f !important;
}

/* 4. Módulo Custom Hero Stripe */
.hero-stripe-wrapper {
    position: relative;
    min-height: max(480px, 60svh);
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    background: linear-gradient(-45deg, #f3e8ff, #cffafe, #e0f2fe, #ffedd5, #fae8ff);
    background-size: 400% 400%;
    animation: stripeGradientEffect 22s ease infinite;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

/* 5. Contenedor Hero y Elementos */
.hero-container {
    margin-top: 0;
    padding-top: 40px;
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

#ambient-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.badge-linear {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.06);
    color: #6e6e73;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    padding: 6px 14px;
    border-radius: 9999px;
    width: fit-content;
    text-transform: uppercase;
}
.h1-linear {
    font-size: clamp(2.2rem, 5vw, 3.6rem) !important;
    font-weight: 900 !important;
    letter-spacing: -0.03em !important;
    color: #1d1d1f;
    line-height: 1.15;
}
.lead-linear {
    color: #515154;
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 620px;
}

.btn-dark-linear {
    background-color: #1c1c1e;
    color: #ffffff;
    border: 1px solid #1c1c1e;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    transform: scale(1);
}
.btn-dark-linear:hover {
    background-color: #000000;
    border-color: #000000;
    color: #ffffff;
    transform: scale(1.03) translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.btn-light-linear {
    background-color: rgba(255, 255, 255, 0.75);
    color: #1d1d1f;
    border: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    transform: scale(1);
}
.btn-light-linear:hover {
    background-color: #ffffff;
    border-color: rgba(0, 0, 0, 0.18);
    transform: scale(1.03) translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .hero-stripe-wrapper {
        min-height: max(400px, 55svh);
    }
    body:has(.page-home-transparent) .hero-container {
        padding-top: 120px !important;
    }
    .h1-linear {
        font-size: 2.2rem !important;
    }
    .lead-linear {
        font-size: 1.05rem;
    }
}

/* Oculta los botones de edición de artículos y módulos en el frontend */
.btn-group.icons, 
ul.icons,
.edit-icon,
.icon-edit,
.jmodedit,
.front-end-edit,
a[href*="task=article.edit"],
a[href*="layout=edit"],
a[href*="task=module.edit"] {
    display: none !important;
}

/* Estilos para el botón de Contacto en el Menú Principal (Estilo Stitch) */
header.header .nav-item.item-contacto > a,
header.header .menu-contacto > a,
header.header a.btn-menu-contacto {
    background-color: #1c1c1e !important;
    color: #ffffff !important;
    padding: 8px 24px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    border: 1px solid #1c1c1e !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
    margin-left: 10px;
    display: inline-flex;
    align-items: center;
    transform: scale(1);
}

header.header .nav-item.item-contacto > a:hover,
header.header .menu-contacto > a:hover,
header.header a.btn-menu-contacto:hover {
    background-color: #000000 !important;
    border-color: #000000 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
    transform: scale(1.04) translateY(-1px);
}

/* =========================================
   HEADER TRANSPARENTE EN PORTADA
   Aplica la clase 'page-home-transparent' al elemento de menú de inicio
   ========================================= */
/* 1. Eliminar el padding automático que inyecta Cassiopeia en el body por el sticky header */
body:has(.page-home-transparent) {
    padding-top: 0 !important;
}

/* 2. Posicionamiento Absoluto del Header */
body:has(.page-home-transparent) .container-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
    background: transparent !important;
    background-image: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

/* 3. Efecto Glassmorphism al hacer scroll (Acordado en la entrevista) */
body:has(.page-home-transparent) .container-header.is-stuck {
    position: fixed;
    background: rgba(250, 250, 252, 0.85) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05) !important;
}

/* 4. Ajustes del Hero Module para integrarse */
body:has(.page-home-transparent) .container-banner,
body:has(.page-home-transparent) .container-top-a {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* 5. Padding extra para el contenido de texto del Hero (Acordado en la entrevista) */
body:has(.page-home-transparent) .hero-container {
    padding-top: 100px !important; 
}

/* =========================================
   AJUSTE DE GRID DEL HEADER (30% Logo / 70% Menú)
   ========================================= */
@media (min-width: 992px) {
    header.header,
    .container-header,
    header.container-header {
        display: grid !important;
        grid-template-columns: 30% 70% !important;
        align-items: center !important;
    }

    /* Sobrescribir las posiciones de columna predeterminadas de Cassiopeia */
    header.header > .grid-child:first-child,
    .container-header > .grid-child:first-child {
        grid-column: 1 / 2 !important;
    }

    header.header > .grid-child.container-nav,
    .container-header > .grid-child.container-nav {
        grid-column: 2 / 3 !important;
        justify-content: flex-end !important; /* Alinea el menú a la derecha */
    }

}

/* =========================================
   CONTACT PAGE SPECIFIC CLASSES (ID 150)
   ========================================= */
.contact-icon-circle {
    width: 60px;
    height: 60px;
}

.contact-label {
    letter-spacing: 1px;
    font-size: 0.75rem;
}

.map-container {
    height: 400px;
    width: 100%;
}

.map-grayscale {
    border: 0;
    filter: grayscale(100%) opacity(80%);
    width: 100%;
    height: 100%;
}

/* =========================================
   ESPACIADO SUPERIOR HÉROES INTERNOS
   Acerca la primera tarjeta blanca al header
   ========================================= */
.com-content-article__body > section.py-5:first-child:not(.hero-service-section) {
    padding-top: 1.5rem !important;
}

/* =========================================
   MOBILE & TABLET OFF-CANVAS NAVIGATION FIX
   ========================================= */
@media (max-width: 991.98px) {
    /* Transformar el menú colapsable en una barra lateral fija (off-canvas) */
    .navbar-collapse {
        position: fixed !important;
        top: 0 !important;
        right: -320px !important;
        width: 320px !important;
        height: 100vh !important;
        background-color: #ffffff !important;
        z-index: 1050 !important;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;
        padding: 90px 24px 24px 24px !important;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1) !important;
        margin: 0 !important;
        left: auto !important;
    }

    /* Mostrar el menú off-canvas deslizándolo desde la derecha */
    .navbar-collapse.show {
        right: 0 !important;
    }

    /* Adaptar los enlaces de navegación internos a formato de lista vertical */
    .navbar-collapse .navbar-nav {
        flex-direction: column !important;
        width: 100% !important;
        gap: 16px !important;
    }

    /* Mantener el botón del menú burger siempre visible y en una capa superior */
    .navbar-toggler {
        position: relative !important;
        z-index: 1060 !important;
    }

    /* Cambiar el color del icono burger a carbón cuando el menú está abierto */
    .navbar-toggler[aria-expanded="true"] .icon-menu {
        color: #1d1d1f !important;
    }

    /* Cambiar el icono del burger a una X cuando el menú está abierto */
    .navbar-toggler[aria-expanded="true"] .icon-menu::before {
        content: "\f00d" !important;
    }

    /* Alinear el contenedor de navegación y el botón burger a la derecha en móviles/tablets */
    .header .grid-child.container-nav {
        justify-content: flex-end !important;
    }

}

/* =========================================
   FOOTER REDESIGN 2026
   ========================================= */
.container-footer {
    background-color: #0d1627 !important; /* Fondo premium oscuro cobalto/negro */
    background-image: none !important; /* Desactivar gradiente predeterminado de Cassiopeia */
    padding: 80px 0 !important; /* Más aire vertical */
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.container-footer .grid-child > * {
    margin-left: auto !important;
    margin-right: auto !important;
}


.footer-global a {
    transition: color 0.2s ease-in-out, transform 0.2s ease-in-out !important;
}

.footer-global a:hover {
    color: #ffffff !important;
}

/* =========================================
   HERO DE SERVICIOS - REDISEÑO 2026 (Opción C - Minimalista Flotante a la Izquierda)
   ========================================= */

.hero-service-section p {
    margin-left: 0 !important;
}

/* Efecto ambient glow radial de fondo (esquina superior izquierda) */
.hero-service-glow {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle at top left, rgba(13, 110, 253, 0.05) 0%, rgba(13, 110, 253, 0) 70%) !important;
    filter: blur(90px) !important;
    z-index: 1;
    pointer-events: none;
}

.text-primary-gradient {
    background: linear-gradient(135deg, #0d6efd 0%, #0056b3 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    font-weight: 800 !important;
}

/* Ajustes Responsive para Opción C */
@media (max-width: 767.98px) {
    .hero-service-section {
        padding-top: 80px !important;
        padding-bottom: 40px !important;
    }
    
    .hero-service-section h1 {
        font-size: calc(1.625rem + 4.5vw) !important; /* Adaptar display-3 de Bootstrap a móvil */
    }
    
    .hero-service-glow {
        width: 350px;
        height: 350px;
        filter: blur(50px) !important;
    }
}
/* =========================================
   ALINEACIÓN HEADER REDESIGN 2026 - BANDA INFINITA ALINEADA CON CUERPO
   ========================================= */
@media (min-width: 1200px) {
  header.header,
  header.container-header,
  .container-header {
    padding-left: calc((100% - 1200px) / 2 + 32px) !important;
    padding-right: calc((100% - 1200px) / 2 + 32px) !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }
  header.header > .grid-child:first-child,
  .container-header > .grid-child:first-child {
    padding-left: 0 !important;
  }
  header.header > .grid-child.container-nav,
  .container-header > .grid-child.container-nav {
    padding-right: 0 !important;
  }
  header.header .navbar {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  header.header .navbar-collapse {
    padding-right: 0 !important;
  }
  header.header ul.mod-menu {
    margin-right: 0 !important;
    padding-right: 0 !important;
  }
  header.header ul.mod-menu li:last-child {
    padding-right: 0 !important;
    margin-right: 0 !important;
  }
}

/* =========================================
   TIPOGRAFÍA GLOBAL REDESIGN 2026
   ========================================= */
h1, h2, h3, .h1, .h2, .h3 {
    opacity: 0.87 !important;
}

/* =========================================
   HERO SERVICE CONTAINER RESPONSIVE
   ========================================= */
@media (min-width: 768px) {
    .hero-service-container {
        max-width: 75% !important;
    }
}



.hero-service-container h1 {
    line-height: 0.9 !important;
}

/* =========================================
   SECCIONES FULL WIDTH EN CONTENEDORES LIMITADOS
   ========================================= */
.fajin {
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    padding-left: calc(50vw - 50%) !important;
    padding-right: calc(50vw - 50%) !important;
    background-color: #ffffff !important; /* Asegurar fondo blanco */
}

/* =========================================
   EFECTO REVELADO SECUENCIAL H1
   ========================================= */
@keyframes revealChar {
  from {
    opacity: 0;
    filter: blur(3px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}

.char-span {
  display: inline !important; /* Evita roturas de palabra y mantiene compatibilidad con gradientes */
  opacity: 0;
  animation: revealChar 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* =========================================
   CURSOR PARPADEANTE H1 (OPCIÓN A)
   ========================================= */
.hero-typing-cursor {
  display: inline-block !important;
  width: 3px;
  height: 0.85em;
  background-color: #1d1d1f !important; /* Negro Near-Black Ink */
  margin-left: 4px;
  vertical-align: -0.08em;
  animation: blink-cursor 0.8s step-end infinite;
  transition: opacity 0.4s ease;
}

@keyframes blink-cursor {
  from, to { background-color: transparent; }
  50% { background-color: #1d1d1f; }
}


.char-span-js {
  display: inline !important;
  opacity: 0;
  animation: revealCharJs 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes revealCharJs {
  to {
    opacity: 1;
  }
}

/* =========================================
   ANIMACIÓN SUBTÍTULO HERO (REVELAR DE ABAJO A ARRIBA)
   ========================================= */
p.hero-lead-hidden {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1), transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

p.hero-lead-hidden.hero-lead-visible {
  opacity: 1;
  transform: translateY(0);
}













