/* =========================================================
   FALA PRAÇA PODCAST
   Página Em Construção
   Arquivo: style.css
========================================================= */

/* ===============================
   RESET / BASE
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Inter", Arial, sans-serif;
  background:
    radial-gradient(circle at top center, rgba(0, 123, 255, 0.16), transparent 38%),
    radial-gradient(circle at bottom left, rgba(0, 123, 255, 0.10), transparent 30%),
    linear-gradient(135deg, #05070b 0%, #090d14 45%, #020305 100%);
  color: #ffffff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* ===============================
   PÁGINA PRINCIPAL
================================ */
.construction-page {
  width: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  overflow: hidden;
}

/* Fundo decorativo */
.construction-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.35;
  pointer-events: none;
}

.construction-page::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(0, 119, 255, 0.14);
  filter: blur(120px);
  top: -180px;
  right: -140px;
  pointer-events: none;
}

/* ===============================
   CONTAINER
================================ */
.construction-container {
  width: 100%;
  max-width: 1180px;
  min-height: calc(100vh - 80px);
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 52px 36px 34px;

  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 28px;

  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(3, 6, 12, 0.78);

  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.62),
    inset 0 0 0 1px rgba(0, 119, 255, 0.05);

  backdrop-filter: blur(16px);
}

/* Detalhe lateral militar */
.construction-container::before {
  content: "";
  position: absolute;
  left: 36px;
  top: 50%;
  transform: translateY(-50%);
  width: 130px;
  height: 360px;
  opacity: 0.11;
  background:
    linear-gradient(135deg, transparent 38%, #ffffff 38%, #ffffff 46%, transparent 46%),
    linear-gradient(45deg, transparent 38%, #ffffff 38%, #ffffff 46%, transparent 46%);
  background-size: 130px 110px;
  background-repeat: repeat-y;
  pointer-events: none;
}

/* ===============================
   LOGOTIPO
================================ */
.construction-logo-box {
  width: 190px;
  height: 190px;
  margin-bottom: 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(0, 119, 255, 0.18), transparent 62%),
    rgba(0, 0, 0, 0.38);

  border: 1px solid rgba(0, 132, 255, 0.28);

  box-shadow:
    0 0 36px rgba(0, 119, 255, 0.22),
    0 18px 38px rgba(0, 0, 0, 0.48);
}

.construction-logo {
  width: 165px;
  height: 165px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(0, 119, 255, 0.35));
}

/* ===============================
   STATUS
================================ */
.construction-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 20px;
  padding: 9px 18px;

  border: 1px solid rgba(0, 119, 255, 0.32);
  border-radius: 999px;

  background: rgba(0, 119, 255, 0.08);
  color: #dbeafe;

  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #0077ff;
  box-shadow: 0 0 15px rgba(0, 119, 255, 0.95);
}

/* ===============================
   TÍTULOS
================================ */
.construction-title {
  text-align: center;
  max-width: 880px;
}

.construction-title h1 {
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(3.4rem, 8vw, 7.5rem);
  line-height: 0.88;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;

  color: #ffffff;
  text-shadow:
    0 4px 0 rgba(0, 0, 0, 0.55),
    0 0 38px rgba(0, 119, 255, 0.18);
}

.construction-title h2 {
  margin-top: 12px;

  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(1.7rem, 3.6vw, 3.4rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;

  color: #0077ff;
}

/* ===============================
   TEXTO
================================ */
.construction-text {
  max-width: 740px;
  margin-top: 22px;
  text-align: center;
}

.construction-text p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #c8d1df;
}

/* ===============================
   CONTAGEM REGRESSIVA
================================ */
.countdown-wrapper {
  width: 100%;
  max-width: 820px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;

  margin-top: 38px;
}

.countdown-card {
  position: relative;
  min-height: 145px;
  padding: 26px 16px 22px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  border-radius: 22px;
  overflow: hidden;

  background:
    linear-gradient(160deg, rgba(0, 119, 255, 0.18), rgba(255, 255, 255, 0.035) 48%, rgba(0, 0, 0, 0.20)),
    rgba(255, 255, 255, 0.04);

  border: 1px solid rgba(255, 255, 255, 0.10);

  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.38),
    inset 0 0 0 1px rgba(0, 119, 255, 0.06);
}

.countdown-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 16%;
  right: 16%;
  height: 3px;

  border-radius: 0 0 20px 20px;
  background: #0077ff;
  box-shadow: 0 0 20px rgba(0, 119, 255, 0.9);
}

.countdown-card::after {
  content: "";
  position: absolute;
  width: 95px;
  height: 95px;
  border-radius: 50%;
  background: rgba(0, 119, 255, 0.12);
  filter: blur(26px);
  bottom: -34px;
  right: -24px;
}

