/* [project]/styles/Header.module.css [client] (css) */
.Header-module__vcZAwq__header {
  z-index: 100;
  -webkit-backdrop-filter: blur(16px);
  background: #f4f7fbd9;
  border-bottom: 1px solid #dde3ec99;
  position: sticky;
  top: 0;
}

.Header-module__vcZAwq__nav {
  z-index: 10;
  background: #fff;
  border-bottom: 1px solid #dde3ec;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 2.5rem;
  display: flex;
  position: sticky;
  top: 0;
}

.Header-module__vcZAwq__navLogo {
  color: #1a2e4a;
  align-items: center;
  gap: 10px;
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  text-decoration: none;
  display: flex;
}

.Header-module__vcZAwq__logoDot {
  background: #27ae78;
  border-radius: 9px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  display: flex;
}

.Header-module__vcZAwq__logoIcon {
  filter: brightness(0) invert();
}

.Header-module__vcZAwq__navLinks {
  align-items: center;
  gap: 2rem;
  font-size: .9rem;
  font-weight: 500;
  display: flex;
}

.Header-module__vcZAwq__navLink {
  color: #6b7a8d;
  text-decoration: none;
  transition: color .2s;
}

.Header-module__vcZAwq__navLink:hover {
  color: #1a2e4a;
}

.Header-module__vcZAwq__navLink.Header-module__vcZAwq__active {
  color: #1a2e4a;
  font-weight: 700;
}

.Header-module__vcZAwq__btnPrimary {
  color: #fff;
  cursor: pointer;
  background: #27ae78;
  border: none;
  border-radius: 9px;
  padding: .55rem 1.25rem;
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s;
  display: inline-block;
}

.Header-module__vcZAwq__btnPrimary:hover {
  background: #1a7a55;
}

.Header-module__vcZAwq__burger {
  cursor: pointer;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  display: none;
}

.Header-module__vcZAwq__burgerLine {
  background: #1a2e4a;
  border-radius: 2px;
  width: 22px;
  height: 2px;
  transition: transform .25s, opacity .25s;
  display: block;
}

.Header-module__vcZAwq__burgerOpen1 {
  transform: translateY(7px)rotate(45deg);
}

.Header-module__vcZAwq__burgerOpen2 {
  opacity: 0;
}

.Header-module__vcZAwq__burgerOpen3 {
  transform: translateY(-7px)rotate(-45deg);
}

@media (max-width: 768px) {
  .Header-module__vcZAwq__nav {
    padding: 1rem 1.5rem;
  }

  .Header-module__vcZAwq__burger {
    display: flex;
  }

  .Header-module__vcZAwq__navLinks {
    z-index: 10;
    background: #fff;
    border-bottom: 1px solid #dde3ec;
    flex-direction: column;
    gap: .75rem;
    padding: 1rem 2rem 1.5rem;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
  }

  .Header-module__vcZAwq__navLinksOpen {
    display: flex;
  }

  .Header-module__vcZAwq__navLink:not(.Header-module__vcZAwq__btnPrimary):not(.Header-module__vcZAwq__active) {
    display: block;
  }
}

/* [project]/styles/RedesignBemutato.module.css [client] (css) */
:root {
  --h-navy: #1a2e4a;
  --h-green: #27ae78;
  --h-green-light: #e8f8f2;
  --h-green-dark: #1a7a55;
  --h-bg: #f4f7fb;
  --h-white: #fff;
  --h-text: #1a2e4a;
  --h-muted: #6b7a8d;
  --h-border: #dde3ec;
}

.RedesignBemutato-module__9dBWIG__site {
  background: var(--h-bg);
  max-width: 1100px;
  margin: 0 auto;
}

.RedesignBemutato-module__9dBWIG__pageHeader {
  background: var(--h-white);
  border-bottom: 1px solid var(--h-border);
  padding: 3.5rem 2.5rem 2.5rem;
}

.RedesignBemutato-module__9dBWIG__eyebrow {
  background: var(--h-green-light);
  color: var(--h-green-dark);
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 20px;
  align-items: center;
  gap: 7px;
  margin-bottom: 1rem;
  padding: 4px 12px;
  font-size: .75rem;
  font-weight: 700;
  display: inline-flex;
}

.RedesignBemutato-module__9dBWIG__eyebrowDot {
  background: var(--h-green);
  border-radius: 50%;
  width: 7px;
  height: 7px;
  display: inline-block;
}

.RedesignBemutato-module__9dBWIG__pageTitle {
  color: var(--h-navy);
  margin-bottom: .8rem;
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.12;
}

.RedesignBemutato-module__9dBWIG__pageTitle em {
  color: var(--h-green);
  font-style: normal;
}

.RedesignBemutato-module__9dBWIG__pageSub {
  color: var(--h-muted);
  max-width: 560px;
  font-size: 1.05rem;
  line-height: 1.75;
}

.RedesignBemutato-module__9dBWIG__features {
  padding: 0;
}

.RedesignBemutato-module__9dBWIG__featureBlock {
  border-bottom: 1px solid var(--h-border);
  grid-template-columns: 1fr 1fr;
  gap: 0;
  display: grid;
}

.RedesignBemutato-module__9dBWIG__featureBlock:last-child {
  border-bottom: none;
}

.RedesignBemutato-module__9dBWIG__reverse {
  direction: rtl;
}

