/* ================================================================
   omLOG.es — Landing Pública v21
   Dark Premium theme — Tailwind complementario
   Solo estilos que Tailwind no puede manejar inline
   ================================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
    --clr-accent:      #3b82f6;
    --clr-accent-2:    #06b6d4;
    --clr-green:       #10b981;
    --clr-green-dark:  #059669;
    --clr-bg-dark:     #0a0f1e;
    --clr-bg-card:     rgba(30, 41, 59, 0.6);
    --clr-border:      rgba(255, 255, 255, 0.08);
    --font-primary:    'Inter', system-ui, -apple-system, sans-serif;
    --transition-fast: all 0.2s ease-out;
    --radius-lg:       16px;
    --radius-xl:       24px;
}

/* ── Base ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: var(--font-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: var(--clr-bg-dark);
    overflow-x: hidden;
}

/* Fondo animado con puntos sutiles */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 0;
}

main { position: relative; z-index: 1; }

/* ── Navbar pills ──────────────────────────────────────────── */
.nav-pill {
    display: inline-block;
    padding: 6px 14px;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(148, 163, 184, 0.9);
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition-fast);
}
.nav-pill:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
}

.mobile-nav-link {
    display: block;
    padding: 10px 12px;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(148, 163, 184, 0.9);
    text-decoration: none;
    border-radius: 10px;
    transition: var(--transition-fast);
}
.mobile-nav-link:hover { color: #fff; background: rgba(255,255,255,0.06); }

/* ── Botones Navbar ─────────────────────────────────────────── */
.btn-nav-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 7px 16px;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(148, 163, 184, 0.9);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    text-decoration: none;
    transition: var(--transition-fast);
}
.btn-nav-ghost:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.05);
}

.btn-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 18px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(59,130,246,0.35);
    transition: var(--transition-fast);
}
.btn-nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 25px rgba(59,130,246,0.5);
}

/* Variante verde del CTA de la navbar */
.btn-nav-cta--green {
    background: linear-gradient(135deg, var(--clr-green), var(--clr-green-dark));
    box-shadow: 0 4px 15px rgba(16,185,129,0.35);
}
.btn-nav-cta--green:hover {
    box-shadow: 0 6px 25px rgba(16,185,129,0.5);
}

/* Icono circular para la nav */
.nav-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    color: rgba(148, 163, 184, 0.8);
    text-decoration: none;
    transition: var(--transition-fast);
    cursor: pointer;
    background: none;
    border: none;
    font-size: 0.9rem;
}
.nav-icon-btn:hover {
    color: #fff;
    background: rgba(255,255,255,0.06);
}

/* Avatar circular en la nav */
.nav-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(59,130,246,0.15);
    border: 1px solid rgba(59,130,246,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: #60a5fa;
    letter-spacing: 0.02em;
    cursor: pointer;
}
.nav-avatar--guest {
    background: rgba(148,163,184,0.1);
    border-color: rgba(148,163,184,0.2);
    color: rgba(148,163,184,0.6);
}

/* ── Sección Hero ───────────────────────────────────────────── */
.section-hero {
    min-height: auto;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0 0 40px;
}

/* Orbes de fondo animados */
.hero-orb-1 {
    position: absolute;
    top: -120px;
    right: -80px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, transparent 70%);
    filter: blur(60px);
    animation: orb-drift 12s ease-in-out infinite alternate;
    pointer-events: none;
}
.hero-orb-2 {
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6,182,212,0.12) 0%, transparent 70%);
    filter: blur(80px);
    animation: orb-drift 18s ease-in-out infinite alternate-reverse;
    pointer-events: none;
}

@keyframes orb-drift {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(60px, 80px) scale(1.1); }
}

/* Imagen del hero (equipo de radio) */
.hero-image-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}
.hero-radio-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

/* Título hero con gradiente */
.hero-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #f1f5f9;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #22d3ee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Badge animado */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 100px;
    background: rgba(59,130,246,0.1);
    border: 1px solid rgba(59,130,246,0.2);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #60a5fa;
    animation: float-badge 4s ease-in-out infinite;
}

