/* ============================================================
   Intro — animação de entrada
   ============================================================ */

.page-intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  overflow: hidden;
}

/* Dois painéis que cobrem o ecrã e se abrem como uma cortina */
.page-intro__panel {
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #1a1a1a;
  will-change: transform;
}

.page-intro__panel--top    { top: 0; }
.page-intro__panel--bottom { bottom: 0; }

/* Conteúdo centrado sobre os painéis */
.page-intro__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.page-intro__logo {
  opacity: 0;
}

.page-intro__logo svg {
  width: clamp(140px, 32vmin, 280px);
  height: auto;
  display: block;
}

/* estados iniciais geridos pelo GSAP */

/* Bloqueia scroll durante intro */
body.intro-active {
  overflow: hidden;
}

/* Esconde header e botões durante a intro */
body.intro-active .site-header,
body.intro-active .idioma-botoes {
  opacity: 0;
  pointer-events: none;
  transition: none;
}

/* ============================================================
   Base e layout global
   ============================================================ */

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

html {
  background-color: #f6f1e8;
}

/* Lenis smooth scroll — scroll suave com inércia */
html.lenis,
html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-smooth iframe {
  pointer-events: none;
}

body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  background-color: #f6f1e8;
  transition: background-color 780ms cubic-bezier(0.22, 1, 0.36, 1);
}

.skip-link.screen-reader-text {
  display: none !important;
}

body.list-section-active {
  background-color: #F05134;
}

/* Hero - primeira vista */
.hero {
  min-height: 100vh;
  position: relative;
  width: 100%;
  margin: 0;
}

.hero-scale-wrap {
  position: absolute;
  inset: 0;
  transform-origin: 50% 50%;
  will-change: transform;
}

/* Banner da imagem (não é fundo da página) */
.hero-banner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  min-height: 100vh;
  z-index: 0;
}

.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Regras de páginas internas/timeline movidas para `css/historia.css`. */

/* Secções de conteúdo */
.conteudo-section {
  padding: 180px var(--side-pad, 24px) 100px;
  width: 80vw;
  max-width: 80vw;
  margin: 0 auto;
  position: relative;
  overflow: visible;
}

.conteudo-section h2 {
  font-size: 2vw;
  font-weight: 600;
  color: #F05134;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}

.conteudo-section p {
  font-size: clamp(0.9rem, 1vw, 1.15rem);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(43, 31, 18, 0.9);
  margin-bottom: 20px;
}

.services-section {
  padding-top: 64px;
  padding-bottom: 240px;
  overflow: visible;
}

.services-subtitle {
  font-size: clamp(0.78rem, 0.9vw, 0.95rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F05134;
  margin-bottom: 10px;
  transition: color 560ms ease;
}

.services-title {
  font-size: clamp(2rem, 3.2vw, 3.8rem);
  line-height: 1.05;
  color: #F05134;
  margin-bottom: 28px;
  transition: color 560ms ease;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
  overflow: visible;
}

.service-card {
  border: 1px solid rgba(172, 5, 52, 0.2);
  color: #2b1f12;
  border-radius: 12px;
  padding: 50px 20px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  will-change: transform;
  transition: transform 90ms linear, background-color 560ms ease, border-color 560ms ease, color 560ms ease;
}

.service-card-icon {
  width: 60px;
  height: 90px;
  object-fit: contain;
}

.service-card-title {
  font-size: clamp(1rem, 1.2vw, 1.35rem);
  color: #F05134;
  line-height: 1.2;
  transition: color 560ms ease;
}

.service-card-text {
  font-size: clamp(0.84rem, 0.95vw, 1rem);
  line-height: 1.55;
  color: rgba(43, 31, 18, 0.88);
  margin: 0;
  transition: color 560ms ease;
}

body.list-section-active .services-subtitle {
  color: rgba(246, 241, 232, 0.78);
}

body.list-section-active .services-title {
  color: #f6f1e8;
}

body.list-section-active .service-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(246, 241, 232, 0.28);
  color: #f6f1e8;
}

body.list-section-active .service-card-title {
  color: #f6f1e8;
}

body.list-section-active .service-card-text {
  color: rgba(246, 241, 232, 0.9);
}

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

@media (max-width: 768px) {
  /* Em mobile o hero não tem pin — remover will-change evita layer desnecessária */
  .hero-scale-wrap {
    will-change: auto;
  }

  .conteudo-section {
    width: 92vw;
    max-width: 92vw;
    padding-left: 16px;
    padding-right: 16px;
  }

  #conteudo .conteudo-section:first-child {
    padding-top: 52px !important;
    padding-bottom: 72px !important;
    padding-left: 5% !important;
    padding-right: 5% !important;
    width: 100%;
    max-width: 100%;
}

  #conteudo .conteudo-section:first-child .ld-fh-element.ld-gradient-heading {
    max-width: none;
    font-size: clamp(1.12rem, 6vw, 1.65rem);
    line-height: 1.15;
    text-align: left;
    text-wrap: pretty;
  }

  .semi-icon {
    width: clamp(58px, 14vw, 80px);
    opacity: 0.78;
  }

  .semi-icon-top {
    top: 6px;
    right: 6px;
  }

  .semi-icon-bottom {
    bottom: -30px !important;
    left: 6px !important;
  }

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

  .services-grid .service-card:nth-child(2),
  .services-grid .service-card:nth-child(4) {
    transform: none;
  }
}

