:root {
    --fondo: #0D1117;
    --texto: #9ba3b4;
    --texto-encabezado: #e9eaeb;
    --acento-primario: #0078d4;
    --acento-secundario: #0069b9;
    --texto-enlace: #4daafc;
    --boton-primario: #005ea2;
    --boton-primario-hover: #004b81;
    --boton-secundario: rgba(255,255,255,0.1);
    --boton-secundario-hover: rgba(255,255,255,0.15);
    --boton-tercero: #0b416f;
    --boton-tercero-hover: #093358;
    --borde-header: rgba(255,255,255,0.12);
    --fondo-header: rgba(13, 17, 23, 0.95);
    --fondo-overlay: rgba(0,0,0,0.5);
    --card-background: rgba(255, 255, 255, 0.04);
    --card-hover-background: rgba(255, 255, 255, 0.08);
    --card-border: rgba(255, 255, 255, 0.12);
    --card-border-active: rgba(255, 255, 255, 0.2);
  }
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, sans-serif;
    background-color: var(--fondo);
    color: var(--texto);
    min-height: 100vh;
    overflow-x: hidden;
}
a{
    text-decoration: none;
    color:var(--texto) ;
}
button {
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.2s;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,.08);
}

button:hover {
    transform: scale(1.05);
}

button.primario {
    background-color: var(--boton-primario);
    color: white;
}

button.primario:hover {
    background-color: var(--boton-primario-hover);
}

button.tercero {
    background-color: var(--boton-tercero);
    color: white;
}

button.tercero:hover {
    background-color: var(--boton-tercero-hover);
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
 /* Estilos para los divisores modernos y creativos */
 .divider {
    height: 4px;
    background: linear-gradient(90deg, var(--acento-primario), var(--acento-secundario));
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 2s infinite;
}

@keyframes shine {
    to {
        left: 100%;
    }
}

.divider-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--fondo);
    padding: 0.5rem;
    border-radius: 50%;
    color: var(--acento-primario);
    font-size: 1.5rem;
}
/* animacion mostar/ocultar */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
