/* =========================
   CONTATO PAGE
========================= */

.contato-page {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
}

/* =========================
   BACKGROUND GRID
========================= */

.grid-overlay {
  position: fixed;
  inset: 0;
  background-image: radial-gradient(
    circle at 2px 2px,
    rgba(192, 66, 255, 0.05) 1px,
    transparent 0
  );
  background-size: 30px 30px;
  z-index: -2;
}

/* =========================
   LAYOUT
========================= */

.page-wrapper {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 20px 80px;
}

@media (min-width: 768px) {
  .page-wrapper {
    padding: 80px 20px 120px;
  }
}

.contact-container {
  max-width: 1100px;
  width: 95%;
  text-align: center;
  position: relative;
}

/* =========================
   TERMINAL BOX
========================= */

.terminal-box {
  background: rgba(15, 15, 15, 0.85);
  border: 1px solid rgba(192, 66, 255, 0.15);
  padding: 60px 30px;
  position: relative;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

@media (min-width: 768px) {
  .terminal-box {
    padding: 90px 70px;
  }
}

.terminal-box:hover {
  border-color: var(--accent);
  box-shadow: 0 0 60px rgba(192, 66, 255, 0.1);
}

.terminal-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(192, 66, 255, 0.12),
    transparent 60%
  );
  pointer-events: none;
}

/* =========================
   TERMINAL HEADER
========================= */

.terminal-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 14px 20px;
  display: flex;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #333;
}

.dot.purple {
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

/* =========================
   TYPOGRAPHY
========================= */

.tag {
  font-family: var(--font-code);
  color: var(--accent);
  font-size: 0.75rem;
  letter-spacing: 3px;
  margin-bottom: 30px;
  display: block;
}

.main-title {
  font-size: clamp(2.5rem, 6vw, 3.8rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 30px;
}

.main-title span {
  color: var(--accent);
  text-shadow: 0 0 25px rgba(192, 66, 255, 0.4);
}

.sub-text {
  font-family: var(--font-code);
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 50px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.input-label {
  font-size: 0.7rem;
  color: var(--accent);
  font-family: var(--font-code);
  display: block;
  text-align: left;
  margin-bottom: 10px;
  letter-spacing: 0.08em;
}

/* =========================
   INPUT
========================= */

.input-wrapper {
  margin-bottom: 50px;
  position: relative;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.terminal-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
  color: var(--text-primary);
  font-family: var(--font-code);
  padding: 15px 0;
  font-size: 1.1rem;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.terminal-input:focus {
  border-color: var(--accent);
  box-shadow: 0 6px 20px rgba(192, 66, 255, 0.15);
}

.terminal-input::placeholder {
  color: var(--text-muted);
}

/* =========================
   BUTTON
========================= */

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 16px 28px;
  border-radius: 60px;
  font-family: var(--font-code);
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  font-size: 0.85rem;
  transition:
    border-color 0.35s ease,
    background 0.35s ease,
    color 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

@media (min-width: 768px) {
  .btn-whatsapp {
    padding: 20px 50px;
    letter-spacing: 2px;
    font-size: 1rem;
  }
}

.btn-whatsapp:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: #000;
  transform: translateY(-4px);
  box-shadow: 0 0 40px rgba(192, 66, 255, 0.5);
}

/* =========================
   STATUS LINE
========================= */

.status-line {
  position: absolute;
  bottom: -60px;
  width: 100%;
  font-family: var(--font-code);
  font-size: 0.7rem;
  color: #333;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 480px) {
  .main-title {
    line-height: 1.2;
  }
}

img,
svg {
  max-width: 100%;
  height: auto;
}