.brands-section {
  padding-top: 50px;
  padding-bottom: 0px;
  width: 100%;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
  background: transparent;
  --brands-logo-filter: brightness(0) saturate(100%);
  transition: background-color 900ms cubic-bezier(0.22, 1, 0.36, 1),
    color 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.brands-subtitle {
  font-size: clamp(0.78rem, 0.9vw, 0.95rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 10px;
  text-align: center;
}

.brands-title {
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.08;
  color: #1f130b;
  margin-bottom: 34px;
  text-align: center;
}

.brands-marquee {
  display: grid;
  gap: 50px;
}

.brands-marquee__line {
  display: flex;
  width: max-content;
  gap: 100px;
  will-change: transform;
}

.brands-marquee__track {
  display: flex;
  align-items: center;
  gap: 56px;
  flex-shrink: 0;
}

.brands-item {
  flex: 0 0 auto;
  height: clamp(88px, 8vw, 126px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  white-space: nowrap;
}

.brands-item--logo img {
  height: clamp(52px, 4.2vw, 74px);
  width: auto;
  max-width: 320px;
  object-fit: contain;
  display: block;
  filter: var(--brands-logo-filter);
  opacity: 0.82;
  transition: filter 900ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.brands-item--logo a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brands-item--text {
  font-size: clamp(1.1rem, 2.8vw, 3rem);
  text-transform: none;
  letter-spacing: 0.01em;
  color: rgba(31, 19, 11, 0.94);
  font-weight: 500;
  transition: color 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* Em fundo vermelho, manter logos brancos/originais */
body.list-section-active .brands-section {
  --brands-logo-filter: none;
}

body.list-section-active .brands-title {
  color: #fff;
}

body.list-section-active .brands-item--text {
  color: rgba(255, 255, 255, 0.94);
}

@media (max-width: 960px) {
  .brands-marquee {
    gap: 24px;
  }
}

@media (max-width: 560px) {
  .brands-marquee__track,
  .brands-marquee__line {
    gap: 28px;
  }

  .brands-item {
    height: 76px;
  }

  .brands-item--logo img {
    height: 44px;
    max-width: 220px;
  }
}

.ld-fh-element.ld-gradient-heading {
  --mx: 50%;
  --my: 50%;
  font-size: 3vw;
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 800;
  text-wrap: balance;
  margin: 0 auto;
  text-align: center;
  max-width: 60vw;
  width: 100%;
  background-image: linear-gradient(
    115deg,
    #F05134 0%,
    #F05134 16%,
    #ef5132 34%,
    #f8981b 56%,
    #ffd205 74%,
    #ef5132 90%,
    #F05134 100%
  );
  background-size: 220% 220%;
  background-position: var(--mx) var(--my);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transform-style: preserve-3d;
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  filter: blur(var(--text-blur, 0px));
  transition: background-position 90ms linear, filter 180ms ease, transform 180ms ease;
}

#conteudo .intro-red-title {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: initial;
  color: #F05134;
}

#conteudo .intro-red-title .intro-red-line {
  display: block;
  overflow: hidden;
}

#conteudo .intro-red-title .intro-red-line-inner {
  display: inline-block;
}

#conteudo .conteudo-section:first-child {
  padding-top: 88px;
  padding-bottom: 250px;
  padding-left: 72px;
  padding-right: 72px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.semi-icon {
  position: absolute;
  width: clamp(88px, 9vw, 120px);
  height: auto;
  opacity: 0.92;
  pointer-events: none;
  will-change: transform;
  transition: transform 80ms linear;
}

.semi-icon-top {
  top: 20px;
  right: 20px;
}

.semi-icon-bottom {
  bottom: 24px;
  left: 20px;
}

.showcase-section {
  padding-top: 38px;
  padding-bottom: 52px;
  position: relative;
  border-radius: 0;
  overflow: hidden;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: var(--side-pad, 24px);
  padding-right: var(--side-pad, 24px);
  transition: background-color 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.list-section-active .showcase-section {
  background: transparent;
}

body.list-section-active .showcase-section__title {
  color: #f6f1e8;
}

body.list-section-active .showcase-card {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(246, 241, 232, 0.2);
}

body.list-section-active .showcase-card:hover {
  background: rgba(255, 255, 255, 0.15);
}

body.list-section-active .s-solution-title {
  color: #f6f1e8;
}

body.list-section-active .showcase-card:hover .s-solution-title {
  opacity: 0 !important;
  transform: scale(0.9) !important;
}

body.list-section-active .card-description {
  color: rgba(246, 241, 232, 0.9);
}

body.list-section-active .showcase-card:hover .card-description {
  transform: translateY(0) !important;
  opacity: 1 !important;
  transition-delay: 0.2s;
  color: rgba(246, 241, 232, 0.9) !important;
}

body.list-section-active .card-mostrar-mais {
  color: #f6f1e8;
}

body.list-section-active .showcase-card:hover .card-mostrar-mais {
  transform: translateY(0) !important;
  opacity: 1 !important;
  transition-delay: 0.3s;
  color: #f6f1e8 !important;
}

body.list-section-active .card-arrow {
  color: #f6f1e8;
}

body.list-section-active .showcase-card:hover .card-arrow {
  transform: translateX(0) !important;
  opacity: 1 !important;
  transition-delay: 0.4s;
  color: #f6f1e8 !important;
}

body.list-section-active .card-line {
  background: rgba(246, 241, 232, 0.15);
}

body.list-section-active .showcase-card:hover .card-line {
  width: 100% !important;
  background: rgba(246, 241, 232, 0.3) !important;
}

body.list-section-active .card-description ul li::before {
  color: #f6f1e8;
}

body.list-section-active .showcase-slider__arrow {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(246, 241, 232, 0.7);
}

body.list-section-active .showcase-slider__arrow:hover {
  background: rgba(255, 255, 255, 0.2);
}

.showcase-section .s-inner {
  position: relative;
  z-index: 1;
  margin: 0 10%;
}

.showcase-section__title {
  font-size: clamp(2.15rem, 5.1vw, 5rem);
  line-height: 1.08;
  letter-spacing: -0.018em;
  font-weight: 300;
  width: 65%;
  color: #181513;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.showcase-section__title .title-line {
  display: block;
  overflow: hidden;
}

.showcase-section__title .title-line-inner {
  display: inline-block;
}

.showcase-slider {
  display: grid;
  grid-template-columns: 80% auto;
  align-items: end;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.showcase-slider__viewport {
  overflow: hidden;
}

.showcase-slider__arrows {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-self: end;
}

.showcase-slider__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 28px) / 3);
  gap: 16px;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.showcase-card {
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  background: rgb(255 255 255 / 40%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 4px 16px rgba(22, 16, 10, 0.08);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.showcase-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(22, 16, 10, 0.12);
  background: rgba(255, 255, 255, 0.40);
}

.card-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.card-hover-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.showcase-card:hover .card-hover-content {
  opacity: 1 !important;
  visibility: visible !important;
}

.card-line {
  width: 0;
  height: 1px;
  background: rgba(44, 62, 80, 0.15);
  margin: 16px 0;
  transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s ease;
  transform-origin: left;
}

.showcase-card:hover .card-line {
  width: 100% !important;
  background: rgba(192, 30, 46, 0.3) !important;
}

.card-description {
  font-size: clamp(0.78rem, 0.9vw, 0.95rem);
  line-height: 1.5;
  color: #2c3e50;
  flex-grow: 1;
  margin-bottom: 16px;
  text-align: left;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease, color 0.3s ease;
  overflow-y: auto;
  max-height: calc(100% - 80px);
  padding-right: 8px;
}

.card-description ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.card-description ul li {
  position: relative;
  padding-left: 1.35em;
  margin-bottom: 0.35em;
}

.card-description ul li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: #f05134;
  font-size: 0.9em;
  width: 1em;
  line-height: inherit;
  text-align: center;
}

.card-description::-webkit-scrollbar {
  width: 4px;
}

.card-description::-webkit-scrollbar-track {
  background: rgba(44, 62, 80, 0.1);
  border-radius: 2px;
}

.card-description::-webkit-scrollbar-thumb {
  background: rgba(192, 30, 46, 0.3);
  border-radius: 2px;
}

.card-description::-webkit-scrollbar-thumb:hover {
  background: rgba(192, 30, 46, 0.5);
}

.showcase-card:hover .card-description {
  transform: translateY(0) !important;
  opacity: 1 !important;
  transition-delay: 0.2s;
  color: #34495e !important;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.card-mostrar-mais {
  font-size: clamp(0.72rem, 0.85vw, 0.85rem);
  color: #2c3e50;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.3s ease;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease, color 0.3s ease;
}

.showcase-card:hover .card-mostrar-mais {
  transform: translateY(0) !important;
  opacity: 1 !important;
  transition-delay: 0.3s;
  color: #F05134 !important;
}

.card-arrow {
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  color: #2c3e50;
  font-weight: normal;
  transition: transform 0.3s ease, color 0.3s ease;
  transform: translateX(-20px);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s ease, color 0.3s ease;
}

.showcase-card:hover .card-arrow {
  transform: translateX(0) !important;
  opacity: 1 !important;
  transition-delay: 0.4s;
  color: #F05134 !important;
}

.showcase-card:hover .s-solution-title {
  opacity: 0 !important;
  transform: scale(0.9) !important;
}

.showcase-card h3,
.s-solution-title {
  font-size: clamp(1rem, 1.18vw, 1.18rem);
  line-height: 1.2;
  color: #2f2721;
  font-weight: 400;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.showcase-slider__arrow {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.65);
  color: rgba(30, 24, 20, 0.78);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 160ms ease, transform 160ms ease, background-color 160ms ease;
}

.showcase-slider__arrow:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.85);
}

