/* ==========================================================================
   PRODESO CHILD THEME — Custom CSS
   ========================================================================== */

/* ─── VARIABLES GLOBALES ─────────────────────────────────────────── */
:root {
    --vc-primary:         #1A56DB;
    --vc-primary-light:   #4A90E2;
    --vc-primary-dark:    #1E2A4A;
    --vc-bg-dark:         #0F172A;
    --vc-bg-card:         #1A2332;
    --vc-text-white:      #FFFFFF;
    --vc-text-light:      #94A3B8;
    --vc-accent:          #3B82F6;
    --vc-border:          #334155;
    --vc-blue:            #1F7CFF;
    --vc-gray:            #A9B1BC;
    --vc-green:           #0d6b3a;
    --vc-green-light:     #14a85e;
    --vc-green-glow:      rgba(20,168,94,.15);
    --vc-orange-glow:     rgba(31,124,255,.12);
    --vc-purple:          #7C3AED;
    --vc-purple-light:    #9D6BF5;
    --vc-purple-glow:     rgba(124,58,237,0.12);
    --vc-purple-dim:      rgba(124,58,237,0.08);
    --vc-purple-border:   rgba(124,58,237,0.28);
    --vc-aqua:            #00BCD4;
    --vc-pool-blue:       #0077BE;
    --vc-pool-deep:       #003D5C;
    --vc-radius:          14px;
    --vc-radius-lg:       20px;
    --vc-container:       min(1200px, 92vw);
    --vc-shadow-lg:       0 30px 60px -20px rgba(0,0,0,.5);
}

/* ─── UTILIDADES COMPARTIDAS ─────────────────────────────────────── */
.vc-container {
    max-width: var(--vc-container);
    margin: 0 auto;
    padding: 0 clamp(16px,3vw,28px);
}
.vc-muted { color: var(--vc-gray); }

.vc-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 14px;
    font-weight: 700;
    border: 1px solid rgba(255,255,255,.08);
    text-decoration: none;
    color: #fff;
    cursor: pointer;
    font-family: inherit;
    transition: all .25s ease;
}
.vc-btn-primary,
.vc-btn.vc-primary {
    background: linear-gradient(180deg, var(--vc-blue) 0%, #1667d9 100%);
    border-color: transparent;
    color: #fff;
}
.vc-btn-primary:hover { transform: translateY(-2px); filter: brightness(1.1); }
.vc-btn-ghost,
.vc-btn.vc-ghost {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.12);
    color: #fff;
}

.vc-section-head {
    max-width: var(--vc-container);
    margin: 0 auto 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    padding: 0 clamp(16px,3vw,28px);
}
.vc-section-head h2 { margin: 0; font-size: clamp(22px,3.5vw,34px); }

