:root {
  --midnight: #0e0e2c;
  --black-navy: #000121;
  --slate: #19283b;
  --emerald: #039270;
  --emerald-bright: #02bd8d;
  --white: #ffffff;
  --light: #f4f7fa;
  --muted: #ced7e5;
  --ink: #061123;
  --body: #334155;
  --border: #dfe6ee;
  --shadow: 0 18px 48px rgba(8, 20, 38, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--black-navy);
  font-family: Inter, Manrope, Sora, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  grid-auto-flow: column;
  justify-content:space-between;
  gap: 32px;
  min-height: 88px;
  padding: 0 42px;
  background: rgba(0, 1, 33, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  position: relative;
}

.nav-links{
  display: flex !important;
}

.nav-links-mob,
.menu-toggle {
  display: none;
}

/*==================
 Mobile only Rule. between 980px and 992px, buttom is bugged
 ===================*/

@media (max-width: 992px) {
  .site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    width: 100%;
    box-sizing: border-box;
  }
  
  .brand {
    display: flex;
    align-items: center;
    margin-left: 0%;
  }

  .nav-links {
   display: none !important;
   }

  .menu-toggle {
    display: block; /*mostra botão no cel*/
    background-color: #02bd8d;
    width: fit-content;
    border: none;
    border-radius: 15%;
    font-size: 30px;
    cursor: pointer;
    }

  .nav-links-mob {
    display: none; /*Começa fechado por padrão no cel*/
    flex-direction: column;
    position: absolute;
    top: 88px;
    left: 0;
    width: 100%;
    background-color: #000121;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 10;
  }

  .nav-links-mob a{
    padding: 15px 0;
    text-align: center;
    display: block;
    color: #ffffff; /* Texto branco */
    font-size: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-links-mob a:last-child{
    border-bottom: none;
  }

  /*quando javascript ativa o 'active', o CSS mostra o menu*/
  .nav-links-mob.active{
    display: flex;
  }
}


.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  overflow: hidden;
}

.brand img,
.footer-brand img {
  width: 202px;
  height: 70px;
  object-fit: cover;
  object-position: left center;
  border-radius: 0;
}

.nav-links,
.footer nav {
  display: flex;
  justify-content: center;
  gap: 72px;
  color: var(--white);
  font-size: 15px;
  font-weight: 650;
}

.nav-links a,
.footer a {
  opacity: 0.92;
  transition: color 180ms ease, opacity 180ms ease;
}

.nav-links a:hover,
.footer a:hover {
  color: var(--emerald-bright);
  opacity: 1;
}

.nav-links a[aria-current="page"],
.footer a[aria-current="page"] {
  color: var(--emerald-bright);
  opacity: 1;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 28px;
  color: var(--white);
  background: linear-gradient(90deg, #06966f 0%, #03b886 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  box-shadow: 0 14px 26px rgba(3, 146, 112, 0.24);
  font-size: 16px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(3, 146, 112, 0.32);
}

.button-small {
  min-width: 136px;
}

@media (max-width: 992px){
  .button-small{
    display: none;
  }
}

.button-large {
  min-width: 314px;
  min-height: 62px;
  padding: 0 34px;
  font-size: 20px;
}

.button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-dark {
  background:
    radial-gradient(circle at 50% 15%, rgba(3, 146, 112, 0.09), transparent 26%),
    linear-gradient(180deg, var(--black-navy) 0%, var(--midnight) 100%);
}

.hero {
  display: flex;
  align-items: center;
  min-height: 650px;
  padding: 104px 24px 108px;
}

.hero-inner {
  width: min(940px, 100%);
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  margin: 0 auto 32px;
  max-width: 830px;
  font-size: clamp(44px, 5vw, 62px);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 850;
}

.hero p {
  max-width: 648px;
  margin: 0 auto 40px;
  color: #d8deeb;
  font-size: 22px;
  line-height: 1.45;
}

.price-note {
  display: block;
  margin-top: 30px;
  color: #d8deeb;
  font-size: 17px;
}

.section-light {
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 0%, rgba(3, 146, 112, 0.08), transparent 26%),
    linear-gradient(180deg, var(--white) 0%, var(--light) 100%);
}