.showcase-slider__arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

@media (max-width: 980px) {
  .showcase-slider__track {
    grid-auto-columns: calc((100% - 14px) / 2);
  }

  .showcase-section__title {
    max-width: 16ch;
  }
}

.c-list-section {
  transition: color 220ms ease;
}

.c-list-section.is-active {
  background: transparent;
}

.c-list {
  width: 100%;
}

.c-list__container {
  width: 100%;
  margin: 0 auto;
}

.c-list__col {
  text-align: center;
}

.c-list__wrapper-label {
  font-size: clamp(0.75rem, 0.9vw, 0.95rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(90, 60, 28, 0.7);
  margin-bottom: 20px;
  transition: color 560ms ease;
}

.c-list__wrapper-list {
  margin-bottom: 26px;
}

.c-list__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.c-list__list-item h3 {
  font-size: clamp(2.4rem, 6.2vw, 7rem);
  line-height: 1.02;
  color: #1c1410;
  font-weight: 500;
  margin: 0;
  transition: color 560ms ease;
}

.c-list__list-item {
  opacity: 0.14;
  transform: scale(0.74);
  transform-origin: center;
  transition: opacity 150ms linear, transform 180ms ease;
}

.c-list__list-item + .c-list__list-item {
  margin-top: 18px;
}

.c-list__wrapper-button {
  display: flex;
  justify-content: center;
}

.c-list__button {
  text-decoration: none;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(246, 241, 232, 0.18);
  border-radius: 50%;
  width: 112px;
  height: 112px;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.15;
  font-size: clamp(0.72rem, 0.9vw, 0.9rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: background 200ms ease, color 200ms ease;
}

.c-list__button:link,
.c-list__button:visited,
.c-list__button:hover,
.c-list__button:focus,
.c-list__button:active {
  color: #f6f1e8;
  text-decoration: none;
}

.c-list__button-ring {
  position: absolute;
  inset: 0;
  display: block;
  pointer-events: none;
}

.c-list__button-ring svg {
  width: 100%;
  height: 100%;
  display: block;
  transform: rotate(-90deg);
}

.c-list__button-ring .ring-track {
  fill: none;
  stroke: rgba(246, 241, 232, 0.24);
  stroke-width: 2;
}

.c-list__button-ring .ring-progress {
  fill: none;
  stroke: #f6f1e8;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-dasharray: 295.31;
  stroke-dashoffset: 295.31;
  transition: stroke-dashoffset 1400ms linear;
}

.c-list__button-label,
.c-list__button-arrow {
  position: relative;
  z-index: 1;
  color: inherit;
}

.c-list__button-label {
  font-size: clamp(0.72rem, 0.9vw, 0.9rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.c-list__button-arrow {
  font-size: 1rem;
  line-height: 1;
  transform: translateY(-1px);
}

.c-list__button-arrow svg {
  display: block;
}

.c-list__button:hover {
  background: rgba(255, 255, 255, 0.14);
}

.c-list__button.is-hovering .ring-progress,
.c-list__button:hover .ring-progress {
  stroke-dashoffset: 0;
}

.c-list__button.is-hovering {
  background: rgba(255, 255, 255, 0.14);
}

/* Remove antiga animação por custom property */
.c-list__button::before {
  content: none;
}

.c-list-section.is-active .c-list__wrapper-label {
  color: rgba(246, 241, 232, 0.72);
}

.c-list-section.is-active .c-list__list-item h3 {
  color: #f6f1e8;
}

@media (max-width: 768px) {
  .showcase-section .s-inner {
    width: 92vw;
    max-width: 92vw;
  }

  .showcase-section {
    padding-top: 18px;
    padding-bottom: 40px;
    border-radius: 0;
  }

  .showcase-section__title {
    margin-bottom: 16px;
  }

  .showcase-slider {
    gap: 8px;
    grid-template-columns: 1fr auto;
  }

  .showcase-slider__track {
    gap: 10px;
    grid-auto-columns: 100%;
  }

  .showcase-slider__arrow {
    width: 36px;
    height: 36px;
    border-radius: 6px;
  }

  .c-list-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .c-list__wrapper-label {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    margin-bottom: 14px;
  }

  .c-list__list-item h3 {
    font-size: clamp(1.55rem, 7.6vw, 2.25rem);
    line-height: 1.08;
  }

  /* Em mobile não há animação de scroll — mostrar todos os itens visíveis */
  .c-list__list-item {
    opacity: 1;
    transform: none;
  }

  .c-list__list-item + .c-list__list-item {
    margin-top: 12px;
  }

  .c-list__wrapper-button {
    margin-top: 10px;
  }

  .c-list__button {
    width: 92px;
    height: 92px;
    font-size: 0.68rem;
  }

  .c-list__button-label {
    font-size: 0.68rem;
  }
}

/* Footer */
/* Regras de partículas movidas para `css/particles.css`. */
/* Regras de header/menu homepage movidas para `css/header-homepage.css`. */
