/* ============================================================
   SD Segurança Eletrônica — Quiz / Funil
   assets/css/quiz.css
   Zero inline styles. All states via class toggling.
   ============================================================ */

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  --sd-blue:        #046bd2;
  --sd-blue-dark:   #034b93;
  --sd-blue-light:  #eff6ff;
  --accent:         #f59e0b;
  --accent-dark:    #d97706;
  --bg-light:       #f8fafc;
  --bg-white:       #ffffff;
  --text-dark:      #0f172a;
  --text-main:      #334155;
  --text-muted:     #64748b;
  --danger:         #ef4444;
  --success:        #10b981;
  --border-color:   #e2e8f0;
  --font-head:      'Montserrat', sans-serif;
  --font-body:      'Inter', sans-serif;
  --radius:         12px;
  --shadow-card:    0 10px 40px rgba(0,0,0,0.08);
  --transition:     0.3s ease;
}

/* ── Utility ─────────────────────────────────────────────────── */
.hidden {
  display: none !important;
}

/* ── Reset / Base ───────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background: linear-gradient(145deg, #dbeafe 0%, #eff6ff 40%, #f0f9ff 70%, #e0f2fe 100%);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
  padding: 0 16px 40px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
}

/* ── Logo ───────────────────────────────────────────────────── */
.quiz-page-logo {
  display: block;
  margin: 36px auto 20px;
  max-width: 200px;
  width: 100%;
  height: auto;
}

/* ── Quiz Container ─────────────────────────────────────────── */
.quiz-container {
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 44px 44px 36px;
  max-width: 680px;
  width: 100%;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
}

/* top gradient bar */
.quiz-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--sd-blue) 0%, var(--accent) 100%);
  border-radius: var(--radius) var(--radius) 0 0;
}

/* ── Profile Tag ────────────────────────────────────────────── */
.quiz-profile-tag {
  display: none;
  align-items: center;
  gap: 6px;
  background: var(--sd-blue-light);
  color: var(--sd-blue);
  border: 1px solid rgba(4,107,210,0.2);
  border-radius: 999px;
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-head);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 5;
}

.quiz-profile-tag.visible {
  display: flex;
  animation: fadeIn 0.4s ease forwards;
}

/* ── Quiz Header (intro) ────────────────────────────────────── */
.quiz-header {
  text-align: center;
  padding: 16px 0 28px;
  transition: opacity 0.4s ease;
}

.quiz-header.hidden {
  display: none;
}

.quiz-header-title {
  font-size: 22px;
  color: var(--sd-blue);
  margin-bottom: 10px;
}

.quiz-header-sub {
  font-size: 15px;
  color: var(--text-muted);
}

/* ── Progress Section ───────────────────────────────────────── */
.progress-section {
  margin-bottom: 28px;
  display: none;
}

.progress-section.visible {
  display: block;
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.progress-label {
  font-size: 13px;
  color: var(--text-muted);
  font-family: var(--font-head);
}

.progress-pct {
  font-size: 13px;
  font-weight: 700;
  color: var(--sd-blue);
  font-family: var(--font-head);
}

.progress-track {
  height: 8px;
  background: var(--border-color);
  border-radius: 999px;
  overflow: visible;
  position: relative;
}

.progress-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sd-blue-dark) 0%, var(--sd-blue) 60%, var(--accent) 100%);
  transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  min-width: 5%;
}

.progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,0.3);
  border-radius: 999px;
  animation: pulseGlow 2s infinite;
}

/* ── Question Wrapper & Box ─────────────────────────────────── */
.question-wrapper {
  position: relative;
  width: 100%;
  flex-grow: 1;
}

.question-box {
  width: 100%;
  display: none;
}

.question-box.active {
  display: block;
  animation: slideInRight 0.45s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.question-box.slide-out {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  animation: slideOutLeft 0.45s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
  pointer-events: none;
}

/* ── Question Header (label + title) ───────────────────────── */
.question-header {
  text-align: center;
  margin-bottom: 22px;
}

.question-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sd-blue);
  background: var(--sd-blue-light);
  border-radius: 999px;
  padding: 3px 12px;
  margin-bottom: 10px;
}

.question-title {
  font-size: 20px;
  font-family: var(--font-head);
  color: var(--text-dark);
  font-weight: 700;
}

/* ── Option Buttons ─────────────────────────────────────────── */
.option-btn {
  display: flex;
  align-items: center;
  width: 100%;
  background: var(--bg-white);
  border: 2px solid var(--border-color);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 12px;
  text-align: left;
  cursor: pointer;
  transition: all var(--transition);
  gap: 14px;
  font-family: var(--font-body);
  color: var(--text-dark);
}

