/* ===== FONTES ===== */
@font-face {
  font-family: "Nagoda";
  src: url("fonts/Nagoda.woff2") format("woff2"),
       url("fonts/Nagoda.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Regular.woff2") format("woff2"),
       url("fonts/Montserrat-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ===== RESET ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ===== BASE ===== */
body {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont,
               "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #f6f8fb;
  color: #325061;
  min-height: 100vh;
  overflow: hidden;
}

/* ===== CONTAINER ===== */
.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 1.2rem; /* controla a altura geral do card */
}

/* ===== LOGO ===== */
.logo {
  margin-bottom: 1.6rem; /* respiro harmônico */
}

.logo img {
  height: 44px;
  display: block;
}

/* ===== CARD ===== */
.card {
  background: #ffffff;
  width: 100%;
  max-width: 520px;
  padding: 1.6rem 2.2rem 2.2rem;
  border-radius: 22px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  display: none;
}

.card.active {
  display: block;
}

.card.center {
  text-align: center;
}

/* ===== TEXTO ===== */
h1 {
  font-family: "Nagoda", sans-serif;
  font-size: 1.62rem;
  margin: 0 0 0.3rem;
}

.card.center p:first-of-type {
  line-height: 1.45;
  margin-top: 1.2rem;
  margin-bottom: 1.4rem;
}

.subtitle {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-bottom: 1.2rem;
}

h3 {
  font-size: 0.9rem;
  margin: 1.1rem 0 0.3rem;
}

/* ===== OPÇÕES ===== */
.option {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: #f1f5f9;
  margin-bottom: 0.4rem;
  margin-top: 0.3rem;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.option.selected {
  background: #e9f1f9;
  outline: 2px solid #325061;
}

/* ===== INPUTS ===== */
input[type="text"],
input[type="email"],
input[type="tel"] {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 14px;
  border: 1px solid #d6e0ea;
  margin-bottom: 0.8rem;
  font-family: inherit;
  font-size: 0.9rem;
}

/* ===== CHECKBOX ===== */
.checkbox {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0.9rem 0 0.4rem;
  font-size: 0.85rem;
  line-height: 1.4;
}

.checkbox input {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  cursor: pointer;
  margin: 0;
}

/* ===== AÇÕES ===== */
.actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.4rem;
}

/* ===== BOTÕES ===== */
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
}

.primary {
  background: #fb781f;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.7rem 2rem;
  border-radius: 999px;
}

.primary:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.secondary {
  background: #325061;
  color: #ffffff;
  font-size: 0.95rem;
  padding: 0.7rem 2rem;
  border-radius: 999px;
}

/* ===== PÁGINA 06 — RESPIRO ===== */
.card.center p {
  margin-bottom: 0.6rem;
}

.card.center .highlight {
  margin-top: 2.2rem;
}

/* ===== DESTAQUE ===== */
.highlight {
  color: #fb781f;
  font-weight: 700;
}