.pain-section,
.receive-section {
  padding: 72px 64px 76px;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(32px, 3vw, 43px);
  line-height: 1.14;
  letter-spacing: 0;
}

.section-heading p {
  margin: 0 auto;
  color: var(--body);
  font-size: 18px;
  line-height: 1.55;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}

.pain-card,
.receive-card {
  min-height: 236px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  color: var(--emerald);
}

.icon-circle svg,
.receive-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pain-card h3,
.receive-card h3,
.process-step h3 {
  margin: 0 0 14px;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0;
}

.pain-card p,
.receive-card p {
  margin: 0;
  color: var(--body);
  font-size: 16px;
  line-height: 1.55;
}

.section-closing {
  margin: 40px auto 0;
  max-width: 840px;
  color: var(--body);
  text-align: center;
  font-size: 18px;
}

.process-section {
  padding: 68px 76px 76px;
}

.dark-heading h2,
.dark-heading p {
  color: var(--white);
}

.dark-heading p {
  color: #d8deeb;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 46px;
  max-width: 1180px;
  margin: 0 auto;
}

.process-step {
  position: relative;
  padding-top: 34px;
}

.process-step::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50px;
  right: -28px;
  border-top: 1px dashed rgba(3, 184, 134, 0.45);
}

.process-step:last-child::before {
  display: none;
}

.process-step span {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 18px;
  color: var(--emerald-bright);
  background: rgba(3, 146, 112, 0.16);
  border-radius: 3px;
  font-size: 12px;
  font-weight: 850;
}

.process-step h3 {
  color: var(--white);
}

.process-step p {
  margin: 0;
  color: #d5dbe7;
  font-size: 16px;
  line-height: 1.55;
}

.receive-section {
  padding-top: 58px;
}

.receive-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto 28px;
}

.receive-card {
  display: flex;
  min-height: 176px;
  padding: 26px 22px;
  text-align: center;
  align-items: center;
  flex-direction: column;
}

.receive-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  color: var(--emerald);
  background: rgba(3, 146, 112, 0.08);
  border-radius: 50%;
  font-size: 15px;
  font-weight: 900;
}

.receive-icon svg {
  width: 28px;
  height: 28px;
}

.receive-card h3 {
  margin-bottom: 10px;
  font-size: 17px;
}

.receive-card p {
  max-width: 170px;
  font-size: 14px;
}

.quality-pill {
  width: max-content;
  max-width: 100%;
  margin: 32px auto 0;
  padding: 11px 18px;
  color: #5b6475;
  background: #eef3f7;
  border: 1px solid #e1e8ef;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 650;
}

.pricing-section {
  padding: 74px 64px 52px;
}

.pricing-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  max-width: 940px;
  margin: 0 auto;
}

.price-block {
  padding-right: 56px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 17px;
  font-weight: 800;
}

.price-line {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  margin-bottom: 18px;
}

.price-line strong {
  color: var(--emerald-bright);
  font-size: 60px;
  line-height: 0.95;
  letter-spacing: 0;
}

.price-line span {
  padding-bottom: 7px;
  color: #d8deeb;
  font-size: 16px;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #d8deeb;
  font-size: 15px;
  line-height: 1.35;
}

.check-list li {
  position: relative;
  padding-left: 24px;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--emerald-bright);
  clip-path: polygon(14% 52%, 35% 73%, 86% 22%, 100% 35%, 35% 100%, 0 65%);
}

.cta-block h2 {
  max-width: 500px;
  margin: 0 0 14px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: 0;
}

.cta-block p {
  max-width: 520px;
  margin: 0 0 28px;
  color: #d8deeb;
  font-size: 17px;
  line-height: 1.52;
}

.email-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-top: 14px;
  padding: 0 16px;
  color: #d8deeb;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  font-size: 14px;
}

