/* =====================================================
   CLAI HUB – Landing Page Styles
   Paleta: Navy #1B3C73 | Blue #2196D4 | Teal #1DA8B8 | Gold #C9A84C
   ===================================================== */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --navy:    #1B3C73;
    --navy-dark: #122a55;
    --blue:    #2196D4;
    --teal:    #1DA8B8;
    --teal-light: #27c8da;
    --gold:    #C9A84C;
    --gold-light: #e4c06a;
    --white:   #ffffff;
    --bg:      #F4F7FB;
    --bg-alt:  #EEF2F9;
    --text:    #1a2e4a;
    --text-muted: #5a6e8a;
    --border:  #d4dce9;
    --shadow:  0 4px 24px rgba(27,60,115,0.10);
    --shadow-lg: 0 12px 48px rgba(27,60,115,0.16);
    --radius:  16px;
    --radius-sm: 10px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', 'Plus Jakarta Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 { font-family: 'Plus Jakarta Sans', 'Inter', sans-serif; font-weight: 800; line-height: 1.2; }
h1 { font-size: clamp(2rem, 4.5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 700; }
p { font-size: 1.05rem; color: var(--text-muted); }

.gradient-text {
    background: linear-gradient(135deg, var(--teal), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.gold-text {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- LOGO ---- */
.logo-img-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    cursor: pointer;
}
.logo-isotipo {
    width: 44px;
    height: 44px;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 10px rgba(29,168,184,0.35));
    transition: transform 0.3s ease;
}
.logo-img-wrap:hover .logo-isotipo { transform: rotate(-8deg) scale(1.05); }
.logo-text {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    line-height: 1;
}
.logo-clai { color: var(--white); }
.navbar.scrolled .logo-clai { color: var(--navy); }
.logo-hub { color: var(--teal); }
.navbar.scrolled .logo-hub { color: var(--teal); }
/* Footer logo */
.footer-logo-wrap { margin-bottom: 16px; }
.footer-logo-wrap .logo-clai { color: rgba(255,255,255,0.92); }
.footer-logo-wrap .logo-hub { color: var(--teal-light); }
.footer-isotipo {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 2px 10px rgba(29,168,184,0.4)) brightness(1.1);
}

/* ---- UTILITIES ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-header p { margin-top: 16px; font-size: 1.1rem; }
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,0.75); }

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(29,168,184,0.12), rgba(33,150,212,0.12));
    color: var(--teal);
    border: 1px solid rgba(29,168,184,0.3);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.gold-badge {
    background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(228,192,106,0.15));
    color: var(--gold);
    border-color: rgba(201,168,76,0.35);
}

/* ---- BUTTONS ---- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--teal), var(--blue));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(29,168,184,0.4);
    position: relative;
    overflow: hidden;
}
.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.12);
    opacity: 0;
    transition: var(--transition);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(29,168,184,0.5); }
.btn-primary:hover::after { opacity: 1; }
.btn-primary.full-width { width: 100%; justify-content: center; border-radius: var(--radius-sm); }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--border);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
}
.btn-secondary:hover { border-color: var(--teal); color: var(--teal); background: rgba(29,168,184,0.06); transform: translateY(-2px); }

.btn-demo {
    display: inline-flex;
    align-items: center;
    padding: 11px 28px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy-dark);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(201,168,76,0.35);
}
.btn-demo:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.5); }

/* ====================================================
   NAVBAR
   ==================================================== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}
.navbar.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 24px rgba(27,60,115,0.10);
    padding: 10px 0;
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-logo { flex-shrink: 0; }
.logo-img { height: 48px; width: auto; object-fit: contain; }
.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
    flex: 1;
    justify-content: center;
}
.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    transition: var(--transition);
}
.navbar.scrolled .nav-links a { color: var(--text); }
.nav-links a:hover, .nav-links a.active { background: rgba(29,168,184,0.1); color: var(--teal); }
.navbar.scrolled .nav-links a.active { color: var(--teal); }
.nav-actions { flex-shrink: 0; }
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--navy); }

/* ====================================================
   HERO
   ==================================================== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #1a5580 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
}
.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}
.hero-orbs { position: absolute; inset: 0; pointer-events: none; }
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    animation: orbFloat 8s ease-in-out infinite;
}
.orb-1 { width: 500px; height: 500px; background: var(--teal); top: -100px; right: -100px; animation-delay: 0s; }
.orb-2 { width: 350px; height: 350px; background: var(--blue); bottom: -50px; left: 10%; animation-delay: 3s; }
.orb-3 { width: 250px; height: 250px; background: var(--gold); top: 40%; left: 40%; animation-delay: 6s; opacity: 0.2; }
@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -20px) scale(1.05); }
    66% { transform: translate(-15px, 15px) scale(0.95); }
}

/* Isotipo decorativo de fondo en el hero */
.hero-isotipo-bg {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 520px;
    height: 520px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.055;
    animation: isotipoFloat 12s ease-in-out infinite;
}
.hero-isotipo-bg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(4) saturate(0);
}
@keyframes isotipoFloat {
    0%, 100% { transform: translateY(-50%) rotate(0deg) scale(1); }
    50% { transform: translateY(-52%) rotate(5deg) scale(1.04); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.4);
    color: var(--gold-light);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 24px;
}
.hero-badge i { color: var(--gold); }

