/* Custom Navbar CSS */

/* Top Bar - Black Background */
.top-bar {
    background-color: #000;
    color: #fff;
    font-size: 13px;
    padding: 8px 0;
    font-family: sans-serif;
}

.top-bar a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.top-bar a:hover {
    color: #ccc;
}

.top-bar i {
    margin-right: 5px;
}

.top-info-block {
    display: inline-block;
    margin-right: 20px;
}

.top-socials i {
    font-size: 14px;
    margin-left: 10px;
}

/* Main Navbar - White Background */
.main-navbar {
    background-color: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-family: 'Arial', sans-serif; /* Aproximação da font da imagem */
}

.navbar-inner-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Fix */
.navbar-logo img {
    max-height: 50px; /* Ajuste conforme logo real */
    width: auto;
}

/* Menu Items */
.custom-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.custom-nav li {
    margin-left: 25px;
}

.custom-nav a {
    color: #333;
    font-weight: 700; /* Bold conforme imagem */
    font-size: 13px;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s;
}

.custom-nav a:hover {
    color: #bb2a22;
}

/* CTA Button */
.btn-nav-cta {
    background-color: #bb2a22; /* Vermelho da marca */
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 25px; /* Arredondado conforme imagem */
    font-weight: 700;
    font-size: 13px;
    transition: background-color 0.3s;
}

.btn-nav-cta:hover {
    background-color: #90201a;
}
