/* Estilos do Logo Mercado Naval - Design Moderno e Elegante */

/* Logo do Header */
.logo-container {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 8px 16px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.logo-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(3, 34, 99, 0.05) 0%, rgba(255, 128, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logo-container:hover::before {
    opacity: 1;
}

.logo-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.logo-image {
    height: 48px;
    width: auto;
    margin-right: 12px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.logo-container:hover .logo-image {
    transform: scale(1.05);
}

.header-logo {
    font-family: 'Arial', sans-serif;
    font-size: 1.75rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

/* Logo do Footer */
.footer-logo-container {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 20px;
    border-radius: 20px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.footer-logo-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(3, 34, 99, 0.1) 0%, rgba(255, 128, 0, 0.1) 100%);
    opacity: 0.8;
}

.footer-logo-image {
    height: 40px;
    width: auto;
    margin-right: 14px;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.2));
    position: relative;
    z-index: 1;
}

.footer-logo {
    font-family: 'Arial', sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

/* Cores das palavras */
.mercador {
    color: #032263;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.naval {
    color: #FF8000;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Responsividade */
@media (max-width: 768px) {
    .header-logo {
        font-size: 1.4rem;
    }
    
    .logo-image {
        height: 40px;
        margin-right: 10px;
    }
    
    .logo-container {
        padding: 6px 12px;
        border-radius: 12px;
    }
    
    .footer-logo {
        font-size: 1.25rem;
    }
    
    .footer-logo-image {
        height: 32px;
        margin-right: 10px;
    }
    
    .footer-logo-container {
        padding: 8px 16px;
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .header-logo {
        font-size: 1.2rem;
    }
    
    .logo-image {
        height: 36px;
        margin-right: 8px;
    }
    
    .footer-logo {
        font-size: 1.1rem;
    }
    
    .footer-logo-image {
        height: 28px;
        margin-right: 8px;
    }
}

/* Animação sutil para o logo */
@keyframes logoGlow {
    0%, 100% {
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    }
    50% {
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 0 10px rgba(3, 34, 99, 0.3);
    }
}

.logo-container:hover .mercador {
    animation: logoGlow 2s ease-in-out infinite;
}
