.modules {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: linear-gradient(180deg, #fbf9fc 0%, #f6f1f8 100%);
  color: #271d2a;
}

.modules:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#70328612 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}

.modules .wrap { position: relative; z-index: 1; }
.modules .section-head { margin-bottom: 48px; }
.modules .mini-title { color: #703286; }

.modules .section-head h2 {
  max-width: 700px;
  color: #271d2a;
  font-size: 48px;
  line-height: 1.04;
}

.modules .section-head h2 em {
  color: #703286;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.modules .section-head > p {
  max-width: 360px;
  padding-left: 22px;
  border-left: 2px solid #d2b5d9;
  color: #706676;
  line-height: 1.7;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  border: 0;
}

.module-grid article,
.module-grid article.wide {
  position: relative;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  overflow: hidden;
  border: 1px solid #e5dce8;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 16px 40px #41124c0c;
  color: #271d2a;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}

.module-grid article.wide {
  grid-column: span 2;
  background: linear-gradient(135deg, #f5eaf8 0%, #fff 72%);
  border-color: #d9c3df;
}

.module-grid article:hover {
  transform: translateY(-5px);
  border-color: #b98bc5;
  background: #fff;
  box-shadow: 0 24px 52px #41124c18;
}

.module-grid article.wide:hover {
  background: linear-gradient(135deg, #f5eaf8 0%, #fff 72%);
}

.module-grid article:before { display: none; }

.module-grid article > span {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border: 1px solid #e6dce8;
  border-radius: 50%;
  color: #9b8e9f;
  font-size: 8px;
}

.module-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 13px;
  background: #f1e7f4;
  color: #743789;
  box-shadow: none;
}

.module-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.module-grid article:nth-child(2) .module-icon,
.module-grid article:nth-child(6) .module-icon { background: #fff0dd; color: #db7c08; }
.module-grid article:nth-child(3) .module-icon,
.module-grid article:nth-child(5) .module-icon { background: #e3f3f4; color: #087b85; }
.module-grid article:nth-child(4) .module-icon { background: #e9efff; color: #4268b2; }
.module-grid article:nth-child(7) .module-icon { background: #f8e9f4; color: #b04b93; }

.module-grid h3 {
  margin: 40px 0 10px;
  color: #271d2a;
  font-size: 20px;
  letter-spacing: -.025em;
}

.module-grid article.wide h3 { font-size: 26px; }
.module-grid p { max-width: 390px; color: #746a78; font-size: 12px; line-height: 1.65; }
.module-grid a { display: none; }

.module-grid article.wide:after {
  content: "PEDIDOS  •  ENTREGA  •  RETIRADA";
  position: absolute;
  right: 27px;
  bottom: 28px;
  padding: 9px 13px;
  border: 1px solid #ddcce1;
  border-radius: 9px;
  background: #fff9;
  color: #76557e;
  font-size: 7px;
  letter-spacing: .12em;
}

@media (max-width: 900px) {
  .modules .section-head h2 { font-size: 42px; }
  .module-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .module-grid article.wide { grid-column: span 2; }
}

@media (max-width: 600px) {
  .modules { padding: 82px 0; }
  .modules .section-head h2 { font-size: 36px; }
  .modules .section-head > p { padding-left: 0; border: 0; }
  .module-grid { grid-template-columns: 1fr; }
  .module-grid article,
  .module-grid article.wide { grid-column: auto; min-height: 245px; }
  .module-grid article.wide:after { display: none; }
  .module-grid article.wide h3 { font-size: 23px; }
}

.pricing-conversion {
  padding: 100px 0;
  background: #fff;
}

.pricing-panel {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 48px;
  align-items: stretch;
  padding: 56px;
  border: 1px solid #e4d9e7;
  border-radius: 24px;
  background: linear-gradient(120deg, #faf4fb 0%, #fff 55%, #fff7ec 100%);
  box-shadow: 0 28px 75px #41124c0d;
}

.pricing-copy h2 {
  margin: 15px 0 18px;
  color: #271d2a;
  font-size: 46px;
  line-height: 1.06;
  letter-spacing: -.04em;
}

.pricing-copy h2 em {
  color: #703286;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.pricing-copy > p {
  max-width: 520px;
  color: #716776;
  font-size: 15px;
  line-height: 1.65;
}

.pricing-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 32px;
}

.pricing-benefits span {
  min-height: 88px;
  display: grid;
  grid-template-columns: 42px 1fr;
  grid-template-rows: auto auto;
  column-gap: 11px;
  align-content: center;
  padding: 15px;
  border: 1px solid #e8e0ea;
  border-radius: 13px;
  background: #fff;
}

.pricing-benefits svg {
  grid-row: 1 / 3;
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 10px;
  background: #f1e7f4;
  color: #743789;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pricing-benefits span:nth-child(2n) svg { background: #fff0dd; color: #db7c08; }
.pricing-benefits b { color: #302633; font-size: 14px; line-height: 1.25; }
.pricing-benefits small { margin-top: 3px; color: #857a88; font-size: 11px; line-height: 1.3; }

.price-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px;
  border-radius: 19px;
  background: linear-gradient(145deg, #4a0764 0%, #723187 72%, #684083 100%);
  box-shadow: 0 24px 55px #3d0c4930;
  color: #fff;
}

.offer-label {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid #ffffff30;
  border-radius: 99px;
  background: #ffffff12;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .12em;
}

.offer-label i { width: 7px; height: 7px; border-radius: 50%; background: #ffad3d; box-shadow: 0 0 0 4px #ffad3d22; }
.price-from { margin-top: 26px; color: #e7d7eb; font-size: 14px; }
.price { display: flex; align-items: baseline; gap: 5px; margin: 4px 0 24px; }
.price sup { font-size: 23px; font-weight: 800; }
.price strong { font-size: 58px; line-height: 1; letter-spacing: -.055em; }
.price > small { color: #e8daeb; font-size: 14px; font-weight: 700; }

.setup-offer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 17px;
  border: 1px solid #ffffff26;
  border-radius: 12px;
  background: #ffffff0e;
}

.setup-offer span,.setup-offer del { display: block; }
.setup-offer span { font-size: 13px; font-weight: 800; }
.setup-offer del { margin-top: 4px; color: #d8c7dc; font-size: 10px; }
.setup-offer > strong { color: #ffbd61; font-size: 18px; white-space: nowrap; }
.setup-offer > strong small { display: block; margin-top: 2px; color: #fff; font-size: 9px; text-align: right; }

.pricing-cta {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding: 0 19px;
  border-radius: 10px;
  background: #ff9209;
  color: #28172d;
  font-size: 14px;
  font-weight: 850;
  transition: transform .2s, box-shadow .2s;
}

.pricing-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 28px #1d071f38; }
.price-card > p { margin: 15px 2px 0; color: #e1d2e4; font-size: 10px; line-height: 1.55; }

@media (max-width: 900px) {
  .pricing-panel { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .pricing-conversion { padding: 60px 0; }
  .pricing-panel { padding: 28px 20px; border-radius: 18px; }
  .pricing-copy h2 { font-size: 34px; }
  .pricing-benefits { grid-template-columns: 1fr; }
  .price-card { padding: 26px 20px; }
  .price strong { font-size: 44px; }
  .setup-offer { align-items: flex-start; flex-direction: column; }
  .setup-offer > strong small { text-align: left; }
}
