 :root {
      --msc-black: #050505;
      --msc-white: #ffffff;
      --msc-text: #080808;
      --msc-muted: #4e4e4e;
      --msc-border: #d8d5ce;
      --msc-background: #f5f1eb;
      --msc-accent: #b8e51d;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--msc-text);
      background: var(--msc-white);
      font-family: "Montserrat", sans-serif;
      -webkit-font-smoothing: antialiased;
    }

    img {
      max-width: 100%;
    }

    a {
      text-decoration: none;
    }

    .site-container {
      width: min(100% - 40px, 1500px);
      margin-right: auto;
      margin-left: auto;
    }

    /* ========================================
       HEADER
    ======================================== */

    .msc-header {
      position: relative;
      z-index: 1000;
      min-height: 82px;
      display: flex;
      align-items: center;
      background: var(--msc-black);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .msc-navbar {
      width: 100%;
      min-height: 82px;
      padding: 0;
    }

    .msc-header .site-container {
      display: flex;
      align-items: center;
    }

    /* Logo */

    .msc-header-logo {
      width: 190px;
      flex: 0 0 190px;
      display: flex;
      align-items: center;
    }

    .msc-header-logo img {
      width: auto;
      max-width: 100%;
      max-height: 58px;
      display: block;
      object-fit: contain;
      object-position: left center;
    }

    /* Menu */

    .msc-navbar-collapse {
      flex-grow: 1;
    }

    .msc-navbar-nav {
      gap: 3px;
    }

    .msc-navbar-nav .nav-link {
      position: relative;
      padding: 32px 13px !important;
      color: rgba(255, 255, 255, 0.77) !important;
      font-size: 9px;
      font-weight: 800;
      letter-spacing: 0.035em;
      text-transform: uppercase;
      white-space: nowrap;
      transition: color 0.2s ease;
    }

    .msc-navbar-nav .nav-link::after {
      content: "";
      position: absolute;
      right: 13px;
      bottom: 24px;
      left: 13px;
      height: 2px;
      background: var(--msc-white);
      transform: scaleX(0);
      transform-origin: left center;
      transition: transform 0.2s ease;
    }

    .msc-navbar-nav .nav-link:hover,
    .msc-navbar-nav .nav-link:focus,
    .msc-navbar-nav .nav-link.active {
      color: var(--msc-white) !important;
    }

    .msc-navbar-nav .nav-link:hover::after,
    .msc-navbar-nav .nav-link:focus::after,
    .msc-navbar-nav .nav-link.active::after {
      transform: scaleX(1);
    }

    /* Botão do header */

    .msc-header-button {
      min-height: 47px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 11px;
      padding: 0 19px;
      color: var(--msc-black);
      background: var(--msc-white);
      border: 1px solid var(--msc-white);
      border-radius: 0;
      font-size: 9px;
      font-weight: 800;
      letter-spacing: 0.03em;
      text-transform: uppercase;
      white-space: nowrap;
      transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
    }

    .msc-header-button svg {
      width: 19px;
      height: 19px;
      stroke-width: 1.7;
    }

    .msc-header-button:hover,
    .msc-header-button:focus {
      color: var(--msc-white);
      background: transparent;
      border-color: var(--msc-white);
    }

    /* Botão mobile */

    .msc-menu-toggle {
      width: 45px;
      height: 42px;
      padding: 9px;
      border: 1px solid rgba(255, 255, 255, 0.25);
      border-radius: 0;
      box-shadow: none !important;
    }

    .msc-menu-toggle span {
      width: 100%;
      height: 2px;
      display: block;
      margin: 5px 0;
      background: var(--msc-white);
    }

    .msc-mobile-cta {
      display: none;
    }

    /* ========================================
       HERO
    ======================================== */

    .msc-hero {
      padding: 68px 0 0;
      background: var(--msc-white);
    }

    .msc-hero-panel {
      position: relative;
      overflow: hidden;
      background: var(--msc-background);
      border: 1px solid var(--msc-border);
      border-radius: 12px;
    }

    .msc-hero-content {
      min-height: 610px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 65px 35px 65px 78px;
    }

    /* Título */

    .msc-hero-title {
      max-width: 610px;
      margin: 0 0 24px;
      color: var(--msc-black);
      font-size: clamp(48px, 4.8vw, 78px);
      font-weight: 900;
      line-height: 0.98;
      letter-spacing: -0.055em;
      text-transform: uppercase;
    }

    /* Texto */

    .msc-hero-description {
      max-width: 470px;
      margin: 0;
      color: #1a1a1a;
      font-size: 15px;
      font-weight: 600;
      line-height: 1.6;
    }

    /* Benefícios */

    .msc-hero-benefits {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 24px 34px;
      margin-top: 33px;
    }

    .msc-hero-benefit {
      display: flex;
      align-items: center;
      gap: 11px;
    }

    .msc-hero-benefit-icon {
      width: 37px;
      height: 37px;
      flex: 0 0 37px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--msc-black);
    }

    .msc-hero-benefit-icon svg {
      width: 29px;
      height: 29px;
      stroke-width: 1.65;
    }

    .msc-hero-benefit-text {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .msc-hero-benefit-text strong {
      color: var(--msc-black);
      font-size: 9px;
      font-weight: 900;
      line-height: 1.2;
      letter-spacing: 0.025em;
      text-transform: uppercase;
    }

    .msc-hero-benefit-text span {
      color: #555555;
      font-size: 8px;
      font-weight: 600;
      line-height: 1.3;
    }

    /* Botões */

    .msc-hero-actions {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 17px;
      margin-top: 39px;
    }

    .msc-button-primary,
    .msc-button-secondary {
      min-height: 53px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      padding: 0 24px;
      border-radius: 0;
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 0.03em;
      text-transform: uppercase;
      transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
    }

    .msc-button-primary {
      color: var(--msc-white);
      background: var(--msc-black);
      border: 1px solid var(--msc-black);
    }

    .msc-button-primary:hover,
    .msc-button-primary:focus {
      color: var(--msc-black);
      background: var(--msc-accent);
      border-color: var(--msc-accent);
    }

    .msc-button-secondary {
      color: var(--msc-black);
      background: transparent;
      border: 1px solid #7d7b77;
    }

    .msc-button-secondary:hover,
    .msc-button-secondary:focus {
      color: var(--msc-white);
      background: var(--msc-black);
      border-color: var(--msc-black);
    }

    .msc-button-primary svg,
    .msc-button-secondary svg {
      width: 20px;
      height: 20px;
      flex: 0 0 20px;
    }

    /* Imagem */

    .msc-hero-media {
      position: relative;
      height: 100%;
      min-height: 610px;
      overflow: hidden;
      background: #cbc8c1;
    }

    .msc-hero-media img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      object-position: center;
    }

    /* Transição suave entre texto e imagem */

    .msc-hero-media::before {
      content: "";
      position: absolute;
      z-index: 1;
      top: 0;
      bottom: 0;
      left: 0;
      width: 90px;
      pointer-events: none;
      background: linear-gradient(
        90deg,
        var(--msc-background),
        rgba(245, 241, 235, 0)
      );
    }

    /* ========================================
       RESPONSIVO
    ======================================== */

    @media (max-width: 1199.98px) {
      .msc-navbar-nav .nav-link {
        padding-right: 8px !important;
        padding-left: 8px !important;
        font-size: 8px;
      }

      .msc-header-logo {
        width: 170px;
        flex-basis: 170px;
      }

      .msc-hero-content {
        padding-left: 52px;
      }

      .msc-hero-title {
        font-size: clamp(46px, 5.2vw, 66px);
      }

      .msc-hero-benefits {
        gap: 20px;
      }
    }

    @media (max-width: 991.98px) {
      .msc-header,
      .msc-navbar {
        min-height: 72px;
      }

      .msc-header .site-container {
        flex-wrap: wrap;
      }

      .msc-header-logo {
        width: 165px;
        flex-basis: 165px;
      }

      .msc-navbar-collapse {
        width: 100%;
        flex-basis: 100%;
        padding: 20px 0 24px;
      }

      .msc-navbar-nav {
        align-items: flex-start !important;
      }

      .msc-navbar-nav .nav-link {
        width: 100%;
        padding: 11px 0 !important;
        font-size: 10px;
      }

      .msc-navbar-nav .nav-link::after {
        display: none;
      }

      .msc-mobile-cta {
        display: block;
        margin-top: 18px;
      }

      .msc-mobile-cta .msc-header-button {
        width: 100%;
      }

      .msc-hero {
        padding-top: 38px;
      }

      .msc-hero-content {
        min-height: auto;
        padding: 55px 45px;
      }

      .msc-hero-media {
        min-height: 580px;
      }

      .msc-hero-media::before {
        top: 0;
        right: 0;
        bottom: auto;
        width: 100%;
        height: 80px;
        background: linear-gradient(
          180deg,
          var(--msc-background),
          rgba(245, 241, 235, 0)
        );
      }
    }

    @media (max-width: 767.98px) {
      .site-container {
        width: min(100% - 28px, 1500px);
      }

      .msc-hero-content {
        padding: 45px 28px;
      }

      .msc-hero-title {
        font-size: clamp(43px, 12vw, 62px);
      }

      .msc-hero-description {
        font-size: 14px;
      }

      .msc-hero-benefits {
        align-items: flex-start;
        flex-direction: column;
        gap: 17px;
      }

      .msc-hero-actions {
        align-items: stretch;
        flex-direction: column;
      }

      .msc-button-primary,
      .msc-button-secondary {
        width: 100%;
      }

      .msc-hero-media {
        min-height: 500px;
      }
    }

    @media (max-width: 575.98px) {
      .msc-header-logo {
        width: 150px;
        flex-basis: 150px;
      }

      .msc-hero {
        padding-top: 24px;
      }

      .msc-hero-panel {
        border-radius: 8px;
      }

      .msc-hero-content {
        padding: 38px 22px;
      }

      .msc-hero-title {
        margin-bottom: 20px;
        font-size: clamp(40px, 12vw, 53px);
      }

      .msc-hero-media {
        min-height: 420px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      .msc-navbar-nav .nav-link,
      .msc-navbar-nav .nav-link::after,
      .msc-header-button,
      .msc-button-primary,
      .msc-button-secondary {
        transition: none;
      }
    }

    /* ========================================
   CONFIGURADOR ONLINE
======================================== */

.msc-configurator {
  padding: 65px 0 0;
  background: #ffffff;
}

.msc-configurator-panel {
  position: relative;
  overflow: hidden;
  background: #f8f8f6;
  border: 1px solid #e7e7e3;
  border-radius: 12px;
}

.msc-configurator-panel > .row {
  min-height: 440px;
}

/* Camisetas */

.msc-configurator-product {
  position: relative;
  height: 100%;
  min-height: 440px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.msc-configurator-product img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center bottom;
}

.msc-configurator-product-back {
  padding: 12px 0 0 12px;
}

.msc-configurator-product-front {
  padding-top: 12px;
}

/* Conteúdo */

.msc-configurator-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 45px 20px 45px 10px;
}

