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

:root {
    --white: #FFFFFF;
    --snow: #F7F8FC;
    --cloud: #EEF0F6;
    --silver: #D8DBE8;
    --border: rgba(11, 0, 200, 0.06);
    --border-mid: rgba(11, 0, 200, 0.10);

    --blue: #0B00C8;
    --blue-bright: #2718FF;
    --blue-soft: #4F46E5;
    --blue-glow: rgba(11, 0, 200, 0.10);
    --blue-wash: rgba(11, 0, 200, 0.04);
    --cyan: #00D4FF;
    --cyan-deep: #00B8DB;
    --cyan-glow: rgba(0, 212, 255, 0.10);
    --cyan-wash: rgba(0, 212, 255, 0.06);

    --heading: #0A0A2E;
    --body: #4A4A6A;
    --muted: #7B7FA0;
    --faint: #A0A3C0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--white);
    color: var(--body);
    font-family: 'Inter', -apple-system, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--heading);
}

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

/* ── NAV ─────────────────────────────────────────── */
/* Acotado a #navbar a propósito: como selector de elemento suelto, `nav`
   alcanzaba a cualquier otro <nav> de la página (migas de pan, índice de
   la guía) y los volvía fijos encima del contenido. */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.2rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#navbar.scrolled {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    border-bottom: 1px solid var(--border);
    padding: 0.8rem 0;
    box-shadow: 0 1px 12px rgba(11, 0, 200, 0.04);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--heading);
}

.logo-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
}

.logo-wordmark {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
    line-height: 1.15;
}

.logo-wordmark .sistemas {
    color: var(--heading);
}

.logo-wordmark .estrategicos {
    color: var(--blue);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.25s;
}

.nav-links a:hover {
    color: var(--heading);
}

.nav-cta {
    background: var(--blue);
    color: var(--white) !important;
    padding: 0.55rem 1.5rem;
    border-radius: 8px;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    transition: all 0.3s !important;
}

.nav-cta:hover {
    background: var(--blue-bright) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 24px var(--blue-glow);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--heading);
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-nav {
    display: none;
}

/* ── HERO ────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    min-height: 100svh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 5rem;
    background: linear-gradient(180deg, var(--white) 0%, var(--snow) 100%);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    will-change: transform;
}

.hero-glow-1 {
    width: 600px;
    height: 600px;
    background: var(--blue);
    opacity: 0.045;
    top: -10%;
    left: -8%;
    animation: float1 18s ease-in-out infinite;
}

.hero-glow-2 {
    width: 500px;
    height: 500px;
    background: var(--cyan);
    opacity: 0.04;
    bottom: -15%;
    right: -5%;
    animation: float2 22s ease-in-out infinite;
}

@keyframes float1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(60px, 40px) scale(1.1);
    }

    66% {
        transform: translate(-30px, 60px) scale(0.95);
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(-50px, -30px) scale(1.05);
    }

    66% {
        transform: translate(40px, -50px) scale(0.9);
    }
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(11, 0, 200, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 0, 200, 0.02) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 65% 55% at 50% 45%, black 20%, transparent 72%);
    -webkit-mask-image: radial-gradient(ellipse 65% 55% at 50% 45%, black 20%, transparent 72%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    padding: 0 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: var(--blue-wash);
    border: 1px solid rgba(11, 0, 200, 0.12);
    border-radius: 100px;
    padding: 0.4rem 1.2rem 0.4rem 0.65rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--blue);
    margin-bottom: 2.5rem;
    animation: fadeUp 0.6s ease both;
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blue);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(11, 0, 200, 0.3);
    }

    50% {
        opacity: 0.7;
        box-shadow: 0 0 0 6px rgba(11, 0, 200, 0);
    }
}

.hero-title {
    font-size: clamp(2.8rem, 6.5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.035em;
    margin-bottom: 1.6rem;
    animation: fadeUp 0.6s 0.1s ease both;
    color: var(--heading);
}

.gradient-text {
    background: linear-gradient(135deg, var(--blue) 0%, var(--cyan-deep) 60%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.6vw, 1.18rem);
    color: var(--muted);
    max-width: 580px;
    margin: 0 auto 2.8rem;
    line-height: 1.75;
    font-weight: 400;
    animation: fadeUp 0.6s 0.2s ease both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 0.6s 0.3s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-primary {
    background: var(--blue);
    color: var(--white);
    border: none;
    padding: 0.9rem 2.2rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--blue-bright), var(--blue));
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--blue-glow), 0 2px 8px rgba(0, 0, 0, 0.08);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary span,
.btn-primary svg {
    position: relative;
    z-index: 1;
}

.btn-ghost {
    background: transparent;
    color: var(--heading);
    border: 1px solid var(--silver);
    padding: 0.9rem 2.2rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    transition: all 0.3s;
}

.btn-ghost:hover {
    background: var(--snow);
    border-color: var(--border-mid);
    transform: translateY(-1px);
}

/* ── SECTION COMMON ──────────────────────────────── */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 1.2rem;
}

