:root {
  --bg: #ffffff;
  --text: #121212;
  --muted: #665f54;
  --accent: #c7a35d;
  --accent-dark: #8c7032;
  --dark: #0b0b0b;
  --light: #ffffff;
  --rose: #e3d7c2;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(1200px, 90vw);
  margin: 0 auto;
}

.topbar {
  position: relative;
  z-index: 10000;
  background: var(--dark);
  color: var(--light);
  font-size: 0.85rem;
}

.topbar-content {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 10px 0;
  gap: 24px;
  flex-wrap: wrap;
}

.topbar-right {
  display: flex;
  align-items: center;
}

.topbar-icons {
  display: flex;
  gap: 8px;
}

.topbar-icons a {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.topbar-icons img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.hero {
  position: relative;
  background: #101010;
  color: var(--light);
  min-height: 700px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.82) 0%, rgba(40, 32, 20, 0.58) 48%, rgba(40, 32, 20, 0.12) 72%),
    url("assets/hero-compace.jpg") center center / cover no-repeat;
  z-index: 0;
}

.hero-frame {
  position: relative;
  z-index: 3;
  padding: 32px 0 24px;
  min-height: 640px;
  flex: 1;
}

.hero-top {
  position: relative;
  z-index: 10001;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.hero-top.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2147483647;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 8px 4vw;
  background: #f3f3f3;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}

.hero-top.is-sticky .hero-logo {
  align-self: stretch;
  margin-top: -8px;
  margin-bottom: -8px;
  background: linear-gradient(180deg, #d3b16f 0%, #b68f49 100%);
  border-color: rgba(134, 103, 43, 0.6);
  display: flex;
  align-items: center;
}

.hero-top.is-sticky .hero-logo img {
  width: 120px;
}

.hero-top.is-sticky .hero-nav {
  justify-self: end;
  justify-content: flex-end;
  align-items: center;
  gap: 28px;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: #111;
}

.hero-logo {
  position: relative;
  background: linear-gradient(180deg, #d3b16f 0%, #b68f49 100%);
  padding: 16px 14px 10px;
  min-width: 228px;
  border: 1px solid rgba(134, 103, 43, 0.6);
}

.hero-logo::before {
  content: none;
}

.hero-logo img {
  width: 210px;
  max-width: 100%;
  height: auto;
  display: block;
}

.hero-nav {
  display: flex;
  gap: 26px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.hero-nav a {
  opacity: 0.9;
}

.hero-content {
  max-width: 520px;
  margin-top: 10px;
}

.hero-collection {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.7);
}

.hero-content h1 {
  font-size: clamp(2.4rem, 4.6vw, 3.8rem);
  line-height: 1.15;
  font-weight: 500;
  margin-bottom: 28px;
}

.hero-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--accent);
  font-weight: 600;
}

.hero-thumbs {
  position: relative;
  z-index: 0;
  overflow: hidden;
  background: #1a1a1a;
  padding: 1px 0;
}

.hero-thumbs-track {
  display: flex;
  gap: 1px;
  width: max-content;
  --hero-thumbs-loop-shift: calc(-50% - 0.5px);
  animation: hero-thumbs-scroll 28s linear infinite;
}

.hero-thumb {
  position: relative;
  background: #111;
  height: clamp(150px, 18vw, 190px);
  flex: 0 0 clamp(96px, 8.4vw, 126px);
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
}

.hero-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  transition: opacity 0.28s ease;
}

.hero-thumb::after {
  content: "——\ACOMPACE\ALINHA X";
  white-space: pre;
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  font-size: 0.88rem;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
  transition: opacity 0.28s ease;
}

.hero-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.78);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.hero-thumb:hover::before,
.hero-thumb:hover::after {
  opacity: 0;
}

.hero-thumb:hover img {
  transform: scale(1.06);
  filter: saturate(1.05);
}

@keyframes hero-thumbs-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(var(--hero-thumbs-loop-shift));
  }
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.section-tag {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.65rem;
  color: var(--accent-dark);
  margin-bottom: 10px;
}

