/* =========================================== */
/* ========== Variables y Base ============= */
/* =========================================== */
:root {
    --bg: #0a0a0a;
    --terminal-bg: #0f0f0f;
    --text: #e8e8e8;
    --text-muted: #888;
    --accent: #4aff4a;
    --accent-secondary: #4a88ff;
    --border: #222;
    --success: #00cc66;
    --warning: #ffcc00;
    --error: #ff4d4d;
    --max-width: 1200px;
    --radius-sm: 2px;
    --radius-md: 4px;
}

/* Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.mono {
    font-family: 'IBM Plex Mono', monospace;
}

/* Container */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.logo-img {
    height: 25px;
    width: auto;
    display: block;
}

/* =========================================== */
/* ========== Hero / Construcción ============ */
/* =========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 0 4rem;
    position: relative;
}

.construction-title {
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.construction-title .accent {
    color: var(--accent);
    font-family: 'IBM Plex Mono', monospace;
}

.construction-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    text-align: center !important;
}

.contact-link {
    display: inline-block;
    margin-top: 1.5rem;
    color: var(--accent-secondary);
    text-decoration: none;
    font-family: 'IBM Plex Mono', monospace;
    border-bottom: 1px dashed var(--accent-secondary);
    padding-bottom: 2px;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--text);
    border-bottom-color: var(--text);
}

/* =========================================== */
/* ================ Footer ================= */
/* =========================================== */
.footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border);
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-text {
    color: var(--text-muted);
    font-size: 0.9rem;
}


/* =========================================== */
/* ============= Responsive Global ============ */
/* =========================================== */
@media (max-width: 768px) {
    .construction-title {
        font-size: 2rem;
    }

    .construction-subtitle {
        font-size: 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
/* =========================================== */
/* ========== Terminal Mockup Styles ========= */
/* =========================================== */
.hero-terminal {
    background-color: var(--terminal-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2rem;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 0 15px rgba(74, 255, 74, 0.1);
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-dot.red {
    background-color: var(--error);
}

.terminal-dot.yellow {
    background-color: var(--warning);
}

.terminal-dot.green {
    background-color: var(--success);
}

.terminal-content {
    font-family: 'IBM Plex Mono', monospace;
    line-height: 1.8;
    text-align: left;
}

.construction-text {
    color: var(--text);
    margin-top: 0.5rem;
}

.terminal-prompt {
    color: var(--accent);
    margin-right: 0.5rem;
}

.terminal-command {
    color: var(--accent-secondary);
}

/* Animaciones */
@keyframes pulse {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

.blink {
    animation: pulse 1s infinite step-end;
}