.section-eyebrow::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--blue);
    border-radius: 1px;
}

.section-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    color: var(--heading);
}

.section-desc {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 560px;
    line-height: 1.75;
    margin-bottom: 3.5rem;
}

/* ── TRUST BAR ──────────────────────────────────── */
.trust-bar {
    padding: 3.5rem 0;
    border-top: 1px solid var(--cloud);
    border-bottom: 1px solid var(--cloud);
    text-align: center;
    background: var(--white);
}

.trust-label {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--faint);
    margin-bottom: 1.8rem;
    font-weight: 600;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: 0.40;
}

.trust-item {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--heading);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ── PRODUCTS ────────────────────────────────────── */
.products-section {
    padding: 7rem 0;
    background: var(--white);
}

.products-header {
    text-align: center;
    margin-bottom: 4.5rem;
}

.products-header .section-eyebrow {
    justify-content: center;
}

.products-header .section-heading {
    max-width: 640px;
    margin: 0 auto 1rem;
}

.products-header .section-desc {
    max-width: 540px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.product-subtitle {
    font-size: 0.78rem;
    color: var(--muted);
    font-style: italic;
    margin-bottom: 0.5rem;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--cloud);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    opacity: 0;
    transition: opacity 0.4s;
}

.product-card:hover {
    border-color: rgba(11, 0, 200, 0.12);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(11, 0, 200, 0.07);
}

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

.product-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.product-icon-wrap.blue-bg {
    background: linear-gradient(135deg, rgba(11, 0, 200, 0.08), rgba(11, 0, 200, 0.04));
    border: 1px solid rgba(11, 0, 200, 0.10);
    color: var(--blue);
}

.product-icon-wrap.cyan-bg {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.10), rgba(0, 212, 255, 0.04));
    border: 1px solid rgba(0, 212, 255, 0.15);
    color: var(--cyan-deep);
}

.product-badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.25rem 0.7rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.product-badge.new {
    background: rgba(0, 212, 255, 0.10);
    color: var(--cyan-deep);
}

.product-badge.popular {
    background: rgba(11, 0, 200, 0.08);
    color: var(--blue);
}

.product-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
    letter-spacing: -0.02em;
}

.product-desc {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 1.8rem;
}

.product-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 2rem;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--body);
}

.product-features li svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--blue);
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--blue);
    text-decoration: none;
    transition: gap 0.3s, color 0.3s;
}

.product-link:hover {
    gap: 0.7rem;
    color: var(--blue-bright);
}

/* ── FEATURES STRIP ──────────────────────────────── */
.features-strip {
    padding: 5rem 0;
    background: var(--snow);
    border-top: 1px solid var(--cloud);
    border-bottom: 1px solid var(--cloud);
}

.features-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-mini {
    text-align: center;
    padding: 1.5rem 1rem;
}

.feature-mini-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--white);
    border: 1px solid var(--cloud);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    color: var(--blue);
    box-shadow: 0 2px 8px rgba(11, 0, 200, 0.04);
}