.section-link {
  color: var(--accent-dark);
  font-weight: 600;
}

.company {
  padding: 64px 0;
  background: var(--light);
}

.about-hero {
  min-height: 480px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.about-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.32);
}

.about-hero .container {
  position: relative;
  z-index: 1;
}

.about-nav {
  padding-top: 18px;
}

.about-nav .hero-nav {
  color: #fff;
}

.about-company {
  background: #f5f5f5;
  padding-bottom: 70px;
}

.about-company .container {
  padding-top: 42px;
}

.about-breadcrumb {
  color: #a0a0a0;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.about-intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 46px;
  align-items: start;
  margin-bottom: 54px;
}

.about-intro {
  max-width: 720px;
}

.about-intro h1 {
  font-size: clamp(1.75rem, 3vw, 2.3rem);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.about-intro p {
  color: #4c4c4c;
  line-height: 1.6;
}

.about-intro-image {
  margin: 0;
  min-height: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  background: #e9e9e9;
}

.about-intro-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  object-fit: cover;
}

.about-brands h2,
.about-journey h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  letter-spacing: 0.08em;
  margin-bottom: 26px;
}

.about-brands-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(110px, 1fr));
  gap: 14px;
  margin-bottom: 60px;
}

.about-brands-grid span {
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 6px;
  min-height: 56px;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #313131;
}

.about-coverage {
  margin-bottom: 48px;
  background: #efefef;
  padding: 50px 44px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
  align-items: center;
}

.about-coverage h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.about-coverage h4 {
  margin-bottom: 14px;
  letter-spacing: 0.05em;
}

.about-coverage p {
  color: #4b4b4b;
  line-height: 1.6;
  margin-bottom: 22px;
}

.about-button {
  display: inline-block;
  background: #101010;
  color: #fff;
  padding: 10px 18px;
  font-size: 0.73rem;
  letter-spacing: 0.1em;
}

.about-globe {
  justify-self: center;
  width: min(290px, 74%);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: #ececec;
  padding: 16px;
}

.about-globe img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.about-wide-image img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

.about-journey {
  margin: 50px 0 58px;
  background: #fff;
  padding: 32px 28px;
}

.about-journey p {
  color: #4d4d4d;
  line-height: 1.6;
  margin-bottom: 18px;
}

.about-policy-timeline-image {
  margin-top: 18px;
  width: 100%;
  height: auto;
  display: block;
}

.about-mvv {
  width: min(1200px, 90vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.about-mvv-card {
  min-height: 640px;
  background: var(--mvv-bg) center/cover no-repeat;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 14px;
}

.about-mvv-toggle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #2a2a2a;
  background: #f4f4f4;
  color: #1d1d1d;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 2;
}

.about-mvv-card.is-open .about-mvv-toggle {
  position: absolute;
  right: 14px;
  bottom: 14px;
}

.about-mvv-card[aria-label="Valores"].is-open {
  min-height: 760px;
}

.about-mvv-detail {
  position: absolute;
  inset: 0;
  background: #e5e5e5;
  color: #1a1f27;
  padding: 42px 30px 76px;
  overflow: hidden;
}

.about-mvv-detail h3 {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  font-size: clamp(1.7rem, 2.3vw, 2.3rem);
}

.about-mvv-detail p,
.about-mvv-detail li {
  font-size: 0.9rem;
  line-height: 1.45;
}

.about-mvv-detail ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.about-mvv-detail strong {
  display: block;
  font-size: 0.95rem;
}

.company-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.company-card {
  padding: 24px;
  border-radius: 20px;
  background: #f7f2e8;
  border: 1px solid rgba(20, 19, 18, 0.08);
  display: grid;
  gap: 18px;
}

.company-card h3 {
  margin-bottom: 6px;
}

.company-card p {
  color: var(--muted);
  line-height: 1.6;
}

.company-image img {
  width: 100%;
  border-radius: 16px;
  display: block;
  object-fit: cover;
  max-height: 240px;
}

.product-showcase {
  padding: 80px 0 96px;
  background: #fcf8f1;
}

.showcase-header {
  text-align: center;
  display: grid;
  gap: 0;
  justify-items: center;
  margin-bottom: 48px;
}

.showcase-header h2 {
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  font-weight: 500;
}

.showcase-header p {
  color: var(--muted);
  max-width: 520px;
  line-height: 1.6;
}

.showcase-accent {
  width: 46px;
  height: 3px;
  background: var(--accent);
  display: inline-block;
}

.showcase-grid {
  display: grid;
  gap: 32px;
}

.showcase-card {
  position: relative;
  min-height: 420px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-image) center/cover no-repeat;
  box-shadow: 0 26px 55px rgba(0, 0, 0, 0.18);
}

.showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 55%);
}

.showcase-panel {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.9);
  width: min(320px, 70vw);
  margin: 70px 0 0 70px;
  padding: 32px 30px 28px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  display: grid;
  gap: 18px;
}

.showcase-index {
  font-size: 2.6rem;
  font-weight: 300;
  color: rgba(17, 17, 17, 0.55);
}

.showcase-menu {
  display: grid;
  gap: 12px;
  color: #33302c;
}

.showcase-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.showcase-item::before {
  content: "";
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.2s ease;
}

.showcase-item.is-active,
.showcase-item:hover {
  color: var(--accent);
}

.showcase-item.is-active::before,
.showcase-item:hover::before {
  width: 38px;
}

.showcase-cta {
  margin-top: 6px;
  background: var(--accent);
  color: var(--light);
  font-weight: 600;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
}

.showcase-cta span {
  font-size: 0.88rem;
}

.highlight {
  background: var(--light);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.values-grid p {
  color: var(--muted);
  line-height: 1.6;
  margin-top: 12px;
}

.inspiration {
  padding: 84px 0 96px;
  background: #fcf8f1;
  overflow-x: hidden;
}

.inspiration-header {
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 0;
  margin-bottom: 48px;
}

.inspiration-accent {
  width: 46px;
  height: 3px;
  background: var(--accent);
  display: inline-block;
}

.inspiration-header h2 {
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  font-weight: 500;
}

.inspiration-text {
  color: var(--muted);
  max-width: 640px;
  line-height: 1.6;
  font-size: 1rem;
  margin-top: 8px;
}

.inspiration-subtitle {
  color: #33302c;
  font-size: 1rem;
  font-weight: 400;
  max-width: 560px;
  line-height: 1.6;
  margin-top: 6px;
}

.inspiration-carousel {
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.inspiration-track {
  --card-size: 360px;
  --track-gap: 24px;
  --loop-items: 3;
  display: flex;
  align-items: center;
  gap: var(--track-gap);
  width: max-content;
  animation: inspiration-scroll 28s linear infinite;
}

.inspiration-card {
  flex: 0 0 var(--card-size);
  border-radius: 4px;
  overflow: hidden;
}

.inspiration-card img {
  width: var(--card-size);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.14);
}

.inspiration-card:hover {
  transform: translateY(-8px);
}

.inspiration-carousel:hover .inspiration-track {
  animation-play-state: paused;
}

@keyframes inspiration-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-1 * var(--loop-items) * (var(--card-size) + var(--track-gap))));
  }
}


.inner-page-header,
.contact-page-header {
  background: #f3f3f3;
}

.inner-page-nav,
.contact-nav {
  padding: 24px 0;
}

.inner-page-nav .hero-logo,
.contact-nav .hero-logo {
  min-width: auto;
}

.inner-page-nav .hero-logo img,
.contact-nav .hero-logo img {
  width: 120px;
}

.inner-page-nav .hero-nav,
.contact-nav .hero-nav {
  color: #111;
}

.contact {
  padding: 90px 0 100px;
  background: #fcf8f1;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 48px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  font-weight: 500;
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--muted);
  line-height: 1.7;
}

.contact-details {
  display: grid;
  gap: 0;
  margin-top: 28px;
}

.contact-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.65rem;
  color: var(--accent-dark);
  display: inline-block;
  margin-bottom: 6px;
}

