:root {
  --navy: #0c3348;
  --navy-2: #08283a;
  --teal: #166f66;
  --teal-2: #21a89a;
  --mint: #edf7f5;
  --ink: #172834;
  --muted: #667782;
  --line: #dbe5e2;
  --white: #fff;
  --soft: #f7faf9;
  --shadow: 0 20px 50px rgba(8, 40, 58, .12);
  --radius: 28px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden
}

address {
  font-style: normal
}

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

img {
  max-width: 100%;
  display: block
}

button,
input,
textarea,
select {
  font: inherit
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(33, 168, 154, .34);
  outline-offset: 3px
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto
}

.section {
  padding: 92px 0
}

.section-sm {
  padding: 64px 0
}

.eyebrow {
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 900
}

.title {
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.04;
  color: var(--navy);
  font-weight: 950;
  letter-spacing: -.04em
}

.lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 710px
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: .82rem;
  letter-spacing: .03em;
  cursor: pointer;
  transition: .25s ease
}

.btn-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 12px 26px rgba(22, 111, 102, .24)
}

.btn-primary:hover {
  background: var(--navy);
  transform: translateY(-2px)
}

.btn-outline {
  border-color: var(--teal);
  color: var(--teal);
  background: #fff
}

.btn-outline:hover {
  background: var(--mint);
  transform: translateY(-2px)
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(219, 229, 226, .8)
}

.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px
}

.brand img {
  height: 42px;
  width: auto
}

.menu {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: .82rem;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .08em
}

.menu a {
  position: relative;
  color: var(--navy)
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: .25s
}

.menu a:hover::after,
.menu a.active::after {
  width: 100%
}

.mobile-toggle {
  display: none;
  border: 0;
  background: var(--mint);
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: var(--navy);
  font-size: 1.45rem
}

.hero {
  position: relative;
  isolation: isolate;
  background: linear-gradient(135deg, var(--navy-2), var(--teal));
  color: #fff;
  overflow: hidden
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 18%, rgba(255, 255, 255, .18), transparent 32%), radial-gradient(circle at 10% 90%, rgba(33, 168, 154, .25), transparent 36%);
  z-index: -1
}

.hero .container {
  min-height: 620px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 48px;
  padding: 72px 0
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 5.5rem);
  line-height: .98;
  letter-spacing: -.06em
}

.hero p {
  margin: 24px 0 34px;
  color: rgba(255, 255, 255, .82);
  font-size: 1.15rem;
  max-width: 600px
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.hero-card {
  position: relative;
  min-height: 430px;
  border-radius: 36px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  box-shadow: var(--shadow);
  overflow: hidden
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .09)
}

.uniform-figure {
  position: absolute;
  inset: auto 4% 0 4%;
  height: 84%;
  display: grid;
  place-items: end center
}

.uniform-figure svg {
  width: min(96%, 520px);
  filter: drop-shadow(0 20px 28px rgba(0, 0, 0, .18))
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px
}

.stat {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .14)
}

.stat strong {
  font-size: 1.75rem;
  display: block
}

.stat span {
  font-size: .86rem;
  color: rgba(255, 255, 255, .75)
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 58px;
  align-items: center
}

.image-panel {
  border-radius: var(--radius);
  min-height: 390px;
  background: linear-gradient(135deg, rgba(22, 111, 102, .9), rgba(12, 51, 72, .9)), url('img/produtos/placeholder.svg') center/cover;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden
}

.image-panel::after {
  content: "Qualidade em uniforme";
  position: absolute;
  left: 34px;
  bottom: 32px;
  color: #fff;
  font-size: 2rem;
  line-height: 1.05;
  font-weight: 950;
  max-width: 280px
}

.steps {
  display: grid;
  gap: 16px;
  margin-top: 24px
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(8, 40, 58, .06)
}

.step b {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--mint);
  color: var(--teal);
  flex: 0 0 38px
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px
}

.feature {
  padding: 28px;
  border-radius: 24px;
  background: var(--soft);
  border: 1px solid var(--line);
  transition: .25s
}

.feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow)
}

.feature .icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: #fff;
  margin-bottom: 18px
}

