* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  background-color: #f5f5f5;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.logo_cont {
  display: flex;
  width: 100%;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
  padding: 20px;
}

.under_construction_block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 100%;
}

.logo_img {
  display: block;
  max-width: 100%;
  max-height: 50vh;
  height: auto;
  width: auto;
}

/* ——— Sitio en construcción ——— */
.construction_message {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border: 2px dashed #21355A;
  border-radius: 8px;
  background: rgba(33, 53, 90, 0.04);
}

.construction_icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  color: #21355A;
  animation: construction-pulse 2s ease-in-out infinite;
}

.construction_icon svg {
  width: 100%;
  height: 100%;
}

.construction_text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #21355A;
  letter-spacing: 0.02em;
}

.construction_sub {
  font-size: 0.9rem;
  color: #575757;
}

@keyframes construction-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.05); }
}
