/* ===================================================
   MedicalPACS – Estilos principales
   Paleta: naranjas cálidos + marrón claro
=================================================== */

/* --- Reset & base --------------------------------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #2b1a0e 0%, #5c2e00 45%, #8b4513 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
}

/* --- Círculos decorativos de fondo ---------------- */
body::before,
body::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  opacity: 0.07;
  animation: pulse 6s ease-in-out infinite;
}

body::before {
  width: 600px;
  height: 600px;
  background: #f4a030;
  top: -150px;
  right: -150px;
}

body::after {
  width: 400px;
  height: 400px;
  background: #e87722;
  bottom: -100px;
  left: -100px;
  animation-delay: 3s;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.12); }
}

/* --- Contenedor principal ------------------------- */
.container {
  text-align: center;
  padding: 3rem 2.2rem;
  max-width: 680px;
  width: 90%;
  position: relative;
  z-index: 1;
}

/* --- Logo ----------------------------------------- */
.logo-wrap {
  margin: 0 auto 1.6rem;
}

.logo-wrap img {
  max-width: 200px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 4px 18px rgba(232, 119, 34, 0.45));
}

/* --- Nombre de marca ------------------------------ */
.brand {
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 0.3rem;
}

.brand span {
  color: #f4a030;
}

/* --- Tagline -------------------------------------- */
.tagline {
  font-size: 0.9rem;
  color: rgba(255, 220, 170, 0.65);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 2.2rem;
}

/* --- Divisor -------------------------------------- */
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #f4a030, #c05a00);
  border-radius: 2px;
  margin: 0 auto 2.2rem;
}

/* --- Badge en construcción ------------------------ */
.construction-badge {
  display: inline-block;
  background: rgba(244, 160, 48, 0.12);
  border: 1px solid rgba(244, 160, 48, 0.4);
  color: #f4a030;
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 0.45rem 1.3rem;
  border-radius: 20px;
  margin-bottom: 1.8rem;
}

/* --- Título principal ----------------------------- */
h1 {
  font-size: 1.85rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.35;
}

/* --- Descripción ---------------------------------- */
.description {
  font-size: 1rem;
  color: rgba(255, 220, 170, 0.7);
  line-height: 1.75;
  margin-bottom: 2.8rem;
}

/* --- Bloque de contacto -------------------------- */
.contact-block {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(244, 160, 48, 0.2);
  border-radius: 14px;
  padding: 1.8rem 2rem;
}

.contact-block p {
  font-size: 0.78rem;
  color: rgba(255, 220, 170, 0.5);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.contact-block a {
  color: #f4a030;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.22s ease;
}

.contact-block a:hover {
  color: #ffc878;
}

/* --- Pie de página -------------------------------- */
.footer-note {
  margin-top: 2.5rem;
  font-size: 0.75rem;
  color: rgba(255, 220, 170, 0.25);
  letter-spacing: 1px;
}