.hero-title { color: var(--white); margin-bottom: 20px; }

.hero-subtitle {
    color: rgba(255,255,255,0.72);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 36px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-actions .btn-secondary { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.25); }
.hero-actions .btn-secondary:hover { color: var(--teal-light); border-color: var(--teal); background: rgba(29,168,184,0.1); }

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 24px 28px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
}
.stat-item { text-align: center; }
.stat-number { font-size: 2rem; font-weight: 900; color: var(--white); font-family: 'Plus Jakarta Sans', sans-serif; }
.stat-zero { font-size: 1.6rem; font-weight: 900; color: #C9A84C; font-family: 'Plus Jakarta Sans', 'Inter', sans-serif; display: inline-block; }
.stat-suffix { font-size: 1.4rem; font-weight: 900; color: var(--gold); }
.stat-label { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.55); font-weight: 500; margin-top: 2px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }

/* ---- DASHBOARD MOCKUP ---- */
.hero-visual { position: relative; }
.dashboard-mockup {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 0 24px 64px rgba(0,0,0,0.3);
    transform: perspective(1200px) rotateY(-6deg) rotateX(2deg);
    transition: transform 0.6s ease;
}
.dashboard-mockup:hover { transform: perspective(1200px) rotateY(0deg) rotateX(0deg); }
.mockup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(0,0,0,0.2);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mockup-dots { display: flex; gap: 6px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #ff5f57; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #28ca41; }
.mockup-title { font-size: 0.78rem; color: rgba(255,255,255,0.5); font-weight: 500; margin: 0 auto; }
.mockup-body { display: flex; min-height: 340px; }

.mockup-sidebar {
    width: 50px;
    background: rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 0;
    border-right: 1px solid rgba(255,255,255,0.06);
}
.sidebar-item {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}
.sidebar-item.active, .sidebar-item:hover { background: rgba(29,168,184,0.2); color: var(--teal-light); }

.mockup-content { flex: 1; padding: 16px; display: flex; flex-direction: column; gap: 12px; }

.mockup-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.mockup-card {
    padding: 12px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
}
.mockup-card.blue { background: rgba(33,150,212,0.2); border: 1px solid rgba(33,150,212,0.3); }
.mockup-card.gold { background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.25); }
.mockup-card i { font-size: 1.2rem; color: var(--teal-light); }
.mockup-card.gold i { color: var(--gold); }
.card-num { display: block; font-size: 1.1rem; font-weight: 800; color: var(--white); }
.card-lbl { display: block; color: rgba(255,255,255,0.5); font-size: 0.7rem; }

.mockup-chart { background: rgba(0,0,0,0.15); border-radius: 10px; padding: 12px; }
.chart-label { font-size: 0.72rem; color: rgba(255,255,255,0.45); margin-bottom: 10px; }
.chart-bars { display: flex; align-items: flex-end; gap: 6px; height: 60px; }
.bar {
    flex: 1;
    background: rgba(29,168,184,0.25);
    border-radius: 4px 4px 0 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
}
.bar span { font-size: 0.6rem; color: rgba(255,255,255,0.35); padding-bottom: 4px; }
.bar.active { background: linear-gradient(to top, var(--teal), var(--blue)); }
.bar:hover { background: linear-gradient(to top, var(--teal), var(--blue)); opacity: 0.8; }

.mockup-activity { display: flex; flex-direction: column; gap: 6px; }
.activity-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.55);
    padding: 6px 8px;
    background: rgba(255,255,255,0.04);
    border-radius: 6px;
}
.activity-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.activity-dot.teal { background: var(--teal); }
.activity-dot.gold { background: var(--gold); }
.activity-dot.blue { background: var(--blue); }

