/**
 * NaviaDesk Core — forms, FAQ, cards, steps (NaviaDesk brand tokens)
 */

:root {
  --nd-teal: #0d9488;
  --nd-teal-dark: #0f766e;
  --nd-navy: #0b1f3a;
  --nd-orange: #f06a1a;
  --nd-orange-hover: #d95a10;
  --nd-gradient-teal: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
  --nd-text: #0f172a;
  --nd-text-muted: #475569;
  --nd-bg: #f8fafc;
  --nd-white: #ffffff;
  --nd-border: #e2e8f0;
  --nd-radius-lg: 24px;
  --nd-radius: 16px;
  --nd-radius-pill: 999px;
  --nd-shadow-sm: 0 4px 12px rgba(11, 31, 58, 0.06);
  --nd-shadow-lg: 0 22px 50px rgba(11, 31, 58, 0.12);
  --nd-shadow-orange: 0 12px 28px rgba(240, 106, 26, 0.28);
  --nd-font: "Plus Jakarta Sans", system-ui, sans-serif;
}

.nd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.4rem;
  border-radius: var(--nd-radius-pill);
  font-weight: 700;
  font-size: 0.94rem;
  line-height: 1.2;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.2s ease, color 0.2s ease;
  font-family: inherit;
}
.nd-btn--primary {
  background: var(--nd-orange);
  color: #fff;
  border-color: var(--nd-orange);
  box-shadow: var(--nd-shadow-orange);
}
.nd-btn--primary:hover {
  background: var(--nd-orange-hover);
  color: #fff;
  transform: translateY(-2px);
}
.nd-btn--secondary {
  background: transparent;
  color: var(--nd-navy);
  border-color: var(--nd-navy);
}
.nd-btn--ghost {
  background: transparent;
  color: var(--nd-navy);
  border-color: var(--nd-border);
}
.nd-btn--ghost:hover {
  border-color: var(--nd-teal);
  color: var(--nd-teal-dark);
}
.nd-btn--whatsapp {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
}

