/* Estilos do Header */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 70px; /* Definindo altura fixa para o header */
}

header .container {
    padding: 10px 20px;
    height: 100%;
}

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

/* Estilos da Logo */
.logo-container {
    display: flex;
    align-items: center;
    padding: 5px 0;
}

.logo-container a {
    display: block;
    text-decoration: none;
}

.logo-image {
    width: 180px;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo-container a:hover .logo-image {
    transform: scale(1.02);
}

/* Estilos dos Links de Navegação */
.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 0;
    position: relative;
}

.nav-links a:not(.cta-button)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:not(.cta-button):hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links .cta-button {
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-links .cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
}

/* Responsividade */
@media (max-width: 1024px) {
    .nav-links {
        gap: 20px;
    }
    
    .nav-links a {
        font-size: 13px;
    }
    
    .logo-image {
        height: 35px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 10px 0;
    }
    
    header nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .logo-image {
        width: 150px;
    }
    
    .nav-links .cta-button {
        padding: 6px 15px;
    }
}
