:root {
  --black: #171717;
  --gray: #666;
  --light: #f7f4f1;
  --white: #fff;
  --rose: #c87878;
  --rose-dark: #a75454;
  --rose-light: #f5e2e2;
  --green: #21a366;
  --border: #eadfda;
  --shadow: 0 18px 50px rgba(55, 33, 27, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  background:
    radial-gradient(circle at top left, #fff 0, transparent 34%),
    var(--light);
  font-family:
    Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.header {
  width: min(1120px, calc(100% - 32px));
  height: 76px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 23px;
  font-weight: 900;
  letter-spacing: -1px;
}

.logo span {
  color: var(--rose);
}

.header-link {
  font-size: 14px;
  font-weight: 700;
}

main {
  width: min(1080px, calc(100% - 32px));
  margin: auto;
}

.narrow {
  width: min(640px, calc(100% - 28px));
  min-height: calc(100vh - 100px);
  padding: 30px 0 70px;
}

.hero {
  max-width: 750px;
  text-align: center;
  padding: 72px 0 55px;
  margin: auto;
}

.eyebrow,
.mini-tag {
  color: var(--rose-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.4px;
}

.hero h1,
.payment-card h1,
.purchase-search h1,
.success-card h1,
.error-card h1 {
  margin: 15px 0;
  font-size: clamp(36px, 6vw, 67px);
  line-height: 1.02;
  letter-spacing: -2.5px;
}

.hero p,
.payment-card > p,
.purchase-search > p,
.success-card > p,
.error-card > p {
  color: var(--gray);
  font-size: 18px;
  line-height: 1.7;
}

.card {
  position: relative;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 22px;
  padding: 38px;
  margin-bottom: 24px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.card-offer {
  border: 2px solid var(--rose);
}

.card-icon {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 23px;
  background: var(--rose-light);
  font-size: 34px;
}

.card h2 {
  margin: 8px 0 12px;
  font-size: 31px;
  letter-spacing: -1px;
}

.card p {
  color: var(--gray);
  line-height: 1.65;
}

.offer-badge {
  position: absolute;
  top: -13px;
  right: 28px;
  padding: 8px 14px;
  border-radius: 99px;
  color: white;
  background: var(--rose);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
}

.button {
  min-height: 53px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  transition: 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: white;
  background: var(--rose);
  box-shadow: 0 12px 25px rgba(200, 120, 120, 0.25);
}

.button-outline {
  border: 1px solid var(--rose);
  color: var(--rose-dark);
  background: white;
}

.button-whatsapp {
  color: white;
  background: var(--green);
}

.button-test {
  width: 100%;
  color: #624d00;
  background: #ffe68d;
}

.benefits {
  padding: 0;
  margin: 22px 0;
  list-style: none;
}

.benefits li {
  padding: 7px 0;
}

.benefits li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--rose-dark);
  font-weight: 900;
}

.price {
  display: flex;
  flex-direction: column;
  margin: 20px 0;
}

.price small {
  color: var(--gray);
}

.price strong {
  margin-top: 3px;
  font-size: 38px;
}

.checkout-form {
  display: grid;
  gap: 11px;
  margin-top: 20px;
}

.checkout-form label,
.pix-label {
  font-size: 14px;
  font-weight: 800;
}

.checkout-form input {
  width: 100%;
  height: 57px;
  padding: 0 17px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: white;
  font: inherit;
  font-size: 17px;
  outline: none;
}

.checkout-form input:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 4px var(--rose-light);
}

.secure {
  margin-top: 15px;
  color: var(--gray);
  text-align: center;
  font-size: 12px;
}

.already {
  padding: 48px 15px 78px;
  text-align: center;
}

.already h3 {
  margin-bottom: 7px;
}

.already p {
  color: var(--gray);
}

.text-link {
  color: var(--rose-dark);
  font-weight: 900;
}

footer {
  padding: 34px 20px;
  display: flex;
  gap: 8px;
  justify-content: center;
  color: var(--gray);
  border-top: 1px solid var(--border);
  font-size: 13px;
}

.payment-card,
.purchase-search,
.success-card,
.error-card {
  padding: 38px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: white;
  box-shadow: var(--shadow);
  text-align: center;
}

.payment-card h1,
.purchase-search h1,
.success-card h1,
.error-card h1 {
  font-size: 41px;
  letter-spacing: -1.5px;
}

.payment-card > p,
.purchase-search > p,
.success-card > p,
.error-card > p {
  font-size: 16px;
}

.payment-value {
  margin: 24px auto;
  display: flex;
  flex-direction: column;
}

.payment-value span {
  color: var(--gray);
}

.payment-value strong {
  font-size: 35px;
}

.qr-code {
  width: min(280px, 100%);
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 20px;
}

.pix-label {
  display: block;
  margin: 25px 0 10px;
  text-align: left;
}

.copy-box textarea {
  width: 100%;
  height: 92px;
  resize: none;
  padding: 13px;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: var(--light);
}

.copy-box .button {
  width: 100%;
  margin-top: 10px;
}

.payment-waiting {
  margin-top: 24px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 14px;
}

.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid var(--rose-light);
  border-top-color: var(--rose);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.test-box,
.update-note {
  margin-top: 27px;
  padding: 18px;
  border-radius: 16px;
  background: #fff8d8;
  text-align: left;
}

.test-box p,
.update-note p {
  margin: 7px 0 14px;
  color: var(--gray);
  line-height: 1.5;
}

.purchase-search {
  text-align: left;
}

.purchase-search > .eyebrow,
.purchase-search > h1,
.purchase-search > p {
  text-align: center;
}

.purchase-list {
  display: grid;
  gap: 15px;
  margin-top: 28px;
}

.purchase-item {
  padding: 19px;
  border: 1px solid var(--border);
  border-radius: 18px;
}

.purchase-item h3 {
  margin: 10px 0 5px;
}

.purchase-item p {
  margin: 0 0 15px;
  color: var(--gray);
  font-size: 13px;
}

.purchase-item .button {
  width: 100%;
}

.status-approved {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.empty,
.alert {
  margin-top: 25px;
  padding: 20px;
  border-radius: 16px;
  text-align: center;
}

.empty {
  background: var(--light);
}

.empty p {
  color: var(--gray);
}

.alert-error {
  color: #991b1b;
  background: #fee2e2;
}

.success-icon,
.error-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--green);
  font-size: 38px;
  font-weight: 900;
}

.error-icon {
  background: var(--rose);
}

.access-actions {
  display: grid;
  gap: 13px;
  margin-top: 28px;
}

.error-card {
  margin-top: 90px;
}

@media (max-width: 680px) {
  .header {
    height: 65px;
  }

  .hero {
    padding: 45px 0 38px;
  }

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

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

  .card {
    grid-template-columns: 1fr;
    padding: 27px 21px;
    border-radius: 22px;
  }

  .card-icon {
    width: 60px;
    height: 60px;
    font-size: 27px;
  }

  .card h2 {
    font-size: 27px;
  }

  .payment-card,
  .purchase-search,
  .success-card,
  .error-card {
    padding: 28px 20px;
  }

  .payment-card h1,
  .purchase-search h1,
  .success-card h1,
  .error-card h1 {
    font-size: 33px;
  }

  footer {
    flex-direction: column;
    align-items: center;
  }
}


/* =========================================================
   REFINAMENTO DA PÁGINA INICIAL
   Mantém o visual claro e rosado original
========================================================= */

.home-page {
  padding-top: 76px;
}

.home-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 50%;

  width: 100%;
  max-width: none;
  height: 76px;
  margin: 0;
  padding: 0 max(24px, calc((100vw - 1120px) / 2));

  transform: translateX(-50%);

  border-bottom: 1px solid rgba(234, 223, 218, 0.85);

  background: rgba(247, 244, 241, 0.93);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow: 0 7px 28px rgba(55, 33, 27, 0.045);
}

