@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@600;700&family=Nunito:wght@600;700;800;900&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* Landing pública Block Win */
body.bw-lp {
  --lp-blue: #0a2c74;
  --lp-blue-deep: #071a42;
  --lp-green: #3ddc6b;
  --lp-green-dark: #1f8c3d;
  --lp-yellow: #ffd84d;
  --lp-white: #ffffff;
  --lp-muted: rgba(255, 255, 255, 0.72);
  position: relative;
  isolation: isolate;
  overflow-x: hidden;
  color: var(--lp-white);
  background: var(--lp-blue);
  font-family: "Outfit", "Nunito", system-ui, -apple-system, "Segoe UI", sans-serif;
}

body.bw-lp.bw-page {
  background: var(--lp-blue);
}

body.bw-lp main {
  position: relative;
  z-index: 1;
}

.lp-page-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, transparent 0 89px, rgba(93, 150, 247, 0.16) 89px 90px),
    repeating-linear-gradient(90deg, transparent 0 89px, rgba(93, 150, 247, 0.16) 89px 90px),
    #0a2c74;
}

.lp-page-bg img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center top;
}

.lp-page-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(130% 90% at 50% 0%, rgba(10, 44, 116, 0.12) 0%, rgba(8, 28, 78, 0.4) 70%, rgba(6, 20, 54, 0.52) 100%),
    linear-gradient(180deg, rgba(7, 26, 66, 0.22) 0%, rgba(7, 22, 58, 0.4) 100%);
}

.lp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 56px;
  padding: 7px max(12px, calc((100vw - 1180px) / 2));
  background: rgba(9, 9, 13, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 28px rgba(0, 8, 31, 0.2);
  backdrop-filter: blur(14px);
}

.lp-brand,
.lp-logo {
  display: block;
}

.lp-brand {
  justify-self: start;
}

.lp-logo {
  width: auto;
  height: 36px;
  max-width: 140px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35));
}

.lp-logo-sm {
  height: 34px;
  max-width: 150px;
}

.lp-nav {
  display: none;
}

.lp-header-actions,
.lp-hero-actions,
.lp-cta-actions {
  display: flex;
  align-items: center;
}

.lp-header-actions {
  justify-self: end;
  gap: 10px;
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 40px;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: 12px;
  color: #fff;
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.12s ease, filter 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease;
}

.lp-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.lp-btn:active {
  transform: translateY(2px);
}

.lp-btn-green,
.lp-btn-play {
  color: #08351a;
  background: linear-gradient(180deg, #4ee07d 0%, #2fbf55 100%);
  border-color: rgba(112, 247, 156, 0.7);
  box-shadow: 0 5px 0 #1f8c3d, 0 12px 22px rgba(0, 0, 0, 0.24);
}

.lp-btn-ghost {
  color: rgba(255, 255, 255, 0.66);
  background: rgba(13, 17, 28, 0.72);
  border-color: rgba(255, 255, 255, 0.1);
}

.lp-btn-xl {
  min-height: 62px;
  padding: 16px 30px;
  border: 0;
  border-radius: 16px;
  font-family: "Fredoka", "Nunito", sans-serif;
  font-size: 19px;
  font-weight: 700;
  text-shadow: 0 1px rgba(255, 255, 255, 0.35);
  box-shadow: 0 6px 0 var(--lp-green-dark), 0 14px 26px rgba(0, 0, 0, 0.32);
}

.lp-btn-xl:hover {
  box-shadow: 0 8px 0 var(--lp-green-dark), 0 18px 30px rgba(0, 0, 0, 0.34);
}

.lp-btn-xl:active {
  transform: translateY(4px);
  box-shadow: 0 2px 0 var(--lp-green-dark), 0 8px 16px rgba(0, 0, 0, 0.3);
}

.lp-mini-blocks {
  display: grid;
  grid-template-columns: repeat(2, 7px);
  grid-template-rows: repeat(2, 7px);
  gap: 2px;
}

.lp-mini-blocks i {
  display: block;
  border-radius: 3px;
  box-shadow: inset 0 2px 2px rgba(255, 255, 255, 0.42), inset 0 -2px 3px rgba(0, 0, 0, 0.24);
}

.lp-mini-blocks i:nth-child(1) { background: #ef5350; }
.lp-mini-blocks i:nth-child(2) { background: #2ec8d0; }
.lp-mini-blocks i:nth-child(3) { background: #f7d54a; }
.lp-mini-blocks i:nth-child(4) { background: #3fc45f; }

.lp-hero {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 40px));
  min-height: 0;
  margin: 0 auto;
  padding: 96px 0;
}

.lp-hero::before {
  content: none;
}

.lp-hero-grid {
  width: 100%;
  margin: 0;
  display: block;
}

.lp-hero-copy {
  position: relative;
  z-index: 2;
  text-align: left;
  animation: lp-fade-up 0.65s ease both;
}

.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border: 0;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(11, 40, 88, 0.55);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.lp-eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lp-green);
  box-shadow: 0 0 10px var(--lp-green);
  animation: lp-pulse 1.8s ease-out infinite;
}

.lp-hero h1 {
  max-width: 760px;
  margin: 18px 0 0;
  color: #fff;
  font-family: "Fredoka", "Nunito", sans-serif;
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.01em;
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.18);
}