.countdown-number {
  position: relative;
  z-index: 2;

  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: 0.02em;

  color: #ffffff;
  text-shadow: 0 0 22px rgba(0, 119, 255, 0.22);
}

.countdown-label {
  position: relative;
  z-index: 2;

  margin-top: 10px;

  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;

  color: #8fbfff;
}

/* ===============================
   MENSAGEM
================================ */
.construction-message {
  margin-top: 26px;
  text-align: center;
}

.construction-message p {
  color: #aeb8c7;
  font-size: 0.98rem;
  line-height: 1.6;
}

/* ===============================
   BOTÕES
================================ */
.construction-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;

  margin-top: 32px;
}

.btn {
  min-height: 52px;
  padding: 0 24px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  border-radius: 12px;

  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.btn i {
  font-size: 0.95rem;
}

.btn-primary {
  background: linear-gradient(135deg, #0077ff, #005bd1);
  color: #ffffff;
  border: 1px solid rgba(0, 119, 255, 0.80);
  box-shadow: 0 14px 30px rgba(0, 119, 255, 0.26);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 119, 255, 0.38);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.035);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.btn-outline:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 119, 255, 0.62);
  background: rgba(0, 119, 255, 0.10);
}

/* ===============================
   RODAPÉ
================================ */
.construction-footer {
  margin-top: 38px;
  padding-top: 22px;

  width: 100%;
  max-width: 760px;

  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.construction-footer p {
  font-size: 0.82rem;
  line-height: 1.6;
  color: #7f8a9b;
}

/* ===============================
   RESPONSIVO
================================ */

/* Notebook menor / Tablet horizontal */
@media (max-width: 1024px) {
  .construction-container {
    padding: 46px 28px 32px;
  }

  .construction-container::before {
    left: 14px;
    width: 96px;
    opacity: 0.08;
  }

  .construction-logo-box {
    width: 170px;
    height: 170px;
  }

  .construction-logo {
    width: 148px;
    height: 148px;
  }

  .countdown-wrapper {
    max-width: 760px;
    gap: 14px;
  }

  .countdown-card {
    min-height: 130px;
  }
}

/* Tablet / celular grande */
@media (max-width: 768px) {
  .construction-page {
    align-items: flex-start;
    padding: 24px 14px;
  }

  .construction-container {
    min-height: auto;
    padding: 36px 18px 26px;
    border-radius: 22px;
  }

  .construction-container::before {
    display: none;
  }

  .construction-logo-box {
    width: 145px;
    height: 145px;
    margin-bottom: 18px;
  }

  .construction-logo {
    width: 126px;
    height: 126px;
  }

  .construction-status {
    font-size: 0.68rem;
    padding: 8px 14px;
    text-align: center;
  }

  .construction-text {
    margin-top: 18px;
  }

  .construction-text p {
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .countdown-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 30px;
  }

  .countdown-card {
    min-height: 125px;
    border-radius: 18px;
  }

  .construction-actions {
    width: 100%;
    gap: 12px;
  }

  .btn {
    width: 100%;
    max-width: 340px;
  }
}

/* Celulares médios */
@media (max-width: 480px) {
  body {
    background:
      radial-gradient(circle at top center, rgba(0, 123, 255, 0.18), transparent 34%),
      linear-gradient(135deg, #05070b 0%, #090d14 50%, #020305 100%);
  }

  .construction-page {
    padding: 18px 10px;
  }

  .construction-container {
    padding: 30px 14px 24px;
    border-radius: 20px;
  }

  .construction-logo-box {
    width: 128px;
    height: 128px;
  }

  .construction-logo {
    width: 112px;
    height: 112px;
  }

  .construction-title h1 {
    font-size: 3.1rem;
  }

  .construction-title h2 {
    font-size: 1.65rem;
  }

  .construction-text p {
    font-size: 0.92rem;
  }

  .countdown-wrapper {
    gap: 10px;
  }

  .countdown-card {
    min-height: 112px;
    padding: 22px 10px 18px;
  }

  .countdown-number {
    font-size: 2.85rem;
  }

  .countdown-label {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .construction-message p {
    font-size: 0.9rem;
  }

  .btn {
    min-height: 50px;
    font-size: 0.78rem;
    padding: 0 18px;
  }

  .construction-footer p {
    font-size: 0.76rem;
  }
}

/* Celulares pequenos */
@media (max-width: 360px) {
  .construction-title h1 {
    font-size: 2.75rem;
  }

  .construction-title h2 {
    font-size: 1.45rem;
  }

  .countdown-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .countdown-card {
    min-height: 104px;
  }

  .countdown-number {
    font-size: 2.45rem;
  }
}