:root {
  --surface: #f9f9fb;
  --surface-low: #f3f3f5;
  --surface-card: #ffffff;
  --surface-line: #e2e2e4;
  --text: #1a1c1d;
  --muted: #5e5e63;
  --muted-2: #86868b;
  --primary: #000000;
  --on-primary: #ffffff;
  --accent: #0066cc;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.07);
  --radius: 24px;
  --radius-sm: 12px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--surface);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

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

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


button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  border-bottom: 1px solid rgba(207, 196, 197, 0.45);
  background: rgba(249, 249, 251, 0.78);
  backdrop-filter: blur(20px);
}

.nav-shell {
  width: min(100%, var(--max));
  height: 68px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  height: 36px;
  width: auto;
  display: block;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a {
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}

.desktop-nav a:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.desktop-nav a[aria-current="page"] {
  color: var(--primary);
  border-color: var(--primary);
}

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

.nav-link {
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border: 1px solid var(--surface-line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  height: 38px;
  width: 38px;
  overflow: hidden;
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-radius 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.2s ease,
              border-color 0.2s ease,
              box-shadow 0.2s ease;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.language-switch:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--muted-2);
}

.language-switch.expanded {
  width: 154px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.language-switch-trigger {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 0;
  background: transparent;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.25s ease, color 0.2s ease;
  padding: 0;
  flex-shrink: 0;
}

.language-switch-trigger:hover {
  color: var(--primary);
  transform: rotate(15deg);
}

.language-switch.expanded .language-switch-trigger {
  color: var(--primary);
  transform: rotate(45deg);
}

.language-switch-options {
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  padding-left: 2px;
}

.language-switch.expanded .language-switch-options {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.language-switch-options button {
  min-width: 34px;
  min-height: 30px;
  color: var(--muted);
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.language-switch-options button:hover {
  color: var(--primary);
  background: var(--surface-low);
}

.language-switch-options button.active {
  color: var(--on-primary);
  background: var(--primary);
}

.menu-button {
  width: 42px;
  height: 42px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--surface-line);
  border-radius: 50%;
  background: var(--surface-card);
  cursor: pointer;
}

.menu-button span {
  width: 16px;
  height: 1px;
  background: var(--primary);
}

.mobile-menu {
  display: none;
}

.hero {
  min-height: 92vh;
  position: relative;
  display: grid;
  place-items: center start;
  overflow: hidden;
  padding: 140px 24px 72px;
  color: var(--primary);
  background: var(--surface-card);
}

.hero-media {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.08), rgba(249, 249, 251, 0.94));
  overflow: hidden;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/hero/hero-index.png?v=20260615-hero");
  background-size: clamp(720px, 78vw, 1320px) auto;
  background-position: calc(50% + 310px) 48px;
  background-repeat: no-repeat;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0, transparent 44%, #000 58%, #000 82%, transparent 100%),
    linear-gradient(to bottom, transparent 0, #000 12%, #000 68%, transparent 92%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0, transparent 44%, #000 58%, #000 82%, transparent 100%),
    linear-gradient(to bottom, transparent 0, #000 12%, #000 68%, transparent 92%);
  mask-composite: intersect;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(540px, calc(100% - 48px));
  margin-left: max(24px, calc((100vw - var(--max)) / 2));
  text-align: left;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: 64px;
  line-height: 1.05;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: 42px;
  line-height: 1.14;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.25;
}

.hero-copy {
  width: min(680px, 100%);
  margin: 0;
  color: var(--muted);
  font-size: 19px;
}

.hero-actions,
.product-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: var(--on-primary);
  background: var(--primary);
}

.button-secondary {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--surface-line);
}

.button-ghost {
  color: var(--primary);
  background: transparent;
  border-color: rgba(0, 0, 0, 0.16);
}

.left-actions {
  justify-content: flex-start;
}

.trust-band {
  width: min(calc(100% - 48px), var(--max));
  margin: -34px auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(226, 226, 228, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.trust-band div {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.trust-band div + div {
  border-left: 1px solid var(--surface-line);
}

.trust-band strong {
  font-size: 16px;
}

.trust-band span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 96px 0;
}

.section-heading {
  width: min(680px, 100%);
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow),
.trade-layout > div > p,
.contact-panel > div > p,
.spotlight-card p,
.faq-section details p {
  color: var(--muted);
  font-size: 17px;
}

.service-grid article {
  padding: 26px;
  background: var(--surface-card);
  border: 1px solid var(--surface-line);
  border-radius: var(--radius);
}

.service-grid p,
.product-info p {
  color: var(--muted);
}

.catalog-section {
  padding-top: 56px;
}

.catalog-page {
  padding-top: 140px;
}

.catalog-page .section-heading {
  width: min(760px, 100%);
}

.highlights-section {
  padding-bottom: 40px;
}

.highlight-grid {
  grid-template-columns: repeat(3, 1fr);
}

.catalog-cta {
  margin-top: 32px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 24px 26px;
  text-align: center;
  background: var(--surface-card);
  border: 1px solid var(--surface-line);
  border-radius: var(--radius);
}

.catalog-cta h3 {
  font-size: 24px;
}

.catalog-cta .button {
  flex: 0 0 auto;
}

.filter-bar {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 18px;
  scrollbar-width: none;
}

.filter-bar::-webkit-scrollbar {
  display: none;
}

.filter-chip {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 9px 16px;
  color: var(--muted);
  border: 1px solid var(--surface-line);
  border-radius: 999px;
  background: var(--surface-card);
  font-weight: 700;
  cursor: pointer;
}

.filter-chip.active {
  color: var(--on-primary);
  background: var(--primary);
  border-color: var(--primary);
}

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

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--surface-card);
  border: 1px solid var(--surface-line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

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

.product-card.featured {
  border-color: rgba(0, 0, 0, 0.1);
}

.product-card[hidden] {
  display: none;
}

.product-image {
  height: 260px;
  display: grid;
  place-items: center;
  padding: 0;
  background: linear-gradient(180deg, #ffffff, var(--surface-low));
  overflow: hidden;
}

.product-image.soft {
  background: #f4f4f6;
}

.product-image.neutral {
  background: #f6f6f8;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}

.product-info {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.tag {
  width: fit-content;
  margin-bottom: 14px;
  padding: 5px 10px;
  color: var(--primary);
  background: var(--surface-low);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.product-meta {
  margin-top: auto;
  padding-top: 18px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  border-top: 1px solid var(--surface-line);
  font-size: 14px;
}

.product-meta strong {
  color: var(--primary);
  text-align: right;
}

.text-button {
  margin-top: 18px;
  align-self: flex-start;
  padding: 0;
  color: var(--accent);
  background: transparent;
  border: 0;
  font-weight: 700;
  cursor: pointer;
}

.product-actions {
  justify-content: flex-start;
}

.spotlight-section {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}

.spotlight-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
  padding: 48px;
  background: var(--primary);
  color: var(--on-primary);
  border-radius: var(--radius);
  overflow: hidden;
}

.channel-card {
  grid-template-columns: 1fr 0.9fr;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.38), transparent 32%),
    #ffe600;
  color: var(--primary);
}

.spotlight-card p,
.spotlight-card .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.spotlight-card .button-primary {
  margin-top: 10px;
  color: var(--primary);
  background: var(--on-primary);
}

.channel-card p,
.channel-card .eyebrow {
  color: rgba(0, 0, 0, 0.68);
}

.channel-card .button-primary {
  color: var(--on-primary);
  background: var(--primary);
}

.channel-card .button-secondary {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(0, 0, 0, 0.14);
}

.channel-card .hero-actions {
  flex-direction: column;
  align-items: flex-start;
}

.channel-card .hero-actions .button {
  width: 100%;
  max-width: 260px;
}

.spotlight-card img {
  width: 100%;
  max-height: 430px;
  object-fit: cover;
  border-radius: 18px;
}

.channel-proof {
  display: grid;
  gap: 12px;
}

.channel-proof div {
  padding: 22px;
  color: var(--primary);
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.34);
}

.channel-proof strong {
  display: block;
  margin-bottom: 6px;
}

.channel-proof span {
  color: rgba(0, 0, 0, 0.68);
  font-size: 14px;
}

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

.logistics-section {
  padding-top: 40px;
}

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

.logistics-grid article {
  padding: 26px;
  display: flex;
  min-height: 180px;
  flex-direction: column;
  justify-content: flex-start;
  background: linear-gradient(180deg, #ffffff, var(--surface-low));
  border: 1px solid var(--surface-line);
  border-radius: var(--radius);
}

.logistics-grid strong {
  margin-bottom: 8px;
  font-size: 19px;
}

.logistics-grid span {
  color: var(--muted);
}

.section.trade-section {
  width: 100%;
  max-width: none;
  padding: 96px max(24px, calc((100% - var(--max)) / 2));
  background: var(--surface-card);
}

.trade-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}

.trade-card,
.lead-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  background: var(--surface-low);
  border: 1px solid var(--surface-line);
  border-radius: var(--radius);
}

label {
  display: grid;
  gap: 8px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
}

input,
select {
  min-height: 48px;
  width: 100%;
  padding: 12px 14px;
  color: var(--text);
  border: 1px solid var(--surface-line);
  border-radius: var(--radius-sm);
  background: var(--surface-card);
  outline: 0;
}

input:focus,
select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

.estimate-value {
  min-height: 48px;
  width: 100%;
  padding: 12px 14px;
  color: var(--text);
  border: 1px solid var(--surface-line);
  border-radius: var(--radius-sm);
  background: var(--surface-card);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.faq-section {
  padding-top: 84px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
}

.faq-grid details {
  padding: 22px 24px;
  background: var(--surface-card);
  border: 1px solid var(--surface-line);
  border-radius: var(--radius);
}

.faq-grid summary {
  color: var(--primary);
  cursor: pointer;
  font-size: 17px;
  font-weight: 800;
}

.faq-grid p {
  margin: 0;
}

.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-body > div {
  overflow: hidden;
  padding-top: 0;
  transition: padding-top 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

details[open] .faq-body {
  grid-template-rows: 1fr;
}

details[open] .faq-body > div {
  padding-top: 14px;
}

.contact-section {
  padding-bottom: 72px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 56px;
  align-items: start;
  padding: 48px;
  background: linear-gradient(180deg, #ffffff, #f2f2f4);
  border: 1px solid var(--surface-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.contact-highlights span {
  padding: 8px 12px;
  color: var(--muted);
  border: 1px solid var(--surface-line);
  border-radius: 999px;
  background: var(--surface-card);
  font-size: 13px;
  font-weight: 700;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 15;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  color: var(--on-primary);
  background: #121212;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  font-weight: 800;
}

.site-footer {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 36px 0 46px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  color: var(--muted);
  border-top: 1px solid var(--surface-line);
}

.footer-logo {
  height: 32px;
  width: auto;
  display: block;
  margin-bottom: 2px;
}

.site-footer p {
  margin: 6px 0 0;
}

.site-footer small {
  display: block;
  max-width: 700px;
  margin-top: 12px;
  color: var(--muted-2);
  font-size: 12px;
}

.site-footer nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-weight: 700;
}

.site-footer a:hover {
  color: var(--primary);
}

.reviews-section {
  padding-bottom: 80px;
}

.reviews-carousel-wrapper {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 20px;
}

.reviews-carousel {
  flex: 1;
  min-width: 0;
}

.reviews-carousel-track {
  position: relative;
  width: 100%;
  min-height: 240px;
}

.reviews-carousel-track .review-card {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0.5s ease;
  transform: scale(0.97) translateY(5px);
}

.reviews-carousel-track .review-card.active {
  opacity: 1;
  visibility: visible;
  position: relative;
  z-index: 1;
  pointer-events: all;
  transform: scale(1) translateY(0);
}

.carousel-arrow {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--surface-card);
  border: 1px solid var(--surface-line);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
}

.carousel-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--on-primary);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  transform: scale(1.06);
}

.carousel-arrow:active {
  transform: scale(0.96);
}

.carousel-dots {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--surface-line);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: all 0.25s ease;
}

.carousel-dot:hover {
  background: var(--muted-2);
}

.carousel-dot.active {
  background: var(--primary);
  transform: scale(1.25);
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 26px;
  background: var(--surface-card);
  border: 1px solid var(--surface-line);
  border-radius: var(--radius);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

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

.review-stars {
  color: #f59e0b;
  font-size: 18px;
  letter-spacing: 2px;
}

.review-card blockquote {
  margin: 0;
  flex: 1;
}

.review-card blockquote p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.review-card footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--surface-line);
}

.review-avatar {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--primary);
  color: var(--on-primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.review-card footer div:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-card footer strong {
  font-size: 14px;
}

.review-card footer span {
  color: var(--muted-2);
  font-size: 12px;
}

@media (max-width: 980px) {
  .desktop-nav,
  .nav-link {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .mobile-menu {
    position: fixed;
    inset: 68px 12px auto;
    display: grid;
    gap: 6px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--surface-line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu a {
    padding: 14px 16px;
    border-radius: 12px;
    color: var(--muted);
    font-weight: 700;
  }

  .mobile-menu a:hover {
    color: var(--primary);
    background: var(--surface-low);
  }

  .mobile-menu a[aria-current="page"] {
    color: var(--primary);
    background: var(--surface-low);
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 34px;
  }

  .trust-band,
  .product-grid,
  .highlight-grid,
  .service-grid,
  .logistics-grid,
  .trade-layout,
  .spotlight-card {
    grid-template-columns: 1fr;
  }

  .trust-band div + div {
    border-left: 0;
    border-top: 1px solid var(--surface-line);
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trade-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .contact-panel,
  .spotlight-card {
    padding: 30px;
  }

  .catalog-cta {
    align-items: center;
  }

  .catalog-cta .button {
    width: auto;
  }

  .left-actions {
    justify-content: center;
  }
}

@media (max-width: 850px) {
  .reviews-carousel-wrapper {
    justify-content: center;
    gap: 16px 20px;
  }

  .reviews-carousel {
    order: -1;
    flex: 0 0 100%;
  }

  .carousel-dots {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .nav-shell {
    padding: 0 18px;
  }

  .brand-logo {
    height: 30px;
  }

  .language-switch {
    order: -1;
  }

  .language-switch.expanded {
    width: 142px;
  }

  .language-switch-options button {
    min-width: 30px;
  }

  .hero {
    min-height: auto;
    place-items: center;
    padding: 132px 20px 72px;
  }

  .hero-content {
    width: 100%;
    margin-left: 0;
    text-align: center;
  }

  .hero-media {
    display: none;
  }

  .hero-copy {
    margin: 0 auto;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 30px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .button,
  .hero-actions {
    width: 100%;
  }

  .catalog-cta .button {
    width: 100%;
  }

  .section,
  .spotlight-section,
  .trust-band,
  .site-footer {
    width: min(calc(100% - 32px), var(--max));
  }

  .section {
    padding: 72px 0;
  }

  .section.trade-section {
    width: 100%;
    padding: 72px 16px;
  }

  .catalog-page {
    padding-top: 116px;
  }

  .trust-band {
    margin-top: -20px;
  }

  .product-image {
    height: 220px;
  }

  .product-image img {
    height: 100%;
  }

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


  .floating-whatsapp {
    display: none;
  }

  .site-footer {
    flex-direction: column;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }
}
