/*@import url('/ComputerRoom/public/css/google.css');
/*@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Ubuntu:wght@300;400;700&display=swap');*/


.futuristic-nav {
    background: linear-gradient(135deg, #1f487e 0%, #2c5aa0 50%, #1a3b6b 100%) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(30, 174, 152, 0.3);
    position: sticky !important;
    top: 0 !important;
    overflow: visible !important;
    box-shadow: 0 4px 30px rgba(31, 72, 126, 0.3);
    z-index: 1030 !important;
}

.nav-border-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #1EAE98 50%, transparent 100%);
    opacity: 0.8;
}

.brand-glow {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    position: relative;
}

.brand-glow:hover {
    transform: scale(1.05);
}

.brand-text {
    font-family: 'Tw Cen MT', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(30, 174, 152, 0.5);
}

.img-logo {
    height: 50px;
    width: 50px;
    filter: drop-shadow(0 0 8px rgba(30, 174, 152, 0.3));
    transition: all 0.3s ease;
}

.nav-link-futuristic {
    position: relative;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
    margin: 0 0.2rem;
    padding: 0.8rem 1.2rem !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.nav-text {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.nav-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(30, 174, 152, 0.1) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 8px;
}

.nav-link-futuristic:hover .nav-glow,
.nav-link-futuristic:focus .nav-glow {
    opacity: 1;
}

.nav-link-futuristic:hover {
    color: #1EAE98 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 174, 152, 0.2);
}

.futuristic-dropdown {
    background: linear-gradient(135deg, #1f487e 0%, #0d2142 100%) !important;
    border: 1px solid rgba(30, 174, 152, 0.3);
    border-radius: 12px;
    padding: 0.5rem 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 1031;
}

.dropdown-menu {
    z-index: 1031;
}

/* Bootstrap dropdown específico */
.navbar-nav .dropdown-menu {
    z-index: 1031 !important;
    position: absolute !important;
}

.navbar-nav .dropdown-menu.show {
    z-index: 1031 !important;
    display: block !important;
}

.dropdown-item-futuristic {
    color: #ffffff !important;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 400;
    padding: 0.8rem 1.5rem;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0.2rem 0.5rem;
}

.dropdown-item-futuristic:hover {
    background: linear-gradient(45deg, rgba(30, 174, 152, 0.2) 0%, rgba(30, 174, 152, 0.1) 100%) !important;
    color: #1EAE98 !important;
    transform: translateX(5px);
}

.contact-section {
    gap: 1.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.contact-icon {
    color: #ffffff;
    width: 14px;
    text-align: center;
}

.contact-text {
    color: rgb(255, 255, 255);
    font-size: 0.8rem;
}

.social-links {
    display: flex;
    gap: 0.8rem;
}

.social-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border: 1px solid rgba(30, 174, 152, 0.3);
    border-radius: 50%;
    color: #ffffff !important;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    overflow: hidden;
}

.social-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(30, 174, 152, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover .social-glow {
    opacity: 1;
}

.social-link:hover {
    color: #ffffff !important;
    border-color: #1EAE98;
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 8px 25px rgba(30, 174, 152, 0.3);
}

.futuristic-toggler {
    border: 1px solid rgba(30, 174, 152, 0.5);
    border-radius: 8px;
    padding: 0.5rem 0.8rem;
}

.futuristic-toggler:focus {
    box-shadow: 0 0 15px rgba(30, 174, 152, 0.5);
}

@media (max-width: 992px) {
    .contact-section {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(30, 174, 152, 0.3);
    }
    
    .contact-info {
        align-items: center;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .brand-text {
        display: none;
    }
    
    .contact-item {
        font-size: 0.8rem;
    }
}

.footer-modern {
    background: linear-gradient(135deg, #1f487e 0%, #2c5aa0 50%, #1a3b6b 100%);
    position: relative;
    overflow: hidden;
    margin-top: auto;
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(30, 174, 152, 0.3);
}

.footer-content {
    padding: 2rem 0 1rem;
    position: relative;
    z-index: 2;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 60px;
    width: 60px;
    filter: brightness(1.2) drop-shadow(0 0 10px rgba(30, 174, 152, 0.3));
    transition: all 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.05);
    filter: brightness(1.3) drop-shadow(0 0 15px rgba(30, 174, 152, 0.5));
}

.footer-brand {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Tw Cen MT', sans-serif;
    text-shadow: 0 0 20px rgba(30, 174, 152, 0.3);
    background: linear-gradient(45deg, #ffffff 0%, #1EAE98 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(30, 174, 152, 0.2);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #e8f4f8;
    font-size: 1rem;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 400;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(30, 174, 152, 0.1);
    transform: translateX(5px);
}

.contact-item i {
    color: #1EAE98;
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
    filter: drop-shadow(0 0 5px rgba(30, 174, 152, 0.5));
}

.footer-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #1EAE98 20%, #ffffff 50%, #1EAE98 80%, transparent 100%);
    margin: 1rem 0 1rem;
    opacity: 0.8;
    border-radius: 1px;
    box-shadow: 0 0 10px rgba(30, 174, 152, 0.3);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(30, 174, 152, 0.1);
}

.copyright {
    color: #b8d4e3;
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Ubuntu', sans-serif;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.social-links {
    display: flex;
    gap: 1.2rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(30, 174, 152, 0.15);
    border: 2px solid rgba(30, 174, 152, 0.3);
    border-radius: 50%;
    color: #1EAE98;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(30, 174, 152, 0.2) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-links a:hover::before {
    opacity: 1;
}

.social-links a:hover {
    background: linear-gradient(45deg, #1EAE98 0%, #1f487e 100%);
    color: #ffffff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(30, 174, 152, 0.4);
    border-color: #1EAE98;
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #1EAE98 20%, #ffffff 50%, #1EAE98 80%, transparent 100%);
    opacity: 0.9;
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(30, 174, 152, 0.5);
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.9; transform: translateX(-50%) scaleX(1); }
    50% { opacity: 1; transform: translateX(-50%) scaleX(1.1); }
}

/* Efeitos de partículas decorativas */
.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 20%, rgba(30, 174, 152, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 85% 80%, rgba(31, 72, 126, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

@media (max-width: 768px) {
    .footer-content {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-bottom {
        text-align: center;
        flex-direction: column;
        gap: 1.5rem;
        padding: 1rem;
    }
    
    .footer-info {
        margin-top: 2rem;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
        margin-bottom: 1.5rem;
    }
    
    .footer-brand {
        font-size: 1.5rem;
    }
    
    .social-links {
        gap: 1.5rem;
    }
    
    .social-links a {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .contact-item {
        justify-content: center;
        text-align: left;
    }
}