.feature-mini-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--heading);
}

.feature-mini-desc {
    font-size: 0.84rem;
    color: var(--muted);
    line-height: 1.65;
}

/* ── ABOUT / QUIENES SOMOS ───────────────────────── */
.about-section {
    padding: 7rem 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content .section-desc {
    margin-bottom: 2rem;
}

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

.about-stat-value {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--blue), var(--cyan-deep));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 0.3rem;
}

.about-stat-label {
    font-size: 0.82rem;
    color: var(--muted);
    font-weight: 500;
}

.about-visual {
    position: relative;
}

.about-image-main {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--snow), var(--cloud));
    border: 1px solid var(--cloud);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.about-image-main svg {
    width: 120px;
    height: 120px;
    color: var(--blue);
    opacity: 0.15;
}

.about-float-card {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--white);
    border: 1px solid var(--cloud);
    border-radius: 14px;
    padding: 1.2rem 1.5rem;
    box-shadow: 0 12px 32px rgba(11, 0, 200, 0.06);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.about-float-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(11, 0, 200, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
}

.about-float-text {
    font-size: 0.82rem;
}

.about-float-text strong {
    color: var(--heading);
    display: block;
    font-weight: 700;
}

.about-float-text span {
    color: var(--muted);
}

/* ── VALUES ──────────────────────────────────────── */
.values-section {
    padding: 7rem 0;
    background: var(--snow);
}

.values-header {
    text-align: center;
    margin-bottom: 4rem;
}

.values-header .section-eyebrow {
    justify-content: center;
}

.values-header .section-heading {
    max-width: 500px;
    margin: 0 auto 1rem;
}

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

.value-card {
    background: var(--white);
    border: 1px solid var(--cloud);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.35s;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(11, 0, 200, 0.05);
    border-color: rgba(11, 0, 200, 0.10);
}

.value-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(11, 0, 200, 0.06), rgba(0, 212, 255, 0.06));
    border: 1px solid rgba(11, 0, 200, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    color: var(--blue);
}

.value-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--heading);
}

.value-desc {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.7;
}

/* ── GALLERY / CAROUSEL ──────────────────────────── */
.gallery-section {
    padding: 7rem 0;
    background: var(--white);
    overflow: hidden;
}

.gallery-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.gallery-header .section-eyebrow {
    justify-content: center;
}

.carousel-wrapper {
    position: relative;
    max-width: 100%;
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: grab;
}

.carousel-track:active {
    cursor: grabbing;
}

.carousel-slide {
    flex: 0 0 calc(33.333% - 1rem);
    height: 380px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--snow), var(--cloud));
    border: 1px solid var(--cloud);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.35s;
}

.carousel-slide:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 36px rgba(11, 0, 200, 0.06);
}

.slide-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    color: var(--faint);
}

.slide-placeholder svg {
    opacity: 0.3;
}

.slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide:hover .slide-img {
    transform: scale(1.06);
}

.slide-placeholder span {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--muted);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--silver);
    background: var(--white);
    color: var(--heading);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.carousel-btn:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
}

.carousel-dots {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--silver);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active {
    background: var(--blue);
    width: 24px;
    border-radius: 4px;
}

/* ── STATS BANNER ────────────────────────────────── */
.stats-banner {
    padding: 4.5rem 0;
    background: var(--blue);
    position: relative;
    overflow: hidden;
}

.stats-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.12);
    filter: blur(80px);
}

.stats-banner::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -5%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(39, 24, 255, 0.15);
    filter: blur(80px);
}

.stats-banner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.stats-banner-item {}

.stats-banner-value {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 0.4rem;
}

.stats-banner-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
}

/* ── CONTACT ─────────────────────────────────────── */
.contact-section {
    padding: 7rem 0;
    background: var(--snow);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    padding-top: 1rem;
}

.contact-info .section-desc {
    margin-bottom: 2.5rem;
}

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-channel {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-channel-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--white);
    border: 1px solid var(--cloud);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--blue);
}

