:root {
    --bg-dark: #1a1a1b; /* Estilo Burton: Casi negro */
    --accent-maya: #c5a059; /* Oro Maya / Ocre */
    --text-light: #e0e0e0;
    --gray-muted: #888;
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Roboto Mono', monospace;
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow: hidden;
}

.container {
    display: flex;
    height: 100vh;
    width: 100%;
}

.section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.5s ease;
    padding: 40px;
    text-align: center;
    border-right: 1px solid #333;
}

.section:last-child { border-right: none; }

/* Efecto Hover */
.section:hover {
    flex: 1.2;
    background-color: #252526;
}

.section.academic:hover { border-bottom: 8px solid var(--accent-maya); }
.section.professional:hover { border-bottom: 8px solid #4a90e2; }

.content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin: 20px 0;
    color: var(--accent-maya);
}

.icon-maya, .icon-tech {
    font-size: 4rem;
    margin-bottom: 10px;
    opacity: 0.7;
}

.btn {
    display: inline-block;
    margin-top: 30px;
    padding: 10px 20px;
    border: 1px solid var(--accent-maya);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    font-size: 0.7rem;
    color: var(--gray-muted);
}

.social-links a {
    color: var(--accent-maya);
    margin: 0 10px;
    text-decoration: none;
}

/* Responsivo para móviles */
@media (max-width: 768px) {
    .container { flex-direction: column; }
    .section { height: 50vh; }
}