.RedesignBemutato-module__9dBWIG__reverse > * {
  direction: ltr;
}

.RedesignBemutato-module__9dBWIG__featureText {
  background: var(--h-white);
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem 3rem;
  display: flex;
}

.RedesignBemutato-module__9dBWIG__featureNumber {
  letter-spacing: .1em;
  color: var(--h-green);
  text-transform: uppercase;
  margin-bottom: .75rem;
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: .75rem;
  font-weight: 800;
}

.RedesignBemutato-module__9dBWIG__featureTitle {
  color: var(--h-navy);
  margin-bottom: .9rem;
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.2;
}

.RedesignBemutato-module__9dBWIG__featureDesc {
  color: var(--h-muted);
  margin-bottom: 1.25rem;
  font-size: .975rem;
  line-height: 1.75;
}

.RedesignBemutato-module__9dBWIG__featureHighlight {
  background: var(--h-green-light);
  border-radius: 10px;
  align-items: flex-start;
  gap: 10px;
  padding: .9rem 1rem;
  display: flex;
}

.RedesignBemutato-module__9dBWIG__featureHighlight svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
}

.RedesignBemutato-module__9dBWIG__featureHighlight p {
  color: var(--h-green-dark);
  margin: 0;
  font-size: .85rem;
  font-weight: 500;
  line-height: 1.55;
}

.RedesignBemutato-module__9dBWIG__featureVisual {
  background: var(--h-bg);
  justify-content: center;
  align-items: center;
  min-height: 380px;
  padding: 3rem 2.5rem;
  display: flex;
}

.RedesignBemutato-module__9dBWIG__featureVisualDark {
  background: var(--h-navy);
  justify-content: center;
  align-items: center;
  min-height: 380px;
  padding: 3rem 2.5rem;
  display: flex;
}

.RedesignBemutato-module__9dBWIG__illus {
  width: 100%;
  max-width: 320px;
}

.RedesignBemutato-module__9dBWIG__statsBar {
  background: var(--h-navy);
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 2.5rem;
  display: grid;
}

.RedesignBemutato-module__9dBWIG__statItem {
  text-align: center;
}

.RedesignBemutato-module__9dBWIG__statNum {
  color: #fff;
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.RedesignBemutato-module__9dBWIG__statNum span {
  color: var(--h-green);
}

.RedesignBemutato-module__9dBWIG__statLabel {
  color: #ffffff80;
  margin-top: 5px;
  font-size: .82rem;
}

.RedesignBemutato-module__9dBWIG__ctaSection {
  background: var(--h-white);
  text-align: center;
  border-top: 1px solid var(--h-border);
  padding: 4rem 2.5rem;
}

.RedesignBemutato-module__9dBWIG__ctaTitle {
  color: var(--h-navy);
  margin-bottom: .75rem;
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: 2rem;
  font-weight: 800;
}

.RedesignBemutato-module__9dBWIG__ctaSub {
  color: var(--h-muted);
  max-width: 460px;
  margin: 0 auto 2rem;
  font-size: 1rem;
  line-height: 1.7;
}

.RedesignBemutato-module__9dBWIG__ctaBadges {
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  display: flex;
}

.RedesignBemutato-module__9dBWIG__storeBadge {
  background: var(--h-navy);
  color: #fff;
  border-radius: 12px;
  align-items: center;
  gap: 9px;
  padding: 11px 22px;
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .2s;
  display: flex;
}

.RedesignBemutato-module__9dBWIG__storeBadge:hover {
  opacity: .85;
}

.RedesignBemutato-module__9dBWIG__storeBadge svg {
  fill: #fff;
  width: 21px;
  height: 21px;
}

.RedesignBemutato-module__9dBWIG__footer {
  background: var(--h-navy);
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.75rem 2.5rem;
  display: flex;
}

.RedesignBemutato-module__9dBWIG__footerLogo {
  color: #fff;
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
}

.RedesignBemutato-module__9dBWIG__footerLinks {
  gap: 1.5rem;
  display: flex;
}

.RedesignBemutato-module__9dBWIG__footerLinks a {
  color: #ffffff73;
  font-size: .85rem;
  text-decoration: none;
  transition: color .2s;
}

.RedesignBemutato-module__9dBWIG__footerLinks a:hover {
  color: #fff;
}

.RedesignBemutato-module__9dBWIG__footerCopy {
  color: #ffffff47;
  font-size: .75rem;
}

@media (max-width: 768px) {
  .RedesignBemutato-module__9dBWIG__featureBlock, .RedesignBemutato-module__9dBWIG__reverse {
    direction: ltr;
    grid-template-columns: 1fr;
  }

  .RedesignBemutato-module__9dBWIG__featureVisual, .RedesignBemutato-module__9dBWIG__featureVisualDark {
    min-height: 220px;
  }

  .RedesignBemutato-module__9dBWIG__featureText {
    padding: 2rem 1.5rem;
  }

  .RedesignBemutato-module__9dBWIG__statsBar {
    grid-template-columns: repeat(2, 1fr);
    padding: 2rem 1.5rem;
  }

  .RedesignBemutato-module__9dBWIG__pageHeader {
    padding: 2.5rem 1.5rem 2rem;
  }

  .RedesignBemutato-module__9dBWIG__ctaSection {
    padding: 2.5rem 1.5rem;
  }
}

/*# sourceMappingURL=styles_1x3a9lx._.css.map*/