/* Animações e estilos para destacar o logo */

/* Animação de pulso suave para o logo */
@keyframes logo-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Animação de rotação suave para o símbolo */
@keyframes logo-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Animação de brilho para o logo */
@keyframes logo-glow {
    0% { filter: drop-shadow(0 0 2px rgba(42, 157, 143, 0.3)); }
    50% { filter: drop-shadow(0 0 8px rgba(42, 157, 143, 0.6)); }
    100% { filter: drop-shadow(0 0 2px rgba(42, 157, 143, 0.3)); }
}

/* Classe para o logo flutuante fixo */
.floating-logo {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    z-index: 99;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: logo-pulse 3s infinite ease-in-out;
}

.floating-logo:hover {
    animation: logo-glow 2s infinite ease-in-out;
}

/* Logo destacado no hero */
.hero-logo {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    opacity: 0.9;
    z-index: 2;
}

/* Logo animado na seção de destaque */
.logo-highlight-animated {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.logo-highlight-animated img {
    max-width: 200px;
    transition: all 0.5s ease;
}

.logo-highlight-animated:hover img {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(42, 157, 143, 0.7));
}

/* Logo como elemento de navegação */
.logo-nav-indicator {
    position: absolute;
    width: 30px;
    height: 30px;
    left: -40px;
    opacity: 0;
    transition: all 0.3s ease;
}

.nav-menu li:hover .logo-nav-indicator {
    opacity: 1;
    left: -30px;
}

/* Logo como marca d'água em seções */
.logo-watermark {
    position: absolute;
    opacity: 0.08;
    z-index: 0;
}

.logo-watermark.top-right {
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
}

.logo-watermark.bottom-left {
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
}

.logo-watermark.center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    opacity: 0.05;
}

/* Logo como divisor de seções */
.logo-divider {
    position: relative;
    height: 80px;
    margin: 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-divider::before,
.logo-divider::after {
    content: '';
    height: 2px;
    background-color: var(--primary-color);
    flex: 1;
}

.logo-divider img {
    width: 60px;
    height: 60px;
    margin: 0 20px;
}

/* Logo como ícone de loading */
.logo-loader {
    width: 80px;
    height: 80px;
    animation: logo-rotate 3s infinite linear;
}