.lp-hero h1 em {
  display: inline;
  color: var(--lp-yellow);
  font-style: normal;
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.22), 0 0 28px rgba(255, 216, 77, 0.45);
}

.lp-hero-copy > p {
  max-width: 30em;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.55;
}

.lp-hero-actions {
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.lp-benefit-pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.lp-benefit-pills span {
  padding: 8px 13px;
  border: 0;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(11, 40, 88, 0.5);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.lp-hero-stats {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

.lp-hero-stats > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.lp-hero-stats > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.lp-hero-stats strong,
.lp-hero-stats span {
  display: block;
}

.lp-hero-stats strong {
  color: #fff;
  font-family: "Fredoka", "Nunito", sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.lp-hero-stats span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 700;
}

.lp-floating-block {
  position: absolute;
  z-index: 0;
  display: inline-block;
  width: 42px;
  height: 42px;
  border-style: solid;
  border-width: 7px;
  border-radius: 7px;
  opacity: 0.2;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  animation: lp-float 7s ease-in-out infinite;
}

.lp-floating-block-purple { left: -9%; top: 45%; background: #a259e0; border-color: #d5b4f1 #713e9d #542e74 #b881e7; }
.lp-floating-block-blue { right: -13%; bottom: 4%; background: #4a90e2; border-color: #adcdf1 #34659e #264b76 #75abe9; animation-delay: -1.4s; }
.lp-floating-block-green { right: 2%; top: 5%; width: 34px; height: 34px; background: #3fc45f; border-color: #a9e4b7 #2c8942 #216631 #6dd285; animation-delay: -2.8s; }
.lp-floating-block-yellow { left: 28%; top: 1%; width: 28px; height: 28px; background: #f7d54a; border-color: #fbecae #ad9534 #806f26 #f9df75; animation-delay: -0.8s; }
.lp-floating-block-red { right: 12%; top: 51%; width: 38px; height: 38px; background: #ef5350; border-color: #f8b2b0 #a73a38 #7c2b2a #f37c7a; animation-delay: -3.3s; }

.lp-section {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 30px 0;
}

.lp-section-head {
  max-width: none;
  margin: 0 0 40px;
  text-align: center;
}

.lp-kicker {
  display: inline-block;
  color: #57c3ff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lp-kicker::before {
  content: none;
}

.lp-section-head h2,
.lp-cta h2 {
  margin: 10px 0 0;
  color: #fff;
  font-family: "Fredoka", "Nunito", sans-serif;
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.16);
}

.lp-section-head p {
  margin: 14px auto 0;
  color: var(--lp-muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
}

.lp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lp-step {
  position: relative;
  min-height: 0;
  padding: 28px 24px;
  overflow: hidden;
  border: 0;
  border-radius: 20px;
  background: rgba(31, 74, 134, 0.42);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 12px 26px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, background 0.2s ease;
}

.lp-step:hover {
  transform: translateY(-4px);
  background: rgba(37, 84, 149, 0.52);
}

.lp-step-number {
  display: block;
  margin: 0;
  color: rgba(87, 195, 255, 0.32);
  font-family: "Fredoka", "Nunito", sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.lp-step-blocks {
  display: flex;
  gap: 5px;
  height: 26px;
  margin: 16px 0 14px;
}

.lp-step-blocks i,
.lp-footer-blocks i {
  position: relative;
  display: block;
  border-style: solid;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.lp-step-blocks i {
  width: 26px;
  height: 26px;
  border-width: 4px;
  border-radius: 5px;
}

.lp-step-blocks-yellow i { background: #f7d54a; border-color: #fbecae #ad9534 #806f26 #f9df75; }
.lp-step-blocks-mix i:nth-child(1) { background: #4a90e2; border-color: #adcdf1 #34659e #264b76 #75abe9; }
.lp-step-blocks-mix i:nth-child(2) { background: #3fc45f; border-color: #a9e4b7 #2c8942 #216631 #6dd285; }
.lp-step-blocks-mix i:nth-child(3) { background: #ef5350; border-color: #f8b2b0 #a73a38 #7c2b2a #f37c7a; }
.lp-step-blocks-rainbow i:nth-child(1) { background: #a259e0; border-color: #d5b4f1 #713e9d #542e74 #b881e7; }
.lp-step-blocks-rainbow i:nth-child(2) { background: #2ec8d0; border-color: #a1e6ea #208c92 #18686c #60d5db; }
.lp-step-blocks-rainbow i:nth-child(3) { background: #ff8f3c; border-color: #ffcda7 #b2642a #854a1f #ffaa6b; }
.lp-step-blocks-rainbow i:nth-child(4) { background: #df67a3; border-color: #f2b1d3 #9c4872 #733554 #e58aba; }

.lp-step h3,
.lp-feature h3 {
  margin: 0 0 8px;
  color: #fff;
  font-family: "Fredoka", "Nunito", sans-serif;
  font-weight: 600;
}

.lp-step h3 {
  font-size: 21px;
}

.lp-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
}

.lp-features {
  width: min(1120px, calc(100% - 40px));
  max-width: 1120px;
  padding-left: 0;
  padding-right: 0;
  background: transparent;
  border: 0;
}

.lp-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.lp-feature {
  padding: 26px 22px;
  border: 0;
  border-radius: 18px;
  background: rgba(11, 40, 88, 0.38);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07);
}

.lp-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border: 0;
  border-radius: 14px;
  font-size: 24px;
  box-shadow: inset 0 -2px rgba(0, 0, 0, 0.25), inset 0 2px rgba(255, 255, 255, 0.18);
}

.lp-feature-icon-shield { background: linear-gradient(145deg, #42d76d, #27964c); }
.lp-feature-icon-pix { background: linear-gradient(145deg, #ffdc4e, #eea928); }
.lp-feature-icon-phone { background: linear-gradient(145deg, #76c5ff, #4088d5); }
.lp-feature-icon-time { background: linear-gradient(145deg, #b868eb, #7f42bb); }

.lp-feature h3 {
  font-size: 18px;
}

.lp-feature p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

.lp-reviews {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.lp-review {
  min-height: 0;
  margin: 0;
  padding: 24px;
  border: 0;
  border-radius: 18px;
  background: rgba(31, 74, 134, 0.4);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.lp-stars {
  margin-bottom: 16px;
  color: var(--lp-yellow);
  font-size: 15px;
  letter-spacing: 2px;
}

.lp-review blockquote {
  min-height: 82px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
}

.lp-review figcaption {
  display: flex;
  align-items: center;
  gap: 11px;
}

.lp-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  font-family: "Fredoka", "Nunito", sans-serif;
  font-size: 18px;
  font-weight: 700;
  box-shadow: inset 0 -2px rgba(0, 0, 0, 0.25);
}

.lp-review:nth-child(1) .lp-avatar { background: #ef5a59; }
.lp-review:nth-child(2) .lp-avatar { background: #a85bdd; }
.lp-review:nth-child(3) .lp-avatar { background: #3acb69; }
.lp-review:nth-child(4) .lp-avatar { background: #ff913d; }

.lp-review strong,
.lp-review small {
  display: block;
}

.lp-review strong {
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

.lp-review small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 700;
}

.lp-cta {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 40px));
  margin: 40px auto 0;
  padding: 56px 32px 60px;
  overflow: hidden;
  text-align: center;
  border: 0;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(31, 74, 134, 0.6), rgba(11, 40, 88, 0.6));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 24px 50px rgba(0, 0, 0, 0.35);
}

.lp-cta h2 {
  margin-top: 0;
  font-size: clamp(28px, 4vw, 40px);
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.2);
}

.lp-cta-blocks {
  justify-content: center;
  margin: 0 auto 22px;
}

.lp-cta-blocks i {
  width: 38px;
  height: 38px;
  border-width: 7px;
  border-radius: 7px;
  animation: lp-float 6s ease-in-out infinite;
}

.lp-cta-blocks i:nth-child(2) { animation-delay: -0.4s; }
.lp-cta-blocks i:nth-child(3) { animation-delay: -0.8s; }
.lp-cta-blocks i:nth-child(4) { animation-delay: -1.2s; }

.lp-cta > p {
  margin: 12px 0 28px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  font-weight: 600;
}

.lp-cta-actions {
  justify-content: center;
}

.lp-cta-actions .lp-btn-xl {
  padding: 18px 40px;
  font-size: 21px;
}

.lp-cta small {
  display: block;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 700;
}

.lp-footer {
  position: relative;
  z-index: 2;
  margin-top: 8px;
  padding: 40px max(20px, calc((100vw - 1120px) / 2));
  color: rgba(255, 255, 255, 0.58);
  background: linear-gradient(180deg, #123f9e 0%, #0a2c74 100%);
  border: 0;
  font-family: "Nunito", system-ui, sans-serif;
  overflow: hidden;
}

.lp-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 40%;
  max-width: 380px;
  height: 2px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, #57c3ff, transparent);
  opacity: 0.6;
}

.lp-footer-main {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 28px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lp-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.lp-footer-brand p {
  max-width: 24em;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

.lp-footer-blocks {
  display: flex;
  gap: 6px;
  margin-top: 4px;
}

.lp-footer-blocks i {
  width: 20px;
  height: 20px;
  border-width: 3px;
  border-radius: 5px;
}

.lp-footer-blocks i:nth-child(1) { background: #ef5350; border-color: #f8b2b0 #a73a38 #7c2b2a #f37c7a; }
.lp-footer-blocks i:nth-child(2) { background: #4a90e2; border-color: #adcdf1 #34659e #264b76 #75abe9; }
.lp-footer-blocks i:nth-child(3) { background: #3fc45f; border-color: #a9e4b7 #2c8942 #216631 #6dd285; }
.lp-footer-blocks i:nth-child(4) { background: #f7d54a; border-color: #fbecae #ad9534 #806f26 #f9df75; }

.lp-footer-blocks.lp-cta-blocks i {
  width: 38px;
  height: 38px;
  border-width: 7px;
  border-radius: 7px;
}

.lp-footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.lp-footer-links strong {
  margin: 0;
  color: #fff;
  font-family: "Fredoka", "Nunito", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.lp-footer-links a,
.lp-footer-links span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
  text-decoration: none;
}

.lp-footer-links a {
  transition: color 0.18s ease, transform 0.18s ease;
}

.lp-footer-links a:hover {
  color: var(--lp-yellow);
  transform: translateX(3px);
}

.lp-responsible {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 22px 0 16px;
}

.lp-responsible b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 34px;
  height: 24px;
  padding: 0 7px;
  border-radius: 7px;
  color: #fff;
  background: linear-gradient(180deg, #ff6b78 0%, #ef4152 100%);
  box-shadow: inset 0 -2px rgba(0, 0, 0, 0.22), inset 0 1px rgba(255, 255, 255, 0.3);
  font-size: 12px;
  font-weight: 900;
}

.lp-responsible p,
.lp-copyright {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.55;
}

.lp-responsible p {
  color: rgba(255, 255, 255, 0.56);
}

.lp-copyright {
  color: rgba(255, 255, 255, 0.4);
}

.lp-top-button {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: #4a3810;
  background: linear-gradient(180deg, #ffe56a, #ffd13f);
  box-shadow: 0 5px 0 #d39c16, 0 13px 25px rgba(0, 0, 0, 0.24);
  font-size: 23px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.18s ease, filter 0.18s ease;
}

.lp-top-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

body.lp-auth-open {
  overflow: hidden;
}

.lp-auth-modal[hidden] {
  display: none;
}

.lp-auth-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, visibility 0.18s ease;
}

.lp-auth-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.lp-auth-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(12px);
  cursor: default;
}

.lp-auth-card {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  max-height: calc(100vh - 32px);
  overflow-x: hidden;
  overflow-y: auto;
  border: 1px solid #262626;
  border-radius: 24px;
  color: #d6d6d6;
  background: linear-gradient(165deg, rgba(31, 74, 134, 0.97) 0%, rgba(12, 40, 92, 0.98) 50%, rgba(9, 30, 74, 0.97) 100%);
  box-shadow: none;
  backdrop-filter: blur(30px);
  font-family: "Outfit", sans-serif;
  transform: translateY(14px) scale(0.97);
  transition: transform 0.2s ease;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.18) transparent;
}

.lp-auth-modal.is-open .lp-auth-card {
  transform: translateY(0) scale(1);
}

.lp-auth-tabs {
  display: flex;
  gap: 0;
  margin: 4px 20px 0;
  padding: 4px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.lp-auth-tab {
  flex: 1 1 50%;
  min-height: 39px;
  padding: 9px 14px;
  border: 0;
  border-radius: 11px;
  color: rgba(255, 255, 255, 0.3);
  background: transparent;
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.lp-auth-tab.is-active {
  color: #111218;
  background: linear-gradient(90deg, #00ff88 0%, #00e055 100%);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.lp-auth-close {
  position: absolute;
  top: 12px;
  right: 10px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.05);
  font-size: 23px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.lp-auth-close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(5deg);
}

.lp-auth-panel {
  padding: 16px 20px 20px;
}

.lp-auth-panel[hidden] {
  display: none;
}

.lp-auth-heading {
  margin-bottom: 18px;
  text-align: center;
}

.lp-auth-heading h2 {
  margin: 0;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
}

.lp-auth-heading p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
  font-weight: 400;
}

.lp-auth-form {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.lp-auth-field {
  position: relative;
  display: block;
}

.lp-auth-field input {
  display: block;
  width: 100%;
  height: 50px;
  padding: 13px 15px 13px 44px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  outline: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: none;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 400;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.lp-auth-field input::placeholder {
  color: rgba(255, 255, 255, 0.25);
  opacity: 1;
}

.lp-auth-field input:focus {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: none;
}

/* Mantém o visual escuro quando Chrome/Safari preenchem o login salvo. */
.lp-auth-field input:-webkit-autofill,
.lp-auth-field input:-webkit-autofill:hover,
.lp-auth-field input:-webkit-autofill:focus,
.lp-auth-field input:-webkit-autofill:active,
.lp-auth-field input:autofill {
  border-color: rgba(255, 255, 255, 0.12) !important;
  -webkit-text-fill-color: #fff !important;
  caret-color: #fff;
  background-color: #12356f !important;
  -webkit-box-shadow: 0 0 0 1000px #12356f inset !important;
  box-shadow: 0 0 0 1000px #12356f inset !important;
  transition: background-color 9999s ease-out 0s;
}

.lp-auth-field-icon {
  position: absolute;
  top: 50%;
  left: 14px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.25);
  transform: translateY(-50%);
  pointer-events: none;
}

.lp-auth-field-icon svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lp-auth-error,
.lp-auth-status {
  padding: 8px 10px;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.lp-auth-error {
  margin-top: -6px;
  color: #ffc4ca;
  background: rgba(239, 65, 82, 0.13);
}

.lp-auth-status {
  margin: -7px 0 12px;
  color: #bfffd1;
  background: rgba(45, 220, 107, 0.12);
}

.lp-auth-remember {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
  font-weight: 400;
  cursor: pointer;
}

.lp-auth-remember input {
  width: 15px;
  height: 15px;
  margin: 0;
  accent-color: #13e66b;
}

.lp-auth-submit {
  width: 100%;
  min-height: 48px;
  margin-top: 12px;
  padding: 14px 0;
  border: 0;
  border-radius: 12px;
  color: #111218;
  background: linear-gradient(90deg, #00ff88 0%, #00e055 100%);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.14s ease, filter 0.14s ease, box-shadow 0.14s ease;
}

.lp-auth-submit:hover {
  filter: brightness(0.96);
  transform: none;
}

.lp-auth-submit:active {
  transform: scale(0.99);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

.lp-auth-switch {
  margin: 23px 0 0;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  font-size: 12px;
  font-weight: 400;
}

.lp-auth-switch button {
  padding: 0;
  border: 0;
  color: #00e873;
  background: transparent;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.lp-auth-modal .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes lp-fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes lp-pulse {
  0% { box-shadow: 0 0 0 0 rgba(61, 220, 107, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(61, 220, 107, 0); }
  100% { box-shadow: 0 0 0 0 rgba(61, 220, 107, 0); }
}

@keyframes lp-float {
  0%, 100% { transform: translateY(0) rotate(4deg); }
  50% { transform: translateY(-12px) rotate(8deg); }
}

@media (max-width: 1000px) {
  .lp-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .lp-hero {
    width: calc(100% - 28px);
    padding: 24px 0 60px;
  }

  .lp-hero-copy {
    text-align: center;
  }

  .lp-hero-copy > p {
    margin-left: auto;
    margin-right: auto;
  }

  .lp-hero-actions {
    flex-direction: column;
    justify-content: center;
  }

  .lp-benefit-pills,
  .lp-hero-stats {
    justify-content: center;
  }

  .lp-section,
  .lp-features {
    width: calc(100% - 28px);
  }

  .lp-steps {
    grid-template-columns: 1fr;
  }

  .lp-footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 26px 20px;
  }

  .lp-footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 639px) {
  .lp-header {
    min-height: 56px;
    gap: 10px;
    padding: 7px 12px;
  }

  .lp-logo {
    height: 36px;
  }

  .lp-btn-play {
    display: none;
  }

  .lp-header-actions {
    gap: 7px;
  }

  .lp-header-actions .lp-btn {
    min-height: 38px;
    padding: 9px 13px;
    border-radius: 12px;
    font-size: 13px;
  }

  .lp-btn-register {
    box-shadow: 0 4px 0 #168b43, 0 8px 16px rgba(39, 222, 105, 0.16);
  }

  .lp-hero h1 {
    font-size: 34px;
  }

  .lp-hero-copy > p {
    font-size: 17px;
  }

  .lp-hero-stats {
    gap: 0;
    width: 100%;
  }

  .lp-hero-stats > div {
    padding: 0 12px;
  }

  .lp-hero-stats > div:first-child {
    padding-left: 0;
  }

  .lp-hero-stats strong {
    font-size: 20px;
  }

  .lp-section-head h2 {
    font-size: 26px;
  }

  .lp-feature-grid,
  .lp-reviews {
    grid-template-columns: 1fr;
  }

  .lp-review blockquote {
    min-height: 0;
  }

  .lp-cta {
    width: calc(100% - 28px);
    padding: 56px 24px 60px;
  }

  .lp-cta h2 {
    font-size: 28px;
  }

  .lp-footer {
    padding: 40px 20px 96px;
  }

  .lp-top-button {
    right: 20px;
    bottom: 74px;
  }
}

@media (max-width: 480px) {
  .lp-footer-main {
    grid-template-columns: 1fr;
  }

  .lp-footer-brand {
    grid-column: auto;
  }
}

@media (max-width: 390px) {
  .lp-header-actions .lp-btn {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 12px;
  }

  .lp-benefit-pills {
    justify-content: center;
  }

  .lp-benefit-pills span {
    padding: 8px 10px;
    font-size: 12px;
  }

  .lp-hero-stats > div {
    padding: 0 8px;
  }

}

@media (prefers-reduced-motion: reduce) {
  .lp-hero-copy,
  .lp-floating-block,
  .lp-eyebrow span,
  .lp-cta-blocks i {
    animation: none !important;
  }
}