.contact-channel-text {
    font-size: 0.9rem;
}

.contact-channel-text strong {
    color: var(--heading);
    display: block;
    margin-bottom: 0.15rem;
}

.contact-channel-text a {
    color: var(--blue);
    text-decoration: none;
    transition: color 0.25s;
}

.contact-channel-text a:hover {
    color: var(--blue-bright);
}

.contact-channel-text span {
    color: var(--muted);
}

.social-links {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-top: 0.55rem;
}

.social-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 1.1rem;
    border-radius: 10px;
    font-size: 0.82rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    letter-spacing: 0.01em;
}

.social-pill:hover {
    transform: translateY(-2px);
}

.social-pill svg {
    flex-shrink: 0;
}

.contact-channel-text .social-pill {
    color: #fff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.social-facebook {
    background: #1877F2;
    box-shadow: 0 4px 14px rgba(24, 119, 242, 0.30);
}

.social-facebook:hover {
    background: #0d65d9;
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.45);
}

.social-instagram {
    background: linear-gradient(135deg, #f58529 0%, #dd2a7b 50%, #8134af 100%);
    box-shadow: 0 4px 14px rgba(221, 42, 123, 0.30);
}

.social-instagram:hover {
    box-shadow: 0 6px 20px rgba(221, 42, 123, 0.45);
    filter: brightness(1.08);
}

.social-tiktok {
    background: #010101;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.20);
}

.social-tiktok:hover {
    background: #1a1a1a;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.32);
}

/* WhatsApp Button */
.whatsapp-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.9rem 2.2rem;
    background: #25D366;
    color: #fff !important;
    border-radius: 100px;
    font-size: 1.05rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    border: none;
}

.whatsapp-pill:hover {
    background: #128C7E;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
}

.whatsapp-pill svg {
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.1));
}

.contact-form-card {
    background: var(--white);
    border: 1px solid var(--cloud);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(11, 0, 200, 0.04);
}

.contact-form-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--heading);
}

.contact-form-subtitle {
    font-size: 0.88rem;
    color: var(--muted);
    margin-bottom: 2rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--heading);
}

.form-group input,
.form-group select,
.form-group textarea {
    border: 1px solid var(--cloud);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    color: var(--heading);
    background: var(--snow);
    transition: border-color 0.25s, box-shadow 0.25s;
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(11, 0, 200, 0.08);
    background: var(--white);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--faint);
}

.form-submit {
    margin-top: 1.5rem;
}

.form-submit .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 1rem;
}

/* ── FOOTER ─────────────────────────────────────── */
footer {
    border-top: 1px solid var(--cloud);
    padding: 4rem 0 2.5rem;
    background: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
}

.footer-brand-desc {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.75;
    margin-top: 1.2rem;
    max-width: 280px;
}

.footer-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--body);
    margin-bottom: 1.3rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.25s;
}

.footer-links a:hover {
    color: var(--blue);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--cloud);
    font-size: 0.8rem;
    color: var(--faint);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: var(--faint);
    transition: color 0.25s;
}

.footer-social a:hover {
    color: var(--blue);
}