/* Badge Verde para "Activaciones en vivo" */
.hero-badge--green {
    background: rgba(16,185,129,0.1);
    border-color: rgba(16,185,129,0.25);
    color: #34d399;
}

@keyframes float-badge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.hero-badge .pulse-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #3b82f6;
    box-shadow: 0 0 8px #3b82f6;
    animation: pulse-dot 2s ease-in-out infinite;
}

.hero-badge .pulse-dot--green {
    background: #10b981;
    box-shadow: 0 0 8px #10b981;
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.7; }
}

/* Botones CTA del hero */
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(59,130,246,0.4);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59,130,246,0.5);
    color: #fff;
}

/* Variante verde del hero CTA */
.btn-hero-primary--green {
    background: linear-gradient(135deg, var(--clr-green), var(--clr-green-dark));
    box-shadow: 0 8px 30px rgba(16,185,129,0.4);
}
.btn-hero-primary--green:hover {
    box-shadow: 0 15px 40px rgba(16,185,129,0.5);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(148, 163, 184, 0.9);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    text-decoration: none;
    transition: var(--transition-fast);
}
.btn-hero-secondary:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.04);
}


/* ── Feature Cards Compactas (nueva estética v2) ───────────── */
.section-features {
    position: relative;
    z-index: 2;
    padding: 0 0 40px;
    margin-top: 20px;
}

.feature-card-compact {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s ease;
    height: 100%;
}
.feature-card-compact:hover {
    border-color: rgba(59,130,246,0.2);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* Variante activa (resaltada) */
.feature-card-compact--active {
    background: rgba(16, 185, 129, 0.06);
    border-color: rgba(16,185,129,0.2);
}

.feature-card-compact__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(59,130,246,0.12);
    border: 1px solid rgba(59,130,246,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #60a5fa;
    flex-shrink: 0;
}
.feature-card-compact__icon--active {
    background: rgba(16,185,129,0.12);
    border-color: rgba(16,185,129,0.2);
    color: #34d399;
}

.feature-card-compact__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 4px;
}

.feature-card-compact__text {
    font-size: 0.8rem;
    line-height: 1.5;
    color: rgba(148, 163, 184, 0.7);
}


/* ── Panel de Control (Preview) ─────────────────────────────── */
.panel-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    padding: 28px;
    overflow: hidden;
}

.panel-progress {
    margin-bottom: 24px;
}
.panel-progress__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.panel-progress__label {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(148,163,184,0.9);
}
.panel-progress__pct {
    font-size: 0.85rem;
    font-weight: 700;
    color: #60a5fa;
}
.panel-progress__bar {
    height: 10px;
    background: rgba(255,255,255,0.05);
    border-radius: 100px;
    overflow: hidden;
}
.panel-progress__fill {
    height: 100%;
    border-radius: 100px;
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
    transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Tabla dentro del panel */
.panel-table-wrap {
    overflow-x: auto;
}
.panel-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}
.panel-table thead th {
    text-align: left;
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(148,163,184,0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.panel-table tbody td {
    padding: 12px;
    color: rgba(148,163,184,0.8);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.badge-validado {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    background: rgba(16,185,129,0.12);
    color: #34d399;
    border: 1px solid rgba(16,185,129,0.2);
}

/* Tarjetas laterales del panel */
.panel-card-side {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
}
.panel-card-side__label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #f1f5f9;
}
.panel-card-side__sub {
    display: block;
    font-size: 0.75rem;
    color: rgba(148,163,184,0.6);
    margin-top: 4px;
}

.panel-card-side--cta {
    background: rgba(239,68,68,0.06);
    border-color: rgba(239,68,68,0.2);
}
.panel-card-side__btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(239,68,68,0.3);
    transition: all 0.3s ease;
}
.panel-card-side__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239,68,68,0.4);
}


