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

body {
  font-family: "Georgia", "Times New Roman", serif;
  background-color: #ffffff;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #3a5a40; /* verde suave acorde al logo [web:10] */
}

.container {
  text-align: center;
}

.logo-wrapper {
  width: 220px;
  height: 220px;
  margin: 0 auto 10px auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  max-width: 100%;
  height: auto;
  animation: heartbeat 1.6s infinite ease-in-out; /* efecto latido [web:7][web:10] */
}

/* Latido suave: se agranda y encoge ligeramente */
@keyframes heartbeat {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.06);
  }
  40% {
    transform: scale(1);
  }
  60% {
    transform: scale(1.04);
  }
  100% {
    transform: scale(1);
  }
}

.brand {
  font-family: "Brush Script MT", "Lucida Handwriting", cursive;
  font-size: 2.8rem;
  color: #3f5d3b; /* verde principal */
  letter-spacing: 0.05em;
}

.tagline {
  margin-top: -4px;
  font-size: 1rem;
  color: #b28a5a; /* tono tierra/dorado como las raíces del logo [web:7] */
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.construction-text {
  margin-top: 20px;
  font-size: 1rem;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  color: #4a4a4a;
  line-height: 1.4;
}