.feature h3 {
  color: var(--navy);
  font-size: 1.1rem;
  margin-bottom: 8px
}

.feature p {
  color: var(--muted);
  font-size: .95rem
}

.band {
  background: var(--navy);
  color: #fff
}

.band .title {
  color: #fff
}

.band .lead {
  color: rgba(255, 255, 255, .78)
}

.catalog-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px
}

.filters {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 18px 0 34px
}

.filters select {
  min-width: 210px;
  padding: 14px 48px 14px 18px;
  border: 1px solid rgba(22, 111, 102, .24);
  border-radius: 18px;
  background-color: #fff;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(237, 247, 245, .96)), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M3.25 5.25L7 9L10.75 5.25' stroke='%230c3348' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat, no-repeat;
  background-position: center, right 16px center;
  background-size: auto, 14px;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -.01em;
  box-shadow: 0 10px 22px rgba(8, 40, 58, .08);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease
}

.filters select:hover {
  border-color: rgba(22, 111, 102, .42);
  box-shadow: 0 14px 28px rgba(8, 40, 58, .10)
}

.filters select:focus {
  border-color: rgba(22, 111, 102, .68);
  box-shadow: 0 0 0 4px rgba(33, 168, 154, .14), 0 14px 28px rgba(8, 40, 58, .10)
}

.filters select option {
  background: #fff;
  color: var(--navy);
  font-weight: 700
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px
}

.product-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(8, 40, 58, .07);
  transition: .25s
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow)
}

.product-media {
  position: relative;
  aspect-ratio: 1.14/1;
  background: var(--soft);
  overflow: hidden
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.tag {
  position: absolute;
  left: 14px;
  top: 14px;
  background: var(--navy);
  color: #fff;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: .68rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase
}

.product-body {
  padding: 20px
}

.product-body small {
  color: #94785f;
  text-transform: uppercase;
  font-weight: 950;
  letter-spacing: .1em
}

.product-body h3 {
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.2;
  margin: 6px 0 10px
}

.blur-desc {
  position: relative;
  height: 58px;
  overflow: hidden;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.5;
}

.blur-desc::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 24px;

  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.12) 35%,
    rgba(255,255,255,.42) 70%,
    rgba(255,255,255,.88) 100%
  );

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

  pointer-events: none;
}

.product-card .btn {
  width: 100%;
  margin-top: 16px;
  padding: 12px 16px
}

.plain-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 0 20px;
  color: var(--muted)
}

.logos-wrap {
  overflow: hidden;
  margin-top: 34px;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent)
}

.logos-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 32px;
  animation: slide 25s linear infinite
}

.client-logo {
  width: 196px;
  height: 88px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 16px 18px;
  display: grid;
  place-items: center;
  flex: 0 0 auto
}

.client-logo img {
  width: 100%;
  height: 100%;
  max-width: 160px;
  max-height: 56px;
  object-fit: contain;
  object-position: center
}

@keyframes slide {
  to {
    transform: translateX(-50%)
  }
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px
}

.testimonial {
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 12px 30px rgba(8, 40, 58, .06)
}

.stars {
  color: #d9982b;
  letter-spacing: 2px
}

.testimonial p {
  color: var(--muted);
  margin: 14px 0
}

.testimonial strong {
  color: var(--navy)
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 30px;
  align-items: start
}

.info-box,
.form-box {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  padding: 32px;
  box-shadow: var(--shadow)
}

.info-list {
  display: grid;
  gap: 18px;
  margin-top: 22px
}

.info-list li {
  list-style: none;
  display: flex;
  gap: 14px;
  color: var(--muted)
}

.info-list a {
  word-break: break-word
}

.info-list b {
  color: var(--navy);
  display: block
}

.form {
  display: grid;
  gap: 14px
}

.form input,
.form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 15px 16px;
  background: var(--soft);
  outline: none
}

.form input:focus,
.form textarea:focus {
  border-color: var(--teal);
  background: #fff
}

.form textarea {
  min-height: 140px;
  resize: vertical
}

.map {
  height: 320px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--soft);
  margin-top: 24px
}

