/**
 * Navbar CSS - Nordersun v6.2
 * CSS compartido para el navbar de páginas públicas
 * Usado por: How It Works, Install, FAQ, Terms, Privacy
 */

/* Header/Navbar */
.header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 12px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 32px;
    width: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #0071dc;
}

.logo-text .highlight-text {
    color: #ffc220;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-links a:hover {
    color: #0071dc;
}

.nav-links a.active {
    color: #0071dc;
    font-weight: 600;
}

.nav-links a i {
    display: none;
}

/* Footer común */
.footer {
    text-align: center;
    padding: 30px;
    color: #666;
    font-size: 14px;
    background: #f5f5f5;
    margin-top: 60px;
}

.footer a {
    color: #0071dc;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
    .nav-links {
        gap: 15px;
    }

    .nav-links a span {
        display: none;
    }

    .nav-links a i {
        display: inline;
        font-size: 18px;
    }
}

@media (max-width: 600px) {
    .header {
        padding: 10px 15px;
    }

    .logo-text {
        font-size: 20px;
    }

    .logo-img {
        height: 28px;
    }

    .nav-links {
        gap: 12px;
    }

    .nav-links a i {
        font-size: 16px;
    }
}