/* ── Actividad Feed ─────────────────────────────────────────── */
.activity-feed {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.activity-feed__item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 14px;
    font-size: 0.85rem;
    color: rgba(148,163,184,0.8);
    transition: var(--transition-fast);
}
.activity-feed__item:hover {
    background: rgba(15, 23, 42, 0.8);
    border-color: rgba(255,255,255,0.08);
}

.activity-feed__avatar {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.65rem;
    font-weight: 800;
    color: #fff;
}
.activity-feed__avatar--blue   { background: rgba(59,130,246,0.2); color: #60a5fa; }
.activity-feed__avatar--green  { background: rgba(16,185,129,0.2); color: #34d399; }
.activity-feed__avatar--purple { background: rgba(139,92,246,0.2); color: #a78bfa; }
.activity-feed__avatar--amber  { background: rgba(245,158,11,0.2); color: #fbbf24; }

.activity-feed__time {
    display: block;
    font-size: 0.7rem;
    color: rgba(148,163,184,0.4);
    margin-top: 2px;
}

/* Mapa del mundo */
.world-map-img {
    width: 100%;
    height: auto;
    opacity: 0.7;
    filter: brightness(0.9);
    transition: opacity 0.5s ease;
}
.world-map-img:hover { opacity: 0.85; }

/* ── Diploma Explore Cards ──────────────────────────────────── */
.diploma-explore-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    padding: 28px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s ease;
}
.diploma-explore-card:hover {
    border-color: rgba(16,185,129,0.2);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.diploma-explore-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(59,130,246,0.08);
    border: 1px solid rgba(59,130,246,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #60a5fa;
    margin-bottom: 18px;
}
.diploma-explore-card__icon--blue  { background: rgba(59,130,246,0.08); color: #60a5fa; border-color: rgba(59,130,246,0.15); }
.diploma-explore-card__icon--green { background: rgba(16,185,129,0.08); color: #34d399; border-color: rgba(16,185,129,0.15); }
.diploma-explore-card__icon--cyan  { background: rgba(6,182,212,0.08);  color: #22d3ee; border-color: rgba(6,182,212,0.15); }

.diploma-explore-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 8px;
}

.diploma-explore-card__text {
    font-size: 0.82rem;
    line-height: 1.6;
    color: rgba(148, 163, 184, 0.7);
    flex-grow: 1;
    margin-bottom: 20px;
}

.diploma-explore-card__actions {
    display: flex;
    gap: 10px;
    width: 100%;
}

.btn-outline-sm {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(148,163,184,0.9);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    text-decoration: none;
    transition: var(--transition-fast);
}
.btn-outline-sm:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.04);
}

.btn-filled-sm {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--clr-green), var(--clr-green-dark));
    border: none;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(16,185,129,0.25);
    transition: all 0.3s ease;
}
.btn-filled-sm:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16,185,129,0.4);
    color: #fff;
}


/* ── Barra de estadísticas ──────────────────────────────────── */
.stats-bar {
    background: #111827;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 20px 40px;
    display: inline-flex;
    align-items: center;
    gap: 0;
    box-shadow: 0 20px 50px -10px rgba(0,0,0,0.5);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 40px;
}

.stat-item__main {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 2px;
}

.stat-item__number {
    font-size: 2.4rem;
    font-weight: 800;
    color: #22d3ee;
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-item__label {
    font-size: 0.7rem;
    font-weight: 500;
    color: #64748b;
    text-transform: none;
    letter-spacing: 0;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.1);
}


/* ── Features Cards (full - para página servicios) ──────────── */
.feature-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.feature-card:hover {
    border-color: rgba(59,130,246,0.2);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 0 1px rgba(59,130,246,0.1);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(59,130,246,0.12);
    border: 1px solid rgba(59,130,246,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #60a5fa;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 8px;
}

.feature-text {
    font-size: 0.9rem;
    line-height: 1.65;
    color: rgba(148, 163, 184, 0.8);
}

/* ── Sección genérica ───────────────────────────────────────── */
.section { padding: 80px 0; }

.section-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #60a5fa;
    background: rgba(59,130,246,0.08);
    border: 1px solid rgba(59,130,246,0.15);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #f1f5f9;
    line-height: 1.15;
}

