* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --pink: #ff4fa3;
  --pink-dark: #e92783;
  --pink-soft: #fff0f7;
  --pink-extra: #ffd9eb;
  --black: #171417;
  --gray: #716a70;
  --line: #e8e1e5;
  --white: #ffffff;
  --radius-lg: 34px;
  --radius-md: 24px;
  --shadow: 0 24px 70px rgba(57, 20, 40, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  background: #fffdfd;
  color: var(--black);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .045;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='.35'/%3E%3C/svg%3E");
}

.header {
    position: fixed;
    top: 10px;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: .35s ease;
}

.nav{
    width: calc(100% - 40px);
    max-width: 1400px;

    height: 74px;

    margin: 0 auto;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0 32px;

    background: rgba(255,255,255,.10);

    backdrop-filter: blur(28px);
    -webkit-backdrop-filter:blur(20px);

    border: none;


    border-radius:999px;

    box-shadow:
    0 10px 35px rgba(0,0,0,.08),
    inset 0 1px 0 rgba(255,255,255,.25);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-symbol{
    width:38px;
    height:38px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:13px 13px 13px 4px;

    overflow:hidden;

    background:#ff4fa3;
}

.brand-symbol img{
    width:75%;
    height:75%;

    object-fit:contain;
}

.brand-name {
  font-weight: 800;
  font-size: 25px;
  letter-spacing: -1.6px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 600;
  color: #4f484d;
}

.nav-links a {
  transition: .25s ease;
}

.nav-links a:hover {
  color: var(--pink);
}

.btn {
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 800;
  transition: .3s ease;
  border: 1px solid transparent;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(23,20,23,.16);
}

.btn-dark:hover {
  background: var(--pink);
}

.btn-pink {
  background: var(--pink);
  color: white;
  box-shadow: 0 16px 34px rgba(255,79,163,.27);
}

.btn-pink:hover {
  background: var(--pink-dark);
}

.btn-outline {
  border-color: var(--black);
  background: transparent;
}

.btn-outline:hover {
  background: var(--black);
  color: white;
}

.menu-btn {
  display: none;
  border: 0;
  background: transparent;
  font-size: 26px;
  cursor: pointer;
}

.hero {
  padding-top: 125px;
  background: rgba(255,255,255,.58);
    radial-gradient(circle at 92% 13%, rgba(255,79,163,.14), transparent 24%),
    linear-gradient(180deg, #fffdfd 0%, #fff7fb 100%);
  overflow: hidden;
}

.hero-grid {
  min-height: 650px;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: 60px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--pink-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.hero h1,
.section-heading h2,
.benefits-copy h2,
.payment-copy h2,
.cta-box h2 {
  font-size: clamp(48px, 6vw, 82px);
  line-height: .98;
  letter-spacing: -5px;
  font-weight: 800;
}

.hero h1 span,
.section-heading em,
.benefits-copy em,
.payment-copy em,
.cta-box em {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-style: italic;
  color: var(--pink);
}

.hero-text {
  max-width: 590px;
  margin: 28px 0;
  color: var(--gray);
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 34px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 800;
}

.text-link i {
  transition: .25s ease;
}

.text-link:hover i {
  transform: translateX(5px);
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatars {
  display: flex;
}

.avatars span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--black);
  color: white;
  border: 3px solid white;
  font-size: 9px;
  font-weight: 800;
  margin-left: -8px;
}

.avatars span:first-child {
  margin-left: 0;
  background: var(--pink);
}

.avatars span:nth-child(2) {
  background: #f3a7ca;
}

.hero-proof strong,
.hero-proof small {
  display: block;
}

.hero-proof strong {
  font-size: 13px;
}

.hero-proof small {
  color: var(--gray);
  font-size: 11px;
  margin-top: 3px;
}

.hero-visual {
  min-height: 620px;
  display: grid;
  place-items: center;
  position: relative;
}

.pink-orbit {
  position: absolute;
  border: 1px solid rgba(255,79,163,.25);
  border-radius: 50%;
}

.orbit-one {
  width: 520px;
  height: 520px;
}

.orbit-two {
  width: 410px;
  height: 410px;
  border-style: dashed;
  animation: spin 20s linear infinite;
}

.phone {
  width: 300px;
  height: 590px;
  border-radius: 48px;
  background: #fb69af;
  padding: 12px;
  box-shadow: 0 40px 90px rgba(135,37,85,.28);
  transform: rotate(7deg);
  position: relative;
  z-index: 2;
}

.phone::before {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 40px;
  border: 1px solid rgba(255,255,255,.35);
  pointer-events: none;
}

.phone-top {
  width: 88px;
  height: 22px;
  border-radius: 0 0 15px 15px;
  background: var(--black);
  position: absolute;
  left: 50%;
  top: 12px;
  transform: translateX(-50%);
  z-index: 3;
}

.phone-screen {
  height: 100%;
  border-radius: 38px;
  padding: 37px 15px 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 8%, rgba(255,255,255,.9), transparent 19%),
    linear-gradient(160deg, #fff 0%, #fff4f9 100%);
}

.phone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
}

.mini-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
}

