/* ==========================================================================
   DEVAYA — Design System
   Paleta: navy #0A1020 + dourado #ECA202
   Tipografia: Sora (display) + Work Sans (texto)
   ========================================================================== */

:root {
  /* Cores */
  --navy-950: #0a1020;
  --navy-900: #10162a;
  --navy-800: #161d35;
  --gold-500: #eca202;
  --gold-400: #f4bc3d;
  --gold-100: #fdf1d6;
  --paper: #ffffff;
  --mist: #f6f5f2;
  --ink-900: #14161f;
  --ink-600: #4b5061;
  --ink-400: #7b8094;
  --line: #e7e5e0;
  --line-dark: rgba(255, 255, 255, 0.12);

  /* Tipografia */
  --font-display: "Sora", "Work Sans", sans-serif;
  --font-body: "Work Sans", sans-serif;

  /* Layout */
  --container-w: 960px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-soft: 0 10px 30px rgba(10, 16, 32, 0.06);
  --shadow-card: 0 14px 40px rgba(10, 16, 32, 0.08);
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--paper);
  color: var(--ink-600);
  line-height: 1.6;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--navy-950);
  line-height: 1.15;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.section-title {
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-lead {
  color: var(--ink-400);
  font-size: 1.02rem;
  max-width: 640px;
}

.section-head {
  margin-bottom: 2.5rem;
}

.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-head.center .section-lead {
  margin-left: auto;
  margin-right: auto;
}

#ceo .section-head .section-lead {
  white-space: nowrap;
  max-width: none;
}

@media (max-width: 900px) {
  #ceo .section-head .section-lead {
    white-space: normal;
  }
}

section {
  padding: 4.5rem 0;
}

@media (max-width: 700px) {
  section {
    padding: 3rem 0;
  }
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    color 0.18s ease;
}

.btn-primary {
  background: var(--gold-500);
  color: var(--navy-950);
}

.btn-primary:hover {
  background: var(--gold-400);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(236, 162, 2, 0.28);
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--navy-950);
}

.btn-ghost:hover {
  border-color: var(--navy-950);
  transform: translateY(-2px);
}

.btn-ghost.on-dark {
  border-color: var(--line-dark);
  color: #fff;
}

.btn-ghost.on-dark:hover {
  border-color: #fff;
}

.btn-submit {
  background: var(--gold-500);
  color: var(--navy-950);
  border: none;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.btn-submit:hover {
  background: var(--navy-950);
  color: #fff;
}

/* ==========================================================================
   Header
   ========================================================================== */

.header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition:
    padding 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.header.sticky {
  padding: 0.7rem 1.5rem;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 24px rgba(10, 16, 32, 0.06);
}

/* Menu mobile (toggle) */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle .hamburger {
  display: inline-block;
  width: 22px;
  height: 2px;
  background: var(--navy-950);
  position: relative;
}

.nav-toggle .hamburger::before,
.nav-toggle .hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--navy-950);
}

.nav-toggle .hamburger::before {
  top: -6px;
}

.nav-toggle .hamburger::after {
  top: 6px;
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
  }

  .header-nav {
    display: none;
    position: fixed;
    top: 68px;
    right: 20px;
    width: calc(100% - 40px);
    max-width: 320px;
    background: var(--paper);
    padding: 1rem;
    flex-direction: column;
    gap: 0.75rem;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(10, 16, 32, 0.12);
    z-index: 1200;
  }

  body.nav-open .header-nav {
    display: flex;
  }

  .header-nav a {
    padding: 0.6rem 0.35rem;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 0.95rem 1.2rem;
    font-size: 1rem;
  }
  .btn-submit {
    padding: 0.95rem 1.2rem;
  }
}

/* Container central com espaçamento lateral profissional */
.container {
  /* largura será no máximo a variável do container e no mínimo o espaço disponível menos 40px
     (garante 20px de margem em cada lado). Mantém conteúdo centralizado em telas maiores. */
  width: min(var(--container-w), calc(100% - 40px));
  margin-left: max(20px, calc((100% - var(--container-w)) / 2));
  margin-right: max(20px, calc((100% - var(--container-w)) / 2));
  box-sizing: border-box;
}

@media (max-width: 720px) {
  .container {
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-right: 20px;
  }
}

/* Popup styles removed (não utilizado) */

.logo {
  display: flex;
  align-items: center;
  margin: 0 auto;
}

.logo-img {
  display: block;
  height: 58px;
  width: auto;
  object-fit: contain;
}