.footer {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 92px;
  padding: 0 40px;
  color: #d8deeb;
  background: var(--black-navy);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

.footer nav {
  gap: 64px;
  font-size: 14px;
}

.section-label {
  margin: 0 0 18px;
  color: var(--emerald-bright);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.articles-hero {
  padding: 54px 24px 50px;
}

.articles-hero-inner {
  width: min(880px, 100%);
  margin: 0 auto;
  text-align: center;
}

.articles-hero h1 {
  margin: 0 auto 28px;
  max-width: 820px;
  font-size: clamp(44px, 5vw, 66px);
  line-height: 1.08;
  letter-spacing: 0;
}

.articles-hero p {
  max-width: 680px;
  margin: 0 auto;
  color: #d8deeb;
  font-size: 21px;
  line-height: 1.5;
}

.article-hub {
  padding: 36px 64px 88px;
}

.article-hub-header {
  max-width: 780px;
  margin: 0 auto 26px;
  text-align: center;
}

.article-hub-header h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(32px, 3vw, 44px);
  line-height: 1.12;
}

.article-hub-header p {
  margin: 0;
  color: var(--body);
  font-size: 18px;
  line-height: 1.55;
}

.article-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.article-card {
  display: flex;
  min-height: 390px;
  padding: 34px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
  flex-direction: column;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.article-card:hover {
  transform: translateY(-3px);
  border-color: rgba(3, 146, 112, 0.35);
  box-shadow: 0 22px 58px rgba(8, 20, 38, 0.15);
}

.article-meta {
  margin-bottom: 14px;
  color: var(--emerald);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-card h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 27px;
  line-height: 1.18;
  letter-spacing: 0;
}

.article-card h2 a:hover {
  color: var(--emerald);
}

.article-card p {
  margin: 0 0 28px;
  color: var(--body);
  font-size: 16px;
  line-height: 1.58;
}

.article-card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  margin-top: auto;
  color: var(--emerald);
  font-size: 15px;
  font-weight: 850;
}

.article-card-link svg,
.back-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.editorial-note {
  width: min(900px, 100%);
  margin: 34px auto 0;
  padding: 28px 32px;
  color: var(--ink);
  background: #f7fafc;
  border: 1px solid #e6edf4;
  border-radius: 8px;
}

.editorial-note h2 {
  margin: 0 0 10px;
  font-size: 22px;
}

.editorial-note p {
  margin: 0;
  color: var(--body);
  font-size: 16px;
  line-height: 1.6;
}

.article-page-hero {
  padding: 88px 24px 82px;
}

.article-page-hero-inner {
  width: min(900px, 100%);
  margin: 0 auto;
}

.back-link {
  display: inline-flex;
  width: max-content;
  margin-bottom: 28px;
  color: var(--emerald-bright);
  font-size: 15px;
  font-weight: 800;
}

.article-page-hero h1 {
  max-width: 900px;
  margin: 0 0 28px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.07;
  letter-spacing: 0;
}

.article-page-hero p {
  max-width: 720px;
  margin: 0;
  color: #d8deeb;
  font-size: 22px;
  line-height: 1.5;
}

.article-reader {
  padding: 78px 64px 96px;
}

.article-shell {
  display: grid;
  grid-template-columns: 250px minmax(0, 760px);
  gap: 64px;
  width: min(1120px, 100%);
  margin: 0 auto;
  align-items: start;
}

.article-toc {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 12px;
  padding: 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.article-toc h2 {
  margin: 0 0 8px;
  font-size: 18px;
}

.article-toc a {
  color: var(--body);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.35;
}

.article-toc a:hover {
  color: var(--emerald);
}

.article-content {
  color: var(--ink);
}

.article-lede {
  margin-top: 0;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.6;
  font-weight: 650;
}

.article-content h2 {
  margin: 48px 0 16px;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.16;
}

.article-content p {
  margin: 0 0 22px;
  color: var(--body);
  font-size: 19px;
  line-height: 1.78;
}

.reader-note {
  margin: 34px 0;
  padding: 24px 26px;
  color: var(--ink);
  background: rgba(3, 146, 112, 0.08);
  border-left: 4px solid var(--emerald);
  border-radius: 8px;
  font-size: 17px;
  line-height: 1.6;
}

.article-cta {
  margin: 58px 0 34px;
  padding: 36px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 10%, rgba(3, 184, 134, 0.16), transparent 28%),
    linear-gradient(180deg, var(--black-navy) 0%, var(--midnight) 100%);
  border-radius: 8px;
}

.article-cta h2 {
  margin: 0 0 14px;
  color: var(--white);
}

.article-cta p {
  max-width: 620px;
  color: #d8deeb;
}

.article-nav {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 28px;
  border-top: 1px solid #dce5ee;
}

.article-nav a {
  color: var(--emerald);
  font-size: 15px;
  font-weight: 850;
}

.template-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.template-grid div {
  padding: 24px;
  background: #f7fafc;
  border: 1px solid #e6edf4;
  border-radius: 8px;
}

.template-grid h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 18px;
}

