:root {
  --navy-950: #020c18;
  --navy-900: #03172d;
  --navy-800: #062541;
  --blue: #0aa9ff;
  --blue-strong: #008ee8;
  --lime: #8ee000;
  --lime-dark: #75bc00;
  --white: #ffffff;
  --muted: #b6c5d4;
  --line: rgba(255, 255, 255, .12);
  --shadow: 0 24px 70px rgba(0, 0, 0, .28);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--white);
  background: var(--navy-950);
  line-height: 1.5;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 999;
  padding: 12px 16px;
  color: #000;
  background: #fff;
  border-radius: 8px;
}
.skip-link:focus { top: 16px; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(2, 12, 24, .82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.topbar__inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
  text-align: center;
  transition: .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible {
  outline: 3px solid rgba(10, 169, 255, .45);
  outline-offset: 3px;
}
.button--small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 14px;
  color: var(--navy-950);
  background: var(--lime);
}
.button--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-strong), #0469c8);
  box-shadow: 0 14px 34px rgba(0, 142, 232, .28);
}
.button--accent {
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--lime), #b7ff30);
  box-shadow: 0 14px 34px rgba(142, 224, 0, .24);
}
.button--ghost {
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.04);
}
.button--full { width: 100%; }

.hero {
  overflow: hidden;
  position: relative;
  padding: 74px 0 70px;
  background:
    radial-gradient(circle at 78% 20%, rgba(10, 169, 255, .2), transparent 34%),
    radial-gradient(circle at 10% 75%, rgba(142, 224, 0, .1), transparent 26%),
    linear-gradient(135deg, #020c18 0%, #052746 58%, #03172d 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .2;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 70%, transparent);
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 64px;
}
.eyebrow, .section-kicker, .section-heading > span, .cta-section span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .16em;
}
.hero h1 {
  margin: 0;
  font-size: clamp(44px, 6vw, 76px);
  line-height: .98;
  letter-spacing: -.045em;
}
.hero h1 span {
  color: var(--blue);
}
.hero__lead {
  max-width: 680px;
  margin: 26px 0 22px;
  font-size: 20px;
  color: #d8e4ef;
}
.check-list {
  display: grid;
  gap: 10px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}
.check-list li {
  position: relative;
  padding-left: 30px;
  color: #dce8f3;
  font-weight: 650;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy-950);
  background: var(--lime);
  font-size: 13px;
  font-weight: 900;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero__note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}
.hero__visual {
  margin: 0;
  position: relative;
}
.hero__visual img {
  width: min(100%, 510px);
  margin-inline: auto;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #04182c;
}
.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-strip__grid > div {
  padding: 24px;
  border-right: 1px solid var(--line);
}
.trust-strip__grid > div:last-child { border-right: 0; }
.trust-strip strong, .trust-strip span { display: block; }
.trust-strip strong { font-size: 15px; }
.trust-strip span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.section { padding: 92px 0; }
.section-heading {
  max-width: 740px;
  margin: 0 auto 42px;
  text-align: center;
}
.section-heading--left {
  margin-inline: 0;
  text-align: left;
}
.section-heading h2, .benefits-copy h2, .cta-section h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.04;
  letter-spacing: -.035em;
}
.section-heading p, .benefits-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  max-width: 940px;
  margin-inline: auto;
}
.pricing-card {
  position: relative;
  padding: 34px;
  border: 1px solid rgba(10, 169, 255, .5);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(7, 42, 75, .92), rgba(3, 23, 45, .96));
  box-shadow: var(--shadow);
}
.pricing-card--featured {
  border-color: rgba(142, 224, 0, .76);
}
.pricing-card__badge {
  position: absolute;
  right: 22px;
  top: -14px;
  padding: 7px 13px;
  border-radius: 999px;
  color: var(--navy-950);
  background: var(--lime);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .08em;
}
.pricing-card__tag {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.pricing-card--featured .pricing-card__tag { color: var(--lime); }
.pricing-card h3 {
  margin: 10px 0 8px;
  font-size: 29px;
}
.price {
  display: flex;
  align-items: flex-end;
  margin: 12px 0 22px;
}
.price small {
  margin: 0 8px 13px 0;
  font-size: 24px;
  font-weight: 900;
}
.price strong {
  font-size: 76px;
  line-height: .9;
  letter-spacing: -.06em;
}
.price span {
  margin: 0 0 7px 5px;
  color: var(--muted);
  line-height: 1.1;
}
.pricing-card ul {
  display: grid;
  gap: 11px;
  margin: 0 0 28px;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}
.pricing-card li {
  position: relative;
  padding-left: 25px;
}
.pricing-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--lime);
  font-weight: 900;
}
.legal-note {
  max-width: 900px;
  margin: 26px auto 0;
  color: #8fa5b9;
  font-size: 12px;
  text-align: center;
}

.section--dark {
  background:
    radial-gradient(circle at 80% 20%, rgba(10,169,255,.12), transparent 28%),
    #03172d;
}
.benefits-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 62px;
  align-items: start;
}
.benefit-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.benefit-cards article {
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.035);
}
.benefit-cards span {
  color: var(--blue);
  font-weight: 900;
}
.benefit-cards h3 {
  margin: 24px 0 8px;
  font-size: 20px;
}
.benefit-cards p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.faq-layout {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 62px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  cursor: pointer;
  padding: 22px 42px 22px 0;
  font-size: 18px;
  font-weight: 800;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list details {
  position: relative;
}
.faq-list details::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 18px;
  color: var(--blue);
  font-size: 26px;
  font-weight: 300;
}
.faq-list details[open]::after { content: "−"; }
.faq-list p {
  margin: -4px 0 22px;
  padding-right: 48px;
  color: var(--muted);
}