.header-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--navy-950);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-icon {
  width: 18px;
  height: 18px;
  color: var(--ink-400);
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link:hover .nav-icon {
  color: var(--gold-500);
}

.nav-cta {
  padding: 0.55rem 1.15rem;
  font-size: 0.85rem;
}

@media (max-width: 760px) {
  .header-nav span {
    display: none;
  }
  .header-nav {
    gap: 1.25rem;
  }
  .nav-cta span {
    display: inline;
  }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  padding: 4.5rem 0 3.5rem;
  overflow: hidden;
}

.hero-ring {
  display: none; /* decoração removida */
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-title {
  font-size: clamp(2.3rem, 4.4vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}

.hero-title .highlight {
  color: var(--gold-500);
}

.hero-description {
  font-size: 1.08rem;
  color: var(--ink-600);
  max-width: 560px;
  margin-bottom: 1.5rem;
  text-align: justify;
  text-justify: inter-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

.hero-description strong {
  color: var(--navy-950);
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  color: var(--ink-400);
}

.hero-note .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-500);
  flex-shrink: 0;
  box-shadow: 0 0 0 4px var(--gold-100);
}

.hero-card {
  position: relative;
  background: var(--paper); /* card claro */
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  color: var(--navy-950);
  box-shadow: var(--shadow-soft);
}

.hero-card-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-400);
  font-weight: 700;
  margin-bottom: 1.1rem;
}

.hero-stat-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-stat {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.hero-stat:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hero-stat-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(236, 162, 2, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-stat-icon svg {
  width: 19px;
  height: 19px;
  stroke: var(--gold-400);
}

.hero-stat h4 {
  color: var(--navy-950);
  font-size: 0.98rem;
  margin-bottom: 0.2rem;
}

.hero-stat p {
  color: var(--ink-600);
  font-size: 0.86rem;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-description {
    max-width: none;
  }
  .hero-ring {
    opacity: 0.5;
    width: 420px;
    height: 420px;
    top: -80px;
    right: -140px;
  }
}

/* ==========================================================================
   Serviços
   ========================================================================== */

.services-section {
  background: var(--mist);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  box-sizing: border-box;
}

.services-grid {
  display: grid;
  /* responsivo: card mínimo e centralização automática */
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  justify-items: center;
  justify-content: center;
}

.service-card {
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;

  width: 100%;
  max-width: 360px;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--gold-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold-500);
  stroke-width: 1.8;
}

.service-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--ink-400);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Ajustes responsivos: evitar overflow do ícone e opção de ocultar em telas muito pequenas */
@media (max-width: 560px) {
  .service-card {
    padding: 1.25rem;
  }

  .service-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    margin-bottom: 0.75rem;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .service-icon svg {
    width: 20px;
    height: 20px;
  }
}

/* Em telas muito pequenas opcionalmente ocultamos o ícone para evitar que saia do layout */
@media (max-width: 420px) {
  .service-icon {
    display: none;
  }

  .service-card {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* ==========================================================================
   Sobre / CEO + Missão-Visão-Valores
   ========================================================================== */

.about-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.about-photo-wrap {
  text-align: center;
}

.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Centralizar verticalmente o bloco de texto ao lado da foto */
.about-grid {
  align-items: center; /* garante centralização vertical */
}

@media (min-width: 900px) {
  .about-copy {
    transform: none; /* remove deslocamento e usa alinhamento de grid */
  }
}

@media (min-width: 900px) {
  .section-head {
    transform: translateY(-10px);
  }
}

.about-photo {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--navy-950);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* LinkedIn badge over CEO photo */
.about-photo {
  position: relative;
}

.ceo-linkedin {
  position: absolute;
  left: 10px;
  bottom: 10px;
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy-950);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(10, 16, 32, 0.12);
  text-decoration: none;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease;
}

.ceo-linkedin svg {
  width: 18px;
  height: 18px;
}

.ceo-linkedin:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(10, 16, 32, 0.16);
}

.about-name {
  margin-top: 1rem;
  font-size: 1.05rem;
  color: var(--navy-950);
}

.about-role {
  font-size: 0.88rem;
  color: var(--gold-500);
  font-weight: 700;
}

/* Centraliza nome e cargo sob a foto */
.about-photo-wrap .about-name,
.about-photo-wrap .about-role {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.about-copy .underline-text {
  text-decoration: underline;
  text-decoration-color: var(--gold-500);
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
  color: var(--navy-950);
  font-weight: 600;
}

.about-copy p {
  margin-top: 0.9rem;
  color: var(--ink-600);
  text-align: justify;
  text-justify: inter-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

.mvv-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  border-top: 1px solid var(--line);
  padding-top: 2.25rem;
}

.mvv-item {
  display: flex;
  gap: 0.9rem;
}

.mvv-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--gold-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mvv-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold-500);
}

.mvv-item h4 {
  font-size: 0.98rem;
  margin-bottom: 0.25rem;
}