.option-btn:hover {
  border-color: var(--sd-blue);
  background: var(--sd-blue-light);
  transform: translateX(4px);
  box-shadow: 0 4px 14px rgba(4,107,210,0.10);
}

.option-btn:active {
  transform: scale(0.98);
}

.option-btn:focus-visible {
  outline: 2px solid var(--sd-blue);
  outline-offset: 2px;
}

/* icon circle on left */
.option-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--sd-blue-light);
  color: var(--sd-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background var(--transition), color var(--transition);
}

.option-btn:hover .option-icon {
  background: var(--sd-blue);
  color: var(--bg-white);
}

/* text content */
.option-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.option-label {
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-head);
  color: var(--text-dark);
  line-height: 1.3;
}

.option-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* chevron on right */
.option-chevron {
  flex-shrink: 0;
  color: var(--text-muted);
  font-size: 12px;
  transition: transform var(--transition), color var(--transition);
}

.option-btn:hover .option-chevron {
  transform: translateX(3px);
  color: var(--sd-blue);
}

/* selected-critical: amber/warning state */
.option-btn.selected-critical {
  border-color: var(--accent-dark);
  background: rgba(245,158,11,0.08);
  border-radius: 10px 10px 0 0;
  margin-bottom: 0;
  transform: none;
  box-shadow: 0 4px 14px rgba(245,158,11,0.18);
  pointer-events: none;
}

.option-btn.selected-critical .option-icon {
  background: rgba(245,158,11,0.2);
  color: var(--accent-dark);
}

/* faded: non-selected options during alert */
.option-btn.faded {
  opacity: 0.38;
  pointer-events: none;
}

/* ── Inline Risk Alert ──────────────────────────────────────── */
.inline-risk-alert {
  background: rgba(245,158,11,0.10);
  border-left: 4px solid var(--accent-dark);
  color: var(--text-dark);
  padding: 14px 18px;
  margin-bottom: 12px;
  border-radius: 0 0 10px 10px;
  font-size: 14px;
  line-height: 1.6;
  animation: slideDownAlert 0.4s ease forwards;
  transform-origin: top;
  width: 100%;
  display: block;
  box-shadow: 0 4px 12px rgba(245,158,11,0.10);
}

.inline-risk-alert strong {
  color: var(--accent-dark);
}

/* ── Continue / Avancar Buttons ─────────────────────────────── */
.btn-continue {
  display: block;
  width: 100%;
  background: linear-gradient(180deg, var(--sd-blue) 0%, var(--sd-blue-dark) 100%);
  color: var(--bg-white);
  border: none;
  border-radius: 10px;
  padding: 15px 24px;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-head);
  cursor: pointer;
  margin-top: 18px;
  transition: all var(--transition);
  box-shadow: 0 4px 14px rgba(4,107,210,0.28);
  letter-spacing: 0.02em;
}

.btn-continue:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(4,107,210,0.38);
}

.btn-continue:active {
  transform: translateY(0);
}

/* variant that slides in after critical alert */
.btn-continue--avancar {
  margin-top: 0;
  border-radius: 0 0 10px 10px;
  animation: slideDownAlert 0.5s ease forwards;
}

/* ── Loading Screen ─────────────────────────────────────────── */
.loading-screen {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 16px;
  animation: fadeIn 0.5s ease;
}

.loading-screen.active {
  display: flex;
}

/* Custom CSS spinner — no Bootstrap dependency */
.loading-spinner {
  width: 52px;
  height: 52px;
  border: 5px solid var(--border-color);
  border-top-color: var(--sd-blue);
  border-radius: 50%;
  animation: spin 0.85s linear infinite;
  margin-bottom: 20px;
}

.loading-message {
  font-size: 16px;
  color: var(--sd-blue);
  font-family: var(--font-head);
  font-weight: 600;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Lead Form Box ──────────────────────────────────────────── */
.lead-form-box {
  display: none;
  animation: slideInRight 0.55s ease;
}

.lead-form-box.active {
  display: block;
}

/* ── Risk Badge ─────────────────────────────────────────────── */
.risk-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-head);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
  border: 2px solid transparent;
}

.risk-badge--medio {
  background: rgba(234,179,8,0.12);
  color: #92400e;
  border-color: rgba(234,179,8,0.5);
}

