* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  padding: 36px 20px;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  color: #24364b;
  text-align: center;

  background:
    linear-gradient(
      rgba(245, 248, 252, 0.28),
      rgba(245, 248, 252, 0.40)
    ),
    url("../../banner-conectadata.png");

  background-repeat: no-repeat;
  background-size: min(1500px, 96vw) auto;
  background-position: center center;
  background-attachment: scroll;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.foto-perfil {
  width: 155px;
  height: 155px;
  max-width: 155px;
  max-height: 155px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  display: block;
  margin: 0 auto 30px auto;
  border: 4px solid #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.20);
}

h1 {
  margin: 0 0 18px;
  font-size: 3.4rem;
  line-height: 1.1;
  color: #1f2d3d;
  font-weight: 800;
  text-shadow: 0 2px 12px rgba(255, 255, 255, 0.75);
}

p {
  max-width: 900px;
  margin: 0 auto 34px;
  font-size: 1.45rem;
  line-height: 1.5;
  color: #34495e;
  text-shadow: 0 2px 12px rgba(255, 255, 255, 0.75);
}

.construccion {
  max-width: 980px;
  margin: 0 auto 44px;
  padding: 24px 34px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(120, 145, 175, 0.32);
  border-radius: 18px;
  color: #24364b;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(31, 45, 61, 0.10);
  backdrop-filter: blur(6px);
}

a.button {
  display: inline-block;
  min-width: 180px;
  margin: 10px 16px;
  padding: 17px 34px;
  background: #0a7bd3;
  color: #ffffff;
  border-radius: 16px;
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(10, 123, 211, 0.28);
  transition: all 0.25s ease;
}

a.button:hover {
  background: #075fa7;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(10, 123, 211, 0.34);
}

footer {
  margin-top: 46px;
  font-size: 1rem;
  color: #6f7f8f;
  text-shadow: 0 2px 12px rgba(255, 255, 255, 0.75);
}

@media (max-width: 700px) {
  body {
    padding: 28px 16px;
    background-size: 980px auto;
    background-position: center top;
  }

  .foto-perfil {
    width: 135px;
    height: 135px;
    max-width: 135px;
    max-height: 135px;
    margin-bottom: 24px;
  }

  h1 {
    font-size: 2.4rem;
  }

  p {
    font-size: 1.1rem;
  }

  .construccion {
    padding: 18px 20px;
    font-size: 1rem;
  }

  a.button {
    display: block;
    width: 100%;
    max-width: 290px;
    margin: 12px auto;
  }
}