.msc-configurator-label {
  display: block;
  margin-bottom: 10px;
  color: #181818;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.msc-configurator-content h2 {
  margin: 0 0 17px;
  color: #090909;
  font-size: clamp(31px, 3vw, 44px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.msc-configurator-intro {
  max-width: 340px;
  margin: 0 0 22px;
  color: #4f4f4f;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
}

.msc-configurator-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.msc-configurator-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #1c1c1c;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.45;
}

.msc-configurator-list i {
  margin-top: 1px;
  color: #090909;
  font-size: 13px;
}

.msc-configurator-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  justify-content: center;
  padding: 0 21px;
  color: #ffffff;
  background: #090909;
  border: 1px solid #090909;
  border-radius: 0;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.msc-configurator-button:hover,
.msc-configurator-button:focus {
  color: #090909;
  background: #b8e51d;
  border-color: #b8e51d;
}

/* Miniaturas */

.msc-configurator-options {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 20px 23px 20px 5px;
}

.msc-configurator-option {
  width: 100%;
  min-height: 108px;
  padding: 7px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #d8d8d4;
  border-radius: 5px;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.msc-configurator-option img {
  width: 100%;
  height: 92px;
  display: block;
  object-fit: contain;
}

.msc-configurator-option:hover,
.msc-configurator-option:focus,
.msc-configurator-option.active {
  border-color: #090909;
  box-shadow: 0 0 0 1px #090909;
}

/* Diferenciais */

.msc-configurator-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-left: 31%;
  padding: 18px 24px 20px;
  border-top: 1px solid #e1e1dd;
}

.msc-configurator-feature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 16px;
  border-right: 1px solid #e0e0dc;
}

.msc-configurator-feature:last-child {
  border-right: 0;
}

.msc-configurator-feature i {
  color: #090909;
  font-size: 22px;
}

.msc-configurator-feature span {
  display: flex;
  flex-direction: column;
  color: #555555;
  font-size: 8px;
  font-weight: 600;
  line-height: 1.35;
}

.msc-configurator-feature strong {
  color: #111111;
  font-size: 8px;
  font-weight: 900;
}

/* ========================================
   COMO FUNCIONA
======================================== */

.msc-how-it-works {
  padding: 85px 0 90px;
  background: #ffffff;
}

.msc-how-heading {
  margin-bottom: 48px;
  text-align: center;
}

.msc-how-heading h2 {
  margin: 0;
  color: #151515;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.msc-how-steps {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr) 55px
    minmax(0, 1fr) 55px
    minmax(0, 1fr) 55px
    minmax(0, 1fr) 55px
    minmax(0, 1fr);
  align-items: start;
}

.msc-how-step {
  text-align: center;
}

.msc-how-icon {
  width: 86px;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #090909;
  background: #f5f5f3;
  border-radius: 50%;
}

.msc-how-icon svg {
  width: 45px;
  height: 45px;
  stroke-width: 1.4;
}