/* ── REVEAL ──────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1024px) {
    .products-grid {
        max-width: 100%;
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .about-grid {
        gap: 3rem;
    }

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

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

    .carousel-slide {
        flex: 0 0 calc(50% - 0.75rem);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-nav {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 200;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
    }

    .mobile-nav.open {
        display: flex;
    }

    .mobile-nav a {
        color: var(--heading);
        text-decoration: none;
        font-size: 1.3rem;
        font-weight: 600;
        font-family: 'Plus Jakarta Sans', sans-serif;
    }

    .mobile-nav-close {
        position: absolute;
        top: 1.5rem;
        right: 2rem;
        background: none;
        border: none;
        color: var(--heading);
        cursor: pointer;
    }

    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3.2rem);
    }

    .products-grid,
    .contact-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-visual {
        order: -1;
    }

    .features-strip-grid,
    .values-grid,
    .stats-banner-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .carousel-slide {
        flex: 0 0 calc(80% - 0.75rem);
    }

    section,
    .products-section,
    .about-section,
    .values-section,
    .gallery-section,
    .contact-section {
        padding: 4rem 0;
    }
}

@media (max-width: 768px) {
    .hero-glow {
        display: none;
    }

    .stats-banner::before,
    .stats-banner::after {
        display: none;
    }

    .hero-grid {
        mask-image: none;
        -webkit-mask-image: none;
    }

    #navbar.scrolled,
    .mobile-nav {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(255, 255, 255, 0.96);
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-ghost {
        width: 100%;
        justify-content: center;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }

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

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

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

    .stats-banner-item:last-child {
        grid-column: span 2;
    }

    /* Contact optimization for mobile */
    .whatsapp-pill {
        width: 100%;
        justify-content: center;
        padding: 1.1rem 1.5rem;
        font-size: 1rem;
    }

    .social-links {
        flex-direction: column;
        width: 100%;
        gap: 0.8rem !important;
    }

    .social-pill {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 1.2rem;
        font-size: 0.92rem;
    }

    .carousel-slide {
        flex: 0 0 90%;
    }
}

/* ═══════════════════════════════════════════════════════════
   PÁGINAS INTERIORES
   Componentes añadidos al pasar de una sola landing a un sitio
   de varias páginas. Reutilizan los tokens de :root de arriba.
   ═══════════════════════════════════════════════════════════ */

/* ── BREADCRUMBS ─────────────────────────────────────── */
.breadcrumbs {
    padding: 6.5rem 0 0;
    background: var(--white);
}

.breadcrumbs ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--muted);
}

.breadcrumbs li+li::before {
    content: '›';
    margin-right: 0.5rem;
    color: var(--faint);
}

.breadcrumbs a {
    color: var(--muted);
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: var(--blue);
}

/* ── HERO DE PÁGINA INTERIOR ─────────────────────────── */
.page-hero {
    padding: 2.5rem 0 4rem;
    background: linear-gradient(180deg, var(--white) 0%, var(--snow) 100%);
    border-bottom: 1px solid var(--cloud);
}

.page-hero-inner {
    max-width: 780px;
}

.page-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.1rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin-bottom: 1.2rem;
}

.page-hero-lead {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 2rem;
}

.page-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ── ARTÍCULO / PROSA ────────────────────────────────── */
.prose-section {
    padding: 5rem 0;
    background: var(--white);
}

.prose {
    max-width: 760px;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--body);
}

.prose h2 {
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 3rem 0 1rem;
    scroll-margin-top: 6rem;
}

.prose h2:first-child {
    margin-top: 0;
}

.prose h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 2rem 0 0.6rem;
    color: var(--heading);
}

.prose p {
    margin-bottom: 1.1rem;
}

.prose ul,
.prose ol {
    margin: 0 0 1.4rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.prose li {
    padding-left: 0.3rem;
}

.prose strong {
    color: var(--heading);
    font-weight: 600;
}

.prose a {
    color: var(--blue);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.prose-note {
    background: var(--blue-wash);
    border-left: 3px solid var(--blue);
    border-radius: 0 10px 10px 0;
    padding: 1.1rem 1.4rem;
    margin: 1.8rem 0;
    font-size: 0.93rem;
}

.prose-note strong {
    display: block;
    margin-bottom: 0.2rem;
}

.table-wrap {
    overflow-x: auto;
    margin: 1.8rem 0;
    border: 1px solid var(--cloud);
    border-radius: 12px;
}

.prose table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    min-width: 460px;
}

.prose th,
.prose td {
    padding: 0.85rem 1.1rem;
    text-align: left;
    border-bottom: 1px solid var(--cloud);
}

.prose th {
    background: var(--snow);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: var(--heading);
    font-size: 0.82rem;
    letter-spacing: 0.02em;
}

.prose tbody tr:last-child td {
    border-bottom: none;
}

/* Índice del artículo */
.toc {
    background: var(--snow);
    border: 1px solid var(--cloud);
    border-radius: 14px;
    padding: 1.5rem 1.8rem;
    margin-bottom: 2.5rem;
}

.toc-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--body);
    margin-bottom: 0.9rem;
}