/* ---- FLOATING CARDS ---- */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(27,60,115,0.2);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text);
    animation: floatBounce 4s ease-in-out infinite;
    white-space: nowrap;
}
.floating-card i { font-size: 1.2rem; color: var(--teal); }
.floating-card strong { display: block; color: var(--navy); font-size: 0.82rem; }
.floating-card span { color: var(--text-muted); font-size: 0.72rem; font-weight: 400; }
.fc-1 { bottom: -20px; left: -30px; animation-delay: 0s; }
.fc-2 { top: -20px; right: -20px; animation-delay: 2s; }
.fc-2 i { color: var(--gold); }
@keyframes floatBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ---- ANIMATIONS ---- */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}
.animate-fade-left {
    opacity: 0;
    transform: translateX(30px);
    animation: fadeLeft 0.8s ease forwards;
}
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeLeft { to { opacity: 1; transform: translateX(0); } }

[data-aos] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-aos].visible { opacity: 1; transform: translateY(0); }

/* ====================================================
   SOCIAL PROOF
   ==================================================== */
.social-proof {
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 28px 0;
    overflow: hidden;
}
.proof-label {
    text-align: center;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.logos-track { overflow: hidden; position: relative; }
.logos-track::before, .logos-track::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 1;
}
.logos-track::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.logos-track::after { right: 0; background: linear-gradient(to left, var(--bg), transparent); }
.logos-slide {
    display: flex;
    gap: 48px;
    animation: scrollLogos 48s linear infinite;
    width: max-content;
}
.org-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
    opacity: 0.7;
    transition: var(--transition);
}
.org-logo i { color: var(--teal); font-size: 1rem; }
.org-logo:hover { opacity: 1; color: var(--navy); }
@keyframes scrollLogos {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ====================================================
   FEATURES OVERVIEW
   ==================================================== */

/* ====================================================
   GUARANTEES STRIP
   ==================================================== */
.guarantees-strip {
    background: #ffffff;
    padding: 48px 0;
    border-bottom: 1px solid #d4dce9;
}
.guarantees-grid {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    list-style: none;
}
.guarantee-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    padding: 28px 20px;
    border-right: 1px solid #d4dce9;
    cursor: default;
}
.guarantee-item:last-child { border-right: none; }
.guarantee-item:hover { background: rgba(29,168,184,0.04); }
.guarantee-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(29,168,184,0.1);
    border: 1.5px solid rgba(29,168,184,0.2);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #1DA8B8;
    margin-bottom: 14px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.guarantee-item:hover .guarantee-icon {
    background: #1DA8B8;
    color: #ffffff;
    border-color: transparent;
}
.guarantee-text strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    color: #1B3C73;
    margin-bottom: 6px;
}
.guarantee-text span {
    display: block;
    font-size: 0.8rem;
    color: #5a6e8a;
    line-height: 1.5;
}
@media (max-width: 1024px) {
    .guarantees-grid { grid-template-columns: repeat(3, 1fr); }
    .guarantee-item { border-right: none; border-bottom: 1px solid #d4dce9; }
    .guarantee-item:nth-child(3), .guarantee-item:nth-child(6) { border-right: none; }
}
@media (max-width: 640px) {
    .guarantees-grid { grid-template-columns: 1fr 1fr; }
    .guarantee-item:last-child { grid-column: 1 / -1; }
}

/* ---- CTA benefits mejorados ---- */
.cta-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.cta-benefit-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(201,168,76,0.15);
    border: 1.5px solid rgba(201,168,76,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.cta-benefits li strong {
    display: block;
    color: white;
    font-size: 0.92rem;
    margin-bottom: 2px;
}
.cta-benefits li span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
}

.features-overview { padding: 100px 0; background: var(--white); }
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--teal), var(--blue));
    opacity: 0;
    transition: var(--transition);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.feature-card:hover::before { opacity: 1; }
.feature-card h3 { margin: 16px 0 10px; color: var(--navy); }
.feature-card p { font-size: 0.95rem; line-height: 1.65; }
.feature-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}
.feature-icon.teal { background: linear-gradient(135deg, rgba(29,168,184,0.15), rgba(29,168,184,0.08)); color: var(--teal); }
.feature-icon.navy { background: linear-gradient(135deg, rgba(27,60,115,0.12), rgba(27,60,115,0.06)); color: var(--navy); }
.feature-icon.gold { background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.08)); color: var(--gold); }
.feature-icon.blue { background: linear-gradient(135deg, rgba(33,150,212,0.15), rgba(33,150,212,0.08)); color: var(--blue); }
.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    color: var(--teal);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}
.feature-link:hover { gap: 10px; }

