@import "https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap";

/* src/styles.css */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --primary: #2DBE60;
  --primary-hover: #26a352;
  --heading: #0F172A;
  --body: #6B7280;
  --bg: #FFFFFF;
  --bg-secondary: #F5F7FA;
  --border: #E5E7EB;
  --card-radius: 12px;
  --card-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  --btn-radius: 10px;
  --btn-padding: 12px 20px;
  --brand: #eb5528;
  --brand-hover: #d94a1f;
}
html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
body {
  font-family:
    "Inter",
    system-ui,
    sans-serif;
  background: var(--bg-secondary);
  min-height: 100vh;
  color: var(--body);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}
app-root {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  width: 100%;
  padding: 3rem 1.5rem 5rem;
  box-sizing: border-box;
}
.funnel-wrapper {
  width: 100%;
  max-width: 560px;
}
.funnel-wrapper--centered {
  margin-top: 10vh;
  text-align: center;
}
.funnel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
}
.header-brand {
  display: flex;
  align-items: center;
  gap: .6rem;
}
.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--heading);
  letter-spacing: -0.02em;
}
.logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
}
.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 10px;
  position: relative;
}
.logo-mark::after {
  content: "";
  position: absolute;
  inset: 7px;
  background: #fff;
  border-radius: 4px;
}
.step-label {
  font-size: .75rem;
  font-weight: 600;
  color: var(--body);
  text-transform: uppercase;
  letter-spacing: .06em;
  background: var(--bg);
  padding: .4rem .85rem;
  border-radius: 999px;
  border: 1px solid var(--border);
}
.hero {
  margin-bottom: 2rem;
}
.hero-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--heading);
  margin-bottom: .75rem;
}
.hero-subtitle {
  font-size: 16px;
  color: var(--body);
  line-height: 1.6;
}
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2.5rem;
}
.trust-item {
  font-size: .875rem;
  font-weight: 500;
  color: var(--body);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: .4rem .85rem;
}
.screening-form {
  background: var(--bg);
  border-radius: var(--card-radius);
  border: 1px solid var(--border);
  padding: 24px;
  box-shadow: var(--card-shadow);
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.field-label {
  font-size: .9375rem;
  font-weight: 600;
  color: var(--heading);
  display: flex;
  align-items: baseline;
  gap: .5rem;
  line-height: 1.4;
}
.field-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  background: #dcfce7;
  color: var(--primary);
  border-radius: 50%;
  font-size: .72rem;
  font-weight: 700;
  flex-shrink: 0;
}
.field-required {
  color: #dc2626;
  margin-left: .1rem;
}
.field-hint {
  font-size: .875rem;
  color: var(--body);
  margin-top: .25rem;
}
.field-input,
.field-select {
  width: 100%;
  padding: .65rem .9rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  color: var(--heading);
  background: var(--bg);
  transition: border-color .15s, box-shadow .15s;
  appearance: none;
}
.field-input:focus,
.field-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(45, 190, 96, 0.12);
}
.field-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .9rem center;
  padding-right: 2.25rem;
}
.radio-group,
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.radio-label input[type=radio],
.checkbox-label input[type=checkbox] {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  margin: 0;
}
.radio-label,
.checkbox-label {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .65rem .9rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  color: var(--heading);
  transition: border-color .15s, background .15s;
  -webkit-user-select: none;
  user-select: none;
  position: relative;
}
.radio-label:hover,
.checkbox-label:hover {
  border-color: var(--primary);
  background: #f0fdf4;
}
.radio-custom,
.checkbox-custom {
  width: 18px;
  height: 18px;
  border: 2px solid var(--border);
  border-radius: 50%;
  flex-shrink: 0;
  transition: border-color .15s, background .15s;
  position: relative;
}
.checkbox-custom {
  border-radius: 5px;
}
.radio-label:has(input:checked) .radio-custom,
.checkbox-label:has(input:checked) .checkbox-custom {
  border-color: var(--primary);
  background: var(--primary);
}
.radio-custom::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: #fff;
  border-radius: 50%;
  opacity: 0;
}
.radio-label:has(input:checked) .radio-custom::after {
  opacity: 1;
}
.checkbox-custom::after {
  content: "\2713";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  opacity: 0;
}
.checkbox-label:has(input:checked) .checkbox-custom::after {
  opacity: 1;
}
.radio-label:has(input:checked),
.checkbox-label:has(input:checked) {
  border-color: var(--primary);
  background: #f0fdf4;
}
.field-error {
  font-size: .78rem;
  color: #dc2626;
  min-height: 1em;
}
.questions-loading,
.questions-error {
  color: var(--body);
  margin-bottom: 1rem;
}
.questions-error {
  color: #dc2626;
}
.btn-primary {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--brand);
  background-color: var(--brand);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: var(--btn-padding);
  border-radius: var(--btn-radius);
  text-decoration: none;
  transition: background-color .15s, transform .1s;
  border: none;
  cursor: pointer;
  margin-top: .25rem;
}
.btn-primary:hover {
  background: var(--brand-hover);
  background-color: var(--brand-hover);
  transform: translateY(-1px);
}
.btn-primary:disabled {
  opacity: 0.8;
  cursor: not-allowed;
  transform: none;
}
.cta-note {
  font-size: .875rem;
  color: var(--body);
  text-align: center;
  margin-top: 1rem;
}
.progress-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-top: 3rem;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  font-size: .75rem;
  font-weight: 500;
  color: var(--body);
}
.step.active {
  color: var(--primary);
}
.step-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--bg);
}
.step.active .step-dot {
  border-color: var(--primary);
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(45, 190, 96, 0.15);
}
.step-connector {
  flex: 1;
  max-width: 80px;
  height: 2px;
  background: var(--border);
  margin-bottom: 1.4rem;
}
.status-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}
.status-icon--neutral {
  background: #d1fae5;
  color: var(--primary);
}
.status-icon--error {
  background: #fee2e2;
  color: #dc2626;
  font-weight: 700;
}
.status-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: .75rem;
  color: var(--heading);
}
.status-body {
  font-size: 16px;
  color: var(--body);
  line-height: 1.65;
  max-width: 380px;
  margin: 0 auto 1.5rem;
}
.status-footer {
  font-size: 16px;
  color: var(--body);
  line-height: 1.6;
  max-width: 380px;
  margin: 0 auto;
}
.qualified-card {
  background: var(--bg);
  border-radius: var(--card-radius);
  border: 1px solid var(--border);
  padding: 24px;
  box-shadow: var(--card-shadow);
  text-align: center;
}
.tick-icon {
  width: 80px;
  height: 80px;
  background: #d1fae5;
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
  font-weight: 700;
}
.qualified-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: .75rem;
}
.qualified-body {
  font-size: 16px;
  color: var(--body);
  line-height: 1.65;
  margin-bottom: 2rem;
}
.redirect-bar-wrap {
  background: var(--border);
  border-radius: 999px;
  height: 6px;
  overflow: hidden;
  margin-bottom: 1rem;
}
.redirect-bar {
  height: 100%;
  background: var(--primary);
  border-radius: 999px;
  transition: width 1s linear;
}
.redirect-note {
  font-size: .875rem;
  color: var(--body);
  margin-bottom: 1.5rem;
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--primary);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: var(--btn-radius);
  text-decoration: none;
  transition: background .15s, transform .1s;
}
.btn-whatsapp:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}
@media (max-width: 480px) {
  app-root {
    padding: 2rem 1rem 4rem;
  }
  .hero-title {
    font-size: 1.75rem;
  }
  .status-title {
    font-size: 1.5rem;
  }
  .screening-form {
    padding: 20px 18px;
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