.cta-section {
  padding: 0 0 92px;
}
.cta-section__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 46px;
  border: 1px solid rgba(142, 224, 0, .55);
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 40%, rgba(142,224,0,.16), transparent 30%),
    linear-gradient(135deg, #052a49, #03172d);
  box-shadow: var(--shadow);
}
.cta-section h2 { max-width: 720px; }
.cta-section p {
  margin: 14px 0 0;
  color: var(--muted);
}

.footer {
  padding: 30px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #010811;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.footer strong { color: #fff; }
.footer p { margin: 4px 0 0; }
.footer a { text-decoration: none; }
.footer a:hover { color: #fff; }

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #25d366;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
  transition: .2s ease;
}
.floating-whatsapp:hover { transform: scale(1.07); }
.floating-whatsapp svg { width: 31px; height: 31px; }

@media (max-width: 900px) {
  .hero__grid,
  .benefits-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .hero__visual { order: -1; }
  .hero__visual img { width: min(100%, 460px); }
  .trust-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip__grid > div:nth-child(2) { border-right: 0; }
  .pricing-grid { grid-template-columns: 1fr; }
  .cta-section__box { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1160px); }
  .topbar__inner { min-height: 66px; }
  .button--small { display: none; }
  .hero { padding: 36px 0 54px; }
  .hero__grid { gap: 34px; }
  .hero h1 { font-size: 43px; }
  .hero__lead { font-size: 17px; }
  .hero__actions { display: grid; }
  .hero__actions .button { width: 100%; }
  .trust-strip__grid { grid-template-columns: 1fr; }
  .trust-strip__grid > div {
    padding: 18px 4px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .section { padding: 68px 0; }
  .pricing-card { padding: 27px 22px; }
  .price strong { font-size: 62px; }
  .benefit-cards { grid-template-columns: 1fr; }
  .benefit-cards article { min-height: auto; }
  .cta-section__box { padding: 30px 24px; }
  .footer__inner { align-items: flex-start; flex-direction: column; }
  .floating-whatsapp {
    right: 15px;
    bottom: 15px;
    width: 54px;
    height: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}


/* Identidade visual Databel */

.brand img{
    width:210px;
    height:auto;
    display:block;
}

.hero__visual--brand{
    min-height:auto;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:28px;
    padding:40px;
    border:1px solid rgba(255,255,255,.12);
    border-radius:30px;
    background:
        radial-gradient(circle at 85% 18%, rgba(10,169,255,.18), transparent 28%),
        linear-gradient(145deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
    box-shadow:var(--shadow);
}

.hero__visual--brand > img{
    display:block;
    width:100%;
    max-width:420px;
    height:auto;
    object-fit:contain;
    margin:0 auto;
    border:0;
    border-radius:0;
    box-shadow:none;
}

.hero__brand-card{
    width:100%;
    padding:28px;
    border-left:4px solid var(--blue);
    border-radius:18px;
    background:rgba(2,12,24,.55);
}

.hero__brand-card span{
    display:block;
    margin-bottom:8px;
    color:var(--lime);
    font-size:12px;
    font-weight:800;
    letter-spacing:.15em;
}

.hero__brand-card strong{
    display:block;
    font-size:30px;
    line-height:1.2;
    margin-bottom:12px;
}

.hero__brand-card p{
    margin:0;
    color:var(--muted);
    font-size:17px;
    line-height:1.6;
}

@media (max-width:992px){
    .hero__visual--brand{padding:32px;}
    .hero__visual--brand>img{max-width:320px;}
}

@media (max-width:768px){
    .brand img{width:170px;}
    .hero__visual--brand{padding:24px;gap:20px;}
    .hero__visual--brand>img{max-width:220px;}
    .hero__brand-card{padding:22px;}
    .hero__brand-card strong{font-size:24px;}
    .hero__brand-card p{font-size:15px;}
}


/* Conversão: prazo promocional e argumento financeiro */
.promo-deadline {
  display: inline-flex;
  align-items: center;
  margin: -2px 0 20px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 193, 7, .48);
  border-radius: 9px;
  color: #ffe28a;
  background: rgba(255, 193, 7, .09);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.benefit-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.benefit-card--financial {
  grid-column: 1 / -1;
  min-height: auto !important;
}

.financial-comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0 18px;
}

.financial-comparison__item {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  background: rgba(255,255,255,.035);
}

.financial-comparison__item--highlight {
  border-color: rgba(142,224,0,.5);
  background: rgba(142,224,0,.08);
}

.financial-comparison__item strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 16px;
}

.financial-comparison__item p {
  margin: 0;
}

.accounting-note {
  margin-top: 14px !important;
  padding: 14px 16px;
  border-left: 3px solid var(--blue);
  border-radius: 0 12px 12px 0;
  background: rgba(10,169,255,.07);
  font-size: 13px !important;
}

@media (max-width: 700px) {
  .financial-comparison,
  .benefit-cards {
    grid-template-columns: 1fr;
  }

  .benefit-card--financial {
    grid-column: auto;
  }
}