/* ====================================================
   DETAIL SECTIONS
   ==================================================== */
.detail-section { padding: 100px 0; background: var(--white); }
.detail-section.alt { background: var(--bg); }

.detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.detail-layout.reverse { direction: rtl; }
.detail-layout.reverse > * { direction: ltr; }
.detail-intro { font-size: 1.1rem; color: var(--text-muted); margin: 16px 0 32px; line-height: 1.7; }

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.feature-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.list-icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.list-icon.teal { background: var(--teal); color: white; }
.list-icon.navy { background: var(--navy); color: white; }
.feature-list li strong { display: block; color: var(--navy); font-size: 1rem; margin-bottom: 2px; }
.feature-list li span { font-size: 0.9rem; color: var(--text-muted); }

/* ---- COURSE MOCKUP ---- */
.course-mockup {
    background: white;
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}
.course-header { margin-bottom: 20px; }
.course-progress-bar {
    height: 8px;
    background: var(--bg-alt);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 6px;
}
.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, var(--teal), var(--blue));
    border-radius: 4px;
    transition: width 1.5s ease;
}
.progress-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; }

.course-lesson { margin-bottom: 20px; }
.lesson-video {
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    border-radius: 12px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}
.lesson-video i { font-size: 2rem; color: var(--gold); }

.course-interactions { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.interaction-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    border: 1.5px solid;
}
.interaction-chip.quiz { color: var(--teal); border-color: var(--teal); background: rgba(29,168,184,0.08); }
.interaction-chip.poll { color: var(--blue); border-color: var(--blue); background: rgba(33,150,212,0.08); }
.interaction-chip.open { color: var(--gold); border-color: var(--gold); background: rgba(201,168,76,0.08); }

.content-types { display: flex; gap: 8px; }
.type-tag {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 6px;
    background: var(--bg);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
}
.type-tag i { color: var(--navy); }

/* ---- FORUM MOCKUP ---- */
.forum-mockup {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}
.forum-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    color: white;
    font-size: 0.88rem;
    font-weight: 600;
}
.forum-header i { color: var(--gold); }
.forum-badge {
    margin-left: auto;
    background: rgba(29,168,184,0.25);
    color: var(--teal-light);
    padding: 2px 10px;
    border-radius: 50px;
    font-size: 0.72rem;
}
.forum-post {
    display: flex;
    gap: 12px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
.forum-post:hover { background: var(--bg); }
.forum-post.pinned { background: rgba(201,168,76,0.05); border-left: 3px solid var(--gold); }
.post-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}
.navy-bg { background: var(--navy); }
.teal-bg { background: var(--teal); }
.gold-bg { background: var(--gold); }
.post-body { flex: 1; }
.post-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.post-meta strong { font-size: 0.85rem; color: var(--navy); }
.pin-badge {
    font-size: 0.68rem;
    background: rgba(201,168,76,0.15);
    color: var(--gold);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
}
.time-badge { font-size: 0.72rem; color: var(--text-muted); }
.post-body p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 8px; }
.post-actions { display: flex; gap: 14px; }
.post-actions span { font-size: 0.72rem; color: var(--text-muted); cursor: pointer; display: flex; align-items: center; gap: 4px; }
.post-actions span:hover { color: var(--teal); }
.forum-rss {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(29,168,184,0.06);
    font-size: 0.78rem;
    color: var(--teal);
    font-weight: 600;
}
.forum-rss i { color: var(--gold); }
.live-dot {
    display: inline-block;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--teal);
    margin-left: 4px;
    animation: livePulse 1.5s ease-in-out infinite;
}
@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
}

/* ====================================================
   REPORTES
   ==================================================== */
.reports-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.report-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: var(--transition);
}
.report-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.report-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    margin-bottom: 16px;
}
.report-card h3 { color: var(--navy); margin-bottom: 10px; font-size: 1.1rem; }
.report-card p { font-size: 0.9rem; margin-bottom: 20px; }
.report-visual { margin-top: 16px; }

.mini-progress { display: flex; flex-direction: column; gap: 8px; }
.mini-bar {
    display: flex;
    align-items: center;
    background: linear-gradient(to right, var(--teal), var(--blue));
    height: 18px;
    border-radius: 4px;
    padding: 0 8px;
}
.mini-bar.b { background: linear-gradient(to right, var(--blue), var(--navy)); }
.mini-bar.c { background: linear-gradient(to right, var(--gold), var(--gold-light)); }
.mini-bar span { font-size: 0.65rem; color: white; font-weight: 600; }