.toc ol {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 0;
    counter-reset: toc;
}

.toc li {
    counter-increment: toc;
    font-size: 0.9rem;
    padding-left: 0;
}

.toc li::before {
    content: counter(toc) '.';
    color: var(--faint);
    margin-right: 0.5rem;
    font-variant-numeric: tabular-nums;
}

.toc a {
    color: var(--body);
    text-decoration: none;
}

.toc a:hover {
    color: var(--blue);
}

/* ── BLOQUE DE CARACTERÍSTICAS ───────────────────────── */
.feature-blocks {
    padding: 5rem 0;
    background: var(--snow);
    border-top: 1px solid var(--cloud);
    border-bottom: 1px solid var(--cloud);
}

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

.feature-block {
    background: var(--white);
    border: 1px solid var(--cloud);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.35s;
}

.feature-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(11, 0, 200, 0.05);
    border-color: rgba(11, 0, 200, 0.10);
}

.feature-block-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(11, 0, 200, 0.08), rgba(0, 212, 255, 0.06));
    border: 1px solid rgba(11, 0, 200, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    margin-bottom: 1.1rem;
}

.feature-block h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.45rem;
}

.feature-block p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.7;
}

/* ── FAQ ─────────────────────────────────────────────── */
.faq-section {
    padding: 6rem 0;
    background: var(--white);
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    border: 1px solid var(--cloud);
    border-radius: 12px;
    background: var(--white);
    transition: border-color 0.25s, box-shadow 0.25s;
}

.faq-item[open] {
    border-color: rgba(11, 0, 200, 0.14);
    box-shadow: 0 8px 28px rgba(11, 0, 200, 0.05);
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem 1.5rem;
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--heading);
    list-style: none;
}

.faq-q::-webkit-details-marker {
    display: none;
}

.faq-chevron {
    flex-shrink: 0;
    color: var(--blue);
    transition: transform 0.25s;
}

.faq-item[open] .faq-chevron {
    transform: rotate(180deg);
}

.faq-a {
    padding: 0 1.5rem 1.35rem;
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.8;
}

/* ── BANDA CTA ───────────────────────────────────────── */
.cta-band {
    padding: 5rem 0;
    background: var(--blue);
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -8%;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.14);
    filter: blur(80px);
}

.cta-band-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.cta-band-title {
    font-size: clamp(1.7rem, 3.4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 0.9rem;
}

.cta-band-text {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 2.2rem;
}

.cta-band-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-band-actions .btn-ghost {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.35);
}

.cta-band-actions .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.55);
}

/* ── PRECIOS ─────────────────────────────────────────── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 860px;
    margin: 3rem auto 0;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--cloud);
    border-radius: 18px;
    padding: 2.2rem;
}

.pricing-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.pricing-card p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 1.4rem;
}

.pricing-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.pricing-card li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.87rem;
    color: var(--body);
    line-height: 1.6;
}

.pricing-card li svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 0.22rem;
    color: var(--blue);
}

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
    .feature-blocks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .breadcrumbs {
        padding-top: 5.5rem;
    }

    .page-hero {
        padding: 2rem 0 3rem;
    }

    .prose-section,
    .faq-section,
    .feature-blocks,
    .cta-band {
        padding: 3.5rem 0;
    }

    .feature-blocks-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .page-hero-actions .btn-primary,
    .page-hero-actions .btn-ghost {
        width: 100%;
        justify-content: center;
    }

    .cta-band-actions .whatsapp-pill,
    .cta-band-actions .btn-ghost {
        width: 100%;
        justify-content: center;
    }

    .toc {
        padding: 1.2rem 1.4rem;
    }
}