.home-main {
  padding-top: 0;
}

.header-purchases-button {
  min-height: 42px;
  padding: 10px 16px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;

  border: 1px solid rgba(200, 120, 120, 0.36);
  border-radius: 12px;

  color: var(--rose-dark);
  background: rgba(255, 255, 255, 0.82);

  box-shadow: 0 8px 22px rgba(167, 84, 84, 0.08);

  font-size: 13px;
  font-weight: 850;

  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.header-purchases-button:hover {
  transform: translateY(-2px);

  border-color: var(--rose);

  background: var(--white);

  box-shadow: 0 12px 26px rgba(167, 84, 84, 0.14);
}

.header-purchases-icon {
  color: var(--rose);
  font-size: 16px;
  line-height: 1;
}

.home-page .hero {
  padding-top: 66px;
}

.home-page .hero h1 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.home-page .hero p {
  max-width: 690px;
  margin-left: auto;
  margin-right: auto;
}

.refined-store-card,
.refined-offer-card {
  text-align: center;
}

.refined-store-card {
  grid-template-columns: 1fr;

  max-width: 900px;
  margin-left: auto;
  margin-right: auto;

  padding: 34px 38px;
}

.refined-store-card .card-icon {
  margin: 0 auto;
}

.refined-store-card .card-content {
  max-width: 690px;
  margin: 0 auto;
}

.refined-store-card h2,
.refined-offer-card h2 {
  text-align: center;
}

.refined-store-card p,
.refined-offer-card p {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;

  text-align: center;
}

.shopee-button {
  min-width: 290px;
  margin-top: 8px;

  gap: 12px;

  border-width: 1.5px;

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 1),
      rgba(245, 226, 226, 0.55)
    );

  box-shadow:
    0 10px 26px rgba(200, 120, 120, 0.14);

  animation: refinedPulse 2.4s infinite;
}

.shopee-button strong {
  font-size: 19px;
  line-height: 1;
}

@keyframes refinedPulse {
  0% {
    box-shadow:
      0 0 0 0 rgba(200, 120, 120, 0.28),
      0 10px 26px rgba(200, 120, 120, 0.14);
  }

  70% {
    box-shadow:
      0 0 0 12px rgba(200, 120, 120, 0),
      0 13px 31px rgba(200, 120, 120, 0.18);
  }

  100% {
    box-shadow:
      0 0 0 0 rgba(200, 120, 120, 0),
      0 10px 26px rgba(200, 120, 120, 0.14);
  }
}

.refined-offer-card {
  grid-template-columns: 1fr;

  max-width: 900px;
  margin-left: auto;
  margin-right: auto;

  padding: 34px 42px;
}

.refined-offer-card .card-icon {
  margin: 0 auto;
}

.refined-offer-card .card-content {
  width: 100%;
  max-width: 690px;
  margin: 0 auto;
}

.offer-text {
  margin-bottom: 19px !important;
}