.risk-badge--alto {
  background: rgba(249,115,22,0.10);
  color: #9a3412;
  border-color: rgba(249,115,22,0.4);
}

.risk-badge--critico {
  background: rgba(239,68,68,0.10);
  color: #991b1b;
  border-color: rgba(239,68,68,0.4);
}

/* ── Form Header ────────────────────────────────────────────── */
.form-header {
  text-align: center;
  margin-bottom: 22px;
}

.form-title {
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Urgency Bar ────────────────────────────────────────────── */
.form-urgency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(4,107,210,0.05);
  border: 1px solid rgba(4,107,210,0.15);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 13px;
  color: var(--sd-blue);
  font-weight: 600;
  margin-bottom: 20px;
}

.urgency-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  display: inline-block;
  animation: blink 1.4s infinite;
  flex-shrink: 0;
}

/* ── Specialist Status ──────────────────────────────────────── */
.specialist-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--success);
  font-weight: 600;
  margin-bottom: 14px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  display: inline-block;
  animation: blink 1.2s infinite;
  flex-shrink: 0;
}

/* ── Form Groups ────────────────────────────────────────────── */
.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-head);
  color: var(--text-dark);
  margin-bottom: 7px;
}

.required-mark {
  color: var(--danger);
  margin-left: 2px;
}

.form-input {
  display: block;
  width: 100%;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 13px 16px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-input:focus {
  outline: none;
  border-color: var(--sd-blue);
  box-shadow: 0 0 0 3px rgba(4,107,210,0.12);
}

.form-input.input-error {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(239,68,68,0.10);
}

/* ── Inline Error ───────────────────────────────────────────── */
.form-error {
  display: none;
  font-size: 12px;
  color: var(--danger);
  font-weight: 600;
  margin-top: 5px;
}

.form-error.visible {
  display: flex;
  align-items: center;
  gap: 5px;
  animation: fadeIn 0.25s ease;
}


/* ── Submit Button ──────────────────────────────────────────── */
.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: linear-gradient(135deg, var(--sd-blue) 0%, var(--sd-blue-dark) 100%);
  color: var(--bg-white);
  border: none;
  border-radius: 10px;
  padding: 17px 28px;
  font-size: 17px;
  font-weight: 700;
  font-family: var(--font-head);
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  box-shadow: 0 5px 18px rgba(4,107,210,0.32);
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(4,107,210,0.42);
}

.btn-submit:active {
  transform: translateY(0);
}

.btn-submit-text {
  transition: opacity var(--transition);
}

.btn-submit-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255,255,255,0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
  flex-shrink: 0;
}

.btn-submit.loading {
  cursor: not-allowed;
  opacity: 0.85;
  pointer-events: none;
}

.btn-submit.loading .btn-submit-spinner {
  display: block;
}

.btn-submit.loading .btn-submit-text {
  opacity: 0.7;
}

.btn-submit.success {
  background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
  box-shadow: 0 5px 18px rgba(16,185,129,0.32);
  pointer-events: none;
}