.mini-logo span {
  width: 24px;
  height: 24px;
  border-radius: 8px 8px 8px 3px;
  background: var(--pink);
  color: white;
  display: grid;
  place-items: center;
  font-family: "Playfair Display";
  font-style: italic;
}

.phone-banner {
  padding: 22px;
  border-radius: 25px;
  margin-top: 22px;
  color: white;
  background:
    linear-gradient(135deg, rgba(255,255,255,.12), transparent),
    #1a1719;
  box-shadow: 0 16px 30px rgba(24,17,21,.16);
}

.phone-banner small {
  font-size: 7px;
  letter-spacing: 1.5px;
  opacity: .65;
}

.phone-banner h3 {
  font-size: 23px;
  line-height: 1.08;
  letter-spacing: -1px;
  margin: 11px 0 18px;
}

.phone-banner button {
  border: 0;
  border-radius: 99px;
  background: var(--pink);
  color: white;
  padding: 10px 14px;
  font-size: 9px;
  font-weight: 800;
}

.phone-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 18px;
}

.mini-card {
  background: white;
  border: 1px solid #f0e5eb;
  border-radius: 18px;
  padding: 8px;
  font-size: 8px;
  font-weight: 800;
}

.mini-product {
  height: 72px;
  border-radius: 12px;
  margin-bottom: 8px;
  background: var(--pink-soft);
  position: relative;
  overflow: hidden;
}

.cards-product::before,
.cards-product::after {
  content: "";
  width: 42px;
  height: 26px;
  border-radius: 4px;
  position: absolute;
  left: 13px;
  top: 22px;
  background: var(--pink);
  transform: rotate(-12deg);
}

.cards-product::after {
  background: var(--black);
  transform: rotate(12deg);
  left: 19px;
  top: 26px;
}

.sticker-product::before {
  content: "C";
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: white;
  color: var(--pink);
  font-size: 24px;
  font-family: "Playfair Display";
  font-style: italic;
  box-shadow: 0 5px 18px rgba(130,35,80,.12);
}

.shirt-product::before {
  content: "";
  width: 44px;
  height: 48px;
  position: absolute;
  left: 50%;
  top: 12px;
  transform: translateX(-50%);
  clip-path: polygon(22% 0, 38% 8%, 62% 8%, 78% 0, 100% 18%, 84% 36%, 76% 28%, 76% 100%, 24% 100%, 24% 28%, 16% 36%, 0 18%);
  background: var(--black);
}

.phone-order {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding: 15px;
  border-radius: 18px;
  background: var(--pink-soft);
}

.phone-order small,
.phone-order strong {
  display: block;
}

.phone-order small {
  font-size: 8px;
  color: var(--gray);
}

.phone-order strong {
  margin-top: 3px;
  font-size: 11px;
}

.phone-order span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--pink);
  color: white;
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.8);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.floating-card > i {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--pink-soft);
  color: var(--pink);
  font-size: 20px;
}