.nd-form-wrap { max-width: 720px; margin: 0 auto; }
.page-template-template-form .nd-form-wrap,
.page-template-template-technician .nd-form-wrap,
.page-template-template-contact .nd-form-wrap { max-width: 100%; margin: 0; }
.nd-form__note--alert {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  margin: 0.75rem 0 1rem;
  padding: 0.75rem 0.85rem;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 12px;
  color: #9a3412;
  font-weight: 550;
}
.nd-form__note--alert i {
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: #ea580c;
}
.nd-form {
  position: relative;
  background: var(--nd-white);
  border: 1px solid #e5ebf1;
  border-radius: 22px;
  padding: 1.5rem 1.35rem 1.6rem;
  box-shadow: var(--nd-shadow-lg);
}
@media (min-width: 700px) {
  .nd-form { padding: 1.85rem 1.75rem 1.9rem; }
}
.nd-form__header {
  margin: 0 0 1.25rem;
  padding: 0 0 1rem;
  border-bottom: 1px solid #e8eef3;
}
.nd-form__title {
  margin: 0 0 0.35rem;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--nd-navy);
  line-height: 1.25;
}
.nd-form__intro {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--nd-text-muted);
}
/* Sections use flex gap for even field spacing */
.nd-form__section {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin: 0 0 1.1rem;
  padding: 1.15rem 1.1rem 1.2rem;
  background: linear-gradient(180deg, #f7fbfa 0%, #f9fbfc 100%);
  border: 1px solid #e4eeeb;
  border-radius: 16px;
}
.nd-form__section:last-of-type {
  margin-bottom: 1rem;
}
.nd-form__section-title {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--nd-navy);
  line-height: 1.3;
}
.nd-form__section-text {
  margin: -0.4rem 0 0; /* pull closer under title */
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--nd-text-muted);
}
.nd-form__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem 1rem;
  margin: 0;
  width: 100%;
}
@media (min-width: 640px) {
  .nd-form__grid { grid-template-columns: 1fr 1fr; }
  .nd-form__field--full { grid-column: 1 / -1; }
}
/* Default (non-section forms): vertical stack with gap via margin */
.nd-form__field {
  margin: 0 0 1rem;
  min-width: 0;
  width: 100%;
}
/* Inside section: gap handles vertical rhythm — no field margins */
.nd-form__section .nd-form__field,
.nd-form__grid .nd-form__field {
  margin: 0;
}
/* Non-section form: last field before footer */
.nd-form > .nd-form__field:last-of-type {
  margin-bottom: 0;
}
.nd-form__field label {
  display: block;
  font-weight: 650;
  margin: 0 0 0.4rem;
  color: var(--nd-text);
  font-size: 0.88rem;
  line-height: 1.3;
}
.nd-form__field input[type="text"],
.nd-form__field input[type="email"],
.nd-form__field input[type="tel"],
.nd-form__field input[type="number"],
.nd-form__field input[type="date"],
.nd-form__field input[type="url"],
.nd-form__field select,
.nd-form__field textarea {
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 0.78rem 0.95rem;
  border: 1px solid #d7e0e8;
  border-radius: 12px;
  font: inherit;
  font-size: 0.95rem;
  line-height: 1.35;
  color: var(--nd-text);
  background: var(--nd-white);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.nd-form__field textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.5;
}
.nd-form__field select {
  appearance: none;
  -webkit-appearance: none;
  background-color: var(--nd-white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230f766e' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 16px;
  padding-right: 2.4rem;
  min-height: 48px;
}
.nd-form__field input:focus,
.nd-form__field select:focus,
.nd-form__field textarea:focus {
  outline: none;
  border-color: var(--nd-teal);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
}
.nd-form__field input::placeholder,
.nd-form__field textarea::placeholder { color: #94a3b8; }
.nd-req { color: var(--nd-orange); font-weight: 700; }
.nd-form__hint,
.nd-form__note {
  display: block;
  font-size: 0.82rem;
  color: var(--nd-text-muted);
  margin: 0.35rem 0 0;
  line-height: 1.4;
}
.nd-form__section > .nd-form__note,
.nd-form__section > .nd-form__note--alert {
  margin: 0;
}
.nd-form__file {
  border: 1.5px dashed #c5d5d1;
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  background: #fff;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.nd-form__file:hover {
  border-color: var(--nd-teal);
  background: #f4faf9;
}
.nd-form__file input[type="file"] {
  display: block;
  width: 100%;
  font-size: 0.88rem;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  box-shadow: none;
  line-height: 1.4;
}
.nd-form__checks {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: 0.55rem;
  margin: 0;
  width: 100%;
}
.nd-check {
  font-weight: 500 !important;
  display: flex !important;
  align-items: flex-start;
  gap: 0.45rem;
  margin: 0 !important;
  padding: 0.6rem 0.7rem;
  background: #fff;
  border: 1px solid #e2eaf0;
  border-radius: 10px;
  font-size: 0.86rem !important;
  line-height: 1.35;
}
.nd-check input {
  margin: 0.15rem 0 0;
  flex-shrink: 0;
  accent-color: var(--nd-teal);
}
.nd-form__footer {
  margin: 0.35rem 0 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid #e8eef3;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.nd-form__consent {
  margin: 0;
}
.nd-form__consent-label {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  cursor: pointer;
  margin: 0;
  padding: 0.95rem 1rem 1rem;
  border-radius: 14px;
  background: linear-gradient(180deg, #f4faf9 0%, #f7fafc 100%);
  border: 1px solid #dce9e7;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.nd-form__consent-label:hover {
  border-color: rgba(13, 148, 136, 0.35);
  background: #f2faf8;
}
.nd-form__consent-label:has(.nd-form__consent-input:focus-visible) {
  border-color: var(--nd-teal);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
}
.nd-form__consent-label:has(.nd-form__consent-input:checked) {
  border-color: rgba(13, 148, 136, 0.45);
  background: #ecfdf8;
  box-shadow: 0 8px 20px rgba(13, 148, 136, 0.08);
}
.nd-form__consent-input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  pointer-events: none;
}
.nd-form__consent-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 0.1rem;
  border-radius: 7px;
  border: 2px solid #94a3b8;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
}
.nd-form__consent-check i {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
}
.nd-form__consent-input:checked + .nd-form__consent-check {
  background: var(--nd-teal);
  border-color: var(--nd-teal);
  color: #fff;
  box-shadow: 0 4px 10px rgba(13, 148, 136, 0.28);
}
.nd-form__consent-input:focus-visible + .nd-form__consent-check {
  outline: 3px solid rgba(13, 148, 136, 0.28);
  outline-offset: 2px;
}
.nd-form__consent-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
  flex: 1;
}
.nd-form__consent-title {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--nd-teal-dark);
  line-height: 1.3;
}
.nd-form__consent-body {
  font-size: 0.9rem;
  font-weight: 500;
  color: #475569;
  line-height: 1.5;
}
.nd-form__consent a {
  color: var(--nd-teal-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1.5px;
}
.nd-form__consent a:hover {
  color: #0f766e;
}
.nd-form__actions {
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.nd-form__submit {
  display: inline-flex !important;
  width: 100%;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  font-size: 1.02rem;
  font-weight: 750;
  gap: 0.45rem;
  border-radius: 14px !important;
  box-shadow: 0 12px 28px rgba(240, 106, 26, 0.28) !important;
}
.nd-form__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(240, 106, 26, 0.34) !important;
}
.nd-form__submit i {
  font-size: 1.15rem;
  transition: transform 0.15s ease;
}
.nd-form__submit:hover i {
  transform: translateX(3px);
}
.nd-form__secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin: 0;
  padding: 0.15rem 0.25rem;
  font-size: 0.8rem;
  font-weight: 550;
  color: #64748b;
  text-align: center;
  line-height: 1.4;
}
.nd-form__secure-note i {
  color: var(--nd-teal);
  font-size: 1.05rem;
  flex-shrink: 0;
}
.nd-form__wa-note {
  margin-top: 0.35rem !important;
  color: #166534;
}
.nd-form__wa-note i {
  color: #25d366;
}