.map iframe {
  border: 0;
  width: 100%;
  height: 100%
}

.footer {
  background: var(--navy-2);
  color: #fff;
  padding: 58px 0 28px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .9fr .9fr;
  gap: 34px
}

.footer img.logo-footer {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1)
}

.footer p,
.footer a,
.footer li,
.footer address {
  color: rgba(255, 255, 255, .72);
  font-size: .94rem
}

.footer h4 {
  margin-bottom: 14px
}

.footer ul {
  display: grid;
  gap: 8px;
  list-style: none
}

.dev {
  border-top: 1px solid rgba(255, 255, 255, .12);
  margin-top: 34px;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap
}

.dev img {
  height: 34px;
  width: auto
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.85rem;
  box-shadow: 0 16px 36px rgba(37, 211, 102, .35);
  transition: .25s
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03)
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(4, 20, 30, .72);
  backdrop-filter: blur(8px)
}

.modal.open {
  display: flex
}

.modal-box {
  position: relative;
  width: min(980px, 100%);
  max-height: 90vh;
  overflow: auto;
  border-radius: 30px;
  background: #fff;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .28)
}

.modal-media {
  background: var(--soft);
  padding: 24px
}

.modal-media img {
  border-radius: 22px;
  width: 100%;
  aspect-ratio: 1.04/1;
  object-fit: cover
}

.modal-content {
  padding: 42px
}

.close-modal {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 1.4rem;
  cursor: pointer
}

.modal-content h2 {
  font-size: 2rem;
  color: var(--navy);
  line-height: 1.1
}

.modal-content .category {
  color: var(--teal);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem
}

.modal-content p {
  color: var(--muted);
  margin: 18px 0
}

.benefits {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  display: grid;
  gap: 10px;
  margin: 18px 0
}

.benefits li {
  list-style: none;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--ink)
}

.benefits li::before {
  content: "✓";
  background: var(--teal);
  color: #fff;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 22px;
  font-size: .78rem;
  font-weight: 900
}

.modal-actions {
  display: grid;
  gap: 10px
}

.page-hero {
  background: linear-gradient(135deg, var(--navy), var(--teal));
  color: #fff;
  padding: 82px 0
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -.05em
}

.page-hero p {
  color: rgba(255, 255, 255, .82);
  max-width: 720px;
  margin-top: 16px
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: .7s ease
}

.reveal.visible {
  opacity: 1;
  transform: none
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important
  }
}

@media (max-width:980px) {

  .menu,
  .nav-cta {
    display: none
  }

  .mobile-toggle {
    display: grid
  }

  .menu.open {
    display: flex;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 84px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 22px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start
  }

  .hero .container,
  .split,
  .contact-grid,
  .modal-box {
    grid-template-columns: 1fr
  }

  .hero-card {
    min-height: 340px
  }

  .cards,
  .product-grid,
  .testimonials,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .catalog-head {
    display: block
  }

  .modal-box {
    max-width: 680px
  }

  .modal-content {
    padding: 30px
  }

  .footer-grid {
    gap: 24px
  }
}

@media (max-width:640px) {
  .container {
    width: min(100% - 28px, var(--max))
  }

  .section {
    padding: 68px 0
  }

  .hero .container {
    min-height: auto;
    padding: 56px 0
  }

  .hero-actions,
  .stat-strip {
    grid-template-columns: 1fr
  }

  .stat-strip,
  .cards,
  .product-grid,
  .testimonials,
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr
  }

  .brand img {
    height: 34px
  }

  .nav {
    height: 68px
  }

  .hero h1 {
    font-size: 2.55rem
  }

  .hero-card {
    min-height: 280px;
    border-radius: 26px
  }

  .image-panel {
    min-height: 310px
  }

  .filters select {
    width: 100%
  }

  .modal {
    padding: 10px
  }

  .modal-box {
    border-radius: 22px
  }

  .modal-media {
    padding: 16px
  }

  .modal-content {
    padding: 24px
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    right: 16px;
    bottom: 16px
  }

  .dev {
    align-items: flex-start;
    flex-direction: column
  }
}

/* ===== Home premium enxuta ===== */
.home-premium {
  background: #fbfcfb
}