.donut-chart { display: flex; align-items: center; gap: 16px; }
.donut-chart svg { width: 80px; height: 80px; }
.donut-labels { display: flex; flex-direction: column; gap: 4px; font-size: 0.72rem; font-weight: 600; }

.score-bars { display: flex; flex-direction: column; gap: 10px; }
.score-item { display: grid; grid-template-columns: 70px 1fr; gap: 10px; align-items: center; }
.score-item > span { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; }
.score-bar { background: var(--bg-alt); border-radius: 4px; overflow: hidden; height: 22px; }
.score-fill {
    height: 100%;
    background: linear-gradient(to right, var(--teal), var(--blue));
    border-radius: 4px;
    display: flex;
    align-items: center;
    padding-left: 8px;
    font-size: 0.7rem;
    color: white;
    font-weight: 700;
    transition: width 1.5s ease;
}
.score-fill.b { background: linear-gradient(to right, var(--blue), var(--navy)); }
.score-fill.c { background: linear-gradient(to right, var(--gold), var(--gold-light)); }

.export-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.export-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 8px;
    background: var(--bg);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--navy);
    border: 1px solid var(--border);
    transition: var(--transition);
    cursor: pointer;
}
.export-chip:hover { background: var(--navy); color: white; }
.export-chip i { color: var(--teal); }
.export-chip:hover i { color: white; }

/* ====================================================
   BENEFITS
   ==================================================== */
.benefits-section {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.benefits-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    position: relative;
}
.benefit-item {
    display: flex;
    gap: 24px;
    padding: 36px;
    border: 1px solid rgba(255,255,255,0.07);
    transition: var(--transition);
    background: rgba(255,255,255,0.02);
}
.benefit-item:hover { background: rgba(255,255,255,0.05); }
.benefit-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(201,168,76,0.2);
    font-family: 'Plus Jakarta Sans', sans-serif;
    flex-shrink: 0;
    line-height: 1;
}
.benefit-content h3 {
    color: white;
    font-size: 1.05rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.benefit-content h3 i { color: var(--gold); font-size: 0.9rem; }
.benefit-content p { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.65; }

/* ====================================================
   TESTIMONIALS
   ==================================================== */
.testimonials-section { padding: 100px 0; background: var(--bg); }
.testimonials-slider {
    position: relative;
    overflow: hidden;
    /* Padding lateral para que las sombras no se corten */
    padding: 8px 4px 16px;
    margin: 0 -4px;
}
.testimonials-track {
    display: flex;
    gap: 0;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: stretch;
}
.testimonial-card {
    background: white;
    border-radius: var(--radius);
    padding: 32px 28px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    /* Ancho exacto: 1/3 del contenedor menos el gap entre cards */
    width: calc((100% - 48px) / 3);
    min-width: calc((100% - 48px) / 3);
    flex-shrink: 0;
    margin: 0 8px;
    display: flex;
    flex-direction: column;
}
.testimonial-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 16px; display: flex; gap: 4px; }
.testimonial-card p { font-size: 1rem; color: var(--text); line-height: 1.75; margin-bottom: 24px; font-style: italic; flex-grow: 1; }
.tcard-rrhh p { flex-grow: 0; }
.tcard-stats { margin-top: auto; }
.testimonial-author { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.author-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: white;
}
.testimonial-author strong { display: block; color: var(--navy); font-size: 0.9rem; }
.testimonial-author span { font-size: 0.78rem; color: var(--text-muted); }
.slider-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 36px; }
.slider-btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: white;
    color: var(--navy);
    cursor: pointer;
    font-size: 0.85rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-btn:hover { background: var(--navy); color: white; border-color: var(--navy); }
.slider-dots { display: flex; gap: 8px; }
.slider-dots .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: var(--transition);
}
.slider-dots .dot.active { background: var(--teal); transform: scale(1.3); }