.section-subtitle {
    font-size: 1.05rem;
    color: rgba(148, 163, 184, 0.8);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
}

/* ── Cards de precios ───────────────────────────────────────── */
.pricing-card {
    background: rgba(15,23,42,0.6);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    position: relative;
}
.pricing-card:hover {
    border-color: rgba(59,130,246,0.2);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.pricing-card--featured {
    border-color: rgba(59,130,246,0.35);
    background: rgba(59,130,246,0.06);
    box-shadow: 0 0 0 1px rgba(59,130,246,0.15), 0 20px 40px rgba(59,130,246,0.1);
}
.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    color: #fff;
    padding: 4px 16px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
}
.pricing-plan-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #60a5fa;
    margin-bottom: 12px;
}
.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    color: #f1f5f9;
    line-height: 1;
    margin-bottom: 4px;
}
.pricing-period {
    font-size: 0.9rem;
    color: rgba(148,163,184,0.6);
    margin-bottom: 16px;
}
.pricing-desc {
    font-size: 0.9rem;
    color: rgba(148,163,184,0.7);
    min-height: 44px;
    margin-bottom: 24px;
    line-height: 1.5;
}
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    flex-grow: 1;
}
.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(148,163,184,0.85);
    margin-bottom: 10px;
}
.pricing-features li i {
    color: #3b82f6;
    font-size: 0.8rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.btn-pricing {
    display: block;
    width: 100%;
    padding: 12px;
    text-align: center;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(148,163,184,0.9);
    transition: var(--transition-fast);
}
.btn-pricing:hover {
    border-color: rgba(255,255,255,0.25);
    color: #fff;
    background: rgba(255,255,255,0.05);
}
.btn-pricing--filled {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    border: none;
    color: #fff;
    box-shadow: 0 4px 15px rgba(59,130,246,0.3);
}
.btn-pricing--filled:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59,130,246,0.5);
    color: #fff;
}

/* ── Auth Card (Registro / Login) ───────────────────────────── */
.auth-card {
    background: rgba(15,23,42,0.7);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-xl);
    padding: 36px;
    backdrop-filter: blur(16px);
}
.auth-card:hover { border-color: rgba(59,130,246,0.2); }

.form-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(148,163,184,0.9);
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.form-control {
    width: 100%;
    padding: 11px 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: #f1f5f9;
    font-size: 0.95rem;
    font-family: var(--font-primary);
    transition: var(--transition-fast);
}
.form-control:focus {
    outline: none;
    border-color: rgba(59,130,246,0.5);
    background: rgba(59,130,246,0.04);
    box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}
.form-control::placeholder { color: rgba(148,163,184,0.4); }
.form-control.is-invalid   { border-color: rgba(239,68,68,0.6); }
.invalid-feedback {
    font-size: 0.8rem;
    color: #f87171;
    margin-top: 4px;
}

.btn-registro {
    width: 100%;
    padding: 13px;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(59,130,246,0.35);
    transition: all 0.3s ease;
    font-family: var(--font-primary);
}
.btn-registro:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59,130,246,0.5);
}

/* Feedback del formulario */
.registro-feedback {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
}
.registro-feedback--ok {
    background: rgba(16,185,129,0.1);
    border: 1px solid rgba(16,185,129,0.2);
    color: #34d399;
}
.registro-feedback--err {
    background: rgba(239,68,68,0.08);
    border: 1px solid rgba(239,68,68,0.2);
    color: #f87171;
}

/* ── Diploma cards (listado público) ───────────────────────── */
.diploma-card {
    background: rgba(15,23,42,0.6);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.4s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}
