@font-face {
  font-family: "Neue Plak Extended";
  src: url("./fonts/NeuePlakExtended-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neue Plak Extended";
  src: url("./fonts/NeuePlakExtended-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neue Plak Extended";
  src: url("./fonts/NeuePlakExtended-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("./fonts/Montserrat-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #050505;
  --ink: #1f1f1f;
  --accent: #f5b301;
  --accent-dark: #1d1d1d;
  --text-dark: #373435;
  --text-light: #fefefe;
  --divider: #c4c4c4;
  font-family: "Neue Plak Extended", "Montserrat", system-ui, -apple-system, BlinkMacSystemFont,
    sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #ffffff;
  color: var(--text-dark);
}

img {
  max-width: 100%;
  display: block;
}

button {
  font: inherit;
  border: none;
  background: none;
  padding: 0;
}

.page {
  min-height: 100vh;
  background: #fff url("./assets/bg-manutencao.png") center/cover no-repeat;
  padding: 16px clamp(16px, 4vw, 64px) 48px;
  display: flex;
  flex-direction: column;
}

.header {
  background: var(--black);
  border-radius: 999px;
  padding: 12px 24px;
  color: var(--text-light);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 4vw, 48px);
}

.header__logo {
  width: clamp(110px, 12vw, 150px);
  height: auto;
}

.header__actions {
  display: flex;
  gap: 12px;
}

.icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: background 0.2s ease;
}

.icon-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

.icon-btn svg {
  width: 18px;
  height: 18px;
  stroke: var(--text-light);
  stroke-width: 1.5;
  fill: none;
}

.maintenance {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: clamp(32px, 4vw, 72px) clamp(8px, 2vw, 16px);
}

.maintenance__left {
  padding: clamp(24px, 3vw, 48px);
  border-radius: 16px;
  max-width: 520px;
  margin-left: clamp(0px, 12vw, 300px);
}

.warning {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  color: var(--text-dark);
}

.warning__icon {
  width: clamp(72px, 12vw, 95px);
}

.warning h1 {
  margin: 0 0 16px;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
}

.divider {
  width: 100%;
  height: 2px;
  background: var(--divider);
  margin-bottom: 20px;
}

.warning p {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ink);
  max-width: 37ch;
}

.note {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ink);
  margin-top: 0;
}


.cta {
  margin-top: clamp(02px, 1vw, 48px);
  background: #050505;
  color: var(--text-light);
  border-radius: 0px;
  padding: 12px 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

@media (max-width: 1024px) {
  .page {
    padding: 24px clamp(16px, 5vw, 40px) 32px;
  }

  .maintenance {
    justify-content: center;
    align-items: center;
    padding: clamp(24px, 6vw, 56px) 0;
    min-height: calc(100vh - 48px);
  }

  .maintenance__left {
    margin: 0 auto;
    width: min(560px, 100%);
  }
}

@media (max-width: 768px) {
  .page {
    padding: 16px;
  }

  .maintenance {
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 32px);
  }

  .maintenance__left {
    padding: 32px 24px;
    width: min(520px, 100%);
  }

  .warning {
    align-items: center;
    text-align: center;
  }

  .warning__icon {
    width: 64px;
  }

  .warning h1 {
    font-size: clamp(1.9rem, 8vw, 2.3rem);
  }

  .warning p,
  .note {
    font-size: 0.95rem;
  }

  .cta {
    width: 100%;
    justify-content: center;
    text-align: center;
    letter-spacing: 0.08em;
  }
}

@media (max-width: 480px) {
  .maintenance__left {
    padding: 28px 20px;
  }

  .warning {
    gap: 12px;
  }

  .warning h1 {
    font-size: 1.8rem;
  }

  .warning p,
  .note {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .cta {
    padding: 14px 18px;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
  }
}

@media (max-width: 640px) {
  .header {
    border-radius: 40px;
  }

  .header__inner {
    flex-direction: column;
    gap: 16px;
  }

  .warning {
    flex-direction: column;
  }

  .warning__icon {
    width: 70px;
  }

  .maintenance {
    justify-content: center;
  }
}