.template-grid ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: var(--body);
  font-size: 15px;
  line-height: 1.45;
}

@media (max-width: 980px) {
  .site-header,
  .footer {
    grid-template-columns: 1fr auto;
    min-height: auto;
    padding: 18px 24px;
  }

  .nav-links,
  .footer nav {
    display: none;
  }

  .hero {
    min-height: 620px;
    padding: 88px 24px;
  }

  .hero p {
    font-size: 20px;
  }

  .pain-section,
  .process-section,
  .receive-section,
  .pricing-section {
    padding-left: 24px;
    padding-right: 24px;
  }

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

  .process-step::before {
    display: none;
  }

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

  .pricing-wrap {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .article-hub {
    padding-left: 24px;
    padding-right: 24px;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }

  .article-card-grid {
    grid-template-columns: 1fr;
  }

  .article-card {
    min-height: auto;
  }

  .article-reader {
    padding-left: 24px;
    padding-right: 24px;
  }

  .article-shell {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .article-toc {
    position: static;
  }

  .price-block {
    padding-right: 0;
    padding-bottom: 42px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }
}

@media (max-width: 620px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 14px;
  }

  .brand img,
  .footer-brand img {
    width: 186px;
    height: 66px;
  }

  .hero {
    min-height: 560px;
    padding: 64px 18px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    font-size: 18px;
  }

  .button-large {
    width: 100%;
    min-width: 0;
    font-size: 18px;
  }

  .pain-grid,
  .process-grid,
  .receive-grid {
    grid-template-columns: 1fr;
  }

  .pain-card,
  .receive-card {
    min-height: auto;
  }

  .pricing-section {
    padding-top: 58px;
  }

  .price-line {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .price-line strong {
    font-size: 54px;
  }

  .footer {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
    padding-bottom: 24px;
  }

  .articles-hero {
    padding: 70px 18px 64px;
  }

  .articles-hero h1 {
    font-size: 40px;
  }

  .articles-hero p {
    font-size: 18px;
  }

  .article-preview,
  .article-template {
    padding: 28px 22px;
  }

  .article-page-hero {
    padding: 62px 18px 58px;
  }

  .article-page-hero h1 {
    font-size: 40px;
  }

  .article-page-hero p,
  .article-lede {
    font-size: 19px;
  }

  .article-content p {
    font-size: 17px;
  }

  .article-cta {
    padding: 28px 22px;
  }

  .article-nav {
    flex-direction: column;
  }

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

/* Cookie Banner Styling */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  max-width: 420px;
  background-color: #111424; /* Tom escuro combinado com a seção dark */
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
  z-index: 9999;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.cookie-banner.hidden {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.cookie-content p {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #a0a5c1;
  margin: 0 0 16px 0;
}

.cookie-link {
  color: #02bd8d; /* Verde característico do LeadScore Hub */
  text-decoration: underline;
}

.cookie-link:hover {
  color: #029a73;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.cookie-btn {
  font-family: 'Manrope', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background-color: #02bd8d;
  color: #0b0d17;
  border: none;
}

.btn-primary:hover {
  background-color: #029a73;
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Responsivo para telemóveis */
@media (max-width: 480px) {
  .cookie-banner {
    bottom: 0;
    right: 0;
    left: 0;
    max-width: 100%;
    border-radius: 12px 12px 0 0;
    border-left: none;
    border-right: none;
    border-bottom: none;
  }
}