/* ============================================
   HERO — Hero section, ASCII art, botones CTA
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0 50px;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

.ascii-art,
.ascii-name,
.ascii-footer,
.logo-ascii {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.ascii-art,
.ascii-name {
    pointer-events: none;
}

/* Footer permite interacción para easter eggs */
.ascii-footer {
    pointer-events: auto;
}

.logo-ascii {
    pointer-events: auto;
    cursor: pointer;
}

.ascii-art {
    line-height: 0.8;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: bold;
    transform-origin: center;
    overflow: hidden;
    white-space: pre;
    max-width: 100%;
    display: block;
}

.ascii-name {
    line-height: 1.15;
    color: var(--text-color);
    margin: 0 auto 2rem auto;
    text-align: center;
    font-weight: bolder;
    transform-origin: center;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
    white-space: pre;
    display: block;
    padding: 0 5px;
}

.hero-content {
    text-align: center;
    z-index: 1;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: visible;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.highlight {
    color: var(--accent-color);
    position: relative;
}

.subtitle {
    font-size: clamp(1rem, 3vw, 2rem);
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 300;
    max-width: 100%;
    padding: 0 20px;
    word-wrap: break-word;
}

.description {
    font-size: clamp(0.8rem, 2vw, 1.2rem);
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    word-wrap: break-word;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 0;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    display: inline-block;
    cursor: pointer;
    border: 2px solid transparent;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}
