body {
  height: 100vh;
  width: 100vw;
  margin: 0;
  background-color: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* 🔵 Contenedor del logo */
.container {
  width: 200px;
  height: 190px;
  border: 1px solid #fff;
  border-radius: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: #0c0c0c;
  overflow: visible;
  box-sizing: border-box; /* asegura que el borde esté fuera del contenido */
}

/* 💫 Destello detrás del contenedor */
.container::before {
  content: "";
  position: absolute;
  top: 80px;
  left: 0px;
  right: 10px;
  bottom: -80px;
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(209, 219, 224, 0.48), transparent 70%);
  filter: blur(40px);
  z-index: -1;
  animation: pulse 3s ease-in-out infinite;
}

/* ✨ Animación del resplandor */
@keyframes pulse {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1.5);
  }
  50% {
    opacity: 1;
    transform: scale(2.5);
  }
}

/* 🎯 Ícono centrado */
.icon {
  width: 130px;
  height: 145px;
  color: white;
  display: block;
}

/* 👇 Texto debajo del logo */
h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 700; /* equivale a Inter_18pt-Bold */
  font-size: 50px;
  color: white;
  margin-top: 40px;
  text-align: center;
  margin-bottom: 0;
}

h2 {
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    margin-top: 20px;
    font-size: 20px;
}

/* ----- Artes decorativas ----- */
:root {
  --art-w: clamp(220px, 32vw, 1080px);
}

/* 🎨 Imagen decorativa izquierda */
body::before {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  width: var(--art-w);
  height: 0vh;
  background: url("./ilustracion_fondo_DAMCONTROL.png") no-repeat left center / contain;
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
  transform: rotate(17deg);
}

/* 🎨 Imagen decorativa derecha inferior (pegada) */
body::after {
  content: "";
  position: fixed;
  right: 0;
  bottom: 0;
  width: var(--art-w);
  height: 0vh;
  background: url("./ilustracion_fondo_DAMCONTROL.png") no-repeat right bottom / contain;
  opacity: 0.8;
  pointer-events: none;
  z-index: 0;

  /* 👇 clave para que NO se despegue al rotar */
  transform-origin: right bottom;
  transform: rotate(330deg) scaleX(-1);
}

/* (opcional) si aún ves “aire” porque tu PNG tiene padding transparente,
   empuja un poco la imagen hacia la esquina: */
@supports (background-position: right -1px bottom -1px) {
  body::after {
    background-position: right -24px bottom -16px; /* ajusta a gusto */
  }
}

/* Ajustes para pantallas medianas */
@media (max-width: 900px) {
  :root { --art-w: clamp(160px, 38vw, 360px); }
  body::before,
  body::after {
    opacity: 0.6;
    transform: scale(0.9);
  }
}

/* En móviles pequeños, quita las dos ilustraciones */
@media (max-width: 560px) {
  body::before,
  body::after {
    display: none;
  }
}
