/* Estilos do Logotipo CSS Movimenta */

.main-wrapper {
    display: flex;
    align-items: center;
    gap: 15px; /* Ajuste o gap se necessário */
    isolation: isolate;
}

/* Estrutura do efeito de sobreposição */
.effect-container {
    position: relative;
    text-transform: uppercase;
}

.layer-orange { 
    color: rgba(217, 79, 4, 0.85); 
    position: relative; 
    z-index: 1; 
}

.layer-blue { 
    color: rgba(2, 64, 89, 0.8); 
    position: absolute; 
    top: -5px; 
    left: -10px; 
    z-index: 2; 
    mix-blend-mode: multiply; 
    white-space: nowrap; 
}

/* Estilo da Palavra */
.word-size {
    font-size: 80px;
    font-weight: 200;
    letter-spacing: -5px;
    font-family: 'Outfit', sans-serif; /* Mantendo a coerência com o projeto */
}

/* Subtexto da Logo */
.logo-subtext {
    position: absolute;
    bottom: -2px;
    right: 0;
    font-size: 20px;
    font-weight: 600;
    color: #024059; /* Azul Escuro */
    letter-spacing: 10px;
    text-transform: uppercase;
    font-family: 'Outfit', sans-serif;
    z-index: 3;
}