.mvv-item p {
  font-size: 0.88rem;
  color: var(--ink-400);
  line-height: 1.45;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-photo-wrap {
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    text-align: center;
  }
  .mvv-strip {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .about-photo img {
    object-position: center;
  }
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-section {
  background: var(--mist);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  box-sizing: border-box;
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  background: var(--paper);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.35rem;
  background: transparent;
  color: var(--navy-950);
  border: none;
  text-align: left;
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  font-family: var(--font-body);
}

.faq-icon {
  font-weight: 700;
  color: var(--gold-500);
  flex-shrink: 0;
}

.faq-content {
  padding: 0 1.35rem 1.25rem;
  color: var(--ink-600);
  font-size: 0.94rem;
}

.faq-item:not(.open) .faq-content {
  display: none;
}

/* Destaque amarelo quando a pergunta estiver expandida */
.faq-item {
  transition:
    background 0.18s ease,
    box-shadow 0.18s ease;
}

.faq-item.open {
  background: var(--gold-500);
  box-shadow: 0 8px 24px rgba(10, 16, 32, 0.06);
}

.faq-item.open .faq-toggle {
  color: var(--navy-950);
}

.faq-item.open .faq-icon {
  color: var(--navy-950);
}

.faq-item.open .faq-content {
  color: var(--navy-950);
}

/* Estilos do formulário de contato removidos (site sem formulário de contato). */

/* ==========================================================================
   Form messages / validation
   ========================================================================== */

.form-message {
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
}

.form-message--success {
  background: rgba(37, 211, 102, 0.08);
  color: #116530;
  border: 1px solid rgba(37, 211, 102, 0.18);
}

.form-message--error {
  background: rgba(220, 53, 69, 0.08);
  color: #8b1e12;
  border: 1px solid rgba(220, 53, 69, 0.18);
}

.invalid {
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.12);
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.6);
  border-top: 1px solid var(--line-dark);
  padding: 1.35rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-copyright {
  font-size: 0.8rem;
  text-align: center;
}

/* ==========================================================================
   Login / Cliente / Intranet (páginas internas)
   ========================================================================== */

.login-section {
  padding: 3.5rem 0;
  background: var(--paper);
}

.login-wrapper {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 2.5rem;
  align-items: start;
}

.login-left .section-title {
  color: var(--navy-950);
}

.login-left .section-lead {
  color: var(--ink-400);
  margin-bottom: 1rem;
}

.login-features {
  list-style: none;
  padding-left: 0;
  color: var(--ink-600);
  display: grid;
  gap: 0.5rem;
}

.login-features li {
  padding-left: 1.3rem;
  position: relative;
}

.login-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-500);
}

.login-panel {
  width: 100%;
  background: var(--mist);
  padding: 1.75rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.login-form .form-group label {
  font-size: 0.85rem;
}

.password-wrapper {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.password-wrapper input {
  flex: 1 1 auto;
}

.password-toggle {
  background: transparent;
  border: 1px solid var(--line);
  padding: 0.5rem 0.7rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 700;
  color: var(--ink-600);
}

.login-opts {
  align-items: center;
  justify-content: space-between;
}

.forgot-link {
  color: var(--navy-950);
  text-decoration: underline;
  font-size: 0.88rem;
}

.recovery-form .form-row {
  display: flex;
  gap: 0.5rem;
  justify-content: space-between;
  margin-top: 0.75rem;
}

@media (max-width: 900px) {
  .login-wrapper {
    grid-template-columns: 1fr;
  }
}

/* Utilitário: texto justificado para parágrafos específicos */
.text-justify {
  text-align: justify;
  text-justify: inter-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

/* Justificar todos os parágrafos do conteúdo principal (padrão)
   Exceto o rodapé, que permanece centralizado por legibilidade. */
p {
  text-align: justify;
  text-justify: inter-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

/* Preserva o alinhamento central do footer */
.footer p,
.footer .footer-copyright {
  text-align: center;
}

/* ==========================================================================
   Utilidades / Acessibilidade
   ========================================================================== */

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* Popup: Site em construção (simples, menor) */
.construction-popup {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  padding: 0.75rem;
}

.construction-popup[hidden] {
  display: none;
}

.construction-popup__box {
  background: #000;
  color: var(--gold-500);
  padding: 0.85rem 1rem;
  border-radius: 10px;
  max-width: 360px;
  width: 100%;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
}

.construction-popup__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-500);
}

.construction-popup__icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--gold-500);
}

.construction-popup__box p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.3;
  color: var(--gold-500);
}

.construction-popup__ok {
  background: transparent;
  color: var(--gold-500);
  border: 1px solid var(--gold-500);
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
}

.construction-popup__ok:hover {
  background: var(--gold-500);
  color: var(--navy-950);
}

@media (max-width: 520px) {
  .construction-popup__box {
    padding: 0.7rem 0.9rem;
    max-width: 320px;
  }
  .construction-popup__icon svg {
    width: 28px;
    height: 28px;
  }
}
