/* ═══════════════════════════════════════════════════
   VARIABLES — mismo sistema que eAbstract
═══════════════════════════════════════════════════ */
:root {
    --negro:    #0a0a0a;
    --gris-dark:#1c1c1c;
    --acento:   #1a6fc4;
    --acento2:  #0ea5e9;
    --texto:    #2d3748;
    --claro:    #f7f9fc;
    --borde:    #e2e8f0;
    /* Identidad propia de eCertificate */
    --cert-gold:   #d4a843;
    --cert-gold2:  #f0c866;
    --cert-emerald:#059669;
}

/* ═══════════════════════════════════════════════════
   BASE
═══════════════════════════════════════════════════ */
body.public-layout {
    font-family: 'Roboto', sans-serif;
    color: var(--texto);
    background: #fff;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
body.public-layout h1,
body.public-layout h2,
body.public-layout h3,
body.public-layout h4,
body.public-layout h5 {
    font-family: 'Roboto Condensed', sans-serif;
    letter-spacing: 0;
}

/* ═══════════════════════════════════════════════════
   NAVBAR — idéntica a eAbstract
═══════════════════════════════════════════════════ */
.navbar-home {
    background: var(--negro);
    border: none;
    border-radius: 0;
    margin-bottom: 0;
    min-height: 80px;
}
.navbar-home .navbar-brand {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 29px;
    font-weight: 900;
    color: #fff !important;
    padding: 18px 20px;
    letter-spacing: -0.25px;
}
.navbar-home .navbar-brand span { color: var(--cert-gold2); }
.navbar-home .nav-logo {
    height: 60px;
    width: auto;
    display: block;
    margin-top: 0;
}
.navbar-home .navbar-nav > li > a {
    color: rgba(255,255,255,0.82) !important;
    font-size: 13.5px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 28px 16px;
    transition: color 0.2s;
}
.navbar-home .navbar-nav > li > a:not(.btn-nav-login):hover {
    color: #fff !important;
    background: transparent !important;
    border-bottom: 2px solid var(--acento2);
}
.navbar-home .navbar-toggle {
    border-color: #444;
    margin-top: 18px;
}
.navbar-home .navbar-toggle .icon-bar { background: #ccc; }
.navbar-home .navbar-collapse { border-color: #222; }

.btn-nav-login {
    background: var(--acento) !important;
    color: #fff !important;
    border-radius: 3px;
    padding: 8px 18px !important;
    margin-top: 20px;
    font-weight: 500;
    font-size: 13px !important;
    transition: background 0.2s;
    display: inline-block;
}
.btn-nav-login:hover { background: var(--acento2) !important; color: #fff !important; text-decoration: none; }

.navbar-spacer { height: 80px; }

/* ═══════════════════════════════════════════════════
   HERO SLIDER — mismo sistema
═══════════════════════════════════════════════════ */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: var(--negro);
}
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
}
.slide.active { opacity: 1; }
.slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.78) 0%, rgba(5,20,50,0.60) 100%);
}