/* ====================================================
   CTA SECTION
   ==================================================== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy) 50%, #1a5580);
    position: relative;
    overflow: hidden;
}
.cta-bg-orbs { position: absolute; inset: 0; pointer-events: none; }
.orb-cta-1 { width: 400px; height: 400px; background: var(--teal); opacity: 0.12; top: -100px; left: -100px; position: absolute; border-radius: 50%; filter: blur(80px); }
.orb-cta-2 { width: 300px; height: 300px; background: var(--gold); opacity: 0.08; bottom: -50px; right: 10%; position: absolute; border-radius: 50%; filter: blur(60px); }

.cta-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.cta-content h2 { color: white; margin: 16px 0 16px; font-size: clamp(1.6rem, 3vw, 2.4rem); }
.cta-content p { color: rgba(255,255,255,0.7); font-size: 1.05rem; line-height: 1.7; margin-bottom: 32px; }
.cta-benefits { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.cta-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    font-weight: 500;
}
.cta-benefits li i { color: var(--gold); font-size: 1rem; flex-shrink: 0; }

/* ---- FORM ---- */
.cta-form-wrapper { position: relative; }
.cta-form {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.25);
}
.cta-form h3 { color: var(--navy); font-size: 1.4rem; margin-bottom: 24px; text-align: center; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--text); }
.form-group input, .form-group select {
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--text);
    background: var(--bg);
    transition: var(--transition);
    font-family: inherit;
    outline: none;
    width: 100%;
}
.form-group input:focus, .form-group select:focus { border-color: var(--teal); background: white; box-shadow: 0 0 0 3px rgba(29,168,184,0.12); }
.form-disclaimer { font-size: 0.72rem; color: var(--text-muted); text-align: center; margin-top: 12px; }

.form-success {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.25);
    text-align: center;
}
.success-icon { font-size: 4rem; color: var(--teal); margin-bottom: 20px; }
.form-success h3 { color: var(--navy); margin-bottom: 12px; }
.form-success p { font-size: 0.95rem; }

/* ====================================================
   FORMATOS DE CAPACITACIÓN
   ==================================================== */
.formats-section { padding: 100px 0; background: var(--bg); }

/* Tabs */
.formats-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.fmt-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 2px solid var(--border);
    background: white;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}
.fmt-tab i { font-size: 0.85rem; }
.fmt-tab:hover { border-color: var(--teal); color: var(--teal); background: rgba(29,168,184,0.05); }
.fmt-tab.active {
    background: linear-gradient(135deg, var(--teal), var(--blue));
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 16px rgba(29,168,184,0.35);
}

/* Panels */
.formats-content { position: relative; }
.fmt-panel { display: none; }
.fmt-panel.active { display: block; animation: panelFadeIn 0.4s ease; }
@keyframes panelFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.fmt-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    background: white;
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

/* Tags de formato */
.fmt-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 16px;
    background: rgba(29,168,184,0.1);
    color: var(--teal);
    border: 1px solid rgba(29,168,184,0.25);
}
.blue-tag { background: rgba(33,150,212,0.1); color: var(--blue); border-color: rgba(33,150,212,0.25); }
.gold-tag { background: rgba(201,168,76,0.1); color: var(--gold); border-color: rgba(201,168,76,0.25); }
.teal-tag { background: rgba(29,168,184,0.1); color: var(--teal); border-color: rgba(29,168,184,0.25); }
.navy-tag { background: rgba(27,60,115,0.08); color: var(--navy); border-color: rgba(27,60,115,0.2); }

.fmt-info h3 { color: var(--navy); margin: 0 0 14px; font-size: 1.5rem; }
.fmt-info > p { font-size: 0.97rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }

.fmt-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}
.fmt-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--text);
}
.fmt-list li i { color: var(--teal); font-size: 0.8rem; flex-shrink: 0; }

.fmt-stat-row {
    display: flex;
    gap: 24px;
    padding: 20px 24px;
    background: var(--bg);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}
.fmt-stat { text-align: center; flex: 1; }
.fmt-stat-num {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: linear-gradient(135deg, var(--teal), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.fmt-stat-lbl { display: block; font-size: 0.74rem; color: var(--text-muted); font-weight: 500; margin-top: 2px; }

/* ---- DIPLOMA CARD ---- */
.diploma-card {
    background: white;
    border: 2px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}
.diploma-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
}
.diploma-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px 14px;
    border-bottom: 1px solid var(--border);
}
.diploma-logo { width: 36px; height: 36px; object-fit: contain; }
.diploma-header div { display: flex; flex-direction: column; }
.diploma-pre { font-size: 0.72rem; color: var(--text-muted); font-weight: 500; }
.diploma-header strong { font-size: 0.92rem; color: var(--navy); }
.diploma-body { padding: 18px 24px; }
.diploma-text { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 6px; }
.diploma-body h4 { font-size: 1rem; color: var(--navy); line-height: 1.35; margin-bottom: 16px; }
.diploma-modules { display: flex; flex-wrap: wrap; gap: 6px; }
.dip-mod {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 600;
}
.dip-mod.done { background: rgba(29,168,184,0.1); color: var(--teal); }
.dip-mod.done i { color: var(--teal); }
.diploma-footer {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
}
.diploma-seal {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: rgba(201,168,76,0.2);
    border: 2px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.diploma-date, .diploma-code {
    display: block;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.65);
}
.diploma-date { font-weight: 600; color: rgba(255,255,255,0.85); }

