/* ===================================================== */
/* BASE                                                   */
/* ===================================================== */

body {
  background: linear-gradient(180deg, #020617 0%, #0b1120 100%);
  color: #e2e8f0;
  font-family: Arial, sans-serif;
}

.contato {
  max-width: 800px;
  margin: auto;
  padding: 40px 20px;
}

/* ===================================================== */
/* FORMULÁRIO                                             */
/* ===================================================== */

.form-contato {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.campo {
  display: flex;
  flex-direction: column;
}

.campo label {
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: #94a3b8;
}

.campo input,
.campo textarea {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #1e293b;
  background: #0f172a;
  color: #e2e8f0;
  outline: none;
}

.campo input:focus,
.campo textarea:focus {
  border-color: #00d4ff;
}

/* BOTÃO */
.btn-cta {
  margin-top: 10px;
  padding: 12px;
  background: #00d4ff;
  color: #000;
  border-radius: 8px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s;
}

.btn-cta:hover {
  background: #38bdf8;
  transform: scale(1.03);
}

/* ===================================================== */
/* AVISO DE RESPOSTA                                     */
/* ===================================================== */

.aviso-contato {
  margin-top: 20px;
  padding: 16px 20px;

  background: rgba(0, 212, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-left: 4px solid #00d4ff;

  border-radius: 10px;

  backdrop-filter: blur(6px);

  transition: 0.3s ease;
}

.aviso-contato:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 212, 255, 0.4);
}

.aviso-contato p {
  color: #cbd5f5;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===================================================== */
/* CONTATO DIRETO (FEATURES)                              */
/* ===================================================== */

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

/* CARD */
.feature {
  background: linear-gradient(145deg, #0f172a, #020617);
  border: 1px solid #1e293b;
  border-radius: 14px;
  padding: 20px;

  position: relative;
  overflow: hidden;

  transition: 0.3s ease;
}

/* EFEITO DE LUZ */
.feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(0, 212, 255, 0.15),
    transparent
  );
  opacity: 0;
  transition: 0.3s;
}

/* HOVER */
.feature:hover::before {
  opacity: 1;
}

.feature:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: #00d4ff;
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.15);
}

/* TÍTULO */
.feature h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #00d4ff;
}

/* TEXTO */
.feature p {
  color: #cbd5f5;
  font-size: 0.95rem;
  word-break: break-word;
}

/* ===================================================== */
/* CTA MELHORADO                                          */
/* ===================================================== */

.cta {
  text-align: center;
  margin-top: 50px;
  padding: 30px 20px;

  background: linear-gradient(135deg, #020617, #0f172a);
  border: 1px solid #1e293b;
  border-radius: 16px;
}

.cta h2 {
  font-size: 1.6rem;
  margin-bottom: 15px;
}

/* BOTÃO */
.btn-cta {
  display: inline-block;
  padding: 12px 26px;

  background: linear-gradient(135deg, #00d4ff, #38bdf8);
  color: #000;

  border-radius: 10px;
  font-weight: bold;
  text-decoration: none;

  transition: 0.25s ease;
}

.btn-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
}

/* ===================================================== */
/* BLOCO FORMULÁRIO (DESTACADO)                           */
/* ===================================================== */

.bloco.destaque {
  max-width: 700px;
  margin: 40px auto;

  padding: 30px;

  background: linear-gradient(145deg, #020617, #0f172a);
  border: 1px solid #1e293b;
  border-radius: 16px;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);

  transition: 0.3s ease;
}

.bloco.destaque:hover {
  transform: translateY(-4px);
}

/* ===================================================== */
/* TÍTULO DO FORM                                         */
/* ===================================================== */

.bloco.destaque h2 {
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: #00d4ff;
}

/* ===================================================== */
/* CAMPOS                                                 */
/* ===================================================== */

.campo input,
.campo textarea {
  width: 100%;
  padding: 12px;

  border-radius: 10px;
  border: 1px solid #1e293b;

  background: #020617;
  color: #e2e8f0;

  transition: 0.2s;
}

/* FOCUS BONITO */
.campo input:focus,
.campo textarea:focus {
  border-color: #00d4ff;
  box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.15);
}

/* ===================================================== */
/* BOTÃO FULL WIDTH                                       */
/* ===================================================== */

.btn-cta {
  width: 100%;
  margin-top: 10px;

  padding: 14px;

  font-size: 1rem;

  background: linear-gradient(135deg, #00d4ff, #38bdf8);
  color: #000;

  border: none;
  border-radius: 10px;

  font-weight: bold;
  cursor: pointer;

  transition: 0.25s ease;
}

.btn-cta:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.descricao-form {
  color: #94a3b8;
  margin-bottom: 15px;
  font-size: 0.95rem;
}