.floating-card small,
.floating-card strong {
  display: block;
}

.floating-card small {
  font-size: 9px;
  color: var(--gray);
}

.floating-card strong {
  font-size: 11px;
  margin-top: 2px;
}

.float-one {
  left: 0;
  top: 160px;
  animation: float 5s ease-in-out infinite;
}

.float-two {
  right: -15px;
  bottom: 100px;
  animation: float 5s ease-in-out infinite 1s;
}

.marquee-wrap {
  overflow: hidden;
  padding: 20px 0 30px;
}

.marquee {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 25px;
  animation: marquee 24s linear infinite;
  color: #958b91;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.marquee b {
  color: var(--pink);
}

.section {
  padding: 120px 0;
}

.products-section {
  background: white;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
}

.section-heading h2,
.benefits-copy h2,
.payment-copy h2 {
  font-size: clamp(42px, 5vw, 68px);
}

.section-heading > p {
  max-width: 430px;
  color: var(--gray);
  line-height: 1.75;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.product-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: white;
  transition: .35s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.product-image {
  min-height: 390px;
  position: relative;
  overflow: hidden;
}

.product-info {
  padding: 24px 26px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-info small {
  color: var(--pink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.6px;
}

.product-info h3 {
  font-size: 22px;
  margin-top: 7px;
}

.product-info a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--black);
  color: white;
  transition: .25s ease;
}

.product-info a:hover {
  background: var(--pink);
  transform: rotate(8deg);
}

.product-card-visual {
  background:
    radial-gradient(circle at 85% 15%, rgba(255,255,255,.8), transparent 25%),
    #ffd9e9;
}

.tag {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  background: white;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
}

.business-cards {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.card-back,
.card-front {
  width: 280px;
  height: 165px;
  border-radius: 15px;
  position: absolute;
  box-shadow: 0 20px 40px rgba(78,24,50,.17);
}

.card-back {
  transform: rotate(-14deg) translate(-20px, 15px);
  background: var(--black);
  color: white;
  display: grid;
  place-items: center;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 7px;
}

.card-front {
  transform: rotate(10deg) translate(35px, -10px);
  background: white;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-front span {
  width: 55px;
  height: 55px;
  border-radius: 17px 17px 17px 5px;
  display: grid;
  place-items: center;
  background: var(--pink);
  color: white;
  font-size: 36px;
  font-family: "Playfair Display";
  font-style: italic;
}

.card-front small {
  font-weight: 700;
}

.sticker-visual {
  background: #181518;
}

.sticker {
  position: absolute;
  display: grid;
  place-items: center;
  font-weight: 800;
  box-shadow: 0 20px 40px rgba(0,0,0,.25);
}

.sticker-a {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  top: 80px;
  left: 80px;
  transform: rotate(-14deg);
  background: var(--pink);
  color: white;
  font-size: 26px;
  letter-spacing: 4px;
}

.sticker-b {
  width: 190px;
  height: 75px;
  right: 65px;
  top: 55px;
  border-radius: 999px;
  background: white;
  color: var(--black);
  transform: rotate(9deg);
  font-size: 20px;
}

.sticker-c {
  width: 180px;
  height: 90px;
  right: 80px;
  bottom: 55px;
  border-radius: 18px;
  background: var(--pink-soft);
  color: var(--pink);
  transform: rotate(-8deg);
  font-size: 15px;
}

.packaging-visual {
  background:
    radial-gradient(circle at 15% 15%, rgba(255,255,255,.9), transparent 22%),
    #f7e7ef;
}

.box {
  width: 290px;
  height: 220px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -45%) rotate(-6deg);
  border-radius: 24px;
  background: var(--pink);
  box-shadow: 0 30px 50px rgba(131,37,82,.25);
  display: grid;
  place-items: center;
  color: white;
}

.box span {
  font-family: "Playfair Display";
  font-style: italic;
  font-size: 80px;
}

.box small {
  position: absolute;
  bottom: 25px;
  font-weight: 800;
  letter-spacing: 6px;
}

.tissue {
  position: absolute;
  width: 260px;
  height: 150px;
  left: 50%;
  top: 20px;
  transform: translateX(-50%) rotate(10deg);
  background: repeating-linear-gradient(45deg, #fff, #fff 16px, #ffd7ea 16px, #ffd7ea 18px);
  border-radius: 50% 50% 12px 12px;
  opacity: .95;
}

.shirt-visual {
  background:
    linear-gradient(140deg, transparent 0 45%, rgba(255,255,255,.4) 45% 55%, transparent 55%),
    #efedf0;
}

.tshirt {
  width: 320px;
  height: 300px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -46%);
  clip-path: polygon(27% 0, 40% 9%, 60% 9%, 73% 0, 100% 22%, 82% 43%, 72% 33%, 72% 100%, 28% 100%, 28% 33%, 18% 43%, 0 22%);
  background: var(--black);
  display: grid;
  place-items: center;
}

.tshirt span {
  color: white;
  text-align: center;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 4px;
  line-height: 1.3;
}

.center {
  text-align: center;
  margin-top: 45px;
}

.benefits {
  background: var(--black);
  color: white;
}

.benefits-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
  align-items: start;
}

.benefits-copy {
  position: sticky;
  top: 130px;
}

.benefits-copy p {
  max-width: 480px;
  margin: 25px 0;
  color: #bdb5ba;
  line-height: 1.8;
}

.dark-link {
  color: white;
}

.benefits-list {
  display: grid;
}

.benefit-item {
  display: grid;
  grid-template-columns: 48px 1fr 58px;
  gap: 22px;
  align-items: start;
  padding: 34px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.benefit-item > span {
  color: var(--pink);
  font-size: 12px;
  font-weight: 800;
}

.benefit-item h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.benefit-item p {
  color: #aaa2a7;
  line-height: 1.7;
}

.benefit-item > i {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(255,79,163,.12);
  color: var(--pink);
  font-size: 24px;
}

.how-section {
  background: #fff8fb;
}

.section-heading.centered {
  display: block;
  text-align: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step {
  position: relative;
  min-height: 290px;
  padding: 24px;
  border-radius: 28px;
  background: white;
  border: 1px solid var(--line);
}

.step > span {
  position: absolute;
  right: 22px;
  top: 18px;
  color: #d5ccd1;
  font-weight: 800;
}

.step-icon{
    width:58px;
    height:58px;

    border-radius:18px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:var(--pink-soft);

    margin:60px 0 26px;
}

.step-icon img{
    width:28px;
    height:28px;
    object-fit:contain;
    display:block;
}

.step h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.step p {
  color: var(--gray);
  line-height: 1.7;
  font-size: 14px;
}

.payment-section {
  background: white;
}

.payment-card {
  padding: 60px;
  border-radius: 40px;
  background:
    radial-gradient(circle at 95% 0%, rgba(255,79,163,.18), transparent 28%),
    #fff4f9;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 60px;
}

.payment-copy p {
  margin-top: 24px;
  color: var(--gray);
  line-height: 1.75;
}

.payment-options {
  display: grid;
  gap: 14px;
}

.payment-options article {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(255,255,255,.95);
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 12px 35px rgba(86,35,59,.08);
}

.payment-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--black);
  color: white;
  font-size: 22px;
}

.payment-icon.pix {
  background: white;
  color: var(--black);
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 900;
}

.payment-options h3 {
  font-size: 17px;
}

.payment-options p {
  font-size: 12px;
  color: var(--gray);
  margin-top: 3px;
}

.final-cta {
  padding-top: 40px;
  background: white;
}

.cta-box {
  position: relative;
  overflow: hidden;
  padding: 95px 40px;
  border-radius: 44px;
  background: var(--pink);
  color: white;
  text-align: center;
}

.cta-box h2 {
  font-size: clamp(52px, 7vw, 92px);
}

.cta-box h2 em {
  color: white;
}

.cta-box p {
  margin: 22px 0 30px;
  font-size: 17px;
  color: rgba(255,255,255,.78);
}

.eyebrow.light {
  color: white;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.btn-light {
  background: white;
  color: var(--black);
}

.btn-glass {
  color: white;
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.35);
  backdrop-filter: blur(10px);
}

.cta-decoration {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
}

.cta-circle-one {
  width: 420px;
  height: 420px;
  left: -190px;
  bottom: -240px;
}

.cta-circle-two {
  width: 360px;
  height: 360px;
  right: -160px;
  top: -210px;
}

.footer {
  padding: 85px 0 30px;
  background: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .7fr .7fr;
  gap: 60px;
}

.footer-brand {
  margin-bottom: 20px;
}

.footer-grid > div:first-child p {
  max-width: 390px;
  color: var(--gray);
  line-height: 1.7;
}

.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 13px;
  font-size: 14px;
}

