/* ===== MENU.CSS - HEADER ROXO COMO NA IMAGEM ===== */
/* ===== MENU.CSS - HEADER COM DUAS LINHAS ===== */

/* Header Principal */
.header-nav {
    background: linear-gradient(135deg, #8B5DCC, #9B6BD8);
    border-bottom: none;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(139, 93, 204, 0.3);
}

.header-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Barra de contato superior */
.top-contact-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 8px 0; */
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: #FFD700;
}

.contact-item i {
    font-size: 12px;
    color: #FFD700;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.social-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 215, 0, 0.8);
    color: #333;
}

/* Main Navigation - Logo + Menu + CTA na mesma linha */
.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    min-height: 80px;
}

/* Logo à esquerda */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: bold;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}

.nav-logo:hover {
    opacity: 0.9;
}

.nav-logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

/* Menu de navegação centralizado */
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 35px;
    flex: 1;
    justify-content: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 0;
    transition: all 0.3s ease;
    position: relative;
    display: block;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: #FFD700;
    transform: translateY(-2px);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, #FFD700, #FFC107);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Botão CTA amarelo à direita */
.nav-cta {
    background: linear-gradient(135deg, #FFD700, #FFC107);
    color: #333 !important;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    border: 2px solid transparent;
    flex-shrink: 0;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #FFC107, #FFB300);
    border-color: rgba(255, 255, 255, 0.2);
}

.nav-cta i {
    font-size: 16px;
    color: #333;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #8B5DCC, #9B6BD8);
    box-shadow: 0 8px 25px rgba(139, 93, 204, 0.3);
    border-radius: 0 0 15px 15px;
    overflow: hidden;
    z-index: 999;
}

.mobile-menu.active {
    display: block;
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu li:last-child {
    border-bottom: none;
}

.mobile-menu a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 16px;
    padding: 18px 25px;
    display: block;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.mobile-menu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #FFD700;
    border-left-color: #FFD700;
    padding-left: 30px;
}

.mobile-contact-info {
    padding: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.1);
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #FFD700;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
}

.mobile-contact-item:hover {
    color: white;
}

.mobile-contact-item i {
    color: #FFD700;
    width: 20px;
    font-size: 16px;
}

/* Mobile CTA Button */
.mobile-nav-cta {
    background: linear-gradient(135deg, #FFD700, #FFC107) !important;
    color: #333 !important;
    padding: 18px 25px !important;
    text-align: center;
    margin: 20px;
    border-radius: 25px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    border-left: none !important;
}

.mobile-nav-cta:hover {
    background: linear-gradient(135deg, #FFC107, #FFB300) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    padding-left: 25px !important;
    color: #333 !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .top-contact-bar {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 12px 0;
    }

    .contact-info {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .nav-menu {
        gap: 25px;
    }

    .nav-menu a {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .top-contact-bar {
        display: none;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .main-nav {
        padding: 12px 0;
        min-height: 70px;
    }

    .nav-logo {
        font-size: 20px;
    }

    .nav-logo img {
        width: 45px;
        height: 45px;
    }

    .nav-cta {
        padding: 12px 20px;
        font-size: 14px;
    }

    .header-nav-container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .nav-logo span {
        display: none;
    }
    
    .nav-cta {
        padding: 10px 15px;
        font-size: 13px;
    }

    .nav-cta span {
        display: none;
    }
}