.diploma-card:hover {
    border-color: rgba(59,130,246,0.2);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

/* ── CTA global block ───────────────────────────────────────── */
.cta-block {
    background: rgba(59,130,246,0.06);
    border: 1px solid rgba(59,130,246,0.15);
    border-radius: 28px;
    padding: 64px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-block::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 300px;
    background: radial-gradient(circle, rgba(59,130,246,0.15), transparent);
    filter: blur(60px);
    pointer-events: none;
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer-landing {
    background: rgba(5, 8, 20, 0.95);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 60px 0 28px;
    margin-top: auto;
}

.footer-logo { height: 36px; width: auto; }

.footer__links { list-style: none; padding: 0; margin: 0; }
.footer__links li { margin-bottom: 8px; }
.footer__links a {
    color: rgba(148,163,184,0.65);
    font-size: 0.875rem;
    text-decoration: none;
    transition: var(--transition-fast);
}
.footer__links a:hover { color: #94a3b8; }

.footer-heading {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: rgba(248,250,252,0.85);
    margin-bottom: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
    margin-top: 48px;
    font-size: 0.8rem;
    color: rgba(148,163,184,0.4);
}

/* Footer social icons */
.footer-social-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(148,163,184,0.6);
    font-size: 0.8rem;
    text-decoration: none;
    transition: var(--transition-fast);
}
.footer-social-icon:hover {
    color: #fff;
    background: rgba(255,255,255,0.12);
}

/* Footer status dot */
.footer-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 8px #10b981;
    animation: pulse-dot 2s ease-in-out infinite;
}

/* Footer decorative star */
.footer-star {
    font-size: 2rem;
    color: rgba(148,163,184,0.1);
    line-height: 1;
}

/* ── Cookies banner ─────────────────────────────────────────── */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(15,23,42,0.97);
    border-top: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

/* ── Animate on scroll ──────────────────────────────────────── */
.animate-fade-in {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-fade-in.is-visible { opacity: 1; transform: translateY(0); }

/* ── Contenedor principal ───────────────────────────────────── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Diploma card float (legado, para compatibilidad) ──────── */
.diploma-card-float {
    background: #111827;
    border: 2px solid rgba(6,182,212,0.4);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(20px);
    animation: float-card 6s ease-in-out infinite;
    box-shadow: 0 0 40px rgba(6,182,212,0.2), 0 30px 80px rgba(0,0,0,0.8);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 480px;
    justify-content: center;
}
@keyframes float-card {
    0%, 100% { transform: translateY(0) rotate(-0.5deg); }
    50%       { transform: translateY(-15px) rotate(0.5deg); }
}

/* ── Utilidades responsive ──────────────────────────────────── */
@media (max-width: 768px) {
    .stats-bar { flex-direction: column; padding: 24px; }
    .stat-divider { width: 80%; height: 1px; }
    .section { padding: 56px 0; }
    .section-hero { min-height: auto; padding: 40px 0 20px; }
    .hero-image-wrap { margin-bottom: 20px; }
    .hero-title { font-size: 2rem; }
    .section-features { margin-top: -20px; }
    .diploma-explore-card__actions { flex-direction: column; }
    .activity-feed__item { font-size: 0.8rem; }
}

@media (max-width: 480px) {
    .section { padding: 40px 0; }
    .panel-card { padding: 16px; }
    .diploma-explore-card { padding: 20px; }
}

/* Hunter-first homepage */
.hero-hunter {
    padding: 28px 0 54px;
}

.hunter-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

@media (min-width: 1024px) {
    .hunter-trust-row {
        justify-content: flex-start;
    }
}

.hunter-trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.62);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(203, 213, 225, 0.86);
    font-size: 0.78rem;
    font-weight: 700;
}

.hunter-trust-row i {
    color: #34d399;
}

.hunter-dashboard-preview {
    position: relative;
    display: grid;
    grid-template-columns: 0.92fr 1.18fr;
    gap: 0;
    overflow: hidden;
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.74);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 30px 90px rgba(0,0,0,0.44), 0 0 0 1px rgba(16,185,129,0.05);
}