.footer-links a,
.footer-contact a {
  color: var(--gray);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--pink);
}

.footer-contact span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #9a9196;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--black);
  color: white;
  font-size: 25px;
  box-shadow: 0 16px 34px rgba(22,20,22,.24);
  transition: .3s ease;
}

.whatsapp-float:hover {
  background: var(--pink);
  transform: translateY(-5px);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@media (max-width: 1050px) {
  .nav-links {
    gap: 20px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-bottom: 60px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .hero-proof {
    justify-content: center;
  }

  .benefits-grid,
  .payment-card {
    grid-template-columns: 1fr;
  }

  .benefits-copy {
    position: static;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .nav-cta {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 88px 20px auto;
    padding: 28px;
    border-radius: 24px;
    display: grid;
    background: white;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-15px);
    transition: .3s ease;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero {
    padding-top: 120px;
  }

  .hero-grid {
    gap: 20px;
  }

  .hero h1 {
    letter-spacing: -3px;
  }

  .hero-visual {
    min-height: 590px;
    transform: scale(.9);
  }

  .section-heading {
    display: block;
  }

  .section-heading > p {
    margin-top: 22px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 590px) {
  .container {
    width: min(100% - 26px, 1160px);
  }

  .nav {
    height: 76px;
  }

  .nav-links {
    inset: 76px 13px auto;
  }

  .hero h1,
  .section-heading h2,
  .benefits-copy h2,
  .payment-copy h2 {
    font-size: 44px;
    letter-spacing: -3px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 18px;
  }

  .hero-proof {
    align-items: flex-start;
  }

  .hero-visual {
    min-height: 520px;
    transform: scale(.76);
    margin: -40px 0;
  }

  .float-one {
    left: -45px;
  }

  .float-two {
    right: -40px;
  }

  .section {
    padding: 85px 0;
  }

  .product-image {
    min-height: 300px;
  }

  .business-cards {
    transform: scale(.75);
  }

  .sticker-visual {
    transform-origin: center;
  }

  .sticker-a {
    left: 35px;
  }

  .sticker-b {
    right: 25px;
  }

  .sticker-c {
    right: 35px;
  }

  .box {
    transform: translate(-50%, -45%) rotate(-6deg) scale(.8);
  }

  .tissue {
    transform: translateX(-50%) rotate(10deg) scale(.8);
  }

  .tshirt {
    transform: translate(-50%, -46%) scale(.78);
  }

  .benefits-grid {
    gap: 45px;
  }

  .benefit-item {
    grid-template-columns: 36px 1fr;
  }

  .benefit-item > i {
    display: none;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .payment-card {
    padding: 34px 22px;
    border-radius: 28px;
  }

  .cta-box {
    padding: 75px 20px;
    border-radius: 30px;
  }

  .cta-box h2 {
    font-size: 50px;
    letter-spacing: -3px;
  }

  .cta-actions {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

.payment-icon{
    width:54px;
    height:54px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#171417;
    flex-shrink:0;
}

.payment-icon.pix{
    background:#fff;
    border:1px solid #e8e1e5;
}

.payment-icon img{
    width:28px;
    height:28px;
    object-fit:contain;
    display:block;
}