.msc-how-step-content h3 {
  margin: 0 0 8px;
  color: #131313;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.4;
}

.msc-how-step-content h3 span {
  font-weight: 900;
}

.msc-how-step-content p {
  max-width: 190px;
  margin: 0 auto;
  color: #5f5f5f;
  font-size: 9px;
  font-weight: 500;
  line-height: 1.55;
}

.msc-how-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 31px;
  color: #181818;
}

.msc-how-arrow svg {
  width: 27px;
  height: 27px;
  stroke-width: 1.3;
}

/* ========================================
   RESPONSIVO
======================================== */

@media (max-width: 1199.98px) {
  .msc-configurator-content {
    padding-right: 25px;
    padding-left: 25px;
  }

  .msc-configurator-features {
    margin-left: 0;
  }

  .msc-how-steps {
    grid-template-columns:
      minmax(0, 1fr) 35px
      minmax(0, 1fr) 35px
      minmax(0, 1fr) 35px
      minmax(0, 1fr) 35px
      minmax(0, 1fr);
  }
}

@media (max-width: 991.98px) {
  .msc-configurator-product-back,
  .msc-configurator-product-front {
    min-height: 410px;
  }

  .msc-configurator-options {
    flex-direction: row;
    padding: 20px;
  }

  .msc-configurator-option {
    min-height: 120px;
  }

  .msc-configurator-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }

  .msc-configurator-feature {
    padding: 17px;
    border-bottom: 1px solid #e0e0dc;
  }

  .msc-configurator-feature:nth-child(2) {
    border-right: 0;
  }

  .msc-configurator-feature:nth-child(3),
  .msc-configurator-feature:nth-child(4) {
    border-bottom: 0;
  }

  .msc-how-steps {
    grid-template-columns: repeat(5, 190px);
    gap: 22px;
    overflow-x: auto;
    padding: 5px 5px 22px;
    scroll-snap-type: x mandatory;
  }

  .msc-how-step {
    scroll-snap-align: start;
  }

  .msc-how-arrow {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .msc-configurator {
    padding-top: 45px;
  }

  .msc-configurator-content {
    padding: 42px 28px;
  }

  .msc-configurator-product {
    min-height: 420px;
  }

  .msc-configurator-options {
    overflow-x: auto;
  }

  .msc-configurator-option {
    min-width: 120px;
  }

  .msc-configurator-features {
    grid-template-columns: 1fr;
  }

  .msc-configurator-feature {
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid #e0e0dc;
  }

  .msc-configurator-feature:nth-child(3) {
    border-bottom: 1px solid #e0e0dc;
  }

  .msc-configurator-feature:last-child {
    border-bottom: 0;
  }

  .msc-how-it-works {
    padding: 65px 0 70px;
  }

  .msc-how-heading {
    margin-bottom: 38px;
  }
}

@media (max-width: 575.98px) {
  .msc-configurator-panel {
    border-radius: 8px;
  }

  .msc-configurator-content h2 {
    font-size: 34px;
  }

  .msc-configurator-product {
    min-height: 350px;
  }

  .msc-configurator-button {
    width: 100%;
  }

  .msc-how-steps {
    grid-template-columns: repeat(5, 170px);
  }

  .msc-how-icon {
    width: 76px;
    height: 76px;
  }

  .msc-how-icon svg {
    width: 38px;
    height: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .msc-configurator-button,
  .msc-configurator-option {
    transition: none;
  }
}

/* ========================================
   CHAMADA PARA ATENDIMENTO
======================================== */

.msc-contact-strip {
  position: relative;
  overflow: hidden;
  padding: 28px 0;
  color: #ffffff;
  background: #050505;
}

/* Textura discreta no fundo */

.msc-contact-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(255, 255, 255, 0.05),
      transparent 32%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(255, 255, 255, 0.04),
      transparent 30%
    );
}

.msc-contact-strip .site-container {
  position: relative;
  z-index: 1;
}

/* Texto */

.msc-contact-strip-content h2 {
  margin: 0 0 7px;
  color: #ffffff;
  font-size: clamp(19px, 2vw, 27px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.msc-contact-strip-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 9px;
  font-weight: 500;
  line-height: 1.55;
}

/* Botão */

.msc-contact-strip-button {
  width: 100%;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  color: #090909;
  background: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 0;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.msc-contact-strip-button:hover,
.msc-contact-strip-button:focus {
  color: #090909;
  background: #b8e51d;
  border-color: #b8e51d;
}

/* WhatsApp */

.msc-contact-strip-whatsapp {
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding-left: 31px;
  color: #ffffff;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.msc-contact-strip-whatsapp:hover,
.msc-contact-strip-whatsapp:focus {
  color: #ffffff;
  opacity: 0.78;
}

.msc-contact-strip-whatsapp-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 29px;
}

.msc-contact-strip-whatsapp > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.msc-contact-strip-whatsapp strong {
  color: #ffffff;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.045em;
  line-height: 1.3;
  text-transform: uppercase;
}

.msc-contact-strip-whatsapp span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 8px;
  font-weight: 500;
  line-height: 1.35;
}

/* Responsivo */

@media (max-width: 991.98px) {
  .msc-contact-strip {
    padding: 34px 0;
  }

  .msc-contact-strip-whatsapp {
    padding-left: 24px;
  }
}

@media (max-width: 767.98px) {
  .msc-contact-strip-content {
    text-align: center;
  }

  .msc-contact-strip-content h2 br {
    display: none;
  }

  .msc-contact-strip-button {
    min-height: 52px;
  }

  .msc-contact-strip-whatsapp {
    justify-content: center;
    padding: 22px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
  }
}

@media (max-width: 575.98px) {
  .msc-contact-strip {
    padding: 30px 0;
  }

  .msc-contact-strip-whatsapp {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .msc-contact-strip-button,
  .msc-contact-strip-whatsapp {
    transition: none;
  }
}

/* ========================================
   ESCOLHA SEU MODELO
======================================== */

.msc-models {
  padding: 88px 0 82px;
  background: #fbfaf8;
  border-top: 1px solid #ededE8;
  border-bottom: 1px solid #ededE8;
}

/* Cabeçalho */

.msc-models-heading {
  margin-bottom: 43px;
  text-align: center;
}

.msc-models-heading > span {
  display: block;
  margin-bottom: 10px;
  color: #3f3f3f;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.msc-models-heading h2 {
  margin: 0;
  color: #090909;
  font-size: clamp(31px, 3.5vw, 48px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.msc-models-heading-line {
  width: 48px;
  height: 3px;
  margin: 18px auto 0;
  background: #090909;
}

/* Grade */

.msc-models-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 17px;
}

/* Card */

.msc-model-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e2e1dc;
  border-radius: 7px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.045);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.msc-model-card:hover {
  border-color: #bdbdb7;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.09);
  transform: translateY(-5px);
}

/* Imagem */

.msc-model-card-image {
  position: relative;
  aspect-ratio: 4 / 4.3;
  overflow: hidden;
  background: #ebeae7;
}

.msc-model-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.45s ease;
}

.msc-model-card:hover .msc-model-card-image img {
  transform: scale(1.035);
}

/* Conteúdo */

.msc-model-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 21px 17px 17px;
  text-align: center;
}