.refined-benefits {
  max-width: 650px;
  margin: 20px auto 22px;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.refined-benefits .benefit {
  min-height: 48px;
  padding: 10px 12px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  border: 1px solid var(--border);
  border-radius: 13px;

  color: var(--gray);
  background: rgba(247, 244, 241, 0.72);

  font-size: 12px;
  text-align: center;
}

.refined-benefits .benefit span {
  color: var(--rose-dark);
  font-size: 15px;
  font-weight: 950;
}

.refined-benefits .benefit strong {
  font-weight: 750;
}

.refined-price {
  align-items: center;
  margin: 17px 0 15px;
}

.refined-price strong {
  color: var(--rose-dark);
}

.refined-offer-card .checkout-form {
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.refined-offer-card .checkout-form label {
  text-align: center;
}

.refined-offer-card .checkout-form input {
  text-align: center;
}

.checkout-button {
  width: 100%;
}

.refined-offer-card .secure {
  text-align: center;
}

.refined-already {
  max-width: 720px;
  margin: 6px auto 0;
  padding: 46px 28px 70px;
}

.already-icon {
  width: 49px;
  height: 49px;
  margin: 0 auto 13px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(200, 120, 120, 0.28);
  border-radius: 50%;

  color: var(--rose-dark);
  background: var(--rose-light);

  font-size: 19px;
}

.refined-already h3 {
  margin: 0 0 8px;

  font-size: 22px;
  letter-spacing: -0.4px;
}

.refined-already p {
  max-width: 470px;
  margin: 0 auto 19px;

  line-height: 1.55;
}

.already-button {
  min-width: 235px;

  border: 1px solid rgba(200, 120, 120, 0.45);

  color: var(--rose-dark);
  background: var(--white);

  box-shadow: 0 9px 24px rgba(167, 84, 84, 0.1);
}

.already-button:hover {
  border-color: var(--rose);

  box-shadow: 0 12px 29px rgba(167, 84, 84, 0.16);
}

@media (max-width: 680px) {
  .home-page {
    padding-top: 65px;
  }

  .home-header {
    height: 65px;
    padding: 0 16px;
  }

  .header-purchases-button {
    min-height: 39px;
    padding: 8px 11px;

    font-size: 11px;
  }

  .header-purchases-icon {
    font-size: 14px;
  }

  .home-page .hero {
    padding-top: 47px;
  }

  .refined-store-card,
  .refined-offer-card {
    padding: 27px 21px;
  }

  .refined-store-card {
    display: block;
  }

  .refined-store-card .card-icon,
  .refined-offer-card .card-icon {
    margin-bottom: 16px;
  }

  .shopee-button {
    width: 100%;
    min-width: 0;
  }

  .refined-benefits {
    grid-template-columns: 1fr 1fr;
    gap: 7px;
  }

  .refined-benefits .benefit {
    min-height: 54px;
    padding: 9px 7px;

    font-size: 10px;
  }

  .offer-badge {
    right: 18px;
  }

  .refined-already {
    padding-bottom: 58px;
  }

  .already-button {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 390px) {
  .header-purchases-icon {
    display: none;
  }

  .header-purchases-button {
    padding-left: 9px;
    padding-right: 9px;
  }

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


/* ==========================================================
   PIOTFIT — LAYOUT FINAL CLARO E ROSADO
   Baseado no modelo aprovado
========================================================== */

:root {
  --pf-background: #fffaf8;
  --pf-background-soft: #fdf6f3;
  --pf-card: #ffffff;
  --pf-text: #171717;
  --pf-muted: #686868;
  --pf-rose: #ca7478;
  --pf-rose-dark: #b45e63;
  --pf-rose-light: #f8e8e7;
  --pf-border: #edd9d5;
  --pf-input-border: #e8d9d5;
  --pf-shadow: 0 18px 50px rgba(112, 62, 54, 0.075);
}


/* RESET ESPECÍFICO DA HOME */

body.piotfit-home {
  margin: 0;
  padding: 0;

  color: var(--pf-text);
  background:
    radial-gradient(
      circle at 50% 12%,
      rgba(255, 255, 255, 0.95),
      rgba(253, 246, 243, 0.82) 42%,
      rgba(255, 250, 248, 1) 78%
    );

  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

.piotfit-home * {
  box-sizing: border-box;
}


/* TOPO FIXO */

.pf-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;

  width: 100%;

  border-bottom: 1px solid rgba(237, 217, 213, 0.78);

  background: rgba(255, 252, 250, 0.94);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow: 0 7px 25px rgba(107, 63, 56, 0.035);
}

.pf-header-inner {
  width: min(1060px, calc(100% - 36px));
  height: 78px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pf-logo {
  display: inline-flex;
  align-items: center;

  color: #171717;

  font-size: 25px;
  font-weight: 950;
  letter-spacing: -1.7px;
  text-decoration: none;
}

.pf-logo strong {
  color: var(--pf-rose);
  font-weight: 950;
}

.pf-purchases-button {
  min-height: 46px;
  padding: 11px 18px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  border: 1px solid rgba(202, 116, 120, 0.48);
  border-radius: 13px;

  color: var(--pf-rose-dark);
  background: rgba(255, 255, 255, 0.87);

  box-shadow: 0 9px 23px rgba(180, 94, 99, 0.08);

  font-size: 14px;
  font-weight: 850;
  text-decoration: none;

  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.pf-purchases-button:hover {
  transform: translateY(-2px);

  border-color: var(--pf-rose);

  box-shadow: 0 13px 28px rgba(180, 94, 99, 0.14);
}

.pf-heart {
  color: var(--pf-rose);
  font-size: 24px;
  line-height: 1;
}


/* CONTAINER */

.pf-main {
  width: min(940px, calc(100% - 32px));
  margin: 0 auto;
  padding-top: 78px;
}


/* HERO */

.pf-hero {
  max-width: 760px;
  margin: 0 auto;
  padding: 74px 20px 46px;

  text-align: center;
}

.pf-eyebrow,
.pf-section-label {
  display: inline-block;

  color: var(--pf-rose-dark);

  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.45px;
}

.pf-eyebrow {
  padding: 7px 14px;

  border-radius: 99px;

  background: rgba(248, 232, 231, 0.82);
}

.pf-hero h1 {
  margin: 18px auto 15px;

  color: var(--pf-text);

  font-size: clamp(42px, 6.1vw, 64px);
  line-height: 1.03;
  letter-spacing: -2.7px;
}

.pf-hero p {
  max-width: 680px;
  margin: 0 auto;

  color: var(--pf-muted);

  font-size: 17px;
  line-height: 1.68;
}


/* CARDS GERAIS */

.pf-card {
  position: relative;

  width: 100%;
  margin-bottom: 24px;
  padding: 31px;

  border: 1px solid var(--pf-border);
  border-radius: 24px;

  background: rgba(255, 255, 255, 0.95);

  box-shadow: var(--pf-shadow);
}


/* CARD PRODUTOS */

.pf-product-content {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) 230px;
  gap: 24px;
  align-items: center;
}

.pf-round-icon {
  width: 72px;
  height: 72px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  color: var(--pf-rose);
  background: var(--pf-rose-light);

  font-size: 33px;
}

.pf-product-text h2,
.pf-supplier-heading h2 {
  margin: 9px 0 11px;

  color: var(--pf-text);

  font-size: 29px;
  line-height: 1.12;
  letter-spacing: -1px;
}

.pf-product-text p,
.pf-supplier-heading p {
  margin: 0;

  color: var(--pf-muted);

  font-size: 14px;
  line-height: 1.65;
}


/* ILUSTRAÇÃO SIMPLES DA LOJA */

.pf-store-illustration {
  position: relative;

  width: 215px;
  height: 125px;
  margin-left: auto;
}

.pf-rack {
  position: absolute;
  left: 5px;
  bottom: 13px;

  width: 105px;
  height: 89px;

  border-top: 3px solid #d8878b;
  border-left: 3px solid #d8878b;
  border-right: 3px solid #d8878b;
  border-radius: 7px 7px 0 0;
}

.pf-rack::before,
.pf-rack::after {
  content: "";

  position: absolute;
  bottom: -12px;

  width: 28px;
  height: 3px;

  background: #d8878b;
}

.pf-rack::before {
  left: -13px;
}

.pf-rack::after {
  right: -13px;
}

.pf-rack span {
  position: relative;

  width: 20px;
  height: 47px;
  margin: 7px 1px 0;

  display: inline-block;

  border-radius: 4px 4px 8px 8px;

  background: linear-gradient(#edaeb1, #d98085);
}

.pf-mirror {
  position: absolute;
  right: 38px;
  bottom: 12px;

  width: 43px;
  height: 98px;

  border: 3px solid #d8878b;
  border-radius: 50% 50% 44% 44%;

  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9),
    rgba(244, 225, 224, 0.75)
  );

  transform: rotate(4deg);
}

.pf-bag {
  position: absolute;
  right: 1px;
  bottom: 8px;

  width: 36px;
  height: 42px;

  border-radius: 3px;

  background: #d8878b;
}

.pf-bag::before {
  content: "";

  position: absolute;
  top: -14px;
  left: 8px;

  width: 17px;
  height: 18px;

  border: 3px solid #d8878b;
  border-bottom: 0;
  border-radius: 13px 13px 0 0;
}


/* BOTÃO PRODUTOS */

.pf-outline-button {
  width: 100%;
  min-height: 57px;
  margin-top: 26px;
  padding: 14px 22px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;

  border: 1.5px solid rgba(202, 116, 120, 0.65);
  border-radius: 13px;

  color: var(--pf-rose);
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 1),
      rgba(253, 243, 241, 0.65)
    );

  font-size: 15px;
  font-weight: 850;
  text-decoration: none;

  box-shadow: 0 10px 24px rgba(202, 116, 120, 0.09);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.pf-outline-button strong {
  margin-left: auto;

  font-size: 22px;
  font-weight: 500;
}

.pf-button-icon {
  font-size: 22px;
}

.pf-outline-button:hover {
  transform: translateY(-2px);

  box-shadow: 0 14px 29px rgba(202, 116, 120, 0.15);
}

.pf-pulse {
  animation: pfPulse 2.5s infinite;
}

@keyframes pfPulse {
  0% {
    box-shadow:
      0 0 0 0 rgba(202, 116, 120, 0.28),
      0 10px 24px rgba(202, 116, 120, 0.09);
  }

  68% {
    box-shadow:
      0 0 0 11px rgba(202, 116, 120, 0),
      0 13px 29px rgba(202, 116, 120, 0.13);
  }

  100% {
    box-shadow:
      0 0 0 0 rgba(202, 116, 120, 0),
      0 10px 24px rgba(202, 116, 120, 0.09);
  }
}


/* CARD FORNECEDORES */

.pf-suppliers-card {
  padding-top: 41px;
}

.pf-access-badge {
  position: absolute;
  top: 18px;
  left: 31px;

  padding: 8px 14px;

  border-radius: 10px;

  color: #ffffff;
  background: var(--pf-rose);

  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;

  box-shadow: 0 7px 16px rgba(180, 94, 99, 0.18);

  transform: translateY(-50%);
}

.pf-supplier-heading {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 23px;
  align-items: start;

  max-width: 690px;
}

.pf-clipboard-icon {
  font-size: 28px;
}

.pf-supplier-heading p {
  max-width: 570px;
}


/* BENEFÍCIOS */

.pf-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;

  margin: 26px 0 25px;
}

.pf-benefit {
  min-height: 62px;
  padding: 12px 10px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  border: 1px solid var(--pf-border);
  border-radius: 12px;

  color: #595959;
  background: rgba(253, 248, 246, 0.72);

  font-size: 11px;
  line-height: 1.25;
  text-align: left;
}

.pf-benefit span {
  flex: 0 0 auto;

  width: 20px;
  height: 20px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  color: #ffffff;
  background: var(--pf-rose);

  font-size: 12px;
  font-weight: 900;
}

.pf-benefit strong {
  font-weight: 800;
}


/* PREÇO */

.pf-price {
  margin: 0 0 18px;

  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;
}

.pf-price small {
  margin-bottom: 2px;

  color: var(--pf-muted);

  font-size: 14px;
}

.pf-price strong {
  color: var(--pf-rose-dark);

  font-size: 43px;
  line-height: 1.1;
  letter-spacing: -1.6px;
}


/* CHECKOUT */

.pf-checkout-form {
  max-width: 670px;
  margin: 0 auto;

  display: grid;
  gap: 10px;
}

.pf-checkout-form label {
  color: var(--pf-text);

  font-size: 14px;
  font-weight: 850;
  text-align: center;
}

.pf-checkout-form input {
  width: 100%;
  height: 57px;
  padding: 0 18px;

  border: 1px solid var(--pf-input-border);
  border-radius: 13px;

  color: var(--pf-text);
  background: #ffffff;

  outline: none;

  font: inherit;
  font-size: 17px;
  text-align: center;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.pf-checkout-form input::placeholder {
  color: #aaa4a4;
}

.pf-checkout-form input:focus {
  border-color: var(--pf-rose);

  box-shadow: 0 0 0 4px rgba(202, 116, 120, 0.11);
}

.pf-buy-button {
  width: 100%;
  min-height: 57px;
  padding: 14px 22px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;

  border: 0;
  border-radius: 13px;

  color: #ffffff;
  background:
    linear-gradient(
      135deg,
      #d18184,
      #c46e73
    );

  cursor: pointer;

  font: inherit;
  font-size: 16px;
  font-weight: 900;

  box-shadow: 0 13px 28px rgba(180, 94, 99, 0.22);

  transition:
    transform 0.2s ease,
    filter 0.2s ease,
    box-shadow 0.2s ease;
}

.pf-buy-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.035);

  box-shadow: 0 16px 33px rgba(180, 94, 99, 0.27);
}

.pf-pix-symbol {
  font-size: 22px;
  line-height: 1;
}

.pf-security {
  margin-top: 17px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;

  color: var(--pf-muted);

  font-size: 12px;
}


/* CARD MINHAS COMPRAS */

.pf-return-card {
  margin: 26px 0 17px;
  padding: 22px 24px;

  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;

  border: 1px solid var(--pf-border);
  border-radius: 19px;

  background: rgba(255, 255, 255, 0.83);

  box-shadow: 0 13px 35px rgba(112, 62, 54, 0.05);
}

.pf-return-icon {
  width: 54px;
  height: 54px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  color: var(--pf-rose);
  background: var(--pf-rose-light);

  font-size: 31px;
}

.pf-return-text h3 {
  margin: 0 0 6px;

  color: var(--pf-text);

  font-size: 17px;
  letter-spacing: -0.3px;
}

.pf-return-text p {
  max-width: 430px;
  margin: 0;

  color: var(--pf-muted);

  font-size: 12px;
  line-height: 1.55;
}

.pf-return-button {
  min-height: 47px;
  padding: 11px 17px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;

  border: 1px solid rgba(202, 116, 120, 0.58);
  border-radius: 11px;

  color: var(--pf-rose);
  background: #ffffff;

  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.pf-return-button:hover {
  transform: translateY(-2px);

  box-shadow: 0 10px 23px rgba(180, 94, 99, 0.12);
}


/* RODAPÉ */

.pf-footer {
  width: min(940px, calc(100% - 32px));
  margin: 0 auto;
  padding: 17px 20px 40px;

  text-align: center;
}

.pf-footer strong {
  color: var(--pf-rose);

  font-size: 18px;
}

.pf-footer p {
  margin: 6px 0;

  color: var(--pf-muted);

  font-size: 12px;
}

.pf-footer-heart {
  color: var(--pf-rose);

  font-size: 22px;
}


/* ==========================================================
   COMPACTAÇÃO DAS TELAS DE PIX, ACESSO E ERRO
========================================================== */

body:not(.piotfit-home) .narrow {
  width: min(590px, calc(100% - 26px));
  padding-top: 22px;
  padding-bottom: 45px;
}

body:not(.piotfit-home) .payment-card,
body:not(.piotfit-home) .purchase-search,
body:not(.piotfit-home) .success-card,
body:not(.piotfit-home) .error-card {
  padding: 29px 28px;

  border-radius: 23px;
}

body:not(.piotfit-home) .payment-card h1,
body:not(.piotfit-home) .purchase-search h1,
body:not(.piotfit-home) .success-card h1,
body:not(.piotfit-home) .error-card h1 {
  margin-top: 10px;
  margin-bottom: 10px;

  font-size: 35px;
  line-height: 1.05;
}

body:not(.piotfit-home) .payment-card > p,
body:not(.piotfit-home) .purchase-search > p,
body:not(.piotfit-home) .success-card > p,
body:not(.piotfit-home) .error-card > p {
  font-size: 15px;
  line-height: 1.55;
}

body:not(.piotfit-home) .payment-value {
  margin: 17px auto;
}

body:not(.piotfit-home) .payment-value strong {
  font-size: 31px;
}

body:not(.piotfit-home) .qr-code {
  width: min(245px, 100%);
}

body:not(.piotfit-home) .pix-label {
  margin-top: 19px;
}

body:not(.piotfit-home) .copy-box textarea {
  height: 76px;
}

body:not(.piotfit-home) .success-icon,
body:not(.piotfit-home) .error-icon {
  width: 66px;
  height: 66px;
  margin-bottom: 17px;

  font-size: 32px;
}

body:not(.piotfit-home) .access-actions {
  margin-top: 21px;
}

body:not(.piotfit-home) .update-note,
body:not(.piotfit-home) .test-box {
  margin-top: 21px;
  padding: 16px;
}


/* TABLET */

@media (max-width: 850px) {
  .pf-product-content {
    grid-template-columns: 72px minmax(0, 1fr) 175px;
  }

  .pf-store-illustration {
    transform: scale(0.82);
    transform-origin: right center;
  }

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


/* CELULAR */

@media (max-width: 680px) {
  .pf-header-inner {
    width: calc(100% - 28px);
    height: 66px;
  }

  .pf-logo {
    font-size: 21px;
  }

  .pf-purchases-button {
    min-height: 40px;
    padding: 8px 12px;

    font-size: 12px;
  }

  .pf-heart {
    font-size: 20px;
  }

  .pf-main {
    width: calc(100% - 24px);
    padding-top: 66px;
  }

  .pf-hero {
    padding: 44px 8px 31px;
  }

  .pf-hero h1 {
    margin-top: 14px;

    font-size: 40px;
    letter-spacing: -1.8px;
  }

  .pf-hero p {
    font-size: 14px;
    line-height: 1.62;
  }

  .pf-desktop-break {
    display: none;
  }

  .pf-card {
    margin-bottom: 17px;
    padding: 23px 20px;

    border-radius: 21px;
  }

  .pf-product-content {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 14px;
  }

  .pf-round-icon {
    width: 54px;
    height: 54px;

    font-size: 25px;
  }

  .pf-product-text h2,
  .pf-supplier-heading h2 {
    margin-top: 7px;

    font-size: 23px;
  }

  .pf-product-text p,
  .pf-supplier-heading p {
    font-size: 13px;
  }

  .pf-store-illustration {
    display: none;
  }

  .pf-outline-button {
    min-height: 52px;
    margin-top: 20px;
    padding: 12px 14px;

    font-size: 13px;
  }

  .pf-outline-button strong {
    font-size: 19px;
  }

  .pf-suppliers-card {
    padding-top: 32px;
  }

  .pf-access-badge {
    top: 14px;
    left: 20px;

    padding: 7px 11px;

    font-size: 9px;
  }

  .pf-supplier-heading {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 14px;
  }

  .pf-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;

    margin: 20px 0;
  }

  .pf-benefit {
    min-height: 61px;
    padding: 9px 7px;

    gap: 6px;

    font-size: 10px;
  }

  .pf-benefit span {
    width: 18px;
    height: 18px;

    font-size: 10px;
  }

  .pf-price {
    margin-bottom: 14px;
  }

  .pf-price small {
    font-size: 13px;
  }

  .pf-price strong {
    font-size: 38px;
  }

  .pf-checkout-form input,
  .pf-buy-button {
    height: 54px;
    min-height: 54px;
  }

  .pf-buy-button {
    font-size: 14px;
  }

  .pf-security {
    margin-top: 13px;

    font-size: 10px;
  }

  .pf-return-card {
    padding: 18px;

    grid-template-columns: 48px minmax(0, 1fr);
    gap: 13px;
  }

  .pf-return-icon {
    width: 46px;
    height: 46px;

    font-size: 26px;
  }

  .pf-return-text h3 {
    font-size: 15px;
  }

  .pf-return-text p {
    font-size: 11px;
  }

  .pf-return-button {
    grid-column: 1 / -1;

    width: 100%;
    min-height: 45px;
    margin-top: 3px;
  }

  body:not(.piotfit-home) .narrow {
    width: calc(100% - 22px);
    padding-top: 17px;
  }

  body:not(.piotfit-home) .payment-card,
  body:not(.piotfit-home) .purchase-search,
  body:not(.piotfit-home) .success-card,
  body:not(.piotfit-home) .error-card {
    padding: 24px 19px;

    border-radius: 21px;
  }

  body:not(.piotfit-home) .payment-card h1,
  body:not(.piotfit-home) .purchase-search h1,
  body:not(.piotfit-home) .success-card h1,
  body:not(.piotfit-home) .error-card h1 {
    font-size: 31px;
  }

  body:not(.piotfit-home) .qr-code {
    width: min(220px, 100%);
  }

  body:not(.piotfit-home) .button {
    min-height: 50px;
  }

  body:not(.piotfit-home) .update-note,
  body:not(.piotfit-home) .test-box {
    padding: 14px;
  }
}


/* CELULARES PEQUENOS */

@media (max-width: 390px) {
  .pf-purchases-button {
    padding-left: 9px;
    padding-right: 9px;

    font-size: 11px;
  }

  .pf-heart {
    display: none;
  }

  .pf-hero h1 {
    font-size: 36px;
  }

  .pf-product-content,
  .pf-supplier-heading {
    grid-template-columns: 1fr;

    text-align: center;
  }

  .pf-round-icon {
    margin: 0 auto;
  }

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

  .pf-section-label {
    font-size: 10px;
  }
}


/* =========================================================
   PAINEL ADMINISTRATIVO PIOTFIT
========================================================= */

.admin-body {
  min-height: 100vh;
  margin: 0;

  color: #1b1b1b;

  background:
    radial-gradient(
      circle at top center,
      #ffffff,
      #fff8f5 58%,
      #fdf3ef
    );

  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

.admin-body * {
  box-sizing: border-box;
}


/* LOGIN */

.admin-login-page {
  width: min(440px, calc(100% - 28px));
  min-height: 100vh;
  margin: auto;
  padding: 55px 0;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.admin-login-logo,
.admin-logo {
  display: inline-flex;

  color: #171717;

  font-size: 25px;
  font-weight: 950;
  letter-spacing: -1.5px;
  text-decoration: none;
}

.admin-login-logo strong,
.admin-logo strong {
  color: #ca7478;
}

.admin-login-card {
  width: 100%;
  margin-top: 25px;
  padding: 32px;

  border: 1px solid #ead8d4;
  border-radius: 24px;

  background: rgba(255, 255, 255, 0.96);

  box-shadow:
    0 22px 60px rgba(107, 62, 54, 0.1);

  text-align: center;
}

.admin-eyebrow {
  color: #b45e63;

  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.3px;
}

.admin-login-card h1 {
  margin: 10px 0;

  font-size: 30px;
  letter-spacing: -1px;
}

.admin-login-card > p {
  margin: 0 0 22px;

  color: #707070;

  font-size: 14px;
  line-height: 1.55;
}

.admin-login-form,
.admin-settings-form,
.admin-upload-form {
  display: grid;
  gap: 10px;

  text-align: left;
}

.admin-login-form label,
.admin-settings-form label {
  margin-top: 5px;

  color: #3d3d3d;

  font-size: 12px;
  font-weight: 800;
}

.admin-login-form input,
.admin-settings-form input {
  width: 100%;
  height: 52px;
  padding: 0 15px;

  border: 1px solid #e5d5d1;
  border-radius: 12px;

  color: #171717;
  background: #ffffff;

  outline: none;

  font: inherit;
}

.admin-login-form input:focus,
.admin-settings-form input:focus {
  border-color: #ca7478;

  box-shadow:
    0 0 0 4px rgba(202, 116, 120, 0.11);
}

.admin-login-form button,
.admin-settings-form button,
.admin-upload-form > button {
  width: 100%;
  min-height: 52px;
  margin-top: 8px;

  border: 0;
  border-radius: 12px;

  color: #ffffff;
  background:
    linear-gradient(
      135deg,
      #d18084,
      #bf666b
    );

  cursor: pointer;

  font: inherit;
  font-size: 14px;
  font-weight: 900;

  box-shadow:
    0 12px 25px rgba(180, 94, 99, 0.2);
}

.admin-back-link {
  margin-top: 20px;

  color: #a45d61;

  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}


/* ALERTAS */

.admin-alert {
  margin: 15px 0;
  padding: 13px 15px;

  border-radius: 11px;

  font-size: 13px;
  font-weight: 700;
}

.admin-alert-success {
  color: #166534;
  background: #dcfce7;
}

.admin-alert-error {
  color: #991b1b;
  background: #fee2e2;
}


/* CABEÇALHO */

.admin-header {
  position: sticky;
  z-index: 100;
  top: 0;

  width: 100%;

  border-bottom: 1px solid #ead8d4;

  background: rgba(255, 251, 249, 0.94);

  backdrop-filter: blur(18px);
}

.admin-header-inner {
  width: min(1180px, calc(100% - 30px));
  height: 70px;
  margin: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-header-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.admin-view-site,
.admin-logout {
  min-height: 40px;
  padding: 9px 14px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 10px;

  font: inherit;
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
}

.admin-view-site {
  border: 1px solid #dfc3bf;

  color: #ae5d62;
  background: #ffffff;
}

.admin-logout {
  border: 0;

  color: #ffffff;
  background: #ca7478;

  cursor: pointer;
}


/* CONTEÚDO */

.admin-container {
  width: min(1180px, calc(100% - 30px));
  margin: auto;
  padding: 38px 0 60px;
}

.admin-title {
  margin-bottom: 25px;

  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.admin-title h1 {
  margin: 8px 0 4px;

  font-size: 36px;
  letter-spacing: -1.4px;
}

.admin-title p {
  margin: 0;

  color: #707070;

  font-size: 14px;
}


/* ESTATÍSTICAS */

.admin-stats {
  display: grid;
  grid-template-columns:
    repeat(4, minmax(0, 1fr));
  gap: 13px;

  margin-bottom: 18px;
}

.admin-stat-card,
.admin-panel-card,
.admin-customers-card {
  border: 1px solid #ead8d4;
  border-radius: 18px;

  background: rgba(255, 255, 255, 0.94);

  box-shadow:
    0 15px 40px rgba(107, 62, 54, 0.055);
}

.admin-stat-card {
  padding: 20px;
}

.admin-stat-card span {
  display: block;

  color: #797979;

  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.admin-stat-card strong {
  display: block;
  margin-top: 8px;

  color: #b45e63;

  font-size: 26px;
  letter-spacing: -1px;
}


/* CONFIGURAÇÕES E PDF */

.admin-grid {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
  gap: 18px;

  margin-bottom: 18px;
}

.admin-panel-card {
  padding: 24px;
}

.admin-card-header {
  margin-bottom: 18px;
}

.admin-card-header h2,
.admin-customers-header h2 {
  margin: 7px 0 0;

  font-size: 22px;
  letter-spacing: -0.7px;
}

.admin-money-field {
  position: relative;
}

.admin-money-field span {
  position: absolute;
  top: 50%;
  left: 15px;

  color: #777;

  font-size: 13px;
  font-weight: 800;

  transform: translateY(-50%);
}

.admin-money-field input {
  padding-left: 45px;
}

.admin-file-status {
  margin-bottom: 16px;
  padding: 16px;

  display: flex;
  align-items: center;
  gap: 13px;

  border-radius: 13px;
}

.file-active {
  border: 1px solid #bbebcd;
  background: #effcf4;
}

.file-empty {
  border: 1px solid #ecd9b0;
  background: #fff9e8;
}

.admin-file-icon {
  width: 48px;
  height: 48px;

  display: grid;
  place-items: center;

  border-radius: 11px;

  color: white;
  background: #ca7478;

  font-size: 11px;
  font-weight: 950;
}

.admin-file-status strong {
  font-size: 14px;
}

.admin-file-status p {
  margin: 4px 0 0;

  color: #777;

  font-size: 11px;
}

.admin-upload-box {
  min-height: 145px;
  padding: 20px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  border: 2px dashed #e0c4c0;
  border-radius: 14px;

  color: #9f5b5f;
  background: #fffafa;

  cursor: pointer;

  text-align: center;
}

.admin-upload-box input {
  display: none;
}

.admin-upload-icon {
  margin-bottom: 7px;

  font-size: 28px;
}

.admin-upload-box strong {
  font-size: 14px;
}

.admin-upload-box small {
  margin-top: 5px;

  color: #888;

  font-size: 11px;
}


/* CLIENTES */

.admin-customers-card {
  padding: 24px;
}

.admin-customers-header {
  margin-bottom: 18px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-orders-count {
  padding: 7px 11px;

  border-radius: 99px;

  color: #a75a5f;
  background: #f9e8e6;

  font-size: 11px;
  font-weight: 850;
}

.admin-table-wrapper {
  width: 100%;

  overflow-x: auto;
}

.admin-table {
  width: 100%;

  border-collapse: collapse;
}

.admin-table th {
  padding: 12px;

  color: #7d7d7d;

  font-size: 10px;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.admin-table td {
  padding: 14px 12px;

  border-top: 1px solid #f0e4e1;

  color: #505050;

  font-size: 12px;
}

.admin-table td strong {
  color: #252525;
}

.admin-status {
  padding: 6px 9px;

  border-radius: 99px;

  font-size: 10px;
  font-weight: 900;
}

.status-approved {
  color: #166534;
  background: #dcfce7;
}

.status-pending {
  color: #92400e;
  background: #fef3c7;
}

.status-rejected {
  color: #991b1b;
  background: #fee2e2;
}

.admin-whatsapp-link {
  padding: 7px 10px;

  border-radius: 8px;

  color: #ffffff;
  background: #20a464;

  font-size: 10px;
  font-weight: 900;
  text-decoration: none;
}

.admin-empty {
  padding: 35px;

  color: #777;
  background: #fff9f7;

  border-radius: 13px;

  text-align: center;
}


/* MOBILE */

@media (max-width: 850px) {
  .admin-stats {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 600px) {
  .admin-login-card {
    padding: 25px 20px;
  }

  .admin-container {
    width: calc(100% - 22px);
    padding-top: 25px;
  }

  .admin-title h1 {
    font-size: 31px;
  }

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

    gap: 9px;
  }

  .admin-stat-card {
    padding: 16px 13px;
  }

  .admin-stat-card span {
    min-height: 28px;

    font-size: 9px;
  }

  .admin-stat-card strong {
    font-size: 21px;
  }

  .admin-panel-card,
  .admin-customers-card {
    padding: 19px;
  }

  .admin-customers-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .admin-table {
    min-width: 690px;
  }

  .admin-view-site {
    display: none;
  }
}


/* =========================================================
   PROTEÇÃO DA LISTA DE FORNECEDORES
========================================================= */

.protection-alert {
  margin: 23px 0 17px;
  padding: 16px;

  border: 1px solid #efd8a4;
  border-radius: 14px;

  color: #714f16;
  background: #fff8dd;

  text-align: left;
}

.protection-alert strong {
  display: block;

  font-size: 14px;
}

.protection-alert p {
  margin: 6px 0 0;

  color: #7c6740;

  font-size: 12px;
  line-height: 1.5;
}

.terms-form {
  margin-top: 17px;
}

.terms-box {
  padding: 19px;

  border: 1px solid var(--border);
  border-radius: 17px;

  background: #fffafa;

  text-align: left;
}

.terms-box h2 {
  margin: 0 0 13px;

  color: #272727;

  font-size: 18px;
  letter-spacing: -0.4px;
}

.terms-content {
  max-height: 270px;
  padding: 15px;

  overflow-y: auto;

  border: 1px solid #eee0dc;
  border-radius: 12px;

  color: #626262;
  background: #ffffff;

  font-size: 12px;
  line-height: 1.55;
}

.terms-content p {
  margin-top: 0;
}

.terms-content ul {
  margin-bottom: 0;
  padding-left: 19px;
}

.terms-content li {
  margin-bottom: 10px;
}

.terms-checkbox {
  margin-top: 15px;

  display: flex;
  align-items: flex-start;
  gap: 11px;

  color: #454545;

  cursor: pointer;

  font-size: 12px;
  font-weight: 750;
  line-height: 1.45;
}

.terms-checkbox input {
  width: 20px;
  height: 20px;
  margin: 0;

  flex: 0 0 auto;

  accent-color: var(--rose);
}

.terms-button {
  width: 100%;
  margin-top: 13px;
}

.download-counter {
  margin-top: 15px;
  padding: 13px 15px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border: 1px solid var(--border);
  border-radius: 12px;

  color: #636363;
  background: #fffafa;

  font-size: 12px;
}

.download-counter strong {
  color: #343434;
}

.download-counter span {
  color: var(--rose-dark);

  font-size: 14px;
  font-weight: 900;
}

.disabled-download {
  color: #888;
  background: #e7e7e7;

  cursor: not-allowed;
}

.terms-status {
  padding: 6px 9px;

  border-radius: 99px;

  font-size: 10px;
  font-weight: 900;
}

.terms-accepted {
  color: #166534;
  background: #dcfce7;
}

.terms-pending {
  color: #92400e;
  background: #fef3c7;
}


@media (max-width: 600px) {
  .terms-box {
    padding: 15px;
  }

  .terms-content {
    max-height: 230px;
    padding: 13px;
  }

  .download-counter {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }
}