.hunter-dashboard-preview::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(16,185,129,0.08), transparent 42%, rgba(6,182,212,0.06));
    pointer-events: none;
}

.hunter-dashboard-preview__bg {
    position: absolute;
    inset: 0;
    width: 118%;
    height: 118%;
    max-width: none;
    object-fit: cover;
    object-position: left center;
    transform: translateX(-30px);
    filter: saturate(0.96) brightness(0.9) drop-shadow(0 24px 30px rgba(0,0,0,0.45));
    z-index: 0;
}

.hunter-dashboard-preview::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2,8,23,0.02), rgba(2,8,23,0.28) 48%, rgba(2,8,23,0.46));
    z-index: 0;
    pointer-events: none;
}

.hunter-dashboard-preview__media {
    min-height: 470px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    z-index: 1;
}

.hunter-dashboard-preview__media img {
    display: none;
}

.hunter-dashboard-preview__media::after {
    display: none;
}

.hunter-dashboard-preview__signal {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(2, 8, 23, 0.76);
    border: 1px solid rgba(52,211,153,0.22);
    color: #bbf7d0;
    font-size: 0.76rem;
    font-weight: 800;
}

.hunter-dashboard-preview__signal span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 16px rgba(16,185,129,0.9);
}

.hunter-dashboard-preview__body {
    position: relative;
    z-index: 2;
    padding: 24px;
    background: rgba(2, 8, 23, 0.24);
    border-left: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(8px);
    box-shadow: -14px 0 34px rgba(2,8,23,0.18);
}

.hunter-panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}

.hunter-panel-kicker {
    display: block;
    color: #34d399;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.hunter-panel-head h2 {
    color: #f8fafc;
    font-size: 1.18rem;
    font-weight: 800;
    line-height: 1.2;
}

.hunter-callsign {
    padding: 8px 10px;
    border-radius: 10px;
    background: rgba(6,182,212,0.08);
    border: 1px solid rgba(6,182,212,0.18);
    color: #67e8f9;
    font-size: 0.85rem;
    font-weight: 900;
}

.hunter-progress {
    margin-bottom: 18px;
}

.hunter-metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 18px;
}

.hunter-metrics-grid div {
    padding: 13px;
    border-radius: 14px;
    background: rgba(2, 8, 23, 0.35);
    border: 1px solid rgba(255,255,255,0.06);
}