.msc-model-card-content h3 {
  margin: 0 0 12px;
  color: #111111;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

.msc-model-card-content p {
  min-height: 47px;
  margin: 0 0 19px;
  color: #676767;
  font-size: 9px;
  font-weight: 500;
  line-height: 1.6;
}

/* Botão do card */

.msc-model-card-button {
  width: 100%;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 0 16px;
  color: #111111;
  background: transparent;
  border: 1px solid #949490;
  border-radius: 0;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.msc-model-card-button:hover,
.msc-model-card-button:focus {
  color: #ffffff;
  background: #090909;
  border-color: #090909;
}

/* Rodapé */

.msc-models-footer {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.msc-models-all-button {
  min-width: 285px;
  min-height: 51px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  padding: 0 25px;
  color: #111111;
  background: transparent;
  border: 1px solid #747470;
  border-radius: 0;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.msc-models-all-button svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
  transition: transform 0.2s ease;
}

.msc-models-all-button:hover,
.msc-models-all-button:focus {
  color: #ffffff;
  background: #090909;
  border-color: #090909;
}

.msc-models-all-button:hover svg,
.msc-models-all-button:focus svg {
  transform: translateX(4px);
}

/* ========================================
   RESPONSIVO
======================================== */

@media (max-width: 1199.98px) {
  .msc-models-scroll {
    overflow-x: auto;
    padding: 5px 0 18px;
    scrollbar-width: thin;
    scrollbar-color: #bfbfba transparent;
  }

  .msc-models-grid {
    width: max-content;
    grid-template-columns: repeat(5, 220px);
  }

  .msc-model-card {
    width: 220px;
  }
}

@media (max-width: 991.98px) {
  .msc-models {
    padding: 72px 0 68px;
  }
}

@media (max-width: 767.98px) {
  .msc-models {
    padding: 60px 0;
  }

  .msc-models-heading {
    margin-bottom: 34px;
  }

  .msc-models-heading h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .msc-models-grid {
    grid-template-columns: repeat(5, 205px);
  }

  .msc-model-card {
    width: 205px;
  }
}

@media (max-width: 575.98px) {
  .msc-models-grid {
    grid-template-columns: repeat(5, 190px);
    gap: 13px;
  }

  .msc-model-card {
    width: 190px;
  }

  .msc-models-all-button {
    width: 100%;
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .msc-model-card,
  .msc-model-card-image img,
  .msc-model-card-button,
  .msc-models-all-button,
  .msc-models-all-button svg {
    transition: none;
  }
}

/* ========================================
   DIFERENCIAIS
======================================== */

.msc-differentials {
  padding: 0;
  background: #ffffff;
}

.msc-differentials-panel {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: #050505;
}

/* Conteúdo */

.msc-differentials-content {
  min-height: 410px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 55px 40px 55px 48px;
}

/* Título */

.msc-differentials-heading {
  margin-bottom: 38px;
}

.msc-differentials-heading > span {
  display: block;
  margin-bottom: 11px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.msc-differentials-heading h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.msc-differentials-line {
  width: 48px;
  height: 3px;
  margin-top: 18px;
  background: #ffffff;
}

/* Grade de diferenciais */

.msc-differentials-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

/* Item */

.msc-differential-item {
  min-width: 0;
}

.msc-differential-icon {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 17px;
  color: rgba(255, 255, 255, 0.86);
}

.msc-differential-icon svg {
  width: 43px;
  height: 43px;
  stroke-width: 1.45;
}

.msc-differential-item h3 {
  min-height: 38px;
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 10px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.msc-differential-item p {
  max-width: 145px;
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 8px;
  font-weight: 500;
  line-height: 1.55;
}

/* Imagem */

.msc-differentials-image {
  position: relative;
  height: 100%;
  min-height: 410px;
  overflow: hidden;
  background: #080808;
}

.msc-differentials-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* Integração entre imagem e fundo */

.msc-differentials-image::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  width: 110px;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    #050505 0%,
    rgba(5, 5, 5, 0) 100%
  );
}

/* Escurecimento discreto */

.msc-differentials-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.28),
    rgba(0, 0, 0, 0.06)
  );
}

/* ========================================
   RESPONSIVO
======================================== */

@media (max-width: 1199.98px) {
  .msc-differentials-content {
    min-height: auto;
    padding: 55px 45px;
  }

  .msc-differentials-image {
    min-height: 430px;
  }

  .msc-differentials-image::before {
    top: 0;
    right: 0;
    bottom: auto;
    width: 100%;
    height: 100px;
    background: linear-gradient(
      180deg,
      #050505 0%,
      rgba(5, 5, 5, 0) 100%
    );
  }
}

@media (max-width: 991.98px) {
  .msc-differentials-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px 25px;
  }

  .msc-differential-item p {
    max-width: 180px;
  }
}

@media (max-width: 767.98px) {
  .msc-differentials-content {
    padding: 48px 28px;
  }

  .msc-differentials-heading {
    margin-bottom: 34px;
  }

  .msc-differentials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .msc-differentials-image {
    min-height: 360px;
  }
}

@media (max-width: 575.98px) {
  .msc-differentials-content {
    padding: 42px 22px;
  }

  .msc-differentials-heading h2 {
    font-size: 28px;
  }

  .msc-differentials-grid {
    grid-template-columns: 1fr;
    gap: 27px;
  }

  .msc-differential-item {
    display: grid;
    grid-template-columns: 54px 1fr;
    column-gap: 14px;
  }

  .msc-differential-icon {
    grid-row: 1 / 3;
    width: 54px;
    height: 54px;
    margin-bottom: 0;
  }

  .msc-differential-icon svg {
    width: 39px;
    height: 39px;
  }

  .msc-differential-item h3 {
    min-height: 0;
    margin-bottom: 5px;
  }

  .msc-differential-item p {
    max-width: 250px;
  }

  .msc-differentials-image {
    min-height: 310px;
  }
}

/* ========================================
   FOOTER — MONTE SUA CAMISETA
======================================== */

.msc-footer {
  --footer-black: #050505;
  --footer-surface: #101010;
  --footer-white: #ffffff;
  --footer-muted: rgba(255, 255, 255, 0.58);
  --footer-border: rgba(255, 255, 255, 0.13);
  --footer-accent: #b8e51d;

  position: relative;
  overflow: hidden;
  color: var(--footer-white);
  background: var(--footer-black);
  border-top: 4px solid var(--footer-accent);
}

/* ========================================
   ÁREA PRINCIPAL
======================================== */

.msc-footer-main {
  padding: 74px 0 60px;
}

/* Marca */

.msc-footer-brand {
  max-width: 490px;
  padding-right: 45px;
}

.msc-footer-logo {
  width: 210px;
  min-height: 67px;
  display: flex;
  align-items: center;
  margin-bottom: 29px;
}

.msc-footer-logo img {
  width: auto;
  max-width: 100%;
  max-height: 64px;
  display: block;
  object-fit: contain;
  object-position: left center;
}

