/*
  Sectro — Página em Construção
  Paleta: preto, cinza, laranja e branco
  Tipografia: Poppins
  Objetivo:
  - Logo + texto centralizados (vertical/horizontal)
  - Rodapé com informações da empresa
  - Responsivo
  - Transições suaves + animações leves
*/

:root {
  --black: #0b0c0f;
  --gray-900: #111318;
  --gray-700: #2a2f39;
  --gray-500: #8b93a7;
  --white: #ffffff;

  /* Laranja sofisticado (ajuste se já houver laranja oficial da Sectro) */
  --orange: #ff6a00;

  --radius-xl: 22px;
  --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.35);

  --font: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--white);
  background: var(--black);
  overflow-x: hidden;
}

/* Fundo com gradiente e textura sutil (moderno e sofisticado) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(1200px 700px at 50% 30%, rgba(255, 106, 0, 0.14), transparent 60%),
    radial-gradient(900px 500px at 80% 10%, rgba(255, 255, 255, 0.06), transparent 55%),
    linear-gradient(180deg, rgba(17, 19, 24, 0.75) 0%, rgba(11, 12, 15, 0.98) 100%);
  filter: saturate(1.05);
}

/* Wrapper da página: garante hero central e footer no final */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* HERO centralizado */
.hero {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 48px 20px 28px;
}

/* Cartão sutil para dar acabamento (sem virar “seção”) */
.hero__content {
  width: min(760px, 92vw);
  text-align: center;
  padding: 42px 28px;
  border-radius: var(--radius-xl);
  background: rgba(17, 19, 24, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);

  /* Transições suaves */
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease;
}

/* Micro-interação suave ao passar o mouse (desktop) */
@media (hover: hover) and (pointer: fine) {
  .hero__content:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 106, 0, 0.22);
    background: rgba(17, 19, 24, 0.62);
  }
}

/* Logo responsivo */
.logo {
  width: min(280px, 70vw);
  height: auto;
  display: block;
  margin: 0 auto 18px;

  /* Animação leve ao carregar */
  opacity: 0;
  transform: translateY(6px) scale(0.98);
  animation: fadeUp 700ms ease forwards;
}

/* Título */
.title {
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.2px;
  font-size: clamp(20px, 3.2vw, 32px);
  color: var(--white);

  /* Destaque discreto com laranja */
  text-shadow: 0 0 0 rgba(255, 106, 0, 0);
  opacity: 0;
  transform: translateY(8px);
  animation: fadeUp 700ms ease forwards;
  animation-delay: 120ms;
}

/* Rodapé */
.footer {
  padding: 18px 16px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(11, 12, 15, 0.65);
  backdrop-filter: blur(8px);
}

.footer__inner {
  width: min(1100px, 92vw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}

.footer__brand {
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.footer__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.45;
}

.footer__sep {
  color: rgba(255, 255, 255, 0.28);
}

.footer__link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  position: relative;

  /* Transição suave */
  transition: color 180ms ease, transform 180ms ease, opacity 180ms ease;
}

/* Sublinhado animado (leve) */
.footer__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 106, 0, 0.0), rgba(255, 106, 0, 0.95), rgba(255, 106, 0, 0.0));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
  opacity: 0.9;
}

@media (hover: hover) and (pointer: fine) {
  .footer__link:hover {
    color: var(--orange);
    transform: translateY(-1px);
  }

  .footer__link:hover::after {
    transform: scaleX(1);
  }
}

/* Acessibilidade: foco visível */
.footer__link:focus-visible {
  outline: 2px solid rgba(255, 106, 0, 0.65);
  outline-offset: 4px;
  border-radius: 6px;
}

/* Animações */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Ajustes mobile */
@media (max-width: 420px) {
  .hero {
    padding-top: 38px;
  }

  .hero__content {
    padding: 34px 18px;
  }

  .footer__meta {
    font-size: 13px;
  }
}
