/* ═══════════════════════════════════════
   hero.css — Hero section & ticker
   Delfos Estudios © 2026
═══════════════════════════════════════ */

/* ── Hero ── */
.hero {
    min-height: 100vh;
    background: var(--navy);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(30, 48, 96, .8) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 10% 80%, rgba(201, 168, 76, .08) 0%, transparent 60%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 168, 76, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 168, 76, .05) 1px, transparent 1px);
    background-size: 64px 64px;
}

.hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 120px var(--space-xl) 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

/* Eyebrow badge */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, .12);
    border: 1px solid rgba(201, 168, 76, .25);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 11.5px;
    font-weight: 500;
    color: var(--gold-lt);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: var(--space-lg);
}

.hero-eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}

.hero h1 {
    color: #fff;
    margin-bottom: 12px;
}

.hero h1 em {
    font-style: italic;
    color: var(--gold-lt);
}

.hero-desc {
    font-size: 1.05rem;
    color: #8A9BB0;
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* Stats row */
.hero-stats {
    display: flex;
    gap: 36px;
    margin-top: 48px;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.hero-stat-val {
    font-family: 'Libre Baskerville', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.hero-stat-val span {
    color: var(--gold);
}

.hero-stat-lbl {
    font-size: 12px;
    color: #666;
    margin-top: 4px;
}

/* Right column cards */
.hero-right {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.hero-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 10px;
    padding: 20px 24px;
    backdrop-filter: blur(4px);
    transition: var(--t);
}

.hero-card:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(201, 168, 76, .3);
    transform: translateX(4px);
}

.hero-card-icon {
    font-size: 22px;
    margin-bottom: 10px;
}

.hero-card-title {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.hero-card-desc {
    font-size: 12.5px;
    color: #777;
    line-height: 1.6;
}

/* ── Ticker ── */
.ticker {
    background: var(--gold);
    padding: 10px 0;
    overflow: hidden;
}

.ticker-track {
    display: flex;
    white-space: nowrap;
    animation: ticker 28s linear infinite;
}

.ticker-item {
    padding: 0 48px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: .06em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.ticker-item::after {
    content: '◆';
    color: var(--gold-dk);
    font-size: 8px;
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-right {
        display: none;
    }
}