.contact-form {
  background: var(--light);
  border-radius: 24px;
  padding: 32px;
  display: grid;
  gap: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(28, 27, 26, 0.75);
}

.contact-form input,
.contact-form textarea {
  border: 1px solid rgba(28, 27, 26, 0.18);
  border-radius: 12px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text);
  background: #fbfaf8;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(28, 27, 26, 0.4);
}

.contact-form button {
  border: none;
  border-radius: 999px;
  padding: 12px 20px;
  background: var(--accent);
  color: var(--light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
}

.contact-form button:hover {
  background: var(--accent-dark);
}

.footer {
  background: linear-gradient(90deg, #1a1a1f 0%, #15171d 100%);
  color: var(--light);
  padding-top: 56px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(220px, 260px) repeat(3, minmax(170px, 1fr)) minmax(260px, 310px);
  gap: 44px;
  align-items: start;
  padding-bottom: 32px;
}

.footer h4 {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  padding-bottom: 8px;
}

.footer-brand img {
  display: block;
  width: 190px;
  max-width: 100%;
  margin: 30px auto 0;
}

.footer-brand,
.footer-column li {
  margin: 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-column li {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.83);
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--light);
}

.footer-social-list a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
}

.footer-social-list {
  grid-template-columns: 1fr;
  gap: 10px;
}

.footer-social-list img {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  object-fit: contain;
}


.footer-social-list span {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: 0.88rem;
}

.payment-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.payment-badges span {
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.86);
}

.certificate-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(84px, 1fr));
  gap: 10px;
}

.certificate-grid img {
  width: 70%;
  max-width: 100%;
  border-radius: 8px;
  background: #fff;
  padding: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px 0;
  font-size: 0.85rem;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0;
  color: rgba(255, 255, 255, 0.75);
}

.footer-transparency-link {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 900px) {
  .hero-top {
    align-items: flex-start;
  }

  .hero-top.is-sticky {
    position: static;
    display: flex;
    width: auto;
    padding: 0 0 40px;
    background: transparent;
    border-bottom: none;
    box-shadow: none;
  }

  .hero-nav {
    flex-wrap: wrap;
    gap: 0;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(200px, 1fr));
  }

  .inner-page-nav,
.contact-nav {
    padding: 0 0 24px;
  }

  .hero {
    min-height: 600px;
  }

  .hero-frame {
    min-height: 620px;
    padding-bottom: 18px;
  }

  .hero-thumbs-track {
    animation-duration: 22s;
  }

  .hero-thumb {
    flex-basis: clamp(96px, 24vw, 150px);
  }

  .showcase-panel {
    margin: 40px 24px 0;
    width: min(320px, 80vw);
  }

  .inspiration-header {
    margin-bottom: 28px;
  }

  .inspiration-subtitle {
    max-width: none;
  }

  .inspiration-track {
    --card-size: 300px;
    --track-gap: 24px;
  }

  .about-brands-grid {
    grid-template-columns: repeat(3, minmax(110px, 1fr));
  }

  .about-intro-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-intro {
    max-width: none;
  }

  .about-intro-image img {
    min-height: 320px;
  }

  .about-coverage,
  .about-mvv {
    grid-template-columns: 1fr;
  }


  .about-mvv-card {
    min-height: 620px;
  }

  .about-mvv-card[aria-label="Valores"].is-open {
    min-height: 760px;
  }

  .about-mvv-detail {
    padding: 30px 18px 64px;
  }

  .about-mvv-detail h3 {
    font-size: 1.6rem;
  }

  .about-mvv-detail p,
  .about-mvv-detail li,
  .about-mvv-detail strong {
    font-size: 0.88rem;
  }
}


@media (max-width: 640px) {
  .inspiration-header h2 {
    font-size: clamp(1.7rem, 8vw, 2.3rem);
  }

  .inspiration-text {
    font-size: 1rem;
  }

  .inspiration-track {
    --card-size: 220px;
    --track-gap: 16px;
    animation-duration: 20s;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom-content {
    flex-direction: column;
    align-items: flex-start;
  }
}