/* ── Honeypot anti-bot ──────────────────────────────────────── */
.field-honey {
  position: absolute;
  left: -9999px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* ── LGPD Notice ────────────────────────────────────────────── */
.lgpd-notice {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.lgpd-notice a {
  color: var(--sd-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Success State ──────────────────────────────────────────── */
.success-state {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 0;
  animation: fadeIn 0.5s ease;
}

.success-state.active {
  display: flex;
}

.success-icon {
  font-size: 64px;
  color: var(--success);
  margin-bottom: 16px;
  animation: fadeIn 0.6s ease;
}

.success-title {
  font-size: 24px;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.success-state .risk-badge {
  margin-bottom: 18px;
}

.success-body {
  font-size: 15px;
  color: var(--text-main);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 24px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-head);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 5px 18px rgba(37,211,102,0.32);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.btn-whatsapp:hover {
  background: #20ba5c;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.42);
  color: #fff;
}

.success-note {
  font-size: 12px;
  color: var(--text-muted);
}

/* ── Authority Block ────────────────────────────────────────── */
.authority-block {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 8px;
  margin-bottom: 52px;
  text-align: center;
  max-width: 800px;
  width: 100%;
}

.auth-item {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 26px 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 8px 28px rgba(0,0,0,0.05);
  flex: 1;
  min-width: 200px;
  transition: all 0.4s ease;
  transform: translateY(20px);
  opacity: 0;
}

.auth-item.visible {
  transform: translateY(0);
  opacity: 1;
}

.auth-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 34px rgba(4,107,210,0.10);
  background: var(--bg-white);
}

.auth-number {
  display: block;
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 700;
  color: var(--sd-blue);
  margin-bottom: 6px;
  line-height: 1.1;
}

.auth-text {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.4;
}

/* ── Footer ─────────────────────────────────────────────────── */
.quiz-footer {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 32px;
  padding: 0 16px;
}

.quiz-footer a {
  color: var(--sd-blue);
  text-decoration: none;
  font-weight: 600;
}

.quiz-footer a:hover {
  text-decoration: underline;
}

.quiz-footer-legal {
  font-size: 11px;
  color: var(--text-muted);
  opacity: .45;
  margin-top: 6px;
  letter-spacing: .02em;
}

.quiz-footer-legal a {
  color: var(--text-muted);
  font-weight: 400;
  text-decoration: none;
  border-bottom: 1px dotted rgba(100,116,139,.3);
}

.quiz-footer-legal a:hover {
  opacity: .8;
  text-decoration: none;
  border-bottom-color: var(--text-muted);
}

.heart-pulse {
  display: inline-block;
  color: #ef4444;
  animation: heartbeat 1.2s infinite;
}

/* ── Keyframe Animations ────────────────────────────────────── */
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(48px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes slideOutLeft {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(-48px); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes pulseGlow {
  0%   { opacity: 0.7; }
  50%  { opacity: 1; }
  100% { opacity: 0.7; }
}

@keyframes slideDownAlert {
  from { opacity: 0; transform: scaleY(0.8); }
  to   { opacity: 1; transform: scaleY(1); }
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  14%       { transform: scale(1.25); }
  28%       { transform: scale(1); }
  42%       { transform: scale(1.18); }
  70%       { transform: scale(1); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.25; }
}

/* ── Responsive: 768px ──────────────────────────────────────── */
@media (max-width: 768px) {
  body {
    padding: 0 12px 32px;
  }


  .quiz-page-logo {
    margin: 24px auto 14px;
    max-width: 160px;
  }

  .quiz-container {
    padding: 32px 24px 28px;
    margin-bottom: 18px;
    border-radius: 10px;
    min-height: 360px;
  }

  .quiz-profile-tag {
    top: 14px;
    right: 14px;
    font-size: 10px;
    padding: 3px 10px;
  }

  .quiz-header-title {
    font-size: 18px;
  }

  .question-title {
    font-size: 17px;
  }

  .option-btn {
    padding: 12px 14px;
    gap: 10px;
  }

  .option-icon {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .option-label {
    font-size: 14px;
  }

  .option-chevron {
    display: none;
  }

  .auth-item {
    min-width: 100%;
    padding: 18px;
  }

  .auth-number {
    font-size: 28px;
  }

  .authority-block {
    gap: 12px;
    margin-bottom: 36px;
  }

  .btn-submit {
    font-size: 15px;
    padding: 15px 22px;
  }

  .form-title {
    font-size: 17px;
  }

  .success-title {
    font-size: 20px;
  }

  .success-icon {
    font-size: 52px;
  }
}

/* ── Responsive: 480px ──────────────────────────────────────── */
@media (max-width: 480px) {
  .quiz-container {
    padding: 28px 16px 22px;
    border-radius: 8px;
  }

  .quiz-header-title {
    font-size: 16px;
  }

  .quiz-header-sub {
    font-size: 13px;
  }

  .question-label {
    font-size: 9px;
  }

  .question-title {
    font-size: 15px;
  }

  .option-btn {
    padding: 11px 12px;
    margin-bottom: 10px;
    border-radius: 8px;
  }

  .option-icon {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }

  .option-label {
    font-size: 13px;
  }

  .option-desc {
    font-size: 11px;
  }

  .btn-continue {
    font-size: 14px;
    padding: 13px 18px;
  }

  .btn-submit {
    font-size: 14px;
    padding: 14px 18px;
  }

  .auth-number {
    font-size: 24px;
  }

  .auth-text {
    font-size: 13px;
  }

  .loading-spinner {
    width: 40px;
    height: 40px;
  }

  .form-input {
    font-size: 14px;
    padding: 12px 14px;
  }

  .risk-badge {
    font-size: 11px;
    padding: 5px 14px;
  }

  .success-icon {
    font-size: 44px;
  }

  .success-title {
    font-size: 18px;
  }

  .success-body {
    font-size: 14px;
  }

  .btn-whatsapp {
    font-size: 14px;
    padding: 14px 22px;
  }
}