/* ---- PROGRAM STEPS CARD ---- */
.program-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.prog-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    color: white;
    font-size: 0.88rem;
    font-weight: 600;
}
.prog-header i { color: var(--gold); }
.prog-badge {
    margin-left: auto;
    background: rgba(255,255,255,0.15);
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.72rem;
}
.prog-steps { padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.prog-step {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 10px;
    background: var(--bg);
    transition: var(--transition);
}
.prog-step.done { background: rgba(29,168,184,0.06); }
.prog-step.active { background: rgba(33,150,212,0.08); border: 1.5px solid rgba(33,150,212,0.25); }
.prog-step.pending { opacity: 0.55; }
.step-circle {
    width: 30px; height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}
.step-circle.done { background: var(--teal); color: white; }
.step-circle.active { background: var(--blue); color: white; }
.step-circle.pending { background: var(--border); color: var(--text-muted); }
.step-info { flex: 1; }
.step-info strong { display: block; font-size: 0.85rem; color: var(--navy); }
.step-info span { font-size: 0.72rem; color: var(--text-muted); }
.step-pct { font-size: 0.78rem; font-weight: 700; color: var(--teal); flex-shrink: 0; }
.active-pct { color: var(--blue); }
.pending-pct { color: var(--text-muted); }

/* ---- CERT CARD ---- */
.cert-card {
    background: white;
    border: 2px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.cert-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
}
.cert-logo { width: 36px; height: 36px; object-fit: contain; }
.cert-seal {
    width: 42px; height: 42px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
}
.cert-body { padding: 20px; }
.cert-pre { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); font-weight: 600; margin-bottom: 4px; }
.cert-body h4 { font-size: 1rem; color: var(--navy); line-height: 1.35; margin-bottom: 10px; }
.cert-name { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 16px; }
.cert-name strong { color: var(--navy); }
.cert-score { display: flex; align-items: center; gap: 16px; }
.score-ring { position: relative; width: 60px; height: 60px; flex-shrink: 0; }
.score-ring svg { width: 60px; height: 60px; transform: rotate(-90deg); }
.ring-val {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--gold);
}
.cert-meta { display: flex; flex-direction: column; gap: 5px; }
.cert-meta span { font-size: 0.78rem; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.cert-meta i { color: var(--teal); font-size: 0.75rem; }

/* ---- SKILLS GRID CARD ---- */
.skills-grid-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.skills-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: linear-gradient(135deg, var(--teal), var(--blue));
    color: white;
    font-size: 0.88rem;
    font-weight: 600;
}
.skills-header i { font-size: 1rem; }
.skills-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 16px; }
.skill-chip {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    border: 1.5px solid;
    transition: var(--transition);
}
.skill-chip.done { background: rgba(29,168,184,0.08); color: var(--teal); border-color: rgba(29,168,184,0.25); }
.skill-chip.done i { color: var(--teal); }
.skill-chip.active { background: rgba(33,150,212,0.1); color: var(--blue); border-color: rgba(33,150,212,0.3); }
.skill-chip.pending { background: var(--bg); color: var(--text-muted); border-color: var(--border); }
.skills-footer {
    padding: 12px 16px;
    background: var(--bg);
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.skill-progress-bar { height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; }
.skill-fill { height: 100%; background: linear-gradient(to right, var(--teal), var(--blue)); border-radius: 3px; }
.skills-footer > span { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; }

/* ---- CONFERENCE CARD ---- */
.conf-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.conf-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: linear-gradient(135deg, #7b1fa2, var(--navy));
}
.conf-live-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,0,80,0.2);
    border: 1px solid rgba(255,0,80,0.4);
    color: #ff4f7e;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}