/* Guard against theme/prose spacing leaks inside forms */
.nd-form p { margin: 0; }
.nd-form .nd-form__header p,
.nd-form .nd-form__intro { margin: 0; }
.nd-prose .nd-form,
.nd-prose .nd-form-wrap {
  max-width: none;
}
.nd-prose .nd-form p {
  margin: 0;
}
.nd-hp {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}
.nd-form-success {
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  color: #065f46;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  margin-bottom: 1rem;
  font-weight: 550;
}
.nd-form-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  margin-bottom: 1rem;
  font-weight: 550;
}

.nd-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.25rem;
}
.nd-card {
  background: var(--nd-white);
  border: 1px solid transparent;
  border-radius: var(--nd-radius-lg);
  padding: 1.6rem;
  box-shadow: var(--nd-shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  height: 100%;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.nd-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--nd-shadow-lg);
  border-color: rgba(13, 148, 136, 0.2);
}
.nd-card__title {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 750;
  color: var(--nd-navy);
}
.nd-card__title a { color: inherit; text-decoration: none; }
.nd-card__title a:hover { color: var(--nd-teal); }
.nd-card__text {
  margin: 0;
  color: var(--nd-text-muted);
  font-size: 0.94rem;
  flex: 1;
}
.nd-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.4rem;
}
.nd-card__actions .nd-btn {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}
.nd-card__icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

/* Service cards — centered, refined CTAs */
.nd-cards--services .nd-card {
  align-items: center;
  text-align: center;
  padding: 1.85rem 1.4rem 1.35rem;
  border: 1px solid var(--nd-border);
  border-radius: 22px;
}
.nd-cards--services .nd-icon-wrap {
  margin: 0 auto 0.35rem;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(13, 148, 136, 0.12);
}
.nd-cards--services .nd-card__icon {
  margin: 0 auto 0.35rem;
}
.nd-cards--services .nd-card__text {
  max-width: 28ch;
  font-size: 0.9rem;
}
.nd-cards--services .nd-card__actions {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0.6rem;
  width: 100%;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #eef2f6;
}
.nd-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 44px;
  width: 100%;
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
  text-decoration: none;
  white-space: nowrap;
  border: 1.5px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.nd-card__btn i {
  font-size: 1rem;
  line-height: 1;
}
.nd-card__btn--ghost {
  background: #f4f7fa;
  color: var(--nd-navy);
  border-color: #e4eaf0;
}
.nd-card__btn--ghost:hover {
  background: #fff;
  border-color: var(--nd-teal);
  color: var(--nd-teal-dark);
}
.nd-card__btn--primary {
  background: var(--nd-orange);
  color: #fff;
  border-color: var(--nd-orange);
  box-shadow: 0 4px 12px rgba(240, 106, 26, 0.2);
}
.nd-card__btn--primary:hover {
  background: var(--nd-orange-hover);
  color: #fff;
  transform: translateY(-1px);
}
.nd-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  background: rgba(13, 148, 136, 0.12);
  color: var(--nd-teal-dark);
  flex-shrink: 0;
}
.nd-icon-wrap--sm {
  width: 48px;
  height: 48px;
  font-size: 1.3rem;
}
.nd-icon-wrap i { line-height: 1; }