.msc-footer-brand h2 {
  margin: 0 0 19px;
  color: var(--footer-white);
  font-size: clamp(34px, 3.5vw, 51px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.msc-footer-brand > p {
  max-width: 450px;
  margin: 0 0 27px;
  color: var(--footer-muted);
  font-size: 12px;
  line-height: 1.75;
}

/* Botão */

.msc-footer-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  color: #090909;
  background: var(--footer-accent);
  border: 1px solid var(--footer-accent);
  border-radius: 0;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.msc-footer-button svg {
  width: 17px;
  height: 17px;
  stroke-width: 2;
}

.msc-footer-button:hover,
.msc-footer-button:focus {
  color: #090909;
  background: #ffffff;
  border-color: #ffffff;
}

/* ========================================
   COLUNAS
======================================== */

.msc-footer-column h3 {
  margin: 4px 0 23px;
  color: var(--footer-white);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.msc-footer-column nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.msc-footer-column nav a {
  color: var(--footer-muted);
  font-size: 11px;
  line-height: 1.45;
  text-decoration: none;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.msc-footer-column nav a:hover,
.msc-footer-column nav a:focus {
  color: var(--footer-white);
  transform: translateX(4px);
}

/* ========================================
   ATENDIMENTO
======================================== */

.msc-footer-contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 17px;
  color: var(--footer-white);
  text-decoration: none;
}

.msc-footer-contact-link > i {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #090909;
  background: var(--footer-accent);
  font-size: 19px;
}

.msc-footer-contact-link span {
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: var(--footer-white);
  font-size: 11px;
  font-weight: 700;
}

.msc-footer-contact-link small {
  color: var(--footer-muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.msc-footer-contact-link:hover {
  color: var(--footer-white);
}

.msc-footer-email {
  display: inline-block;
  color: var(--footer-muted);
  font-size: 10px;
  line-height: 1.5;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.msc-footer-email:hover,
.msc-footer-email:focus {
  color: var(--footer-white);
}

/* Redes sociais */

.msc-footer-social {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 23px;
}

.msc-footer-social a {
  width: 39px;
  height: 39px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--footer-white);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--footer-border);
  text-decoration: none;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.msc-footer-social a i {
  font-size: 16px;
}

.msc-footer-social a:hover,
.msc-footer-social a:focus {
  color: #090909;
  background: var(--footer-accent);
  border-color: var(--footer-accent);
}

/* ========================================
   BLOCO USE.INK
======================================== */

.msc-footer-partner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding: 25px 0;
  border-top: 1px solid var(--footer-border);
}

.msc-footer-partner-text span {
  display: block;
  margin-bottom: 5px;
  color: var(--footer-white);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.msc-footer-partner-text p {
  margin: 0;
  color: var(--footer-muted);
  font-size: 10px;
  line-height: 1.55;
}

.msc-footer-useink-logo {
  width: 125px;
  height: 50px;
  flex: 0 0 125px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  opacity: 0.75;
  transition: opacity 0.2s ease;
}

.msc-footer-useink-logo img {
  width: auto;
  max-width: 100%;
  max-height: 39px;
  display: block;
  object-fit: contain;
  object-position: right center;
}

.msc-footer-useink-logo:hover,
.msc-footer-useink-logo:focus {
  opacity: 1;
}

/* ========================================
   PARTE INFERIOR
======================================== */

.msc-footer-bottom {
  min-height: 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 21px 0;
  border-top: 1px solid var(--footer-border);
}

.msc-footer-bottom > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 8px;
  line-height: 1.5;
}

.msc-footer-legal {
  display: flex;
  align-items: center;
  gap: 21px;
}

.msc-footer-legal a {
  color: rgba(255, 255, 255, 0.42);
  font-size: 8px;
  text-decoration: none;
}

.msc-footer-legal a:hover,
.msc-footer-legal a:focus {
  color: var(--footer-white);
}

.msc-footer-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--footer-white);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.msc-footer-top svg {
  width: 15px;
  height: 15px;
  stroke-width: 2;
  transition: transform 0.2s ease;
}

.msc-footer-top:hover,
.msc-footer-top:focus {
  color: var(--footer-accent);
}

.msc-footer-top:hover svg {
  transform: translateY(-3px);
}

/* ========================================
   RESPONSIVO
======================================== */

@media (max-width: 991.98px) {
  .msc-footer-main {
    padding: 62px 0 50px;
  }

  .msc-footer-brand {
    max-width: 650px;
    padding-right: 0;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--footer-border);
  }
}

@media (max-width: 767.98px) {
  .msc-footer-main {
    padding: 52px 0 42px;
  }

  .msc-footer-logo {
    width: 185px;
  }

  .msc-footer-brand h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .msc-footer-button {
    width: 100%;
  }

  .msc-footer-partner {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .msc-footer-useink-logo {
    justify-content: flex-start;
  }

  .msc-footer-useink-logo img {
    object-position: left center;
  }

  .msc-footer-bottom {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    padding: 24px 0;
  }

  .msc-footer-legal {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  .msc-footer-button,
  .msc-footer-column nav a,
  .msc-footer-social a,
  .msc-footer-useink-logo,
  .msc-footer-top svg {
    transition: none;
  }
}

/* ========================================
   FOOTER — SOMENTE PRETO E BRANCO
======================================== */

.msc-footer {
  --footer-black: #000000;
  --footer-surface: #000000;
  --footer-white: #ffffff;
  --footer-muted: rgba(255, 255, 255, 0.62);
  --footer-border: rgba(255, 255, 255, 0.18);
  --footer-accent: #ffffff;

  color: #ffffff !important;
  background: #000000 !important;
  border-top: 1px solid #ffffff !important;
}

/* Logo principal */

.msc-footer-logo img {
  filter: brightness(0) invert(1);
}

/* Títulos e textos */

.msc-footer-brand h2,
.msc-footer-column h3,
.msc-footer-contact-link,
.msc-footer-partner-text span,
.msc-footer-top {
  color: #ffffff !important;
}

.msc-footer-brand > p,
.msc-footer-column nav a,
.msc-footer-email,
.msc-footer-partner-text p,
.msc-footer-bottom > p,
.msc-footer-legal a,
.msc-footer-contact-link small {
  color: rgba(255, 255, 255, 0.62) !important;
}

/* Botão principal */

.msc-footer-button {
  color: #000000 !important;
  background: #ffffff !important;
  border: 1px solid #ffffff !important;
  border-radius: 0 !important;
}

.msc-footer-button:hover,
.msc-footer-button:focus {
  color: #ffffff !important;
  background: #000000 !important;
  border-color: #ffffff !important;
}

/* Links */

.msc-footer-column nav a:hover,
.msc-footer-column nav a:focus,
.msc-footer-email:hover,
.msc-footer-email:focus,
.msc-footer-legal a:hover,
.msc-footer-legal a:focus {
  color: #ffffff !important;
}

/* WhatsApp */

.msc-footer-contact-link > i {
  color: #000000 !important;
  background: #ffffff !important;
}

.msc-footer-contact-link:hover > i,
.msc-footer-contact-link:focus > i {
  color: #ffffff !important;
  background: #000000 !important;
  border: 1px solid #ffffff !important;
}

/* Redes sociais */

.msc-footer-social a {
  color: #ffffff !important;
  background: #000000 !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
}

.msc-footer-social a:hover,
.msc-footer-social a:focus {
  color: #000000 !important;
  background: #ffffff !important;
  border-color: #ffffff !important;
}

/* Logo USE.INK */

.msc-footer-useink-logo img {
  filter: brightness(0) invert(1);
}

/* Linhas divisórias */

.msc-footer-partner,
.msc-footer-bottom {
  border-color: rgba(255, 255, 255, 0.18) !important;
}

/* Voltar ao topo */

.msc-footer-top:hover,
.msc-footer-top:focus {
  color: rgba(255, 255, 255, 0.65) !important;
}

/* Foco acessível */

.msc-footer a:focus-visible {
  outline: 2px solid #ffffff !important;
  outline-offset: 4px !important;
}

.useink-hero {
  --useink-black: #111111;
  --useink-gray: #686868;
  --useink-border: #dedbd5;
  --useink-background: #fbfaf8;
  --useink-background-secondary: #f0ebe4;

  position: relative;
  overflow: hidden;
  min-height: 720px;
  background:
    radial-gradient(
      circle at 72% 45%,
      rgba(235, 226, 216, 0.7) 0,
      rgba(235, 226, 216, 0) 32%
    ),
    var(--useink-background);
}

.useink-hero-container {
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: clamp(20px, 3vw, 56px);
}

.useink-hero-content {
  position: relative;
  z-index: 5;
  padding-block: clamp(70px, 8vw, 120px);
}

.useink-eyebrow {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--useink-black);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.useink-hero-title {
  max-width: 600px;
  margin: 0;
  color: var(--useink-black);
  font-size: clamp(3.2rem, 4.5vw, 6.3rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.useink-hero-description {
  margin: 28px 0 0;
  color: #242424;
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  line-height: 1.55;
}

.useink-hero-actions {
  margin-top: 32px;
}

.useink-btn-primary,
.useink-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 28px;
  border-radius: 3px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    color 0.25s ease,
    background-color 0.25s ease;
}

.useink-btn-primary {
  border: 1px solid var(--useink-black);
  background: var(--useink-black);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(17, 17, 17, 0.14);
}

.useink-btn-primary:hover {
  border-color: #2b2b2b;
  background: #2b2b2b;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(17, 17, 17, 0.2);
}

.useink-btn-outline {
  border: 1px solid #858585;
  background: rgba(255, 255, 255, 0.65);
  color: var(--useink-black);
}

.useink-btn-outline:hover {
  border-color: var(--useink-black);
  background: #ffffff;
  color: var(--useink-black);
  transform: translateY(-3px);
}

.useink-benefits {
  max-width: 610px;
  margin-top: 46px;
}

.useink-benefit {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.useink-benefit-icon {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  color: var(--useink-black);
  animation: useinkIconFloat 4s ease-in-out infinite;
}

.useink-benefit-icon svg {
  width: 100%;
  height: 100%;
}

.useink-benefit p {
  margin: 1px 0 0;
  color: #252525;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.65;
}

.useink-hero-visual {
  position: relative;
  min-height: 720px;
}

.useink-visual-shape {
  position: absolute;
  z-index: 0;
  top: 7%;
  left: 3%;
  width: 73%;
  height: 84%;
  border-radius: 42% 58% 48% 52% / 48% 44% 56% 52%;
  background: var(--useink-background-secondary);
  transform: rotate(-2deg);
  animation: useinkShapeFloat 9s ease-in-out infinite;
}

.useink-models-image {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: -5%;
  width: min(75%, 820px);
  max-height: 710px;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 24px 26px rgba(17, 17, 17, 0.08));
}

.useink-simulator {
  position: absolute;
  z-index: 6;
  top: 50%;
  right: 1%;
  width: min(340px, 33vw);
  padding: 24px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 30px 70px rgba(17, 17, 17, 0.12),
    0 8px 20px rgba(17, 17, 17, 0.06);
  backdrop-filter: blur(12px);
  transform: translateY(-50%);
  animation: useinkSimulatorFloat 5s ease-in-out infinite;
}

.useink-simulator-group {
  min-width: 0;
  margin: 0;
  padding: 0 0 20px;
  border: 0;
}

.useink-simulator-group + .useink-simulator-group {
  padding-top: 1px;
}

.useink-simulator-group legend {
  float: none;
  width: auto;
  margin-bottom: 12px;
  color: var(--useink-black);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.useink-simulator-group legend span {
  margin-right: 3px;
}

.useink-model-options,
.useink-print-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.useink-model-option,
.useink-print-option,
.useink-color-option {
  cursor: pointer;
}

.useink-model-option input,
.useink-print-option input,
.useink-color-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.useink-model-card {
  display: flex;
  min-height: 82px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 4px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #a4a4a4;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.useink-model-card svg {
  width: 36px;
  height: 36px;
  fill: currentColor;
}

.useink-model-card span {
  font-size: 0.6rem;
  font-weight: 700;
}

.useink-model-option:hover .useink-model-card {
  color: #555555;
  transform: translateY(-2px);
}

.useink-model-option input:checked + .useink-model-card {
  border-color: #d7d7d7;
  background: #f7f7f7;
  color: var(--useink-black);
}

.useink-color-options {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.useink-color-option > span {
  position: relative;
  display: block;
  width: 26px;
  height: 26px;
  border: 2px solid transparent;
  border-radius: 50%;
  background: var(--shirt-color);
  box-shadow: 0 0 0 1px rgba(17, 17, 17, 0.08);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.useink-color-light > span {
  box-shadow: 0 0 0 1px #d3d3d3;
}

.useink-color-option:hover > span {
  transform: scale(1.1);
}

.useink-color-option input:checked + span {
  transform: scale(1.07);
  box-shadow:
    0 0 0 2px #ffffff,
    0 0 0 4px var(--useink-black);
}

.useink-print-card {
  display: flex;
  min-height: 86px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px 5px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #3b3b3b;
  text-align: center;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}

.useink-print-option:hover .useink-print-card {
  transform: translateY(-2px);
}

.useink-print-option input:checked + .useink-print-card {
  border-color: #d7d7d7;
  background: #f7f7f7;
}

.useink-print-shirt svg {
  width: 31px;
  height: 31px;
}

.useink-double-shirt {
  display: flex;
  align-items: center;
  justify-content: center;
}

.useink-double-shirt svg {
  width: 28px;
  height: 28px;
}

.useink-double-shirt svg + svg {
  margin-left: -6px;
}

.useink-print-shirt svg path,
.useink-double-shirt svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
}

.useink-print-shirt svg rect,
.useink-double-shirt svg rect {
  fill: currentColor;
  stroke: none;
}

.useink-print-card strong {
  font-size: 0.59rem;
  font-weight: 700;
  line-height: 1.2;
}

.useink-simulator-button {
  display: flex;
  width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--useink-black);
  border-radius: 4px;
  background: var(--useink-black);
  color: #ffffff;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  transition:
    background-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.useink-simulator-button svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}

.useink-simulator-button:hover {
  background: #292929;
  transform: translateY(-2px);
  box-shadow: 0 12px 20px rgba(17, 17, 17, 0.16);
}

.useink-simulator-button:hover svg {
  transform: translateX(4px);
}

.useink-floating-tag {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--useink-black);
  font-size: 0.66rem;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(10px);
}

.useink-floating-tag-left {
  top: 23%;
  left: 2%;
  animation: useinkTagFloat 5.5s ease-in-out infinite;
}

.useink-floating-tag-bottom {
  right: 30%;
  bottom: 9%;
  animation: useinkTagFloat 5.5s 1.2s ease-in-out infinite;
}

.useink-floating-dot {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #111111;
}

.useink-arrow-decoration {
  position: absolute;
  z-index: 4;
  right: 7%;
  bottom: 2%;
  width: 110px;
  color: var(--useink-black);
  transform: rotate(-9deg);
  animation: useinkArrowFloat 4.5s ease-in-out infinite;
}

.useink-arrow-decoration svg {
  display: block;
  width: 100%;
}

/* Animações */

@keyframes useinkModelsFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-9px);
  }
}

@keyframes useinkSimulatorFloat {
  0%,
  100% {
    transform: translateY(-50%);
  }

  50% {
    transform: translateY(calc(-50% - 10px));
  }
}

@keyframes useinkShapeFloat {
  0%,
  100% {
    transform: rotate(-2deg) translateY(0);
  }

  50% {
    transform: rotate(1deg) translateY(-8px);
  }
}

@keyframes useinkIconFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-5px) rotate(-2deg);
  }
}

