/*
Theme Name: Hello Elementor Child
Theme URI: https://tu-sitio.com
Description: Tema hijo para desarrollo personalizado.
Author: Tu Nombre
Author URI: https://tu-sitio.com
Template: hello-elementor
Version: 1.0.0
*/

/* Colores exactos de la imagen */
:root {
    --bg-dark-header: rgba(10, 11, 16, 0.95); /* Fondo oscuro semitransparente */
    --accent-blue: #4f46e5; /* El azul del botón */
    --text-menu: #94a3b8; /* Gris suave para los links */
    --text-hover: #ffffff;
}

/* Header Estilo Premium */
.site-header {
    background-color: var(--bg-dark-header);
    padding: 15px 0;
    position: fixed; /* Para que flote sobre el hero como en la foto */
    width: 100%;
    top: 0;
    z-index: 9999;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo img.custom-logo {
    height: 40px; /* Tamaño refinado */
    width: auto;
}

/* Menú Central */
.nav-list {
    display: flex;
    gap: 35px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list a {
    color: var(--text-menu);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

.nav-list a:hover {
    color: var(--text-hover);
}

/* Botones Derecha */
.header-btns {
    display: flex;
    align-items: center;
    gap: 25px;
}

.btn-login {
    color: var(--text-menu);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.btn-login:hover {
    color: white;
}

.btn-trial {
    background-color: var(--accent-blue);
    color: white;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: transform 0.2s, background 0.2s;
}

.btn-trial:hover {
    background-color: #4338ca;
    transform: translateY(-1px);
}