/* Landing Mi Jardín Junji - Aviso importante */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100vh;
  background-color: #209f9b;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem 12rem;
  position: relative;
}

.card {
  width: 100%;
  max-width: 900px;
  min-height: 320px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: row;
  overflow: hidden;
}

.card-left {
  flex: 0 0 42%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.logo-wrap {
  text-align: center;
}

.logo-icon {
  width: 140px;
  height: 140px;
  margin: 0 auto;
}

.logo-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.brand {
  margin: 1rem 0 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #209f9b;
}

.brand-light {
  font-weight: 400;
  color: #5eb5b2;
}

.card-right {
  flex: 1 1 58%;
  background: #f8f9fa;
  padding: 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.aviso-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 1.25rem;
  width: 100%;
}

.aviso-body {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin: 0;
  width: 100%;
}

.wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  min-height: 160px;
  pointer-events: none;
}

/* Responsive: una columna en móvil */
@media (max-width: 799px) {
  .page {
    padding: 1.5rem 1rem 10rem;
  }

  .card {
    flex-direction: column;
    max-width: 420px;
    min-height: auto;
  }

  .card-left {
    flex: none;
    padding: 2rem 2rem 0;
  }

  .logo-icon {
    width: 100px;
    height: 100px;
  }

  .brand {
    font-size: 1.25rem;
  }

  .card-right {
    flex: none;
    padding: 1.5rem 2rem 2rem;
    align-items: center;
    text-align: center;
  }

  .aviso-title {
    font-size: 1.25rem;
    text-align: center;
  }

  .aviso-body {
    text-align: center;
  }
}
