@import url('googleapis.com');

/* Configuración General */
body {
    margin: 0;
    padding: 0;
    font-family: 'Rajdhani', sans-serif; /* Aplica a menús y subtítulos */
    background-color: #101c6f; 
    color: white;
}

/* Barra de Navegación */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: transparent;
}

.logo {
    font-family: 'Orbitron', sans-serif; /* Fuente estilizada */
    font-size: 28px;
    font-weight: bold;
    font-style: italic;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 24px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: white;
}

.client-area {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 16px;
    text-align: right;
    cursor: pointer;
}

/* Sección Central (Hero) */
.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
}

.hero-title {
    font-family: 'Orbitron', sans-serif; /* Fuente gaming y compacta */
    font-size: 52px; 
    line-height: 1.2; 
    margin: 0 0 20px 0;
    letter-spacing: -0.5px; /* Evita el efecto estirado horizontalmente */
}

/* Texto con Degradado */
.gradient-text {
    background: linear-gradient(to right, #4158d0, #c850c0, #ffcc70);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 16px;
    color: #a0aec0;
    letter-spacing: 1px; 
    line-height: 1.4;
    margin-bottom: 40px;
    max-width: 480px; 
}

/* Botones */
.hero-buttons {
    display: flex;
    gap: 25px;
}

.btn {
    font-family: 'Rajdhani', sans-serif;
    display: inline-block;
    padding: 14px 38px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: transform 0.2s;
}

.btn:hover {
    transform: scale(1.05);
}

.btn-blue {
    background-color: #0346b3;
    color: white;
}

.btn-purple {
    background-color: #6420aa;
    color: white;
}
