.card-refino:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a202c;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.page-transition.active {
    opacity: 1;
    pointer-events: all;
}

.loader {
    width: 48px;
    height: 48px;
    border: 5px solid #4a5568;
    border-bottom-color: #4299e1;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.content-wrapper {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.content-wrapper.fade-out {
    opacity: 0;
}

/* Garante que o conteúdo fique oculto durante o carregamento */
.content-wrapper[style*="opacity:0"] {
    display: block !important;
    visibility: hidden;
}

.content-wrapper {
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Idiomas */
.language-selector img {
  width: 40px;
  height: 28px;
  cursor: pointer;
  margin-right: 10px;
  transition: transform 0.2s;
}

.language-selector img:hover {
  transform: scale(1.1);
}

.footer-language {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-selector {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Logo */
.logo {
    max-width: 180px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 24px var(--primary));
	align-items: center;
}

.pulse-logo {
    animation: pulse 1.6s infinite;
    box-shadow: 0 0 0 0 rgba(0, 255, 245, 0.7);
    transition: box-shadow 0.3s;
}