.cs-banner[hidden],
.cs-modal[hidden],
.cs-floating-btn[hidden] {
  display: none !important;
}

.cs-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 99999;
}

.cs-banner__box {
  max-width: 1200px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,.15);
  padding: 20px;
  border: 1px solid rgba(0,0,0,.08);
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.cs-banner__content {
  flex: 1;
}

.cs-banner__title {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  color: #111827;
}

.cs-banner__text {
  margin: 0;
  line-height: 1.5;
  color: #374151;
  font-size: 14px;
}

.cs-banner__text a,
.cs-modal__links a {
  text-decoration: underline;
}

.cs-banner__actions,
.cs-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cs-btn {
  border-radius: 10px !important;
  min-height: 42px;
  padding: 10px 16px !important;
  font-weight: 600;
}

.cs-btn--primary {
  background: #193065 !important;
  border-color: #193065 !important;
  color: #fff !important;
}

.cs-btn--light {
  background: #f3f4f6 !important;
  border-color: #d1d5db !important;
  color: black !important;
}

.cs-btn--secondary {
  background: #fff !important;
  border-color: #9ca3af !important;
  color: black !important;
}

.cs-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
}

.cs-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, .55);
}

.cs-modal__panel {
  position: relative;
  z-index: 2;
  width: calc(100% - 30px);
  max-width: 760px;
  margin: 60px auto;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
}

.cs-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #f3f4f6;
  font-size: 24px;
  cursor: pointer;
}

.cs-modal__title {
  margin: 0 0 10px;
  font-size: 24px;
  color: black;
}

.cs-modal__intro {
  margin: 0 0 20px;
  color: black;
  line-height: 1.6;
}

.cs-cat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid #e5e7eb;
}

.cs-cat__text strong {
  display: block;
  margin-bottom: 5px;
  color: black;
}

.cs-cat__text p {
  margin: 0;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.5;
}

.cs-cat__action {
  flex-shrink: 0;
}

.cs-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #193065;
  color: white;
  font-weight: 600;
  font-size: 13px;
}

.cs-switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 30px;
}

.cs-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cs-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: #d1d5db;
  border-radius: 999px;
  transition: .2s ease;
}

.cs-slider:before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  left: 4px;
  top: 4px;
  background: #fff;
  border-radius: 50%;
  transition: .2s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,.2);
}

.cs-switch input:checked + .cs-slider {
  background-color: #193065;
}

.cs-switch input:checked + .cs-slider:before {
  transform: translateX(22px);
}

.cs-modal__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 20px 0;
}

.cs-floating-btn {
    position: fixed;
    left: 18px;      /* antes: right */
    bottom: 18px;
    z-index: 99998;
    border: 0;
    border-radius: 50px;
    background: #193065;
    color: #fff;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 8px 24px rgb(0 0 0 / .2);
    cursor: pointer;
}

.cs-modal-open {
  overflow: hidden;
}

@media (max-width: 767px) {
  .cs-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .cs-banner__box {
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
  }

  .cs-banner__actions,
  .cs-modal__actions {
    width: 100%;
    flex-direction: column;
  }

  .cs-btn {
    width: 100%;
  }

  .cs-cat {
    align-items: flex-start;
    flex-direction: column;
  }

  .cs-modal__panel {
    margin: 20px auto;
    padding: 20px;
  }
}

.cs-floating-btn {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;

    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 999px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #019fe6;
    color: #ffffff;
    cursor: pointer;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cs-floating-btn:hover {
    transform: translateY(-2px);
    background: #2e328a;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.cs-floating-btn:focus-visible {
    outline: 3px solid rgba(255, 216, 33, 0.65);
    outline-offset: 3px;
}

.cs-floating-btn__icon {
    width: 26px;
    height: 26px;
    fill: currentColor;
    display: block;
}

.cs-floating-btn {
    color: #ffffff;
}

.cs-floating-btn__icon {
    fill: currentColor;
}