.hunter-metrics-grid span {
    display: block;
    color: rgba(148,163,184,0.7);
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.hunter-metrics-grid strong {
    color: #f8fafc;
    font-size: 1.15rem;
    font-weight: 900;
}

.hunter-chart-row {
    display: grid;
    grid-template-columns: 1fr 86px 1.15fr;
    gap: 12px;
    align-items: stretch;
    margin-bottom: 18px;
}

.hunter-bars {
    display: flex;
    align-items: end;
    gap: 7px;
    height: 108px;
    padding: 12px;
    border-radius: 16px;
    background: rgba(2, 8, 23, 0.34);
    border: 1px solid rgba(255,255,255,0.06);
}

.hunter-bars span {
    flex: 1;
    min-height: 20px;
    border-radius: 999px 999px 4px 4px;
    background: linear-gradient(180deg, #22d3ee, #10b981);
    box-shadow: 0 8px 18px rgba(16,185,129,0.14);
}

.hunter-donut {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background:
        radial-gradient(circle at center, #0f172a 0 47%, transparent 48%),
        conic-gradient(#10b981 0 58%, #22d3ee 58% 82%, rgba(255,255,255,0.12) 82% 100%);
    align-self: center;
    border: 1px solid rgba(255,255,255,0.08);
}

.hunter-award-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 15px;
    border-radius: 16px;
    background: rgba(16,185,129,0.07);
    border: 1px solid rgba(16,185,129,0.18);
}

.hunter-award-card i {
    color: #34d399;
    font-size: 1.2rem;
}

.hunter-award-card strong {
    color: #f8fafc;
    font-size: 0.84rem;
}

.hunter-award-card span {
    color: rgba(148,163,184,0.72);
    font-size: 0.72rem;
}

.hunter-qso-table {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hunter-qso-table div {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 8px;
    align-items: center;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(2, 8, 23, 0.32);
    border: 1px solid rgba(255,255,255,0.05);
}

.hunter-qso-table span {
    color: #f8fafc;
    font-size: 0.8rem;
    font-weight: 900;
}

.hunter-qso-table em {
    color: rgba(148,163,184,0.74);
    font-size: 0.74rem;
    font-style: normal;
}

.hunter-qso-table strong {
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(16,185,129,0.12);
    color: #34d399;
    border: 1px solid rgba(16,185,129,0.18);
    font-size: 0.68rem;
    font-weight: 900;
}

.section-badge--green {
    color: #34d399;
    background: rgba(16,185,129,0.09);
    border-color: rgba(16,185,129,0.18);
}

.seo-keyword-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.seo-keyword-grid span {
    padding: 8px 12px;
    border-radius: 10px;
    background: rgba(15,23,42,0.68);
    border: 1px solid rgba(255,255,255,0.07);
    color: rgba(203,213,225,0.82);
    font-size: 0.8rem;
    font-weight: 700;
}

.hunter-stats-card {
    padding: 28px;
    border-radius: 24px;
    background: rgba(15,23,42,0.66);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 24px 70px rgba(0,0,0,0.25);
}

.hunter-stats-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.hunter-stats-card__header span {
    color: #f8fafc;
    font-size: 1rem;
    font-weight: 800;
}

.hunter-stats-card__header strong {
    padding: 6px 10px;
    border-radius: 999px;
    color: #34d399;
    background: rgba(16,185,129,0.1);
    border: 1px solid rgba(16,185,129,0.18);
    font-size: 0.7rem;
    text-transform: uppercase;
}

.hunter-stats-card__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}

.hunter-stats-card__grid div {
    padding: 16px;
    border-radius: 16px;
    background: rgba(2, 8, 23, 0.35);
    border: 1px solid rgba(255,255,255,0.06);
}

.hunter-stats-card__grid strong,
.hunter-stats-card__grid span {
    display: block;
}

.hunter-stats-card__grid strong {
    color: #22d3ee;
    font-size: 1.45rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 7px;
}

.hunter-stats-card__grid span {
    color: rgba(148,163,184,0.7);
    font-size: 0.72rem;
    font-weight: 700;
}

.hunter-live-feed {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.hunter-live-feed div {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 12px;
    border-radius: 12px;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.045);
    color: rgba(203,213,225,0.82);
    font-size: 0.82rem;
}

.hunter-live-feed i {
    color: #34d399;
}

.hunter-final-cta {
    text-align: center;
    padding: 54px 34px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(16,185,129,0.08), rgba(6,182,212,0.06));
    border: 1px solid rgba(16,185,129,0.18);
    box-shadow: 0 26px 80px rgba(0,0,0,0.26);
}

@media (max-width: 1023px) {
    .hunter-dashboard-preview {
        grid-template-columns: 1fr;
    }

    .hunter-dashboard-preview__media {
        min-height: 230px;
    }

    .hunter-dashboard-preview__media::after {
        display: none;
    }
}

@media (max-width: 640px) {
    .hero-hunter {
        padding-top: 18px;
    }

    .hunter-dashboard-preview__body {
        padding: 18px;
    }

    .hunter-panel-head,
    .hunter-stats-card__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .hunter-chart-row,
    .hunter-stats-card__grid {
        grid-template-columns: 1fr;
    }

    .hunter-donut {
        margin: 0 auto;
    }

    .hunter-qso-table div {
        grid-template-columns: 1fr;
    }

    .hunter-metrics-grid {
        grid-template-columns: 1fr;
    }

    .hunter-final-cta {
        padding: 36px 20px;
    }
}