/* Gradientes de placeholder — identidad eCertificate */
.slide-1 { background-color: #0a1628; background-image: url('/images/home/slider/11.jpg'); background-size: cover; background-position: center; }
.slide-2 { background-color: #0d1a0d; background-image: url('/images/home/slider/6.jpg'); background-size: cover; background-position: center; }
.slide-3 { background-color: #1a1000; background-image: url('/images/home/slider/7.jpg'); background-size: cover; background-position: center; }
.slide-4 { background-color: #1a1000; background-image: url('/images/home/slider/1.jpg'); background-size: cover; background-position: center; }

/* Ornamento geométrico de fondo — sello/certificado */
.slide::before {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 1px solid rgba(212,168,67,0.10);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    align-items: center;
}
.hero-text { color: #fff; max-width: 660px; transition: opacity 0.5s ease, transform 0.25s ease; }

.hero-eyebrow {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--cert-gold2);
    margin-bottom: 14px;
    display: block;
    letter-spacing: 0.08em;
}
.hero-title {
    font-size: 68px;
    font-weight: 900;
    line-height: 1.0;
    margin: 0 0 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero-title span { color: var(--cert-gold2); }
.hero-sub {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
    margin-bottom: 36px;
    max-width: 520px;
}
.btn-hero-primary {
    background: var(--acento);
    border: none;
    color: #fff;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 13px 30px;
    border-radius: 3px;
    margin-right: 12px;
    margin-bottom: 10px;
    display: inline-block;
    transition: background 0.2s, transform 0.15s;
}
.btn-hero-primary:hover { background: var(--acento2); color: #fff; text-decoration: none; transform: translateY(-1px); }
.btn-hero-ghost {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.5);
    color: #fff;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 11px 30px;
    border-radius: 3px;
    margin-bottom: 10px;
    display: inline-block;
    transition: border-color 0.2s, background 0.2s;
}
.btn-hero-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.1); color: #fff; text-decoration: none; }

/* Sello decorativo hero */
.hero-seal {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    opacity: 0.18;
    pointer-events: none;
}
.hero-seal svg { width: 280px; height: 280px; }

/* Flechas */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    background: rgba(0,0,0,0.35);
    border: none;
    color: #fff;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.2s;
}
.slider-arrow:hover { background: var(--acento); }
.slider-prev { left: 20px; }
.slider-next { right: 20px; }

.slider-dots { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 20; }
.slider-dots span {
    display: inline-block;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
.slider-dots span.active { background: var(--cert-gold2); transform: scale(1.3); }

/* Hero fade-in */
.hero-anim .hero-eyebrow,
.hero-anim .hero-title,
.hero-anim .hero-sub,
.hero-anim .hero-actions .btn {
    opacity: 0;
    transform: translateY(10px);
    animation: heroFadeUp .65s ease forwards;
}
.hero-anim .hero-eyebrow { animation-delay: .05s; }
.hero-anim .hero-title   { animation-delay: .15s; }
.hero-anim .hero-sub     { animation-delay: .28s; }
.hero-anim .hero-actions .btn:nth-child(1) { animation-delay: .42s; }
.hero-anim .hero-actions .btn:nth-child(2) { animation-delay: .50s; }
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════════════ */
.stats-bar { background: var(--acento2); padding: 18px 0; }
.stat-item { text-align: center; color: #fff; }
.stat-divider { border-right: 1px solid rgba(255,255,255,0.25); }
.stat-number {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 38px;
    font-weight: 900;
    display: block;
    line-height: 1;
}
.stat-label { font-size: 12px; font-weight: 500; text-transform: uppercase; opacity: 0.88; }

/* ═══════════════════════════════════════════════════
   SECCIONES GENERALES
═══════════════════════════════════════════════════ */
.home-section { padding: 80px 0; }
.section-alt  { background: var(--claro); }
.section-eyebrow {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--acento);
    margin-bottom: 8px;
    display: block;
    letter-spacing: 0.06em;
}
.section-title {
    font-size: 44px;
    font-weight: 900;
    color: var(--negro);
    margin-bottom: 8px;
    line-height: 1.1;
}
.section-sub {
    font-size: 15px;
    color: #718096;
    margin-bottom: 48px;
}

/* ═══════════════════════════════════════════════════
   BUSCADOR DE CERTIFICADOS — sección destacada
═══════════════════════════════════════════════════ */
.cert-search-section {
    padding: 80px 0;
    background: var(--negro);
    position: relative;
    overflow: hidden;
}
.cert-search-section::before {
    content: '';
    position: absolute;
    top: -120px; left: -120px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,168,67,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.cert-search-section::after {
    content: '';
    position: absolute;
    bottom: -80px; right: -80px;
    width: 350px; height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(14,165,233,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.cert-search-eyebrow {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--cert-gold2);
    margin-bottom: 8px;
    display: block;
    letter-spacing: 0.08em;
}
.cert-search-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 44px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.1;
}
.cert-search-sub {
    font-size: 15px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 0;
}

/* Caja del widget */
.cert-search-widget {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 8px;
    padding: 36px 32px;
    position: relative;
    z-index: 1;
}

/* Ornamento sello */
.cert-seal-ornament {
    position: absolute;
    top: -18px;
    right: 28px;
    width: 52px;
    height: 52px;
    background: var(--negro);
    border: 1px solid rgba(212,168,67,0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cert-gold2);
    font-size: 22px;
}

/* Indicador de pasos */
.cert-steps-indicator {
    display: flex;
    align-items: center;
    margin-bottom: 28px;
    gap: 0;
}
.cert-step-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.35);
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto Condensed', sans-serif;
    transition: all 0.3s;
    flex-shrink: 0;
}
.cert-step-dot.active {
    background: var(--acento);
    border-color: var(--acento);
    color: #fff;
}
.cert-step-dot.done {
    background: var(--cert-emerald);
    border-color: var(--cert-emerald);
    color: #fff;
}
.cert-step-label {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-left: 7px;
    transition: color 0.3s;
    white-space: nowrap;
}
.cert-step-label.active { color: rgba(255,255,255,0.85); }
.cert-step-separator {
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.10);
    margin: 0 12px;
}

/* Formularios del buscador */
.cert-form-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 10px;
    display: block;
    letter-spacing: 0.05em;
}
.cert-input {
    width: 100%;
    height: 52px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 4px;
    color: #fff;
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    padding: 0 16px;
    transition: border-color 0.2s, background 0.2s;
    outline: none;
    box-sizing: border-box;
}
.cert-input::placeholder { color: rgba(255,255,255,0.28); }
.cert-input:focus {
    border-color: var(--acento2);
    background: rgba(255,255,255,0.10);
    box-shadow: 0 0 0 3px rgba(14,165,233,0.15);
}

.btn-cert-search {
    width: 100%;
    height: 52px;
    background: var(--acento);
    border: none;
    color: #fff;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.btn-cert-search:hover { background: var(--acento2); transform: translateY(-1px); }
.btn-cert-search:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* Honeypot anti-bot — invisible para humanos */
.hp-field {
    position: absolute;
    left: -9999px;
    top: 0;
    width: 0;
    height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

/* Hint info bajo el email */
.cert-search-hint {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ── PASO 2: inputs OTP ─────────────────────────── */
.otp-wrapper {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 6px 0 14px;
}
.otp-input {
    width: 52px;
    height: 62px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 6px;
    color: #fff;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    outline: none;
    transition: border-color 0.2s, background 0.2s, transform 0.15s;
    caret-color: var(--acento2);
    -webkit-appearance: none;
    appearance: none;
}
.otp-input:focus {
    border-color: var(--acento2);
    background: rgba(14,165,233,0.12);
    box-shadow: 0 0 0 3px rgba(14,165,233,0.15);
    transform: translateY(-2px);
}
.otp-input.otp-filled {
    border-color: rgba(14,165,233,0.50);
    background: rgba(14,165,233,0.08);
}
.otp-input.otp-error {
    border-color: rgba(239,68,68,0.70) !important;
    background: rgba(239,68,68,0.08) !important;
    animation: otp-shake 0.4s ease;
}
@keyframes otp-shake {
    0%,100% { transform: translateX(0); }
    20%      { transform: translateX(-5px); }
    40%      { transform: translateX(5px); }
    60%      { transform: translateX(-4px); }
    80%      { transform: translateX(4px); }
}

.cert-otp-hint {
    font-size: 12px;
    color: rgba(255,255,255,0.40);
    text-align: center;
    margin-bottom: 16px;
}
.cert-otp-hint strong { color: rgba(255,255,255,0.70); }

.cert-resend-btn {
    background: transparent;
    border: none;
    color: var(--acento2);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    transition: color 0.2s;
}
.cert-resend-btn:hover { color: #fff; }
.cert-resend-btn:disabled { color: rgba(255,255,255,0.25); cursor: not-allowed; text-decoration: none; }

/* ── PASO 3: listado de certificados ────────────── */
.cert-list-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.cert-list-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}
.cert-list-count {
    font-size: 12px;
    font-weight: 600;
    color: var(--cert-gold2);
    background: rgba(212,168,67,0.12);
    border: 1px solid rgba(212,168,67,0.25);
    padding: 3px 10px;
    border-radius: 999px;
}

.cert-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 6px;
    padding: 16px 18px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: background 0.2s, border-color 0.2s;
}
.cert-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(14,165,233,0.30);
}
.cert-card-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, rgba(212,168,67,0.25) 0%, rgba(212,168,67,0.10) 100%);
    border: 1px solid rgba(212,168,67,0.30);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cert-gold2);
    font-size: 20px;
}
.cert-card-body { flex: 1; min-width: 0; }
.cert-card-event {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cert-card-meta {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.cert-card-meta i { color: var(--acento2); margin-right: 4px; font-size: 11px; }
.cert-card-actions { display: flex; gap: 8px; flex-shrink: 0; }

.btn-cert-action {
    height: 34px;
    padding: 0 14px;
    border-radius: 3px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s;
    text-decoration: none;
}
.btn-cert-download {
    background: var(--acento);
    border: none;
    color: #fff;
}
.btn-cert-download:hover { background: var(--acento2); color: #fff; text-decoration: none; }
.btn-cert-view {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.20);
    color: rgba(255,255,255,0.75);
}
.btn-cert-view:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.40); color: #fff; text-decoration: none; }

/* Alert de error */
.cert-alert {
    padding: 12px 14px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.cert-alert-error {
    background: rgba(239,68,68,0.12);
    border: 1px solid rgba(239,68,68,0.30);
    color: rgba(255,255,255,0.88);
}
.cert-alert-success {
    background: rgba(5,150,105,0.12);
    border: 1px solid rgba(5,150,105,0.30);
    color: rgba(255,255,255,0.88);
}
.cert-spinner {
    display: inline-block;
    width: 18px; height: 18px;
    border: 2px solid rgba(255,255,255,0.25);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Transición entre pasos */
.cert-step-panel {
    transition: opacity 0.3s, transform 0.3s;
}
.cert-step-panel.hiding {
    opacity: 0;
    transform: translateX(-10px);
    pointer-events: none;
}
.cert-step-panel.showing {
    animation: panelIn 0.35s ease forwards;
}
@keyframes panelIn {
    from { opacity: 0; transform: translateX(10px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* ═══════════════════════════════════════════════════
   FEATURES / PLATAFORMA
═══════════════════════════════════════════════════ */
.features-lead-col { margin-bottom: 40px; }
.features-lead { font-size: 15px; color: #4a5568; line-height: 1.8; margin-bottom: 20px; }

.platform-badges { margin-bottom: 28px; }
.platform-badge {
    display: inline-block;
    background: var(--negro);
    color: #fff;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 3px;
    margin: 3px 4px 3px 0;
}
.badge-accent { color: var(--acento2); }

.feature-item {
    margin-bottom: 32px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--acento) 0%, var(--acento2) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
}
.feature-text h4 { font-size: 18px; font-weight: 700; color: var(--negro); margin: 0 0 5px; }
.feature-text p  { font-size: 13.5px; color: #718096; line-height: 1.6; margin: 0; }

/* ═══════════════════════════════════════════════════
   CÓMO FUNCIONA — sección específica de eCertificate
═══════════════════════════════════════════════════ */
.how-step-number {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 72px;
    font-weight: 900;
    color: var(--borde);
    line-height: 1;
    margin-bottom: -10px;
    display: block;
}
.how-step-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    margin-bottom: 16px;
}
.how-step-icon.icon-1 { background: linear-gradient(135deg, #1a6fc4, #0ea5e9); }
.how-step-icon.icon-2 { background: linear-gradient(135deg, #d4a843, #f0c866); }
.how-step-icon.icon-3 { background: linear-gradient(135deg, #059669, #34d399); }
.how-step-icon.icon-4 { background: linear-gradient(135deg, #7c3aed, #a78bfa); }

.how-step h4 { font-size: 20px; font-weight: 700; color: var(--negro); margin: 0 0 8px; }
.how-step p  { font-size: 14px; color: #718096; line-height: 1.7; margin: 0; }

.how-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 60px;
    color: var(--borde);
    font-size: 24px;
}

/* ═══════════════════════════════════════════════════
   CTA / CONTACTO — idéntico a eAbstract
═══════════════════════════════════════════════════ */
.cta-section {
    background: var(--negro);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(14,165,233,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.cta-info-col { margin-bottom: 40px; }
.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 22px;
    color: rgba(255,255,255,0.8);
    gap: 14px;
}
.contact-info-item i { color: var(--acento2); font-size: 20px; margin-top: 2px; width: 20px; flex-shrink: 0; }
.contact-info-item strong { color: #fff; display: block; font-size: 13px; margin-bottom: 2px; }
.contact-info-item span  { font-size: 14px; }

.cta-form .form-control {
    height: 48px;
    border-radius: 3px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 14px;
    margin-bottom: 12px;
    font-family: 'Roboto', sans-serif;
}
.cta-form .form-control::placeholder { color: rgba(255,255,255,0.4); }
.cta-form .form-control:focus {
    border-color: var(--acento2);
    background: rgba(255,255,255,0.1);
    box-shadow: 0 0 0 2px rgba(14,165,233,0.2);
    outline: none;
    color: #fff;
}
.cta-form textarea.form-control { height: auto; resize: vertical; }
.btn-cta-submit {
    background: var(--acento);
    border: none;
    color: #fff;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 13px 36px;
    border-radius: 3px;
    width: 100%;
    transition: background 0.2s;
}
.btn-cta-submit:hover { background: var(--acento2); color: #fff; }

.footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-whatsapp:hover { color: #fff; text-decoration: none; }
.footer-whatsapp-icon { color: #25d366; font-size: 22px; }

#contact-alert {
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity .35s ease, transform .35s ease;
    margin-bottom: 14px;
    border-radius: 10px;
    padding: 12px 14px;
    font-weight: 600;
}
#contact-alert.is-success {
    display: block;
    background: rgba(34,197,94,.12);
    border: 1px solid rgba(34,197,94,.35);
    color: rgba(255,255,255,.92);
}
#contact-alert.is-error {
    display: block;
    background: rgba(239,68,68,.12);
    border: 1px solid rgba(239,68,68,.35);
    color: rgba(255,255,255,.92);
}
#contact-alert.show { display: block; opacity: 1; transform: translateY(0); }
#contact-alert.hide { opacity: 0; transform: translateY(-6px); }

/* ═══════════════════════════════════════════════════
   FOOTER — idéntico a eAbstract
═══════════════════════════════════════════════════ */
.home-footer {
    background: #050505;
    padding: 40px 0 20px;
    color: rgba(255,255,255,0.45);
    font-size: 13px;
    flex-shrink: 0;
}
.footer-col { margin-bottom: 24px; }
.footer-brand { font-family: 'Roboto Condensed', sans-serif; font-size: 24px; font-weight: 900; color: #fff; }
.footer-brand span { color: var(--cert-gold2); }
.home-footer p { margin-top: 10px; font-size: 13px; line-height: 1.6; }
.footer-heading { color: rgba(255,255,255,0.6); font-weight: 500; font-size: 12px; text-transform: uppercase; margin-bottom: 12px; }
.footer-links li { line-height: 2; }
.footer-links a { color: rgba(255,255,255,0.45); text-decoration: none; }
.footer-links a:hover { color: var(--acento2); }
.footer-hr { border-color: rgba(255,255,255,0.08); margin: 24px 0 20px; }
.footer-copy { margin: 0; }
.footer-copy a { color: rgba(255,255,255,0.45); }
.footer-copy a:hover { color: var(--acento2); }

/* ═══════════════════════════════════════════════════
   REVEAL ANIMATIONS
═══════════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .hero-title  { font-size: 44px; }
    .hero-slider { height: 500px; }
    .hero-seal   { display: none; }
    .section-title { font-size: 34px; }
    .cert-search-title { font-size: 34px; }
    .otp-input { width: 42px; height: 52px; font-size: 22px; }
    .cert-card-actions { flex-direction: column; }
    .how-connector { display: none; }
    .stat-divider { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); padding: 10px 0; }
    .stat-item:last-child { border-bottom: none; }
    .home-footer .text-right { text-align: left !important; margin-top: 6px; }
}
@media (max-width: 480px) {
    .otp-wrapper { gap: 6px; }
    .otp-input { width: 38px; height: 46px; font-size: 20px; }
    .cert-search-widget { padding: 24px 18px; }
}


/* ═══════════════════════════════════════════════════
   LANGUAGE PICKER (lajax)
═══════════════════════════════════════════════════ */
.public-layout .lp-flag-only .language-picker .dropdown-list,
.public-layout .lp-flag-only .language-picker a {
    display: inline-flex;
    align-items: center;
}
.public-layout .lp-flag-only .language-picker .dropdown-list span,
.public-layout .lp-flag-only .language-picker a span {
    display: none !important;
}
.public-layout .lp-flag-only .language-picker img {
    width: 18px;
    height: 12px;
    display: inline-block;
}
.public-layout .lp-flag-only .language-picker .dropdown-list {
    padding: 10px 10px;
}
.language-picker { top: 30px !important; }


