/* Omint — página de indisponibilidade temporária */

:root {
  --navy: #102a46;
  --navy-dark: #0b1f35;
  --blue: #003878;
  --gold: #b1a070;
  --text: #4f4f4f;
  --text-light: #68788c;
  --bg-light: #f5f6f8;
  --white: #ffffff;
  --border: #e4e4e4;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
}

a {
  color: inherit;
}

/* Header */

.topbar {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.topbar .wrap {
  display: flex;
  justify-content: center;
}

.logo {
  height: 30px;
  width: auto;
  display: block;
}

/* Hero */

.hero {
  padding: 64px 0 48px;
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid var(--gold);
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

h1 {
  color: var(--navy);
  font-size: 2rem;
  line-height: 1.3;
  margin: 0 0 20px;
  font-weight: 700;
}

.lead {
  max-width: 480px;
  margin: 0 auto;
  color: var(--text-light);
  font-size: 1.05rem;
}

.illustration {
  margin: 48px auto 0;
  width: 180px;
}

.illustration svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Contact card */

.contact {
  background: var(--bg-light);
  padding: 48px 0 64px;
}

.card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(16, 42, 70, 0.08);
  padding: 36px 32px;
  text-align: center;
}

.card h2 {
  color: var(--navy);
  font-size: 1.3rem;
  margin: 0 0 8px;
}

.card > p {
  color: var(--text-light);
  margin: 0 0 24px;
  font-size: 0.95rem;
}

.phones {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}

.phones li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.phones li:last-child {
  border-bottom: none;
}

.phones .label {
  color: var(--text);
  font-size: 0.92rem;
}

.phones a {
  color: var(--blue);
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  white-space: nowrap;
}

.phones a:hover,
.phones a:focus-visible {
  text-decoration: underline;
}

/* Footer */

footer {
  background: var(--navy);
  padding: 40px 0;
}

.social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.social a {
  color: #bccce0;
  display: flex;
  transition: color 0.15s ease;
}

.social a:hover,
.social a:focus-visible {
  color: var(--gold);
}

.copy {
  text-align: center;
  color: #7d8ea3;
  font-size: 0.8rem;
  margin: 0;
}

/* Responsive */

@media (max-width: 520px) {
  .hero {
    padding: 44px 0 36px;
  }

  h1 {
    font-size: 1.6rem;
  }

  .lead {
    font-size: 0.98rem;
  }

  .illustration {
    width: 140px;
    margin-top: 36px;
  }

  .card {
    padding: 28px 20px;
  }

  .phones li {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}