.home-hero-v2 {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  background: linear-gradient(135deg, #071f30 0%, #0c3348 42%, #155d55 100%);
  color: #fff
}

.home-hero-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 31, 48, .92), rgba(7, 31, 48, .62) 42%, rgba(21, 93, 85, .18)), radial-gradient(circle at 18% 15%, rgba(255, 255, 255, .16), transparent 28%), radial-gradient(circle at 82% 50%, rgba(33, 168, 154, .34), transparent 34%);
  z-index: -2
}

.home-hero-v2::after {
  content: "";
  position: absolute;
  inset: auto -8% -22% -8%;
  height: 44%;
  background: linear-gradient(180deg, transparent, rgba(251, 252, 251, .16));
  filter: blur(10px);
  z-index: -1
}

.home-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
  opacity: .55;
  z-index: -1
}

.home-orb-a {
  width: 420px;
  height: 420px;
  right: 8%;
  top: 12%;
  background: radial-gradient(circle, rgba(159, 244, 234, .36), transparent 67%)
}

.home-orb-b {
  width: 360px;
  height: 360px;
  left: -100px;
  bottom: -90px;
  background: radial-gradient(circle, rgba(255, 255, 255, .22), transparent 68%)
}

.home-hero-grid {
  display: grid;
  grid-template-columns: 1.16fr .84fr;
  gap: 56px;
  align-items: center;
  padding: 78px 0
}

.home-copy .eyebrow {
  color: #9ff4ea;
  text-shadow: 0 0 22px rgba(159, 244, 234, .22)
}

.home-copy h1 {
  max-width: 760px;
  font-size: clamp(3rem, 4.8vw, 5.45rem);
  line-height: .96;
  letter-spacing: -.07em;
  margin-top: 18px
}

.home-copy p {
  max-width: 620px;
  margin: 24px 0 32px;
  color: rgba(255, 255, 255, .82);
  font-size: 1.12rem;
  line-height: 1.7
}

.home-premium .home-copy .btn-outline {
  border-color: rgba(255, 255, 255, .72);
  color: #fff;
  background: transparent
}

.home-premium .home-copy .btn-outline:hover {
  background: #fff;
  color: var(--navy)
}

.showcase {
  position: relative;
  min-height: 580px
}

.showcase::before {
  content: "";
  position: absolute;
  inset: 7% 4% 4% 10%;
  border-radius: 48px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .06));
  border: 1px solid rgba(255, 255, 255, .22);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .24);
  backdrop-filter: blur(18px)
}

.showcase-card {
  position: absolute;
  border-radius: 32px;
  background: rgba(255, 255, 255, .94);
  color: var(--navy);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .25);
  display: grid;
  place-items: center;
  gap: 14px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .45)
}

.showcase-card span {
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .76rem
}

.card-main {
  width: 320px;
  height: 390px;
  left: 14%;
  top: 18%;
  transform: rotate(-5deg)
}

.card-top {
  width: 220px;
  height: 250px;
  right: 6%;
  top: 8%;
  transform: rotate(7deg)
}

.card-bottom {
  width: 235px;
  height: 275px;
  right: 11%;
  bottom: 10%;
  transform: rotate(-3deg)
}

.mock-shirt {
  width: 64%;
  height: 68%;
  position: relative;
  clip-path: polygon(24% 0, 42% 0, 50% 15%, 58% 0, 76% 0, 100% 18%, 82% 42%, 82% 100%, 18% 100%, 18% 42%, 0 18%);
  border-radius: 22px
}

.mock-shirt::before {
  content: "";
  position: absolute;
  left: 42%;
  top: 0;
  width: 16%;
  height: 28%;
  background: rgba(255, 255, 255, .82);
  clip-path: polygon(0 0, 100% 0, 50% 100%)
}

.mock-shirt::after {
  content: "";
  position: absolute;
  inset: 16% 18% auto;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .65)
}

