/* NAVBAR BASE */
.navbar-custom {
    background: #11111136;
    backdrop-filter: blur(15px);
    height: 80px;
    display: flex;
    align-items: center;
    z-index: 999;
}

/* CONTAINER */
.container-custom {
    max-width: 1200px;
    margin: auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    color: inherit;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Ícone */
.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #0690CF, #0cacb8);
    display: flex;
    align-items: center;
    justify-content: center;

    /* efeito premium */
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.logo-icon svg {
    width: 20px;
    height: 20px;
}

/* Texto */
.logo-text {
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
}

/* Clima mais neutro */
.logo-clima {
    color: white;
}

/* 365 com destaque */
.logo-365 {
    margin-left: 4px;
    background: linear-gradient(135deg, #0690CF, #0cacb8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* MENU */
.menu {
    display: flex;
    gap: 30px;
}

.menu a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.menu a:hover {
    color: white;
}

/* ACTIONS */
.actions {
    display: flex;
    gap: 10px;
}

.btn-login {
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    padding: 8px 12px;
    cursor: pointer;
}

.btn-login:hover {
    color: white;
    background: rgba(255,255,255,0.1);
    border-radius: 6px;
}

.btn-primary-custom {
    background: linear-gradient(135deg, #0690CF, #0cacb8);
    border: none;
    color: white;
    padding: 8px 14px;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
}

.btn-primary-custom:hover {
    opacity: 0.9;
}

/* MOBILE */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: white;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: #111;
    padding: 15px;
}

.mobile-menu a {
    color: white;
    padding: 10px 0;
    text-decoration: none;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .menu, .actions {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}

/* MOBILE MENU ATIVO */
.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu a:last-child {
    border-bottom: none;
}