.vc-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.vc-tag-green  { background: var(--vc-green-glow);    border: 1px solid rgba(20,168,94,.35);   color: var(--vc-green-light); }
.vc-tag-orange { background: var(--vc-orange-glow);   border: 1px solid rgba(31,124,255,.3);   color: #4a96ff; }

.vc-hide-mobile { display: block; }

/* ─── HOME: HERO ─────────────────────────────────────────────────── */
/* Origen: _raw/Home/01-hero.html */
.vc-home-hero {
    max-width: var(--vc-container);
    margin: auto;
    padding: clamp(40px,8vw,100px) clamp(16px,3vw,28px);
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: clamp(20px,5vw,60px);
    align-items: center;
    font-family: Inter, system-ui, Arial, sans-serif;
    color: #fff;
}
.vc-kicker {
    color: var(--vc-gray);
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: .8rem;
}
.vc-lede { color: #d4deee; font-size: clamp(16px,1.8vw,19px); }
.vc-home-hero-cta { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.vc-home-hero-card {
    background:
        radial-gradient(600px 400px at 100% -20%, rgba(31,124,255,.25), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    padding: 22px;
}
.vc-home-hero-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.vc-home-pill {
    padding: 14px;
    border-radius: 14px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.vc-home-pill small { color: var(--vc-gray); text-transform: uppercase; letter-spacing: .12em; }
.vc-home-pill b    { font-size: 1.05rem; }
@media (max-width:980px) {
    .vc-home-hero { grid-template-columns: 1fr; }
    .vc-home-hero-card { order: -1; }
}

/* ─── HOME: DIVISIONES ───────────────────────────────────────────── */
/* Origen: _raw/Home/02-divisiones */
.vc-div-cards {
    max-width: var(--vc-container);
    margin: auto;
    padding: 0 clamp(16px,3vw,28px) 60px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
}
.vc-div-card {
    background: linear-gradient(180deg,rgba(255,255,255,.05),rgba(255,255,255,.02));
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    overflow: hidden;
    color: #fff;
}
.vc-div-card-media { aspect-ratio: 16/9; background: #0c1320 center/cover no-repeat; }
.vc-div-card-body  { padding: 18px; }
.vc-tag {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: .75rem;
    letter-spacing: .04em;
    margin-bottom: 8px;
}
.vc-tag-build { background: rgba(31,124,255,.12); border: 1px solid rgba(31,124,255,.35); }
.vc-tag-land  { background: rgba(15,169,88,.18);  border: 1px solid rgba(15,169,88,.45); }
.vc-tag-pool  { background: rgba(0,212,255,.18);  border: 1px solid rgba(0,212,255,.45); }
.vc-meta { color: var(--vc-gray); font-size: .95rem; }
.vc-meta li { margin-bottom: 4px; }
@media (max-width:980px) {
    .vc-hide-mobile   { display: none; }
    .vc-div-cards     { grid-template-columns: 1fr 1fr; }
    .vc-section-head  { align-items: center; }
}
@media (max-width:640px) { .vc-div-cards { grid-template-columns: 1fr; } }

/* ─── HOME: TECNOLOGÍA CREADA ────────────────────────────────────── */
/* Origen: _raw/Home/03-tecnologia_creada */
.vc-tech-section {
    position: relative;
    padding: clamp(72px,10vw,120px) clamp(20px,4vw,60px);
    overflow: hidden;
    color: #fff;
    font-family: 'Inter', system-ui, Arial, sans-serif;
}
.vc-tech-section::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 800px 500px at 88% 55%, rgba(124,58,237,.07), transparent 55%),
        radial-gradient(ellipse 500px 400px at 12% 30%, rgba(31,124,255,.05), transparent 55%);
    pointer-events: none;
}
.vc-tech-inner { position: relative; z-index: 2; max-width: min(1200px,92vw); margin: 0 auto; }
.vc-eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 32px; animation: vc-fadeUp .5s ease both; }
.vc-eyebrow-line  { width: 28px; height: 2px; background: var(--vc-purple); border-radius: 2px; }
.vc-eyebrow-text  { font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--vc-purple-light); }
.vc-eyebrow-dot   { width: 4px; height: 4px; border-radius: 50%; background: var(--vc-purple); }
.vc-tech-layout {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: clamp(40px,6vw,80px);
    align-items: center;
}
.vc-tech-left h2 {
    font-size: clamp(28px,4.5vw,52px);
    font-weight: 800; line-height: 1.05;
    letter-spacing: -.025em; color: #fff;
    margin-bottom: 24px;
    animation: vc-fadeUp .6s .1s ease both;
}
.vc-highlight { position: relative; display: inline; }
.vc-highlight::after {
    content: '';
    position: absolute; left: 0; bottom: -4px;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--vc-purple), var(--vc-purple-light));
    border-radius: 2px;
    transform: scaleX(0); transform-origin: left;
    animation: vc-lineIn .7s .85s ease forwards;
}
.vc-tech-left p { font-size: clamp(15px,1.6vw,17px); line-height: 1.8; color: #d4deee; margin-bottom: 16px; max-width: 490px; animation: vc-fadeUp .6s .2s ease both; }
.vc-tech-left p strong { color: #fff; font-weight: 600; }
.vc-tech-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; animation: vc-fadeUp .6s .25s ease both; }
.vc-tech-pill  {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 100px;
    padding: 6px 14px;
    font-size: 12px; font-weight: 500; color: #d4deee;
}
.vc-pill-dot   { width: 6px; height: 6px; border-radius: 50%; }
.vc-dot-purple { background: var(--vc-purple-light); }
.vc-dot-blue   { background: #60A5FA; }
.vc-dot-green  { background: #34D399; }
.vc-tech-cta-group { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; animation: vc-fadeUp .6s .3s ease both; }
.vc-btn-waitlist {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 14px 26px;
    background: linear-gradient(135deg, var(--vc-purple), #6D28D9);
    color: #fff; font-size: 14px; font-weight: 700;
    border-radius: 12px; border: none; cursor: pointer;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 8px 24px rgba(124,58,237,.4);
}
.vc-btn-waitlist:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(124,58,237,.55); }
.vc-btn-waitlist svg { width: 15px; height: 15px; }
.vc-early-badge {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 100px; padding: 7px 14px;
    font-size: 12px; color: var(--vc-gray); font-weight: 500;
}
.vc-early-dot { width: 6px; height: 6px; background: var(--vc-purple-light); border-radius: 50%; animation: vc-pulse 2s infinite; }
.vc-tech-right { animation: vc-fadeRight .7s .25s ease both; }
.vc-platform-card {
    background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.02));
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px; padding: 24px;
    position: relative; overflow: hidden;
}
.vc-platform-card::before {
    content: '';
    position: absolute; top: -60px; right: -60px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, var(--vc-purple-glow), transparent 70%);
    pointer-events: none;
}
.vc-platform-card-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 20px; padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.vc-logo-img     { height: 40px; width: auto; border-radius: 8px; }
.vc-platform-badge {
    font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    color: var(--vc-purple-light); background: var(--vc-purple-dim); border: 1px solid var(--vc-purple-border);
    padding: 4px 11px; border-radius: 100px;
}
.vc-tech-chat-label { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--vc-gray); margin-bottom: 12px; }
.vc-tech-chat-area  { margin-bottom: 18px; }
.vc-tech-bubble     { display: flex; gap: 9px; margin-bottom: 10px; }
.vc-tech-bubble.vc-tech-bubble-user { flex-direction: row-reverse; }
.vc-tech-avatar {
    width: 28px; height: 28px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 11px; font-weight: 700;
}
.vc-tech-avatar.vc-tech-avatar-ai   { background: var(--vc-purple-dim); border: 1px solid var(--vc-purple-border); color: var(--vc-purple-light); }
.vc-tech-avatar.vc-tech-avatar-user { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.08); color: #fff; }
.vc-tech-msg { max-width: 78%; padding: 10px 13px; border-radius: 14px; font-size: 12px; line-height: 1.55; }
.vc-tech-msg.vc-tech-ai-msg   { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); color: #d4deee; border-top-left-radius: 4px; }
.vc-tech-msg.vc-tech-user-msg { background: var(--vc-purple-dim); border: 1px solid var(--vc-purple-border); color: #e0d4ff; border-top-right-radius: 4px; text-align: right; }
.vc-tech-msg strong { color: #fff; font-weight: 600; }
.vc-score-chip {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(52,211,153,.1); border: 1px solid rgba(52,211,153,.22);
    border-radius: 8px; padding: 5px 10px;
    font-size: 11px; font-weight: 700; color: #34D399; margin-top: 6px;
}
.vc-score-dot    { width: 6px; height: 6px; background: #34D399; border-radius: 50%; }
.vc-tech-features { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 4px; }
.vc-feat {
    background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08);
    border-radius: 10px; padding: 11px 13px;
    display: flex; align-items: flex-start; gap: 9px;
}
.vc-feat-icon { width: 28px; height: 28px; border-radius: 7px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 13px; }
.vc-fi-purple { background: var(--vc-purple-dim); border: 1px solid var(--vc-purple-border); }
.vc-fi-blue   { background: rgba(31,124,255,.08);  border: 1px solid rgba(31,124,255,.2); }
.vc-fi-green  { background: rgba(52,211,153,.08);  border: 1px solid rgba(52,211,153,.2); }
.vc-fi-amber  { background: rgba(251,191,36,.08);  border: 1px solid rgba(251,191,36,.2); }
.vc-feat-name { font-size: 11px; font-weight: 700; color: #fff; margin-bottom: 1px; }
.vc-feat-desc { font-size: 10px; color: var(--vc-gray); line-height: 1.4; }
.vc-tech-cursor { display: inline-block; width: 2px; height: 11px; background: var(--vc-purple-light); border-radius: 1px; margin-left: 2px; vertical-align: middle; animation: vc-blink 1.1s infinite; }
@media (max-width:860px) {
    .vc-tech-layout { grid-template-columns: 1fr; }
    .vc-tech-right  { order: -1; }
}

/* ─── HOME: NOSOTROS + CONTACTO ──────────────────────────────────── */
/* Origen: _raw/Home/04-nosotros */
.vc-nhome-split {
    max-width: var(--vc-container);
    margin: auto;
    padding: 0 clamp(16px,3vw,28px) 40px;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 28px;
}
.vc-nhome-panel {
    background: linear-gradient(180deg,rgba(255,255,255,.04),rgba(255,255,255,.02));
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    padding: 20px;
    color: #fff;
}
.vc-nhome-list { display: grid; gap: 10px; margin: 16px 0 0; padding: 0; list-style: none; }
.vc-dot-badge  { width: 10px; height: 10px; border-radius: 50%; margin-top: 7px; background: var(--vc-blue); display: inline-block; flex-shrink: 0; }
.vc-nhome-list li { display: flex; gap: 10px; align-items: flex-start; }
.vc-nhome-contact {
    max-width: var(--vc-container);
    margin: auto;
    padding: 0 clamp(16px,3vw,28px) 60px;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 24px;
}
.vc-kommo-wrapper {
    background: linear-gradient(180deg,rgba(255,255,255,.04),rgba(255,255,255,.02));
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    padding: 24px;
    min-height: 320px;
}
body .elementor-widget-container .vc-kommo-wrapper iframe { width: 100% !important; border: none !important; }
@media (max-width:980px) {
    .vc-nhome-split,
    .vc-nhome-contact { grid-template-columns: 1fr; }
}

/* ─── NOSOTROS: PÁGINA COMPLETA ──────────────────────────────────── */
/* Origen: _raw/Nosotros/nosotros */
.vc-nos-wrap { font-family: Inter, system-ui, Arial; color: #fff; }
.vc-nos-hero {
    width: 100%;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    box-sizing: border-box;
    background-image: url('https://prodeso.com.mx/wp-content/uploads/2026/03/prodeso-nostros.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.vc-nos-hero h1 { font-size: clamp(28px,5vw,56px); margin-bottom: 10px; text-shadow: 0 2px 12px rgba(0,0,0,.6); }
.vc-nos-hero p  { font-size: clamp(1rem,2.5vw,1.2rem); text-shadow: 0 2px 8px rgba(0,0,0,.5); color: rgba(255,255,255,.85); }
.vc-nos-main    { max-width: 1200px; margin: auto; padding: 0 20px; }
.vc-nos-section { margin: 80px 0; }
.vc-nos-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
    gap: 20px;
}
.vc-nos-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    padding: 24px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    color: #fff;
}
.vc-nos-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 40px rgba(0,0,0,.35);
    border-color: rgba(255,255,255,.2);
    background: linear-gradient(180deg,rgba(255,255,255,.07),rgba(255,255,255,.03));
}
.vc-nos-values { display: grid; grid-template-columns: repeat(auto-fit,minmax(180px,1fr)); gap: 20px; text-align: center; }
.vc-nos-value  {
    padding: 20px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    transition: transform .25s ease;
    color: #fff;
}
.vc-nos-value:hover { transform: translateY(-6px) scale(1.02); box-shadow: 0 12px 30px rgba(0,0,0,.3); }
.vc-nos-founder { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; color: #fff; }
.vc-nos-founder img { width: 100%; border-radius: 16px; border: 1px solid rgba(255,255,255,.08); }
.vc-nos-timeline { border-left: 2px solid rgba(255,255,255,.2); padding-left: 20px; margin: 40px 0; color: rgba(255,255,255,.8); }
.vc-nos-timeline div { margin: 20px 0; }
@media (max-width:900px) { .vc-nos-founder { grid-template-columns: 1fr; } }
@media (max-width:600px) {
    .vc-nos-hero { min-height: 50vh; padding: 60px 16px; }
}

/* ─── POOL ENGINEERING ───────────────────────────────────────────── */
/* Origen: _raw/Pool Engineering/pool_engineering */
#vc-pool-chatBubble {
    position: fixed; bottom: 30px; right: 30px; z-index: 1000;
    cursor: pointer; display: flex; align-items: center; gap: 12px;
    background: linear-gradient(135deg, var(--vc-pool-blue), var(--vc-pool-deep));
    border-radius: 50px; padding: 16px 24px;
    box-shadow: 0 16px 48px rgba(0,61,92,.24);
    transition: all .4s cubic-bezier(.34,1.56,.64,1);
    border: 2px solid rgba(255,255,255,.2);
    animation: vc-pool-float 3s ease-in-out infinite;
    font-family: 'Outfit', sans-serif;
}
#vc-pool-chatBubble:hover { transform: scale(1.05) translateY(-4px); box-shadow: 0 20px 60px rgba(0,61,92,.35); }
#vc-pool-chatBubble.vc-pool-hidden { opacity: 0; pointer-events: none; transform: scale(.8); }
.vc-pool-bubble-pulse {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 100%; height: 100%; border-radius: 50px;
    background: var(--vc-aqua); opacity: 0;
    animation: vc-pool-pulse 2s ease-out infinite;
}
.vc-pool-bubble-icon {
    width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.15); border-radius: 50%; padding: 6px;
}
.vc-pool-bubble-icon svg { width: 100%; height: 100%; filter: drop-shadow(0 2px 4px rgba(0,0,0,.1)); }
.vc-pool-bubble-text { color: #fff; font-size: 15px; font-weight: 600; letter-spacing: .3px; white-space: nowrap; }
#vc-pool-chatContainer {
    position: fixed; bottom: 30px; right: 30px;
    width: 420px; height: 650px;
    background: #fff; border-radius: 24px;
    box-shadow: 0 16px 48px rgba(0,61,92,.24);
    display: none; flex-direction: column; overflow: hidden;
    z-index: 1001; transform-origin: bottom right;
    animation: vc-pool-slideIn .4s cubic-bezier(.34,1.56,.64,1);
    border: 1px solid #E8F1F5;
    font-family: 'Outfit', sans-serif;
}
#vc-pool-chatContainer.vc-pool-open { display: flex; }
.vc-pool-chat-header {
    background: linear-gradient(135deg, var(--vc-pool-blue), var(--vc-pool-deep));
    padding: 24px; color: #fff;
    display: flex; justify-content: space-between; align-items: center;
    position: relative; overflow: hidden;
}
.vc-pool-chat-header::before {
    content: ''; position: absolute; top: -50%; right: -20%;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,.1), transparent 70%);
    border-radius: 50%;
}
.vc-pool-header-content { display: flex; align-items: center; gap: 14px; z-index: 1; }
.vc-pool-header-icon {
    width: 48px; height: 48px; background: rgba(255,255,255,.15); border-radius: 14px;
    display: flex; align-items: center; justify-content: center; padding: 10px;
    border: 2px solid rgba(255,255,255,.2);
}
.vc-pool-header-icon svg { width: 100%; height: 100%; }
.vc-pool-header-info h3 { font-size: 20px; font-weight: 700; margin-bottom: 4px; letter-spacing: .3px; }
.vc-pool-header-info p  { font-size: 13px; opacity: .9; }
.vc-pool-close-btn {
    background: rgba(255,255,255,.15); border: 2px solid rgba(255,255,255,.2);
    color: #fff; width: 36px; height: 36px; border-radius: 10px;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    font-size: 20px; transition: all .3s ease; z-index: 1;
}
.vc-pool-close-btn:hover { background: rgba(255,255,255,.25); transform: rotate(90deg); }
.vc-pool-messages {
    flex: 1; overflow-y: auto; padding: 24px;
    background: #F8FAFB; display: flex; flex-direction: column; gap: 16px;
}
.vc-pool-messages::-webkit-scrollbar { width: 6px; }
.vc-pool-messages::-webkit-scrollbar-track { background: #E8F1F5; }
.vc-pool-messages::-webkit-scrollbar-thumb { background: #CBD5DC; border-radius: 3px; }
.vc-pool-message {
    max-width: 80%; padding: 14px 18px; border-radius: 18px;
    animation: vc-pool-msgSlide .3s ease-out; line-height: 1.5; font-size: 14px;
}
.vc-pool-message.vc-pool-msg-user {
    background: linear-gradient(135deg, var(--vc-pool-blue), var(--vc-aqua));
    color: #fff; align-self: flex-end; border-bottom-right-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,61,92,.08);
}
.vc-pool-message.vc-pool-msg-bot {
    background: #fff; color: #334E5A; align-self: flex-start;
    border-bottom-left-radius: 4px; border: 1px solid #E8F1F5;
    box-shadow: 0 2px 8px rgba(0,61,92,.08);
}
.vc-pool-typing {
    display: none; padding: 14px 18px; background: #fff; border-radius: 18px;
    border-bottom-left-radius: 4px; align-self: flex-start; max-width: 80px;
    box-shadow: 0 2px 8px rgba(0,61,92,.08); border: 1px solid #E8F1F5;
}
.vc-pool-typing.vc-pool-show { display: block; animation: vc-pool-msgSlide .3s ease-out; }
.vc-pool-typing-dots { display: flex; gap: 6px; align-items: center; justify-content: center; }
.vc-pool-typing-dots span {
    width: 8px; height: 8px; background: var(--vc-pool-blue);
    border-radius: 50%; animation: vc-pool-typing 1.4s infinite;
}
.vc-pool-typing-dots span:nth-child(2) { animation-delay: .2s; }
.vc-pool-typing-dots span:nth-child(3) { animation-delay: .4s; }
.vc-pool-input-area {
    padding: 20px 24px; background: #fff; border-top: 1px solid #E8F1F5;
    display: flex; gap: 12px; align-items: flex-end;
}
#vc-pool-messageInput {
    flex: 1; border: 2px solid #CBD5DC; border-radius: 14px; padding: 12px 16px;
    font-family: 'Outfit', sans-serif; font-size: 14px; resize: none; max-height: 120px;
    transition: all .3s ease; background: #F8FAFB; color: #334E5A;
}
#vc-pool-messageInput:focus { outline: none; border-color: var(--vc-pool-blue); background: #fff; box-shadow: 0 0 0 3px rgba(0,119,190,.1); }
#vc-pool-sendButton {
    background: linear-gradient(135deg, var(--vc-pool-blue), var(--vc-aqua));
    color: #fff; border: none; border-radius: 12px;
    width: 48px; height: 48px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all .3s ease; flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,61,92,.08);
}
#vc-pool-sendButton:hover:not(:disabled) { transform: scale(1.05); }
#vc-pool-sendButton:disabled { opacity: .5; cursor: not-allowed; }
.vc-pool-welcome {
    text-align: center; padding: 40px 20px; color: #334E5A;
}
.vc-pool-welcome-icon {
    width: 80px; height: 80px; margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--vc-pool-blue), var(--vc-aqua));
    border-radius: 20px; display: flex; align-items: center; justify-content: center;
    padding: 18px; box-shadow: 0 4px 20px rgba(0,61,92,.12);
}
.vc-pool-welcome h4 { font-size: 22px; font-weight: 700; margin-bottom: 12px; color: var(--vc-pool-deep); }
.vc-pool-welcome p  { font-size: 14px; line-height: 1.6; color: #8B9EA8; }
@media (max-width:480px) {
    #vc-pool-chatContainer { width: calc(100vw - 20px); height: calc(100vh - 20px); bottom: 10px; right: 10px; border-radius: 20px; }
    #vc-pool-chatBubble    { bottom: 20px; right: 20px; }
    .vc-pool-bubble-text   { font-size: 14px; }
}

/* ─── CONSTRUCCIÓN ───────────────────────────────────────────────── */
/* Origen: _raw/Constructora/construccion */
.vc-constr-wrap {
    font-family: 'DM Sans', sans-serif;
    background: #0b0d11;
    color: #9ca3af;
    line-height: 1.65;
}
.vc-constr-wrap h1,.vc-constr-wrap h2,.vc-constr-wrap h3,.vc-constr-wrap h4 { font-family: 'Sora', sans-serif; color: #fff; }
.vc-constr-nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(11,13,17,.85); backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.vc-constr-nav-inner {
    max-width: min(1240px,92vw); margin: auto;
    padding: 14px clamp(16px,3vw,28px);
    display: flex; align-items: center; justify-content: space-between;
}
.vc-constr-nav-brand { font-family: 'Sora',sans-serif; font-size: 1.1rem; font-weight: 700; letter-spacing: -.01em; color: #fff; text-decoration: none; }
.vc-constr-nav-brand span { color: #14a85e; font-weight: 400; margin-left: 4px; font-size: .85rem; }
.vc-constr-nav-links { display: flex; gap: 28px; font-size: .88rem; }
.vc-constr-nav-links a { color: #6b7280; transition: color .25s; text-decoration: none; }
.vc-constr-nav-links a:hover { color: #fff; }
.vc-constr-nav-cta {
    padding: 10px 22px; border-radius: 10px; background: #1F7CFF; color: #fff;
    font-weight: 600; font-size: .88rem; transition: all .3s; border: none; cursor: pointer;
    text-decoration: none;
}
.vc-constr-nav-cta:hover { background: #4a96ff; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(31,124,255,.3); }
.vc-constr-hero {
    min-height: 100vh; display: flex; align-items: center;
    position: relative; padding: 120px 0 80px; overflow: hidden;
}
.vc-constr-hero::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 30%,rgba(13,107,58,.12),transparent 60%),
        radial-gradient(ellipse 60% 50% at 20% 80%,rgba(31,124,255,.06),transparent 50%);
    pointer-events: none;
}
.vc-constr-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.vc-constr-hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 16px; border-radius: 999px;
    background: rgba(20,168,94,.08); border: 1px solid rgba(20,168,94,.2);
    font-size: .8rem; color: #14a85e; margin-bottom: 24px;
}
.vc-constr-hero-badge .vc-dot {
    width: 8px; height: 8px; border-radius: 50%; background: #14a85e;
    animation: vc-pulse 2s infinite;
}
.vc-constr-hero-sub { font-size: clamp(1rem,1.4vw,1.2rem); color: #9ca3af; max-width: 520px; margin-bottom: 36px; line-height: 1.7; }
.vc-constr-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.vc-constr-btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 30px; border-radius: 12px; background: #1F7CFF;
    color: #fff; font-weight: 700; font-size: 1rem;
    transition: all .3s; border: none; cursor: pointer; font-family: 'DM Sans',sans-serif;
    text-decoration: none;
}
.vc-constr-btn-primary:hover { background: #4a96ff; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(31,124,255,.35); }
.vc-constr-btn-secondary {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 30px; border-radius: 12px;
    background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.07);
    color: #fff; font-weight: 600; font-size: 1rem;
    transition: all .3s; cursor: pointer; font-family: 'DM Sans',sans-serif;
    text-decoration: none;
}
.vc-constr-btn-secondary:hover { background: rgba(255,255,255,.08); transform: translateY(-2px); }
.vc-constr-hero-stats { display: flex; gap: 40px; }
.vc-constr-stat-num {
    font-size: 1.8rem; font-weight: 800;
    background: linear-gradient(135deg,#fff,#9ca3af);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    font-family: 'Sora',sans-serif;
}
.vc-constr-stat-label { font-size: .78rem; color: #6b7280; margin-top: 2px; }
.vc-constr-hero-visual { position: relative; }
.vc-constr-hero-img-wrap {
    position: relative; border-radius: 20px; overflow: hidden;
    aspect-ratio: 4/3; background: linear-gradient(145deg,#131820,#0c1016);
    border: 1px solid rgba(255,255,255,.07);
}
.vc-constr-hero-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg,rgba(13,107,58,.2),transparent 50%), linear-gradient(to bottom,transparent 60%,rgba(11,13,17,.8));
    z-index: 2;
}
.vc-constr-float-card {
    position: absolute; z-index: 3; background: rgba(11,13,17,.85);
    backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.07);
    border-radius: 12px; padding: 14px 18px;
}
.vc-constr-float-top   { top: 20px; right: 20px; display: flex; align-items: center; gap: 10px; }
.vc-constr-float-top .vc-icon-wrap {
    width: 36px; height: 36px; border-radius: 8px;
    background: rgba(20,168,94,.15); border: 1px solid rgba(20,168,94,.3);
    display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.vc-constr-float-top .vc-label { font-size: .75rem; color: #6b7280; }
.vc-constr-float-top .vc-value { font-size: .95rem; font-weight: 700; color: #fff; }
.vc-constr-float-bottom { bottom: 24px; left: 20px; right: 20px; }
.vc-constr-float-bottom .vc-bar-label { font-size: .75rem; color: #6b7280; margin-bottom: 8px; display: flex; justify-content: space-between; }
.vc-constr-progress-bar { height: 6px; border-radius: 99px; background: rgba(255,255,255,.08); overflow: hidden; }
.vc-constr-progress-fill { height: 100%; border-radius: 99px; background: linear-gradient(90deg,#14a85e,#1F7CFF); width: 0; animation: vc-fillBar 2s ease forwards 1s; }
/* Problem */
.vc-constr-problem { padding: 100px 0; position: relative; }
.vc-constr-problem::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg,transparent,rgba(255,255,255,.07),transparent); }
.vc-constr-problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.vc-constr-problem-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.vc-contrast-card { padding: 28px; border-radius: 14px; border: 1px solid rgba(255,255,255,.07); text-align: center; position: relative; overflow: hidden; }
.vc-contrast-card.vc-chaos { background: linear-gradient(145deg,rgba(220,38,38,.06),rgba(220,38,38,.02)); border-color: rgba(220,38,38,.15); }
.vc-contrast-card.vc-chaos .vc-contrast-icon { font-size: 2.8rem; filter: grayscale(.3); margin-bottom: 12px; }
.vc-contrast-card.vc-chaos .vc-contrast-label { color: #f87171; font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.vc-contrast-card.vc-order { background: linear-gradient(145deg,rgba(20,168,94,.15),rgba(20,168,94,.02)); border-color: rgba(20,168,94,.2); }
.vc-contrast-card.vc-order .vc-contrast-icon { font-size: 2.8rem; margin-bottom: 12px; }
.vc-contrast-card.vc-order .vc-contrast-label { color: #14a85e; font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
/* Process */
.vc-constr-process { padding: 100px 0; background: #0f1318; position: relative; }
.vc-constr-process::before,.vc-constr-process::after { content: ''; position: absolute; left: 0; right: 0; height: 1px; background: linear-gradient(90deg,transparent,rgba(255,255,255,.07),transparent); }
.vc-constr-process::before { top: 0; }
.vc-constr-process::after  { bottom: 0; }
.vc-constr-section-header  { text-align: center; margin-bottom: 60px; }
.vc-constr-process-timeline { display: grid; grid-template-columns: repeat(5,1fr); gap: 0; position: relative; }
.vc-constr-process-timeline::before { content: ''; position: absolute; top: 44px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg,#14a85e,#1F7CFF); opacity: .25; }
.vc-constr-step { text-align: center; padding: 0 12px; }
.vc-constr-step-num {
    width: 48px; height: 48px; border-radius: 14px; background: #0b0d11;
    border: 2px solid rgba(255,255,255,.07); display: inline-flex;
    align-items: center; justify-content: center; font-size: 1rem; font-weight: 700;
    margin-bottom: 18px; position: relative; z-index: 2; transition: all .4s;
    font-family: 'Sora',sans-serif; color: #fff;
}
.vc-constr-step:hover .vc-constr-step-num { border-color: #14a85e; background: rgba(20,168,94,.15); transform: translateY(-4px); }
.vc-constr-step h4 { font-size: .95rem; margin-bottom: 6px; }
.vc-constr-step:hover h4 { color: #14a85e; }
.vc-constr-process-quote { text-align: center; margin-top: 50px; font-size: 1.1rem; font-style: italic; color: #9ca3af; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.07); }
/* Specialties */
.vc-constr-specialties { padding: 100px 0; }
.vc-constr-spec-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 10px; }
.vc-constr-spec-card {
    padding: 28px; border-radius: 14px; background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07); transition: all .4s;
    position: relative; overflow: hidden; cursor: default;
}
.vc-constr-spec-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg,#14a85e,#1F7CFF); transform: scaleX(0); transform-origin: left; transition: transform .4s; }
.vc-constr-spec-card:hover::before { transform: scaleX(1); }
.vc-constr-spec-card:hover { border-color: rgba(255,255,255,.14); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.3); }
.vc-constr-spec-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(20,168,94,.15); border: 1px solid rgba(20,168,94,.2); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 16px; }
/* Benefits */
.vc-constr-benefits { padding: 100px 0; background: #0f1318; position: relative; }
.vc-constr-benefits::before,.vc-constr-benefits::after { content: ''; position: absolute; left: 0; right: 0; height: 1px; background: linear-gradient(90deg,transparent,rgba(255,255,255,.07),transparent); }
.vc-constr-benefits::before { top: 0; }
.vc-constr-benefits::after  { bottom: 0; }
.vc-constr-benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.vc-constr-benefit-item { display: flex; gap: 16px; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.vc-constr-benefit-item:last-child { border-bottom: none; }
.vc-constr-benefit-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(31,124,255,.12); border: 1px solid rgba(31,124,255,.2); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.vc-constr-benefits-visual { position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 4/3; background: linear-gradient(145deg,#131820,#0c1016); border: 1px solid rgba(255,255,255,.07); display: flex; align-items: center; justify-content: center; }
.vc-constr-benefits-visual .vc-inner-badge { position: absolute; bottom: 24px; left: 24px; right: 24px; background: rgba(11,13,17,.9); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.07); border-radius: 12px; padding: 18px; text-align: center; }
.vc-constr-benefits-visual .vc-inner-badge .vc-big { font-size: 1.6rem; font-weight: 800; color: #fff; font-family: 'Sora',sans-serif; }
.vc-constr-benefits-visual .vc-inner-badge .vc-small { font-size: .78rem; color: #6b7280; margin-top: 4px; }
/* Proof */
.vc-constr-proof { padding: 80px 0; text-align: center; }
.vc-constr-proof-logos { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; opacity: .4; }
.vc-constr-proof-logo { padding: 16px 28px; border-radius: 12px; border: 1px solid rgba(255,255,255,.07); background: rgba(255,255,255,.04); font-size: .85rem; color: #6b7280; font-weight: 600; letter-spacing: .04em; }
.vc-constr-proof-metrics { margin-top: 48px; display: flex; justify-content: center; gap: 60px; flex-wrap: wrap; }
.vc-constr-metric .vc-num { font-size: 2.4rem; font-weight: 800; color: #fff; font-family: 'Sora',sans-serif; }
.vc-constr-metric .vc-label { font-size: .82rem; color: #6b7280; margin-top: 4px; }
/* Final CTA */
.vc-constr-final-cta { padding: 100px 0; position: relative; overflow: hidden; }
.vc-constr-final-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 50% 50%,rgba(31,124,255,.08),transparent 70%); pointer-events: none; }
.vc-constr-final-inner { text-align: center; position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.vc-constr-final-ctas { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 36px; }
.vc-constr-final-urgency { margin-top: 20px; font-size: .85rem; color: #6b7280; }
/* Footer */
.vc-constr-footer { padding: 40px 0; border-top: 1px solid rgba(255,255,255,.07); }
.vc-constr-footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.vc-constr-footer-brand { font-family: 'Sora',sans-serif; font-weight: 700; color: #6b7280; font-size: .9rem; }
.vc-constr-footer-links { display: flex; gap: 24px; font-size: .82rem; color: #6b7280; }
.vc-constr-footer-links a:hover { color: #fff; }
/* Responsive construccion */
@media (max-width:980px) {
    .vc-constr-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .vc-constr-hero-visual { order: -1; max-width: 500px; margin: 0 auto; }
    .vc-constr-problem-grid { grid-template-columns: 1fr; gap: 40px; }
    .vc-constr-problem-visual { order: -1; max-width: 400px; margin: 0 auto; }
    .vc-constr-process-timeline { grid-template-columns: repeat(3,1fr); gap: 24px; }
    .vc-constr-process-timeline::before { display: none; }
    .vc-constr-spec-grid { grid-template-columns: 1fr 1fr; }
    .vc-constr-benefits-grid { grid-template-columns: 1fr; gap: 40px; }
    .vc-constr-benefits-visual { max-width: 500px; margin: 0 auto; order: -1; }
    .vc-constr-nav-links { display: none; }
    .vc-constr-hero-stats { gap: 24px; }
}
@media (max-width:640px) {
    .vc-constr-hero { padding: 100px 0 60px; }
    .vc-constr-hero-stats { flex-direction: column; gap: 12px; }
    .vc-constr-process-timeline { grid-template-columns: 1fr 1fr; }
    .vc-constr-spec-grid { grid-template-columns: 1fr; }
    .vc-constr-proof-metrics { gap: 30px; }
    .vc-constr-footer-inner { flex-direction: column; text-align: center; }
}
@media (max-width:480px) {
    .vc-constr-process-timeline { grid-template-columns: 1fr; }
    .vc-constr-hero-ctas { flex-direction: column; }
    .vc-constr-hero-ctas .vc-constr-btn-primary,
    .vc-constr-hero-ctas .vc-constr-btn-secondary { width: 100%; justify-content: center; }
}

/* ─── GERENCIA DE PROYECTOS ──────────────────────────────────────── */
/* Origen: _raw/Constructora/gerencia-de-proyecto */
.vc-ger-wrap {
    font-family: 'Inter', system-ui, sans-serif;
    background: #0b0d11;
    color: #a7adba;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
.vc-ger-wrap h1,.vc-ger-wrap h2,.vc-ger-wrap h3,.vc-ger-wrap h4 { font-weight: 700; letter-spacing: -.02em; line-height: 1.15; color: #f4f6fb; }
.vc-ger-section { padding: 100px 0; position: relative; }
.vc-ger-section-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(31,124,255,.12); color: #1F7CFF;
    padding: 8px 16px; border-radius: 999px;
    font-size: 13px; font-weight: 600; letter-spacing: .5px;
    text-transform: uppercase; border: 1px solid rgba(31,124,255,.25); margin-bottom: 24px;
}
.vc-ger-section-tag::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #1F7CFF; box-shadow: 0 0 10px #1F7CFF; }
/* Hero gerencia */
.vc-ger-hero {
    min-height: 100vh; display: flex; align-items: center;
    position: relative; padding: 120px 0 80px; overflow: hidden;
    background-image: url('https://prodeso.com.mx/wp-content/uploads/2026/04/prodeso-gerencia-de-proyecto.jpg');
    background-size: cover; background-position: center;
}
.vc-ger-hero::before {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(90deg,rgba(11,13,17,.95) 0%,rgba(11,13,17,.85) 45%,rgba(11,13,17,.55) 100%),
                radial-gradient(ellipse at 20% 30%,rgba(31,124,255,.22),transparent 55%);
    z-index: 0;
}
.vc-ger-hero::after {
    content: ""; position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center,black 30%,transparent 70%);
    z-index: 1;
}
.vc-ger-hero-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; width: 100%; position: relative; z-index: 2; }
.vc-ger-hero-grid  { display: grid; grid-template-columns: 1.3fr 1fr; gap: 80px; align-items: center; }
.vc-ger-hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
    padding: 8px 14px; border-radius: 999px; font-size: 13px; color: #a7adba;
    margin-bottom: 24px; backdrop-filter: blur(10px);
}
.vc-ger-hero-badge .vc-dot { width: 6px; height: 6px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 10px #22c55e; }
.vc-ger-hero h1 { margin-bottom: 24px; }
.vc-ger-hero h1 .vc-ger-wrap-accent { color: #1F7CFF; }
.vc-ger-hero-subtitle { font-size: 18px; line-height: 1.65; color: #a7adba; margin-bottom: 40px; max-width: 560px; }
.vc-ger-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.vc-ger-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 28px; border-radius: 999px; font-weight: 600; font-size: 15px;
    text-decoration: none; cursor: pointer; transition: all .25s; border: none; font-family: inherit;
}
.vc-ger-btn-primary { background: #1F7CFF; color: white; box-shadow: 0 8px 24px -8px rgba(31,124,255,.35); }
.vc-ger-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px -6px rgba(31,124,255,.35); }
.vc-ger-btn-secondary { background: rgba(255,255,255,.04); color: #f4f6fb; border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(10px); }
.vc-ger-btn-secondary:hover { background: rgba(255,255,255,.08); border-color: #1F7CFF; }
.vc-ger-btn .vc-arrow { transition: transform .25s; }
.vc-ger-btn:hover .vc-arrow { transform: translateX(3px); }
/* Dashboard */
.vc-ger-visual { position: relative; animation: vc-fadeUp .8s ease-out .15s both; }
.vc-ger-dashboard {
    background: linear-gradient(145deg,#161a22,#11141a);
    border: 1px solid rgba(255,255,255,.14); border-radius: 20px;
    padding: 24px; box-shadow: var(--vc-shadow-lg); position: relative; overflow: hidden;
}
.vc-ger-dashboard::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg,transparent,#1F7CFF,transparent); }
.vc-ger-dash-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,.08); }
.vc-ger-dash-title  { font-size: 13px; color: #a7adba; font-weight: 500; }
.vc-ger-dash-status { display: flex; gap: 6px; }
.vc-ger-dash-status span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.14); }
.vc-ger-dash-status span:first-child { background: #22c55e; }
.vc-ger-dash-kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.vc-ger-dash-kpi { background: rgba(255,255,255,.02); border: 1px solid rgba(255,255,255,.08); border-radius: 10px; padding: 14px; }
.vc-ger-dash-kpi .vc-label { font-size: 11px; color: #6b7180; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 6px; }
.vc-ger-dash-kpi .vc-value { font-size: 22px; font-weight: 700; color: #f4f6fb; }
.vc-ger-dash-kpi .vc-trend { font-size: 11px; color: #22c55e; margin-top: 4px; display: flex; align-items: center; gap: 4px; }
.vc-ger-dash-kpi .vc-trend.vc-down { color: #f59e0b; }
.vc-ger-dash-chart { height: 120px; background: rgba(255,255,255,.02); border: 1px solid rgba(255,255,255,.08); border-radius: 10px; padding: 14px; position: relative; overflow: hidden; }
.vc-ger-chart-bars { display: flex; align-items: flex-end; gap: 8px; height: 100%; justify-content: space-between; }
.vc-ger-bar { flex: 1; background: linear-gradient(180deg,#1F7CFF,rgba(31,124,255,.3)); border-radius: 4px 4px 0 0; animation: vc-barGrow 1.2s ease-out both; }
.vc-ger-floating-badge {
    position: absolute; background: #161a22; border: 1px solid rgba(255,255,255,.14);
    border-radius: 12px; padding: 12px 16px; display: flex; align-items: center; gap: 10px;
    box-shadow: var(--vc-shadow-lg); font-size: 13px; backdrop-filter: blur(10px);
    animation: vc-pool-float 4s ease-in-out infinite;
}
.vc-ger-floating-badge.vc-ger-top    { top: -20px; right: -30px; }
.vc-ger-floating-badge.vc-ger-bottom { bottom: -20px; left: -30px; animation-delay: -2s; }
.vc-ger-floating-badge .vc-icon { width: 32px; height: 32px; border-radius: 8px; background: rgba(31,124,255,.12); color: #1F7CFF; display: flex; align-items: center; justify-content: center; }
.vc-ger-floating-badge .vc-label { color: #6b7180; font-size: 11px; text-transform: uppercase; letter-spacing: .5px; }
.vc-ger-floating-badge .vc-value { font-weight: 600; color: #f4f6fb; }
/* Problema */
.vc-ger-problema { background: linear-gradient(180deg,#0b0d11,#090b0f); }
.vc-ger-problema-wrap { max-width: 900px; margin: 0 auto; text-align: center; }
.vc-ger-problema-lead { font-size: 20px; line-height: 1.7; color: #a7adba; max-width: 720px; margin: 0 auto 60px; }
.vc-ger-problema-lead strong { color: #f4f6fb; font-weight: 600; }
.vc-ger-problema-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.vc-ger-pain-card {
    background: linear-gradient(145deg,rgba(255,255,255,.02),transparent);
    border: 1px solid rgba(255,255,255,.08); border-radius: 14px;
    padding: 28px 24px; text-align: left; transition: all .3s;
}
.vc-ger-pain-card:hover { border-color: #1F7CFF; transform: translateY(-4px); }
.vc-ger-pain-card .vc-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(245,158,11,.1); color: #f59e0b; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
/* Fases */
.vc-ger-fases-header { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.vc-ger-fase-timeline { position: relative; max-width: 1000px; margin: 0 auto; }
.vc-ger-fase-timeline::before { content: ""; position: absolute; left: 30px; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg,transparent,#1F7CFF 10%,#1F7CFF 90%,transparent); }
.vc-ger-fase-item { display: grid; grid-template-columns: 80px 1fr; gap: 28px; margin-bottom: 32px; align-items: start; }
.vc-ger-fase-number {
    width: 60px; height: 60px; border-radius: 50%; background: #161a22;
    border: 2px solid #1F7CFF; display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 20px; color: #1F7CFF; position: relative; z-index: 2;
    box-shadow: 0 0 0 6px #0b0d11, 0 0 20px rgba(31,124,255,.35);
}
.vc-ger-fase-content { background: linear-gradient(145deg,rgba(255,255,255,.03),transparent); border: 1px solid rgba(255,255,255,.08); border-radius: 14px; padding: 24px 28px; transition: all .3s; }
.vc-ger-fase-content:hover { border-color: rgba(255,255,255,.14); transform: translateX(4px); }
.vc-ger-fase-label { color: #1F7CFF; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; display: block; }
/* Metodología */
.vc-ger-metodologia { background: linear-gradient(180deg,#090b0f,#0b0d11); }
.vc-ger-meto-header { text-align: center; max-width: 760px; margin: 0 auto 60px; }
.vc-ger-meto-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 60px; }
.vc-ger-meto-card {
    background: linear-gradient(145deg,#161a22,#11141a); border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px; padding: 36px 28px; position: relative; overflow: hidden; transition: all .3s;
}
.vc-ger-meto-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg,transparent,#1F7CFF,transparent); opacity: 0; transition: opacity .3s; }
.vc-ger-meto-card:hover { border-color: #1F7CFF; transform: translateY(-6px); }
.vc-ger-meto-card:hover::before { opacity: 1; }
.vc-ger-meto-icon { width: 56px; height: 56px; border-radius: 14px; background: rgba(31,124,255,.12); display: flex; align-items: center; justify-content: center; color: #1F7CFF; margin-bottom: 24px; }
.vc-ger-meto-features { list-style: none; padding: 0; }
.vc-ger-meto-features li { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; font-size: 14px; color: #a7adba; border-top: 1px solid rgba(255,255,255,.08); }
.vc-ger-meto-features li:first-child { border-top: none; }
.vc-ger-meto-features li::before { content: ""; flex-shrink: 0; margin-top: 8px; width: 5px; height: 5px; border-radius: 50%; background: #1F7CFF; }
/* KPI Dashboard */
.vc-ger-kpi-dashboard { background: linear-gradient(145deg,#161a22,#11141a); border: 1px solid rgba(255,255,255,.14); border-radius: 20px; padding: 32px; position: relative; overflow: hidden; }
.vc-ger-kpi-dashboard::before { content: ""; position: absolute; top: -50%; right: -20%; width: 400px; height: 400px; background: radial-gradient(circle,rgba(31,124,255,.35),transparent 70%); opacity: .3; pointer-events: none; }
.vc-ger-kpi-dash-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; position: relative; }
.vc-ger-kpi-dash-header h4 { font-size: 16px; color: #f4f6fb; }
.vc-ger-kpi-dash-header .vc-ger-live { display: flex; align-items: center; gap: 6px; font-size: 11px; color: #6b7180; text-transform: uppercase; letter-spacing: .5px; }
.vc-ger-kpi-dash-header .vc-ger-live::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 10px #22c55e; animation: vc-pulse 2s infinite; }
.vc-ger-kpi-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; position: relative; }
.vc-ger-kpi-item { background: rgba(255,255,255,.02); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; padding: 18px; }
.vc-ger-kpi-label { font-size: 11px; color: #6b7180; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 8px; }
.vc-ger-kpi-value { font-size: 26px; font-weight: 700; color: #f4f6fb; margin-bottom: 4px; }
.vc-ger-kpi-value span { font-size: 14px; color: #a7adba; font-weight: 500; }
.vc-ger-kpi-bar { height: 4px; background: rgba(255,255,255,.08); border-radius: 2px; overflow: hidden; margin-top: 10px; }
.vc-ger-kpi-bar-fill { height: 100%; background: #1F7CFF; border-radius: 2px; transition: width 1.5s ease-out; }
/* Beneficios */
.vc-ger-beneficios-header { text-align: center; max-width: 760px; margin: 0 auto 60px; }
.vc-ger-beneficios-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.vc-ger-benefit-card { background: linear-gradient(145deg,rgba(255,255,255,.02),transparent); border: 1px solid rgba(255,255,255,.08); border-radius: 14px; padding: 28px 24px; transition: all .3s; }
.vc-ger-benefit-card:hover { border-color: #1F7CFF; background: rgba(31,124,255,.03); }
.vc-ger-benefit-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(31,124,255,.12); color: #1F7CFF; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
/* Experiencia */
.vc-ger-experiencia { background: linear-gradient(180deg,#0b0d11,#090b0f); position: relative; overflow: hidden; }
.vc-ger-exp-header  { text-align: center; max-width: 800px; margin: 0 auto 60px; }
.vc-ger-counters {
    display: grid; grid-template-columns: repeat(4,1fr); gap: 24px;
    margin-bottom: 70px; padding: 40px;
    background: linear-gradient(145deg,#161a22,#11141a);
    border: 1px solid rgba(255,255,255,.14); border-radius: 20px;
}
.vc-ger-counter { text-align: center; }
.vc-ger-counter-num { font-size: clamp(36px,5vw,56px); font-weight: 800; color: #1F7CFF; line-height: 1; margin-bottom: 8px; letter-spacing: -.03em; display: inline-flex; align-items: baseline; }
.vc-ger-counter-num .vc-suffix { font-size: .6em; color: #f4f6fb; }
.vc-ger-counter .vc-counter-label { font-size: 13px; color: #a7adba; text-transform: uppercase; letter-spacing: .5px; font-weight: 500; }
.vc-ger-sectores { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; }
.vc-ger-sector { background: rgba(255,255,255,.02); border: 1px solid rgba(255,255,255,.08); border-radius: 14px; padding: 24px 20px; text-align: center; transition: all .3s; }
.vc-ger-sector:hover { border-color: #1F7CFF; transform: translateY(-4px); background: rgba(31,124,255,.05); }
.vc-ger-sector .vc-icon { width: 48px; height: 48px; margin: 0 auto 12px; background: rgba(31,124,255,.12); color: #1F7CFF; border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.vc-ger-sector h5 { font-size: 14px; font-weight: 600; color: #f4f6fb; margin-bottom: 4px; }
.vc-ger-sector span { font-size: 12px; color: #6b7180; }
/* Por qué */
.vc-ger-porque-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
.vc-ger-porque-list { list-style: none; padding: 0; }
.vc-ger-porque-list li { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.vc-ger-porque-list li:last-child { border-bottom: none; }
.vc-ger-porque-num { flex-shrink: 0; width: 36px; height: 36px; border-radius: 10px; background: rgba(31,124,255,.12); color: #1F7CFF; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; }
.vc-ger-porque-visual { background: linear-gradient(145deg,#161a22,#11141a); border: 1px solid rgba(255,255,255,.14); border-radius: 20px; padding: 36px; position: relative; overflow: hidden; }
.vc-ger-quote-badge { display: inline-flex; padding: 6px 12px; background: rgba(31,124,255,.12); color: #1F7CFF; border-radius: 999px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 20px; }
.vc-ger-quote-text  { font-size: 20px; line-height: 1.55; color: #f4f6fb; font-weight: 500; margin-bottom: 24px; position: relative; }
.vc-ger-quote-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); }
.vc-ger-quote-stats .vc-v { font-size: 24px; font-weight: 700; color: #1F7CFF; }
.vc-ger-quote-stats .vc-l { font-size: 12px; color: #6b7180; text-transform: uppercase; letter-spacing: .5px; }
/* Cierre */
.vc-ger-cierre { background: linear-gradient(135deg,#0a1628,#0b0d11); position: relative; overflow: hidden; }
.vc-ger-cierre::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%,rgba(31,124,255,.35),transparent 50%); pointer-events: none; }
.vc-ger-cierre-inner { max-width: 900px; margin: 0 auto; padding: 100px 24px; text-align: center; position: relative; z-index: 1; }
.vc-ger-cierre-inner h2 span { color: #1F7CFF; }
.vc-ger-cierre-note { margin-top: 32px; font-size: 13px; color: #6b7180; }
.vc-ger-cierre-note .vc-dot-success { color: #22c55e; }
/* Responsive gerencia */
@media (max-width:1024px) {
    .vc-ger-hero-grid,.vc-ger-porque-grid { grid-template-columns: 1fr; gap: 60px; }
    .vc-ger-visual { max-width: 500px; margin: 0 auto; }
    .vc-ger-problema-grid,.vc-ger-meto-grid,.vc-ger-beneficios-grid { grid-template-columns: repeat(2,1fr); }
    .vc-ger-counters { grid-template-columns: repeat(2,1fr); }
    .vc-ger-sectores { grid-template-columns: repeat(3,1fr); }
    .vc-ger-kpi-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width:640px) {
    .vc-ger-section { padding: 70px 0; }
    .vc-ger-hero { padding: 100px 0 60px; }
    .vc-ger-problema-grid,.vc-ger-meto-grid,.vc-ger-beneficios-grid,.vc-ger-counters,.vc-ger-sectores { grid-template-columns: 1fr; }
    .vc-ger-fase-item { grid-template-columns: 50px 1fr; gap: 16px; }
    .vc-ger-fase-timeline::before { left: 24px; }
    .vc-ger-fase-number { width: 48px; height: 48px; font-size: 16px; }
    .vc-ger-kpi-grid { grid-template-columns: 1fr 1fr; }
    .vc-ger-hero-ctas { flex-direction: column; align-items: stretch; }
    .vc-ger-btn { justify-content: center; }
    .vc-ger-floating-badge { display: none; }
}

/* ─── INGENIERO INDEPENDIENTE ────────────────────────────────────── */
/* Origen: _raw/Constructora/ingeniero-independiente */
.vc-ing-wrap {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0b0d11; color: #f5f7fa; line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
.vc-ing-wrap h1,.vc-ing-wrap h2,.vc-ing-wrap h3 { font-weight: 700; line-height: 1.1; letter-spacing: -.02em; }
.vc-ing-hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    padding: 120px 0 80px;
    background: radial-gradient(ellipse at 20% 10%,rgba(31,124,255,.15),transparent 50%),
                radial-gradient(ellipse at 80% 80%,rgba(16,185,129,.08),transparent 50%),
                #0b0d11;
    overflow: hidden;
}
.vc-ing-hero::before {
    content: ''; position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.015) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.015) 1px,transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center,black 30%,transparent 70%);
    pointer-events: none;
}
.vc-ing-hero-content { position: relative; display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; z-index: 2; }
.vc-ing-hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 16px; background: rgba(16,185,129,.12);
    border: 1px solid rgba(16,185,129,.25); border-radius: 100px;
    font-size: 13px; font-weight: 500; color: #10B981; margin-bottom: 28px;
}
.vc-ing-hero-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #10B981; box-shadow: 0 0 10px #10B981; animation: vc-pulse 2s infinite; }
.vc-ing-hero h1 { font-size: clamp(2.2rem,4.5vw,3.6rem); margin-bottom: 24px; }
.vc-ing-hero h1 .vc-ing-highlight { background: linear-gradient(135deg,#1F7CFF,#10B981); -webkit-background-clip: text; background-clip: text; color: transparent; }
.vc-ing-hero-subtitle { font-size: 1.15rem; color: #a8b0bd; margin-bottom: 40px; max-width: 540px; line-height: 1.7; }
.vc-ing-hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.vc-ing-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 28px; border-radius: 12px; font-size: 15px; font-weight: 600;
    text-decoration: none; transition: all .25s ease; cursor: pointer; border: none; font-family: inherit;
}
.vc-ing-btn-primary { background: #1F7CFF; color: white; box-shadow: 0 8px 24px rgba(31,124,255,.3); }
.vc-ing-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(31,124,255,.3); background: #3b8dff; }
.vc-ing-btn-secondary { background: rgba(255,255,255,.03); color: #f5f7fa; border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(10px); }
.vc-ing-btn-secondary:hover { background: rgba(255,255,255,.06); border-color: #10B981; transform: translateY(-2px); }
.vc-ing-btn .vc-arrow { transition: transform .25s; }
.vc-ing-btn:hover .vc-arrow { transform: translateX(4px); }
.vc-ing-hero-trust { display: flex; align-items: center; gap: 24px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.08); flex-wrap: wrap; }
.vc-ing-trust-number { font-size: 24px; font-weight: 700; color: #f5f7fa; letter-spacing: -.02em; }
.vc-ing-trust-label  { font-size: 12px; text-transform: uppercase; letter-spacing: .5px; color: #6b7280; }
.vc-ing-hero-visual { position: relative; aspect-ratio: 4/5; border-radius: 24px; overflow: hidden; background: #171b23; box-shadow: 0 20px 60px rgba(0,0,0,.5); border: 1px solid rgba(255,255,255,.08); }
.vc-ing-hero-visual img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.85) contrast(1.05); }
.vc-ing-hero-visual::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg,transparent 50%,rgba(11,13,17,.9)); pointer-events: none; }
.vc-ing-float-card { position: absolute; bottom: 32px; left: 32px; right: 32px; background: rgba(23,27,35,.85); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,.14); border-radius: 16px; padding: 20px; z-index: 2; }
.vc-ing-float-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: #10B981; font-weight: 600; margin-bottom: 8px; }
.vc-ing-float-title { font-size: 16px; font-weight: 600; line-height: 1.4; }
/* Section base */
.vc-ing-section { padding: 100px 0; position: relative; }
.vc-ing-section-label { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: #1F7CFF; margin-bottom: 16px; }
.vc-ing-section-title    { font-size: clamp(1.8rem,3.2vw,2.6rem); font-weight: 700; line-height: 1.15; letter-spacing: -.02em; margin-bottom: 20px; max-width: 720px; }
.vc-ing-section-subtitle { font-size: 1.1rem; color: #a8b0bd; max-width: 640px; line-height: 1.7; }
/* Problema */
.vc-ing-problem { background: #11141a; }
.vc-ing-problem-content { max-width: 880px; margin: 0 auto; text-align: center; }
.vc-ing-problem-quote { font-size: clamp(1.4rem,2.6vw,2rem); font-weight: 500; line-height: 1.4; letter-spacing: -.01em; margin-bottom: 32px; color: #f5f7fa; }
.vc-ing-problem-quote .vc-em { color: #10B981; font-weight: 600; }
.vc-ing-problem-desc { font-size: 1.05rem; color: #a8b0bd; line-height: 1.7; max-width: 640px; margin: 0 auto; }
/* Concepto */
.vc-ing-concept-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.vc-ing-concept-visual { position: relative; aspect-ratio: 5/4; border-radius: 20px; overflow: hidden; border: 1px solid rgba(255,255,255,.08); }
.vc-ing-concept-visual img { width: 100%; height: 100%; object-fit: cover; }
.vc-ing-concept-tagline { font-size: 1.3rem; font-weight: 600; color: #10B981; margin-top: 24px; padding-left: 20px; border-left: 3px solid #10B981; }
/* Steps */
.vc-ing-steps { background: #11141a; }
.vc-ing-steps-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 24px; margin-top: 64px; }
.vc-ing-step-card { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; padding: 32px 24px; transition: all .3s ease; }
.vc-ing-step-card:hover { border-color: #1F7CFF; background: rgba(255,255,255,.06); transform: translateY(-4px); }
.vc-ing-step-number { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: rgba(31,124,255,.12); color: #1F7CFF; border-radius: 10px; font-weight: 700; font-size: 16px; margin-bottom: 20px; }
.vc-ing-step-title { font-size: 17px; font-weight: 600; margin-bottom: 8px; line-height: 1.3; color: #f5f7fa; }
.vc-ing-step-desc  { font-size: 14px; color: #a8b0bd; line-height: 1.6; }
.vc-ing-steps-tagline { text-align: center; margin-top: 48px; font-size: 1.15rem; color: #f5f7fa; font-weight: 500; }
.vc-ing-steps-tagline .vc-accent { color: #10B981; font-weight: 600; }
/* Metodología */
.vc-ing-method-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; }
.vc-ing-method-card { background: linear-gradient(180deg,rgba(255,255,255,.03),transparent); border: 1px solid rgba(255,255,255,.08); border-radius: 20px; padding: 36px 28px; transition: all .3s ease; }
.vc-ing-method-card:hover { border-color: #1F7CFF; transform: translateY(-4px); }
.vc-ing-method-icon { width: 52px; height: 52px; background: rgba(31,124,255,.12); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; color: #1F7CFF; }
.vc-ing-method-icon svg { width: 26px; height: 26px; }
/* Beneficios */
.vc-ing-benefits { background: #11141a; }
.vc-ing-benefits-highlight { font-size: clamp(1.5rem,2.8vw,2.2rem); font-weight: 600; letter-spacing: -.02em; margin-bottom: 56px; max-width: 720px; line-height: 1.3; color: #f5f7fa; }
.vc-ing-benefits-highlight .vc-accent { color: #10B981; }
.vc-ing-benefits-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 20px; }
.vc-ing-benefit-item { display: flex; align-items: flex-start; gap: 16px; padding: 24px; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08); border-radius: 14px; transition: all .25s ease; }
.vc-ing-benefit-item:hover { border-color: #10B981; background: rgba(255,255,255,.06); }
.vc-ing-benefit-check { flex-shrink: 0; width: 28px; height: 28px; background: rgba(16,185,129,.12); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #10B981; }
.vc-ing-benefit-text { font-size: 15px; font-weight: 500; line-height: 1.5; color: #f5f7fa; }
/* Para quién */
.vc-ing-audience-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 20px; margin-top: 56px; }
.vc-ing-audience-card { padding: 32px 24px; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; text-align: center; transition: all .3s ease; }
.vc-ing-audience-card:hover { border-color: #1F7CFF; transform: translateY(-4px); }
.vc-ing-audience-icon { width: 56px; height: 56px; margin: 0 auto 20px; background: rgba(31,124,255,.12); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: #1F7CFF; }
.vc-ing-audience-icon svg { width: 28px; height: 28px; }
.vc-ing-audience-card h3 { font-size: 15px; font-weight: 600; line-height: 1.4; color: #f5f7fa; }
/* Diferencial */
.vc-ing-differential { background: linear-gradient(180deg,#0b0d11,#11141a); position: relative; overflow: hidden; }
.vc-ing-differential::before { content: ''; position: absolute; top: 50%; left: 50%; width: 600px; height: 600px; transform: translate(-50%,-50%); background: radial-gradient(circle,rgba(16,185,129,.12),transparent 70%); pointer-events: none; }
.vc-ing-diff-content { position: relative; z-index: 2; text-align: center; max-width: 880px; margin: 0 auto; }
.vc-ing-diff-title { font-size: clamp(1.8rem,3.5vw,2.8rem); font-weight: 700; letter-spacing: -.02em; line-height: 1.2; margin-bottom: 48px; color: #f5f7fa; }
.vc-ing-diff-features { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.vc-ing-diff-feature { padding: 28px 20px; background: rgba(255,255,255,.02); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; backdrop-filter: blur(10px); }
.vc-ing-diff-feature-label { font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; color: #10B981; font-weight: 600; margin-bottom: 10px; }
.vc-ing-diff-feature-title { font-size: 15px; font-weight: 600; color: #f5f7fa; line-height: 1.4; }
/* Final CTA */
.vc-ing-final-cta { padding: 120px 0; position: relative; overflow: hidden; }
.vc-ing-final-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center,rgba(31,124,255,.1),transparent 60%); }
.vc-ing-final-cta-content { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.vc-ing-final-cta-visual { position: relative; aspect-ratio: 4/5; border-radius: 24px; overflow: hidden; border: 1px solid rgba(255,255,255,.08); }
.vc-ing-final-cta-visual img { width: 100%; height: 100%; object-fit: cover; }
.vc-ing-final-cta-visual::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg,rgba(31,124,255,.1),transparent 60%); }
.vc-ing-final-cta h2 .vc-accent { color: #10B981; }
.vc-ing-final-ctas { display: flex; flex-direction: column; gap: 12px; max-width: 380px; }
.vc-ing-final-ctas .vc-ing-btn { justify-content: center; }
.vc-ing-footer-note { padding: 40px 0; text-align: center; border-top: 1px solid rgba(255,255,255,.08); font-size: 13px; color: #6b7280; }
/* Responsive ingeniero */
@media (max-width:900px) {
    .vc-ing-hero-content,.vc-ing-concept-grid,.vc-ing-final-cta-content { grid-template-columns: 1fr; gap: 48px; }
    .vc-ing-hero-visual,.vc-ing-final-cta-visual { aspect-ratio: 3/4; max-width: 480px; margin: 0 auto; }
    .vc-ing-method-grid,.vc-ing-diff-features { grid-template-columns: 1fr; }
    .vc-ing-section { padding: 72px 0; }
    .vc-ing-hero { padding: 100px 0 60px; min-height: auto; }
}
@media (max-width:600px) {
    .vc-ing-hero-ctas { flex-direction: column; width: 100%; }
    .vc-ing-btn { width: 100%; justify-content: center; }
    .vc-ing-hero-trust { gap: 16px; }
}

/* ─── TERRA PRIME ─────────────────────────────────────────────────── */
/* Origen: _raw/Terra Prime/terra_prime */
.vc-tp-wrap { font-family: Inter, system-ui, Arial; background: #0a0c0f; color: #fff; }
.vc-tp-main { max-width: min(1200px,92vw); margin: auto; padding: 0 clamp(16px,3vw,28px); }
.vc-tp-hero { display: grid; align-items: center; grid-template-columns: 1fr; gap: 24px; min-height: 60vh; padding: 60px 0; }
.vc-tp-hero h1 { margin: .3em 0; }
.vc-tp-bullets { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 18px; margin: 50px 0; }
.vc-tp-bullet { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; padding: 20px; transition: transform .3s ease, box-shadow .3s ease; }
.vc-tp-bullet span { font-size: 1.6rem; display: block; margin-bottom: 10px; }
.vc-tp-bullet:hover { transform: translateY(-6px) scale(1.03); box-shadow: 0 10px 25px rgba(0,0,0,.4); }
.vc-tp-cards { display: grid; grid-template-columns: repeat(auto-fit,minmax(250px,1fr)); gap: 18px; margin: 50px 0; }
.vc-tp-card { background: linear-gradient(180deg,rgba(255,255,255,.05),rgba(255,255,255,.02)); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; padding: 20px; transition: transform .3s ease, box-shadow .3s ease; color: #fff; }
.vc-tp-card:hover { transform: translateY(-6px) scale(1.03); box-shadow: 0 10px 25px rgba(0,0,0,.4); }
.vc-tp-backing { display: flex; align-items: center; gap: 24px; margin: 70px 0; flex-wrap: wrap; color: #fff; }
.vc-tp-backing div { flex: 1; }
.vc-tp-cta-final { height: auto; border-radius: 16px; padding: 80px 20px; text-align: center; margin: 80px 0; color: #fff; }
.vc-tp-cta-final h2 { font-size: clamp(28px,4vw,40px); margin-bottom: 16px; }
.vc-tp-btn-primary { background: linear-gradient(180deg,#1f7cff,#1667d9); color: #fff; display: inline-flex; align-items: center; gap: 8px; padding: 14px 20px; border-radius: 14px; font-weight: 700; text-decoration: none; transition: background .3s ease, transform .3s ease; margin-top: 14px; font-size: 1.1rem; }
.vc-tp-btn-primary:hover { background: linear-gradient(180deg,#3c8dff,#1f6ae0); transform: translateY(-2px); }
.vc-tp-reveal { opacity: 0; transform: translateY(12px) scale(.98); transition: opacity .5s ease, transform .5s ease; }
.vc-tp-reveal.vc-tp-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .vc-tp-reveal { opacity: 1 !important; transform: none !important; transition: none !important; } }

/* ─── KEYFRAMES GLOBALES ─────────────────────────────────────────── */
@keyframes vc-fadeUp    { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:translateY(0); } }
@keyframes vc-fadeRight { from { opacity:0; transform:translateX(20px); } to { opacity:1; transform:translateX(0); } }
@keyframes vc-lineIn    { to { transform:scaleX(1); } }
@keyframes vc-pulse     { 0%,100%{opacity:1} 50%{opacity:.3} }
@keyframes vc-blink     { 0%,100%{opacity:1} 50%{opacity:0} }
@keyframes vc-fillBar   { to { width:92%; } }
@keyframes vc-barGrow   { from { height:0; } }
@keyframes vc-pool-float    { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes vc-pool-pulse    { 0%{transform:translate(-50%,-50%) scale(1);opacity:.6} 100%{transform:translate(-50%,-50%) scale(1.3);opacity:0} }
@keyframes vc-pool-slideIn  { from{opacity:0;transform:scale(.9) translateY(20px)} to{opacity:1;transform:scale(1) translateY(0)} }
@keyframes vc-pool-msgSlide { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:translateY(0)} }
@keyframes vc-pool-typing   { 0%,60%,100%{transform:translateY(0);opacity:.4} 30%{transform:translateY(-10px);opacity:1} }

/* ─── RESPONSIVE GENERAL ─────────────────────────────────────────── */
@media (max-width: 1024px) {
    .vc-section-head { align-items: center; }
}
@media (max-width: 768px) {
    .vc-home-hero { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .vc-home-hero-cta { flex-direction: column; }
}