.mock-shirt-light {
  background: linear-gradient(135deg, #f7fbfa, #dce9e7)
}

.mock-shirt-dark {
  background: linear-gradient(135deg, #0c3348, #166f66)
}

.mock-shirt-mint {
  background: linear-gradient(135deg, #9ff4ea, #21a89a)
}

.quality-seal {
  position: absolute;
  left: 2%;
  bottom: 16%;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--mint);
  color: var(--navy);
  font-weight: 800;
  text-transform: uppercase;
  font-size: .74rem;
  line-height: 1.15;
  box-shadow: 0 26px 60px rgba(0, 0, 0, .2);
  animation: sealFloat 4s ease-in-out infinite
}

.quality-seal strong {
  font-size: 1.15rem
}

@keyframes sealFloat {
  50% {
    transform: translateY(-12px) rotate(4deg)
  }
}

.home-quick {
  background: #fff;
  margin-top: -1px
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.quick-item {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, var(--soft));
  box-shadow: 0 18px 42px rgba(8, 40, 58, .07)
}

.quick-item strong {
  display: block;
  color: var(--navy);
  font-size: 1.1rem;
  margin-bottom: 8px
}

.quick-item span {
  color: var(--muted)
}

.home-catalog-cta {
  padding-top: 56px
}

.catalog-banner {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 56px;
  border-radius: 38px;
  background: linear-gradient(135deg, #0c3348, #166f66);
  color: #fff;
  box-shadow: var(--shadow)
}

.catalog-banner::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -130px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(159, 244, 234, .18);
  pointer-events: none
}

.catalog-banner h2 {
  position: relative;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: .96;
  letter-spacing: -.06em;
  max-width: 820px
}

.catalog-banner .eyebrow {
  color: #9ff4ea
}

.catalog-banner .btn {
  position: relative;
  z-index: 2;
  white-space: nowrap
}

.clients-minimal {
  background: var(--soft)
}

.mini-heading {
  text-align: center;
  max-width: 680px;
  margin: 0 auto
}

.mini-heading h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  color: var(--navy);
  letter-spacing: -.04em
}

.final-cta {
  background: #fff
}

.final-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 42px;
  border-radius: 34px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow)
}

.final-card h2 {
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  line-height: 1;
  color: var(--navy);
  letter-spacing: -.05em
}

.final-card p {
  color: var(--muted);
  margin-top: 10px;
  max-width: 620px
}

@media (max-width:980px) {
  .home-hero-v2 {
    min-height: auto
  }

  .home-hero-grid {
    grid-template-columns: 1fr;
    padding: 64px 0
  }

  .showcase {
    min-height: 460px
  }

  .card-main {
    left: 8%;
    top: 8%
  }

  .card-top {
    right: 5%;
    top: 2%
  }

  .card-bottom {
    right: 9%;
    bottom: 6%
  }

  .quick-grid {
    grid-template-columns: 1fr
  }

  .catalog-banner,
  .final-card {
    display: grid
  }

  .catalog-banner {
    padding: 38px
  }

  .home-copy h1 {
    font-size: clamp(2.75rem, 8vw, 4.6rem);
    max-width: 820px
  }
}

@media (max-width:640px) {
  .home-hero-grid {
    gap: 28px;
    padding: 44px 0 36px
  }

  .home-copy h1 {
    font-size: 2.55rem;
    line-height: 1
  }

  .home-copy p {
    font-size: 1rem;
    margin: 20px 0 26px
  }

  .showcase {
    min-height: 340px
  }

  .showcase::before {
    inset: 7% 0 0
  }

  .card-main {
    width: 210px;
    height: 260px;
    left: 4%;
    top: 13%;
    border-radius: 24px
  }

  .card-top {
    width: 145px;
    height: 168px;
    right: 1%;
    top: 3%;
    border-radius: 22px
  }

  .card-bottom {
    width: 150px;
    height: 178px;
    right: 5%;
    bottom: 3%;
    border-radius: 22px
  }

  .quality-seal {
    width: 92px;
    height: 92px;
    font-size: .58rem;
    left: 0;
    bottom: 8%
  }

  .quality-seal strong {
    font-size: .82rem
  }

  .quick-item {
    padding: 22px;
    border-radius: 22px
  }

  .catalog-banner,
  .final-card {
    padding: 28px;
    border-radius: 26px
  }

  .catalog-banner h2 {
    font-size: 2.05rem
  }

  .final-card .btn,
  .catalog-banner .btn {
    width: 100%
  }
}

