@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;700&display=swap');

:root {
  --primary-navy: #0C1D36;
  --accent-teal: #008D7D;
  --bg-cream: #F7F6F2;
  --white: #ffffff;
  --text-gray: #4A5568;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-cream);
  color: var(--primary-navy);
  margin: 0;
  padding: 0;
}

.app {
  padding: 4vh 2vw;
}

.content {
  max-width: 1040px;
  margin: auto;
}

/* Cabecalho */
.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.header img {
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
  margin-bottom: 20px;
}

.header h1 {
  font-size: 52px;
  font-weight: 700;
  margin: 0;
  color: var(--primary-navy);
  letter-spacing: -1px;
}

.header p {
  font-size: 24px;
  font-weight: 300;
  margin: 5px 0 0 0;
  color: var(--accent-teal);
}

/* Formulario */
.forms {
  margin-top: 20px;
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(12, 29, 54, 0.05);
}

.forms form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-input {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-input p {
  margin: 0;
  font-weight: 500;
  font-size: 14px;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

input,
select {
  outline: none;
  box-sizing: border-box;
  border: 1.5px solid #E2E8F0;
  border-radius: 12px;
  height: 48px;
  background-color: var(--white);
  color: var(--primary-navy);
  font-family: inherit;
  padding: 0 16px;
  font-size: 16px;
  transition: all 0.3s ease;
  width: 100%;
}

input:focus,
select:focus {
  border-color: var(--accent-teal);
  box-shadow: 0 0 0 4px rgba(0, 141, 125, 0.1);
}

/* Botao */
.center-button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 30px;
}

button {
  cursor: pointer;
  padding: 16px 32px;
  font-family: inherit;
  border-radius: 12px;
  border: 0;
  background-color: var(--accent-teal);
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(0, 141, 125, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

button:hover {
  background-color: var(--primary-navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(12, 29, 54, 0.2);
}

button h2 {
  font-size: 18px;
  margin: 0;
  font-weight: 600;
}

/* Assinatura */
.assinatura-wrapper {
  font-family: Arial, sans-serif;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.assinatura-div {
  background-color: #ffffff;
  display: inline-block;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 15px rgba(12, 29, 54, 0.05);
}

/* Rodape */
footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  margin: 40px auto 40px auto;
  padding: 20px;
  box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.25);
  width: fit-content;
}
footer div {
  display: flex;
  /* flex-direction: column; */
  justify-content: center;
  align-items: center;
}

footer div p {
  margin-right: 10px;
}

@media (max-width: 800px) {
  .app {
    width: 100vw;
    padding: 0;
    display: flex;
    flex-direction: column;
  }
  .header {
    width: 100%;
  }
  .header h1 {
    font-size: 32px;
    text-align: center;
  }
  .header p {
    font-size: 16px;
    text-align: center;
  }
  .forms form {
    display: grid;
    grid-template-columns: 1fr;
  }
  input,
  select {
    width: 100%;
  }
  .form-input {
    display: block;
  }
  .form-input p {
    display: block;
    width: auto;
    text-align: start;
  }
  .assinatura-div {
    overflow: hidden;
  }
}
