#coagro-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #f0f4f8;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  transition: opacity 1.2s ease, visibility 1.2s ease;  
}

#coagro-preloader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 1s ease, visibility 1s ease;
}
   
.coagro-loader-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: fadeInBlur 1.4s ease forwards;
}

.coagro-loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  position: relative;
}

.coagro-logo {
  width: 300px;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(0, 174, 255, 0.6));
}

.coagro-internacional {
  margin-top: 20px;
  font-size: 24px;
  font-weight: 700;
  color: #0056b3;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 3px;
  text-shadow: 0 0 6px rgba(0, 86, 179, 0.2);
  background: rgba(255, 255, 255, 0.7);
  border: 2px solid #0056b3;
  border-radius: 50px;
  padding: 6px 20px;
  display: inline-block;
  opacity: 0;
  transform: scale(0.8);
  animation: sealAppear 2.5s ease 1.2s forwards;
}

.coagro-loader-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 280px;
  height: 280px;
  margin-top: -140px;
  margin-left: -140px;
  border-radius: 50%;
  border: 6px solid rgba(0, 0, 0, 0.05);
  border-top: 6px solid #00aefd;
  animation: spinRing 2s linear infinite;
}

@keyframes spinRing {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes sealAppear {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes fadeInBlur {
  0% {
    filter: blur(10px);
    opacity: 0;
  }
  100% {
    filter: blur(0);
    opacity: 1;
  }
}  