/* ===== ALINHAMENTO DOS CARDS DO CATÁLOGO ===== */

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Reserva espaço para títulos de até 3 linhas */
.product-body h3 {
  min-height: 3.6em;
}

/* A descrição ocupa o espaço restante */
.product-body .blur-desc {
  flex: 1;
}

/* Mantém todos os botões na base do card */
.product-card .product-body .btn {
  margin-top: auto;
}

/* ===== HERO EQUIPE MELO ===== */

.hero-team {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  isolation: isolate;
  --hero-team-shift: 14%;
}

.hero-team::before {
  content: "";
  position: absolute;

  /* Painel mais largo: cresce principalmente para a esquerda */
  width: 110%;
  height: 74%;

  /* Mantém a borda direita próxima da posição atual */
  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%);

  border-radius: 42px;

  background: linear-gradient(
    145deg,
    rgba(255,255,255,.11),
    rgba(255,255,255,.025)
  );

  border: 1px solid rgba(255,255,255,.16);

  box-shadow:
    0 34px 90px rgba(0,0,0,.18);

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

  z-index: -2;
}

.hero-team-glow {
  position: absolute;

  width: 500px;
  height: 500px;

  left: 68%;
  top: 50%;

  transform: translate(-50%, -50%);

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(33,168,154,.32) 0%,
    rgba(33,168,154,.12) 44%,
    transparent 72%
  );

  filter: blur(14px);

  z-index: -1;
}

.hero-team-image {
  position: relative;

  width: 122%;
  max-width: 880px;
  height: auto;

  object-fit: contain;
  object-position: right center;

  margin-left: auto;

  /* Move apenas a imagem para a direita, afastando do título */
  transform: translateX(var(--hero-team-shift));

  border-radius: 34px;

  filter:
    drop-shadow(0 30px 42px rgba(0,0,0,.24));

  transition:
    transform .45s ease,
    filter .45s ease;
}

.hero-team:hover .hero-team-image {
  transform:
    translateX(var(--hero-team-shift))
    translateY(-5px)
    scale(1.01);

  filter:
    drop-shadow(0 40px 52px rgba(0,0,0,.30));
}

@media (max-width: 980px) {

  .hero-team {
    min-height: 520px;
    justify-content: center;
    --hero-team-shift: 0;
  }

  .hero-team::before {
    width: 88%;
    height: 84%;
    left: 50%;
  }

  .hero-team-glow {
    left: 50%;
  }

  .hero-team-image {
    width: 112%;
    max-width: 780px;
    object-position: center;
  }

  .logos-track {
    gap: 24px;
  }

  .client-logo {
    width: 172px;
    height: 82px;
  }

  .client-logo img {
    max-width: 138px;
    max-height: 52px;
  }

  .about-image,
  .about-image img {
    min-height: 360px;
  }

}

@media (max-width: 640px) {

  .hero-team {
    min-height: 300px;
    --hero-team-shift: 0;
  }

  .hero-team::before {
    width: 92%;
    height: 78%;
    left: 50%;
    border-radius: 28px;
  }

  .hero-team-glow {
    width: 280px;
    height: 280px;
    left: 50%;
  }

  .hero-team-image {
    width: 88%;
    max-width: 430px;
    border-radius: 24px;
    object-position: center;
    margin-inline: auto;
  }

  .logos-wrap {
    margin-top: 28px;
  }

  .logos-track {
    gap: 18px;
  }

  .client-logo {
    width: 148px;
    height: 74px;
    padding: 14px 16px;
  }

  .client-logo img {
    max-width: 118px;
    max-height: 44px;
  }

  .about-image,
  .about-image img {
    min-height: 280px;
  }

}

/* Imagem da página Sobre Nós */
.about-image {
  position: relative;
  min-height: 390px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--soft);
}

.about-image img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .55s ease;
}

.about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 55%,
    rgba(8,40,58,.10) 100%
  );
  pointer-events: none;
}

.about-image:hover img {
  transform: scale(1.025);
}