.nd-faq {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}
.nd-faq__item {
  background: #fff;
  border: 1px solid #e8eef3;
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(11, 31, 58, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.nd-faq__item[open] {
  border-color: rgba(13, 148, 136, 0.35);
  box-shadow: 0 10px 28px rgba(11, 31, 58, 0.08);
}
.nd-faq__question {
  cursor: pointer;
  font-weight: 700;
  color: var(--nd-navy);
  padding: 1.05rem 1.15rem;
  list-style: none;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.85rem;
  align-items: center;
  user-select: none;
}
.nd-faq__question::-webkit-details-marker { display: none; }
.nd-faq__num {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--nd-teal-dark);
  background: rgba(13, 148, 136, 0.12);
  flex-shrink: 0;
}
.nd-faq__question-text {
  font-size: 0.98rem;
  letter-spacing: -0.015em;
  line-height: 1.35;
  text-align: left;
}
.nd-faq__toggle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f4f7fa;
  color: var(--nd-navy);
  font-size: 1.15rem;
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.nd-faq__icon-close { display: none; }
.nd-faq__item[open] .nd-faq__icon-open { display: none; }
.nd-faq__item[open] .nd-faq__icon-close { display: inline; }
.nd-faq__item[open] .nd-faq__question { color: var(--nd-navy); }
.nd-faq__item[open] .nd-faq__num {
  background: var(--nd-teal);
  color: #fff;
}
.nd-faq__item[open] .nd-faq__toggle {
  background: rgba(13, 148, 136, 0.12);
  color: var(--nd-teal-dark);
}
.nd-faq__item:hover .nd-faq__toggle {
  background: rgba(13, 148, 136, 0.12);
  color: var(--nd-teal-dark);
}
.nd-faq__answer {
  padding: 0 1.15rem 1.15rem 4.15rem;
  color: var(--nd-text-muted);
  border-top: 1px solid transparent;
}
.nd-faq__item[open] .nd-faq__answer {
  border-top-color: #eef2f6;
  padding-top: 0.85rem;
}
.nd-faq__answer-inner {
  font-size: 0.94rem;
  line-height: 1.65;
}
.nd-faq__answer-inner p:first-child { margin-top: 0; }
.nd-faq__answer-inner p:last-child { margin-bottom: 0; }
@media (max-width: 560px) {
  .nd-faq__question {
    gap: 0.65rem;
    padding: 0.95rem 0.95rem;
  }
  .nd-faq__answer {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .nd-faq__question-text {
    font-size: 0.92rem;
  }
}

.nd-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}
.nd-steps__item {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  padding: 1.35rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.nd-steps__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #0d9488, #f06a1a);
}
.nd-steps__marker {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nd-steps__num {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #fff;
  color: var(--nd-teal-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
}
.nd-steps__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 148, 136, 0.18);
  color: #5eead4;
  font-size: 1.2rem;
}
.nd-steps__label {
  display: block;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.35rem;
}
.nd-steps__text {
  display: block;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #94a3b8;
}
@media (max-width: 900px) {
  .nd-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .nd-steps { grid-template-columns: 1fr; }
}

.nd-coverage {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.nd-coverage__item {
  background: #fff;
  border: 1px solid rgba(13, 148, 136, 0.15);
  border-radius: var(--nd-radius-pill);
  padding: 0.45rem 1rem;
  font-size: 0.9rem;
  font-weight: 650;
  color: var(--nd-navy);
  box-shadow: var(--nd-shadow-sm);
}
.nd-disclaimer {
  margin-top: 1.15rem;
  font-size: 0.9rem;
  color: var(--nd-text-muted);
  font-style: italic;
}

.nd-float-wa {
  position: fixed;
  right: 1.35rem;
  bottom: 5.75rem;
  z-index: 9998;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--nd-shadow-lg);
  text-decoration: none;
  font-size: 1.8rem;
  transition: transform 0.25s ease;
}
.nd-float-wa:hover {
  transform: scale(1.08);
  color: #fff !important;
}

.nd-mobile-cta-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: var(--nd-navy);
}
@media (max-width: 767px) {
  .nd-mobile-cta-bar {
    display: grid;
    grid-template-columns: 1fr 1fr 1.35fr;
  }
}
.nd-mobile-cta-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  padding: 0.55rem 0.35rem;
  color: #fff !important;
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 650;
  min-height: 54px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.nd-mobile-cta-bar__item i { font-size: 1.15rem; }
.nd-mobile-cta-bar__item--cta {
  background: var(--nd-orange);
  border-right: 0;
}
.nd-mobile-cta-bar__item--wa { background: #128c7e; }

.nd-skip-link {
  position: absolute;
  left: -9999px;
  z-index: 100000;
  background: var(--nd-teal);
  color: #fff;
  padding: 0.75rem 1rem;
}
.nd-skip-link:focus {
  left: 1rem;
  top: 1rem;
}
