/* styles.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
  background: url('https://morphoco.com/fondo-coming-soon.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #fff;
}

.overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  animation: fadeIn 2s ease-out;
}

.logo {
  width: 150px;
  max-width: 80%;
  margin-bottom: 30px;
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
  animation: zoomIn 1.5s ease-out;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

p {
  font-size: 1.2rem;
  max-width: 600px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.links a {
  display: inline-block;
  margin: 0 10px 10px;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: opacity 0.3s;
}

.links a i {
  margin-right: 8px;
  vertical-align: middle;
}

.btn-whatsapp {
  background-color: #25d366;
  color: #fff;
}

.btn-whatsapp:hover { opacity: 0.8; }

.btn-mail {
  background-color: #0072c6;
  color: #fff;
}

.btn-mail:hover { opacity: 0.8; }

.btn-social {
  background-color: rgba(255,255,255,0.2);
  color: #fff;
}

.btn-social:hover { opacity: 0.8; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  p { font-size: 1rem; }
  .links a { padding: 10px 20px; font-size: 0.95rem; }
}
