:root {
  --orange: #39d353;
  --orange2: #15803d;
}

.book {
  width: 347px;
  height: auto;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
  filter: drop-shadow(-15px 18px 25px #000);
}

.book::before {
  content: none;
}

.book img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: none;
}

@media (max-width: 650px) {
  .book {
    width: 280px;
    height: auto;
  }
}

.price del,
.price strong {
  color: var(--orange);
  font-size: 20px;
  font-weight: 800;
}

.price del {
  margin-right: 6px;
  text-decoration-thickness: 2px;
}

.price .price-offer,
.price .price-offer del,
.price .price-offer span {
  color: #fff;
  font-size: 20px;
  font-weight: 800;
}

.final-cta .price .price-offer,
.final-cta .price .price-offer del,
.final-cta .price .price-offer span {
  font-size: 17px;
  white-space: nowrap;
}

.brand {
  color: #fff;
}

.social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: #fff;
  transition: color 0.2s, transform 0.2s;
}

.social span:hover {
  color: var(--orange);
  transform: translateY(-2px);
}

.social svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.social rect,
.social circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.social circle:last-child {
  fill: currentColor;
  stroke: none;
}

.cta,
.lead-dialog form button {
  background: linear-gradient(100deg, #15803d, #39d353);
  box-shadow: 0 0 25px rgba(34, 197, 94, 0.28);
  color: #fff;
}

.cta:hover,
.lead-dialog form button:hover {
  filter: brightness(1.1);
  box-shadow: 0 10px 35px rgba(34, 197, 94, 0.38);
}

body.modal-open {
  overflow: hidden;
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.84);
  backdrop-filter: blur(8px);
}

.lead-modal.open {
  display: grid;
}

.lead-dialog {
  position: relative;
  width: min(480px, 100%);
  padding: 42px;
  border: 1px solid #3a3d3f;
  border-radius: 16px;
  background: linear-gradient(145deg, #111517, #080a0b);
  box-shadow: 0 24px 80px #000, 0 0 35px rgba(57, 211, 83, 0.18);
}

.lead-dialog h2 {
  margin: 10px 0 8px;
  font-size: 30px;
}

.lead-dialog > p {
  margin: 0 0 24px;
  color: #aaa;
}

.lead-close {
  position: absolute;
  top: 12px;
  right: 16px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.lead-dialog form {
  display: grid;
  gap: 12px;
}

.lead-dialog .sib-input,
.lead-dialog .form__entry {
  display: grid;
  gap: 12px;
}

.lead-dialog label {
  color: #ddd;
  font-size: 14px;
  font-weight: 700;
}

.lead-dialog input {
  width: 100%;
  height: 54px;
  padding: 0 16px;
  border: 1px solid #4b4e50;
  border-radius: 6px;
  outline: none;
  background: #07090a;
  color: #fff;
  font: inherit;
}

.lead-dialog input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(57, 211, 83, 0.18);
}

.lead-dialog .entry__error {
  display: none;
  color: #ff9f9f;
  font-size: 13px;
  font-weight: 500;
}

.lead-dialog .entry__error--active {
  display: block;
}

.lead-dialog form button {
  height: 56px;
  border: 0;
  border-radius: 6px;
  background: linear-gradient(100deg, #15803d, #39d353);
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.lead-dialog form button svg {
  display: none;
}

.lead-dialog form small {
  color: #777;
  text-align: center;
}

.lead-message {
  display: none;
  margin: 0 0 16px;
  padding: 12px 14px;
  border: 1px solid;
  border-radius: 6px;
  font-size: 14px;
  text-align: left;
}

.lead-message.sib-form-message-panel--active {
  display: block;
}

.lead-error {
  border-color: #ff4949;
  background: #3c1515;
  color: #ffb8b8;
}

.lead-success {
  border-color: #13ce66;
  background: #0d3320;
  color: #b8ffd5;
}

.input--hidden {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
}

.confirmation-dialog {
  text-align: center;
}

.confirmation-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #15803d, #39d353);
  box-shadow: 0 0 28px rgba(57, 211, 83, 0.32);
  color: #fff;
  font-size: 38px;
  font-weight: 800;
}

.confirmation-dialog > p {
  text-align: center;
}

.confirmation-button {
  width: 100%;
  height: 54px;
  border: 0;
  border-radius: 6px;
  background: linear-gradient(100deg, #15803d, #39d353);
  box-shadow: 0 0 25px rgba(34, 197, 94, 0.28);
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 650px) {
  .final-cta .price .price-offer,
  .final-cta .price .price-offer del,
  .final-cta .price .price-offer span {
    white-space: normal;
  }

  .lead-dialog {
    padding: 36px 22px 28px;
  }

  .lead-dialog h2 {
    font-size: 25px;
  }
}

/* Conteúdo introdutório acima do vídeo. */
.hero-grid {
  grid-template-columns: 1fr;
  gap: 44px;
}

.hero-copy {
  max-width: 960px;
  margin-inline: auto;
  text-align: center;
}

.hero-copy h1 {
  max-width: 680px;
  margin: 0 auto 18px;
  text-align: center;
}

.hero-copy > p {
  max-width: 620px;
  margin-inline: auto;
}

.hero-video {
  margin-top: 34px;
  cursor: default;
}

.hero-video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.dashboard-laptop {
  display: block;
  width: min(100%, 960px);
  height: auto;
  margin: 30px auto 0;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.42));
}

.benefits-title {
  margin: 30px auto 0;
  font-size: 25px;
  line-height: 1.25;
  text-align: center;
}

.hero-copy .benefits {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  max-width: 1050px;
  margin-inline: auto;
  margin-top: 36px;
  gap: 24px;
}

.benefit-icon {
  display: block;
  flex: 0 0 96px;
  width: 96px;
  height: 96px;
  object-fit: contain;
  transform-origin: center;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.35));
}

.hero-copy .benefits > div:nth-child(3) .benefit-icon {
  transform: scale(1.08);
}

.hero-copy .benefits > div:nth-child(4) .benefit-icon {
  transform: scale(1.02);
}

.hero-copy .benefits > div:nth-child(5) .benefit-icon {
  transform: scale(0.98);
}

.hero-copy .benefits strong {
  margin-top: 10px;
}

.hero-media {
  width: 100%;
}

@media (max-width: 900px) {
  .hero-copy {
    max-width: none;
  }
}

@media (max-width: 650px) {
  .hero-grid {
    gap: 32px;
  }

  .hero-copy h1 {
    font-size: 40px;
  }

  .dashboard-laptop {
    width: calc(100% + 16px);
    max-width: none;
    margin: 24px -8px 0;
  }

  .benefits-title {
    margin-top: 24px;
    font-size: 22px;
  }

  .hero-copy .benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 12px;
  }

  .hero-copy .benefits > div:last-child {
    grid-column: 1 / -1;
  }

  .benefit-icon {
    flex-basis: 84px;
    width: 84px;
    height: 84px;
  }
}
