.site-mobile-menu-shell {
  overflow: hidden;
}

body {
  font-family: "Inter-NjBkMDQwOTZj", "Inter", system-ui, sans-serif;
}

.site-page-shell {
  overflow-x: clip;
}

.site-hero-inner {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.site-mobile-menu-panel {
  margin-top: 1rem;
  border: 1px solid rgb(243 244 246 / 1);
  border-radius: 1rem;
  background: rgb(255 255 255 / 0.98);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.08), 0 8px 10px -6px rgb(37 99 235 / 0.08);
  padding: 1.25rem;
  opacity: 0;
  max-height: 0;
  transform: translateY(-12px);
  transition: opacity 0.3s ease, transform 0.3s ease, max-height 0.3s ease;
}

.site-mobile-menu-shell[data-open="true"] .site-mobile-menu-panel {
  opacity: 1;
  max-height: 22rem;
  transform: translateY(0);
}

.site-mobile-menu-panel nav,
.site-mobile-menu-panel div {
  width: 100%;
}

.site-icon-menu,
.site-icon-close,
.site-icon-plus,
.site-icon-minus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-icon-menu[hidden],
.site-icon-close[hidden],
.site-icon-plus[hidden],
.site-icon-minus[hidden] {
  display: none !important;
}

.site-bolt-badge {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgb(15 23 42 / 0.06);
  border-radius: 0.75rem;
  background: rgb(255 255 255 / 0.98);
  box-shadow: 0 12px 24px -16px rgb(15 23 42 / 0.4);
  color: #111827;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
}

.site-bolt-badge:hover {
  color: #111827;
}

.site-bolt-badge-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
  transform: skewX(-12deg);
}

.site-bolt-badge-text {
  white-space: nowrap;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1055;
  display: flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.whatsapp-float img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
}

@media (min-width: 1024px) {
  .site-hero-inner {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

@media (max-width: 767px) {
  html,
  body {
    overflow-x: hidden;
  }

  .site-hero-section {
    min-height: auto;
    padding-top: 5rem;
  }

  .site-hero-inner {
    padding-top: 1.5rem;
    padding-bottom: 2.5rem;
  }

  .site-hero-copy {
    min-width: 0;
  }

  .site-hero-badge {
    display: inline-flex;
    width: 100%;
    max-width: 100%;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
  }

  .site-hero-title {
    font-size: 3rem;
    line-height: 1.05;
    overflow-wrap: anywhere;
  }

  .site-hero-primary-action {
    display: flex;
    width: 100%;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
  }

  .site-hero-stats {
    gap: 1.5rem;
  }

  .site-hero-stats > div {
    min-width: 0;
    flex: 1 1 8rem;
  }

  .site-hero-media {
    width: 100%;
  }

  .site-hero-media-shell {
    max-width: 100% !important;
  }

  .site-hero-media-frame {
    min-height: auto !important;
    aspect-ratio: 16 / 10 !important;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    width: 52px;
    height: 52px;
  }

  .whatsapp-float img {
    width: 52px;
    height: 52px;
  }
}

@media (min-width: 768px) {
  .site-mobile-menu-shell {
    display: none !important;
  }
}

.site-form-shell {
  width: 100%;
}

.site-form-card {
  background: rgb(255 255 255 / 0.98);
  border: 1px solid rgb(219 234 254 / 1);
  border-radius: 1.5rem;
  box-shadow: 0 24px 48px -24px rgb(37 99 235 / 0.25);
  padding: 2rem;
}

.site-form-heading {
  margin-bottom: 1.5rem;
}

.site-registration-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.site-field-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.site-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111827;
}

.site-field-helper {
  font-size: 0.875rem;
  color: #6b7280;
}

.site-input {
  width: 100%;
  border: 1px solid rgb(209 213 219 / 1);
  border-radius: 0.9rem;
  background: #fff;
  padding: 0.95rem 1rem;
  color: #111827;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-input:focus {
  outline: none;
  border-color: rgb(59 130 246 / 1);
  box-shadow: 0 0 0 4px rgb(219 234 254 / 0.9);
}

.site-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.site-checkbox-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid rgb(229 231 235 / 1);
  border-radius: 1rem;
  background: #fff;
  padding: 0.9rem 1rem;
  color: #374151;
  font-size: 0.95rem;
  font-weight: 500;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.site-checkbox-card:hover {
  border-color: rgb(191 219 254 / 1);
  box-shadow: 0 12px 24px -20px rgb(37 99 235 / 0.28);
}

.site-checkbox-card input {
  width: 1rem;
  height: 1rem;
  accent-color: #2563eb;
  flex-shrink: 0;
}

.site-field-validation {
  font-size: 0.875rem;
  color: #dc2626;
}

.site-validation-summary {
  margin-bottom: 1.25rem;
  border: 1px solid rgb(254 202 202 / 1);
  border-radius: 1rem;
  background: rgb(254 242 242 / 1);
  padding: 1rem 1.125rem;
  color: #991b1b;
  font-size: 0.9rem;
}

.site-validation-summary ul {
  list-style: disc;
  margin: 0;
  padding-left: 1.25rem;
}

.site-form-note {
  font-size: 0.875rem;
  color: #6b7280;
  text-align: center;
}

.site-benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border: 1px solid rgb(219 234 254 / 1);
  border-radius: 1rem;
  background: rgb(255 255 255 / 0.78);
  padding: 1rem 1.125rem;
}

.site-benefit-card-compact {
  height: 100%;
}

.site-benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background: rgb(37 99 235 / 0.1);
  color: #1d4ed8;
  font-size: 0.875rem;
  font-weight: 800;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .site-form-card {
    padding: 1.5rem;
  }

  .site-checkbox-grid {
    grid-template-columns: 1fr;
  }
}