/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/

/* --- VARIABLES CORPORATIVAS ASSETEC SAS --- */
:root {
    --midnight-expert: #0A1F44;
    --cyber-cyan: #00E5FF;
    --carbon-text: #1A1A1A;
    --clean-start: #FFFFFF;
    --neutro-tecnico: #2C3E50;
}

/* --- AJUSTES BASE --- */
body {
    color: var(--carbon-text);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--midnight-expert);
}

/* Clase de utilidad para botones corporativos */
.button-assetec {
    background-color: #00E5FF;
    color: #0A1F44;
    transition: all 0.3s ease;
    border: 2px solid #00E5FF;
}

.button-assetec:hover {
    background-color: #0A1F44;
    color: #FFFFFF;
    border-color: #0A1F44;
    transform: translateY(-2px); /* Efecto sutil de elevación de Canvas */
}

/* Estilos para el Top Bar */
#top-bar {
    background-color: #0A1F44; /* Midnight Expert de Assetec */
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: #FFFFFF;
    font-size: 13px;
    height: 45px;
    line-height: 44px;
}

#top-bar a {
    color: #FFFFFF;
    transition: color 0.3s ease;
}

#top-bar a:hover {
    color: #00E5FF; /* Cyber Cyan de Assetec */
}

/* Enlaces de la izquierda */
.top-links-container {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.top-links-item {
    padding-right: 15px;
    margin-right: 15px;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.top-links-item:last-child {
    border-right: 0;
}

/* Iconos Sociales y Contacto derecha */
#top-social {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

#top-social li {
    margin-left: 15px;
}

#top-social .ts-icon {
    margin-right: 5px;
}