@keyframes useinkTagFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes useinkArrowFloat {
  0%,
  100% {
    transform: rotate(-9deg) translateY(0);
  }

  50% {
    transform: rotate(-6deg) translateY(-6px);
  }
}

/* Responsivo */

@media (max-width: 1199.98px) {
  .useink-hero-title {
    font-size: clamp(3rem, 5.2vw, 4.8rem);
  }

  .useink-models-image {
    left: -8%;
    width: 76%;
  }

  .useink-simulator {
    right: 0;
    width: min(315px, 36vw);
    padding: 20px;
  }

  .useink-floating-tag-left {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .useink-hero {
    min-height: auto;
  }

  .useink-hero-content {
    padding-block: 70px 35px;
    text-align: center;
  }

  .useink-hero-title,
  .useink-benefits {
    margin-inline: auto;
  }

  .useink-hero-description {
    margin-inline: auto;
  }

  .useink-hero-actions {
    justify-content: center;
  }

  .useink-benefit {
    justify-content: center;
    text-align: left;
  }

  .useink-hero-visual {
    min-height: 760px;
  }

  .useink-visual-shape {
    top: 8%;
    left: 5%;
    width: 90%;
    height: 68%;
  }

  .useink-models-image {
    left: 50%;
    width: min(720px, 94%);
    max-height: 610px;
    transform: translateX(-50%);
    animation: none;
  }

  .useink-simulator {
    top: auto;
    right: 50%;
    bottom: 20px;
    width: min(420px, calc(100% - 30px));
    transform: translateX(50%);
    animation: useinkSimulatorFloatMobile 5s ease-in-out infinite;
  }

  .useink-floating-tag-bottom,
  .useink-arrow-decoration {
    display: none;
  }
}

@keyframes useinkSimulatorFloatMobile {
  0%,
  100% {
    transform: translateX(50%) translateY(0);
  }

  50% {
    transform: translateX(50%) translateY(-8px);
  }
}

@media (max-width: 575.98px) {
  .useink-hero-container {
    padding-inline: 16px;
  }

  .useink-hero-content {
    padding-top: 55px;
  }

  .useink-hero-title {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  .useink-hero-description br {
    display: none;
  }

  .useink-btn-primary,
  .useink-btn-outline {
    width: 100%;
  }

  .useink-benefits {
    margin-top: 35px;
  }

  .useink-benefit {
    justify-content: flex-start;
  }

  .useink-hero-visual {
    min-height: 730px;
    margin-top: 10px;
  }

  .useink-models-image {
    top: 10px;
    bottom: auto;
    width: 115%;
    max-width: none;
    max-height: 500px;
  }

  .useink-simulator {
    bottom: 15px;
    padding: 18px 15px;
  }

  .useink-model-card {
    min-height: 72px;
  }

  .useink-color-options {
    gap: 12px;
  }

  .useink-color-option > span {
    width: 24px;
    height: 24px;
  }

  .useink-print-card {
    min-height: 78px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .useink-models-image,
  .useink-simulator,
  .useink-visual-shape,
  .useink-benefit-icon,
  .useink-floating-tag,
  .useink-arrow-decoration {
    animation: none !important;
  }
}

:root{
  --cta-black:#000;
  --cta-white:#fff;
}

/* =====================================
   ALINHAMENTO DOS BOTÕES DO HERO
===================================== */

.useink-hero-actions{
  display:grid!important;
  grid-template-columns:repeat(2,minmax(0,1fr));
  align-items:stretch;
  gap:20px!important;
  width:100%;
}

.useink-hero-actions .btn{
  width:100%;
  height:100%;
}

/* =====================================
   CONFIGURAÇÃO GERAL DOS CTAs
===================================== */

:is(
  .useink-btn-primary,
  .useink-btn-outline,
  .msc-header-button,
  .msc-configurator-button,
  .msc-contact-strip-button,
  .msc-model-card-button,
  .msc-models-all-button,
  .msc-footer-button,
  .useink-simulator-button
){
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  gap:10px;

  min-height:58px;
  padding:15px 30px!important;

  border:2px solid var(--cta-black)!important;
  border-radius:0!important;
  box-shadow:none!important;

  font-size:15px;
  font-weight:700;
  line-height:1.2;
  letter-spacing:.02em;
  text-align:center;
  text-decoration:none!important;
  text-transform:uppercase;

  transition:
    background-color .25s ease,
    color .25s ease,
    border-color .25s ease,
    transform .25s ease!important;
}

/* =====================================
   BOTÃO PRETO — FUNDO CLARO
===================================== */

:is(
  .useink-btn-primary,
  .msc-header-button,
  .msc-configurator-button,
  .msc-model-card-button,
  .msc-models-all-button,
  .useink-simulator-button
){
  background:var(--cta-black)!important;
  color:var(--cta-white)!important;
  border-color:var(--cta-black)!important;
}

:is(
  .useink-btn-primary,
  .msc-header-button,
  .msc-configurator-button,
  .msc-model-card-button,
  .msc-models-all-button,
  .useink-simulator-button
):hover{
  background:var(--cta-white)!important;
  color:var(--cta-black)!important;
  border-color:var(--cta-black)!important;
  transform:translateY(-2px);
}

/* =====================================
   BOTÃO BRANCO/CONTORNADO — FUNDO CLARO
===================================== */

.useink-btn-outline{
  background:var(--cta-white)!important;
  color:var(--cta-black)!important;
  border-color:var(--cta-black)!important;
}

.useink-btn-outline:hover{
  background:var(--cta-black)!important;
  color:var(--cta-white)!important;
  border-color:var(--cta-black)!important;
  transform:translateY(-2px);
}

/* =====================================
   BOTÕES SOBRE FUNDOS ESCUROS
===================================== */

:is(
  .msc-contact-strip-button,
  .msc-footer-button,
  .cta-on-dark
){
  background:var(--cta-white)!important;
  color:var(--cta-black)!important;
  border-color:var(--cta-white)!important;
}

:is(
  .msc-contact-strip-button,
  .msc-footer-button,
  .cta-on-dark
):hover{
  background:var(--cta-black)!important;
  color:var(--cta-white)!important;
  border-color:var(--cta-white)!important;
  transform:translateY(-2px);
}

/* Botão apenas contornado sobre fundo escuro */
.cta-outline-on-dark{
  background:transparent!important;
  color:var(--cta-white)!important;
  border-color:var(--cta-white)!important;
}

.cta-outline-on-dark:hover{
  background:var(--cta-white)!important;
  color:var(--cta-black)!important;
  border-color:var(--cta-white)!important;
}

/* =====================================
   ÍCONES
===================================== */

:is(
  .msc-header-button,
  .msc-models-all-button,
  .msc-footer-button,
  .useink-simulator-button
) svg{
  width:18px;
  height:18px;
  flex:0 0 18px;
  transition:transform .25s ease;
}

:is(
  .msc-header-button,
  .msc-models-all-button,
  .msc-footer-button,
  .useink-simulator-button
):hover svg{
  transform:translateX(4px);
}

/* =====================================
   FOCO E CLIQUE
===================================== */

:is(
  .useink-btn-primary,
  .useink-btn-outline,
  .msc-header-button,
  .msc-configurator-button,
  .msc-contact-strip-button,
  .msc-model-card-button,
  .msc-models-all-button,
  .msc-footer-button,
  .useink-simulator-button
):focus,
:is(
  .useink-btn-primary,
  .useink-btn-outline,
  .msc-header-button,
  .msc-configurator-button,
  .msc-contact-strip-button,
  .msc-model-card-button,
  .msc-models-all-button,
  .msc-footer-button,
  .useink-simulator-button
):active{
  box-shadow:none!important;
}

:is(
  .useink-btn-primary,
  .useink-btn-outline,
  .msc-header-button,
  .msc-configurator-button,
  .msc-contact-strip-button,
  .msc-model-card-button,
  .msc-models-all-button,
  .msc-footer-button,
  .useink-simulator-button
):focus-visible{
  outline:3px solid rgba(0,0,0,.25);
  outline-offset:4px;
}

/* =====================================
   RESPONSIVO
===================================== */

@media(max-width:767.98px){

  .useink-hero-actions{
    grid-template-columns:1fr;
    gap:12px!important;
  }

  :is(
    .useink-btn-primary,
    .useink-btn-outline,
    .msc-configurator-button,
    .msc-contact-strip-button,
    .msc-models-all-button,
    .msc-footer-button,
    .useink-simulator-button
  ){
    width:100%;
    min-height:54px;
    padding:14px 20px!important;
    white-space:normal;
  }
}

@media(max-width:399.98px){

  :is(
    .useink-btn-primary,
    .useink-btn-outline,
    .msc-header-button,
    .msc-configurator-button,
    .msc-contact-strip-button,
    .msc-model-card-button,
    .msc-models-all-button,
    .msc-footer-button,
    .useink-simulator-button
  ){
    min-height:50px;
    padding:12px 16px!important;
    font-size:13px;
  }
}

.msc-differentials .site-container {
    width: unset !important;
}

/* ==================================================
   RODAPÉ — VERSÃO CLARA
================================================== */

.msc-footer {
    background-color: #ffffff !important;
    color: #000000 !important;
}

/* Textos e links */
.msc-footer h2,
.msc-footer h3,
.msc-footer p,
.msc-footer span,
.msc-footer small,
.msc-footer nav a,
.msc-footer-email,
.msc-footer-legal a,
.msc-footer-top {
    color: #000000 !important;
}

/* Logos originalmente brancos */
.msc-footer-logo img,
.msc-footer-useink-logo img {
    filter: brightness(0) saturate(100%) !important;
    opacity: 1 !important;
}

/* Botão principal */
.msc-footer-button {
    background-color: #000000 !important;
    border-color: #000000 !important;
    color: #ffffff !important;
}

.msc-footer-button svg {
    color: #ffffff !important;
    stroke: currentColor !important;
}

.msc-footer-button:hover,
.msc-footer-button:focus {
    background-color: #ffffff !important;
    border-color: #000000 !important;
    color: #000000 !important;
}

.msc-footer-button:hover svg,
.msc-footer-button:focus svg {
    color: #000000 !important;
}

/* Links das colunas */
.msc-footer-column nav a:hover,
.msc-footer-email:hover,
.msc-footer-legal a:hover,
.msc-footer-top:hover {
    color: #000000 !important;
    opacity: 0.6 !important;
}

/* Atendimento pelo WhatsApp */
.msc-footer-contact-link {
    color: #000000 !important;
}

.msc-footer-contact-link span,
.msc-footer-contact-link small {
    color: #000000 !important;
}

.msc-footer-contact-link > i {
    background-color: #000000 !important;
    border-color: #000000 !important;
    color: #ffffff !important;
}

.msc-footer-contact-link:hover {
    color: #000000 !important;
    opacity: 0.75 !important;
}

/* Redes sociais */
.msc-footer-social a {
    background-color: #ffffff !important;
    border: 1px solid #000000 !important;
    color: #000000 !important;
}

.msc-footer-social a i {
    color: #000000 !important;
}

.msc-footer-social a:hover {
    background-color: #000000 !important;
    border-color: #000000 !important;
    color: #ffffff !important;
}

.msc-footer-social a:hover i {
    color: #ffffff !important;
}

/* Divisórias */
.msc-footer-partner,
.msc-footer-bottom {
    border-color: rgba(0, 0, 0, 0.22) !important;
}

/* Área da solução USE.INK */
.msc-footer-partner {
    background-color: #ffffff !important;
    color: #000000 !important;
}

.msc-footer-partner-text span,
.msc-footer-partner-text p {
    color: #000000 !important;
}

/* Rodapé inferior */
.msc-footer-bottom {
    background-color: #ffffff !important;
}

.msc-footer-bottom p,
.msc-footer-bottom a {
    color: #000000 !important;
}

/* Ícone de voltar ao topo */
.msc-footer-top svg {
    color: #000000 !important;
    stroke: currentColor !important;
}

/* Seleção de texto dentro do rodapé */
.msc-footer ::selection {
    background-color: #000000 !important;
    color: #ffffff !important;
}