.conf-attend {
    background: rgba(255,255,255,0.15);
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}
.conf-body { padding: 18px; }
.conf-body h4 { font-size: 1rem; color: var(--navy); margin-bottom: 8px; line-height: 1.4; }
.conf-speaker { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 14px; display: flex; align-items: center; gap: 6px; }
.conf-speaker i { color: var(--teal); }
.conf-actions-row { display: flex; gap: 8px; }
.conf-action-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(29,168,184,0.08);
    color: var(--teal);
    border: 1px solid rgba(29,168,184,0.2);
}
.conf-footer {
    display: flex;
    gap: 0;
    border-top: 1px solid var(--border);
}
.conf-stat {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    border-right: 1px solid var(--border);
}
.conf-stat:last-child { border-right: none; }
.conf-stat i { color: var(--gold); }

/* ====================================================
   TESTIMONIOS MEJORADOS (RRHH)
   ==================================================== */
.testi-metrics {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 28px 40px;
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    border-radius: 20px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}
.testi-metric { text-align: center; }
.tm-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 5px;
}
.tm-label {
    display: block;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
    max-width: 160px;
    line-height: 1.4;
}
.testi-metric-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.12);
}

/* Testimonial card mejorada */
.tcard-rrhh {
    border-top: 3px solid var(--teal);
    position: relative;
}
.tcard-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.tcard-role-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: rgba(29,168,184,0.08);
    color: var(--teal);
    border: 1px solid rgba(29,168,184,0.2);
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.tcard-role-badge i { font-size: 0.7rem; }
.testimonial-card p strong { color: var(--navy); }
.tcard-stats {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 14px 0 20px;
    padding: 12px 14px;
    background: var(--bg);
    border-radius: 10px;
}
.tcard-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--navy);
}
.tcard-stat i { color: var(--teal); font-size: 0.75rem; }

/* Responsive formatos */
@media (max-width: 1024px) {
    .fmt-layout { grid-template-columns: 1fr; gap: 36px; padding: 32px; }
    .testi-metrics { gap: 20px; padding: 24px; }
    .testi-metric-divider { display: none; }
}
@media (max-width: 768px) {
    .formats-tabs { gap: 8px; }
    .fmt-tab { padding: 9px 16px; font-size: 0.8rem; }
    .fmt-layout { padding: 24px 18px; }
    .testi-metrics { flex-direction: column; gap: 20px; }
    .tm-label { max-width: 100%; }
    .diploma-modules { gap: 4px; }
    .skills-grid { grid-template-columns: 1fr; }
}

/* ====================================================
   FOOTER
   ==================================================== */
.footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.65);
    padding: 70px 0 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-logo { height: 52px; width: auto; object-fit: contain; margin-bottom: 16px; filter: brightness(1.1); }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-links a {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}
.social-links a:hover { background: var(--teal); border-color: var(--teal); color: white; }

.footer-col h4 { color: white; font-size: 0.88rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.88rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-col a:hover { color: var(--teal-light); }
.footer-col a i { font-size: 0.8rem; color: var(--gold); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.8rem;
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: rgba(255,255,255,0.4); text-decoration: none; transition: var(--transition); }
.footer-legal a:hover { color: var(--teal-light); }

/* ====================================================
   RESPONSIVE
   ==================================================== */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; gap: 48px; }
    .hero-visual { order: -1; }
    .dashboard-mockup { transform: none; }
    .fc-1, .fc-2 { display: none; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .detail-layout, .detail-layout.reverse { grid-template-columns: 1fr; gap: 48px; direction: ltr; }
    .detail-layout.reverse > * { direction: ltr; }
    .cta-layout { grid-template-columns: 1fr; gap: 48px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .testimonials-track .testimonial-card { width: calc((100% - 32px) / 2); min-width: calc((100% - 32px) / 2); margin: 0 8px; }
}

@media (max-width: 768px) {
    .nav-links { display: none; position: fixed; inset: 0; background: rgba(27,60,115,0.98); flex-direction: column; align-items: center; justify-content: center; gap: 16px; z-index: 999; }
    .nav-links.open { display: flex; }
    .nav-links a { font-size: 1.2rem; color: white !important; }
    .nav-actions { display: none; }
    .hamburger { display: flex; }
    .hero-stats { flex-wrap: wrap; gap: 20px; }
    .stat-divider { display: none; }
    .features-grid { grid-template-columns: 1fr; }
    .reports-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; }
    .testimonials-track .testimonial-card { width: calc(100% - 16px); min-width: calc(100% - 16px); margin: 0 8px; }
    .form-row { grid-template-columns: 1fr; }
    .cta-form { padding: 28px 20px; }
}

@media (max-width: 480px) {
    .hero { padding: 100px 0 60px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn-primary, .hero-actions .btn-secondary { width: 100%; justify-content: center; }
    .benefit-item { flex-direction: column; gap: 12px; }
}
