*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: #ffffff;
  background: #92b4c3;
  line-height: 1.4;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.construction-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.construction-content {
  text-align: center;
}

.logo-round {
  width: 150px;
  height: 150px;
  margin: 0 auto 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.construction-title {
  font-size: 2.5rem;
  margin-bottom: 1.8rem;
  letter-spacing: 0.05em;
}

.title-part-cyan {
  color: #8ff3ff;
  margin-right: 0.35rem;
}

.title-part-pink {
  color: #dab7cb;
}

.construction-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 3rem;
}

.actions-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.pill-button {
  padding: 0.7rem 1.8rem;
  border-radius: 999px;
  border: 2px solid #ffffff;
  background-color: transparent;
  font-size: 0.95rem;
  font-weight: 500;
  color: #ffffff;
  min-width: 220px;
  text-align: center;
}

.pill-phone {
  background-color: rgba(255, 255, 255, 0.16);
}

.pill-whatsapp {
  background-color: rgba(255, 255, 255, 0.16);
}

.social-bubbles {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.social-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #92b4c3;
  transition: transform 0.2s ease;
}

.social-circle:hover {
  transform: scale(1.1);
}

.social-circle svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .construction-title {
    font-size: 2rem;
  }

  .actions-row {
    flex-direction: column;
    gap: 1.4rem;
  }
}

