:root {
  --primary: #7c1a22;
  --primary-dark: #5c000f;
  --primary-light: #a02830;
  --surface: #fcf9f8;
  --surface-soft: #f4f2ee;
  --surface-card: #ffffff;
  --surface-line: #e0ded9;
  --text: #1a1a1a;
  --muted: #5f5e5a;
  --dark: #252323;
  --whatsapp: #25d366;
  --container: 1180px;
  --font-sans: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --text-xs: 12px;
  --text-sm: 13px;
  --text-base: 15px;
  --text-md: 16px;
  --text-lg: 18px;
  --text-xl: 20px;
  --title-sm: clamp(24px, 2.4vw, 32px);
  --title-md: clamp(31px, 3.5vw, 41px);
  --title-lg: clamp(31px, 3.5vw, 41px);
  --leading-tight: 1.12;
  --leading-title: 1.18;
  font-family: var(--font-sans);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.6;
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(124, 26, 34, 0.16);
  background: rgba(252, 249, 248, 0.92);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-size: var(--text-xl);
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  font-size: var(--text-sm);
}

.brand-logo {
  display: block;
  width: auto;
  height: 34px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-size: var(--text-sm);
  font-weight: 700;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--primary);
  background: rgba(124, 26, 34, 0.08);
}

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

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 2px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(17, 24, 39, 0.06);
}

.language-switch button {
  min-width: 46px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font: 800 10px/1 Inter, system-ui, sans-serif;
  letter-spacing: 0;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

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

.language-flag {
  position: relative;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  overflow: hidden;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
}

.flag-br {
  background: #159447;
}

.flag-br::before {
  content: "";
  position: absolute;
  inset: 3px 2px;
  background: #f7d116;
  transform: rotate(45deg);
}

.flag-br::after {
  content: "";
  position: absolute;
  inset: 4.5px;
  border-radius: 999px;
  background: #1746a2;
}

.flag-us {
  background: repeating-linear-gradient(
    to bottom,
    #b22234 0 1.08px,
    #fff 1.08px 2.16px
  );
}

.flag-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 7.6px;
  height: 7.6px;
  background: #3c3b6e;
}

.flag-us::after {
  content: "";
  position: absolute;
  top: 1.4px;
  left: 1.4px;
  width: 1.1px;
  height: 1.1px;
  border-radius: 999px;
  background: #fff;
  box-shadow:
    2.2px 0 #fff,
    4.4px 0 #fff,
    0 2.2px #fff,
    2.2px 2.2px #fff,
    4.4px 2.2px #fff,
    0 4.4px #fff,
    2.2px 4.4px #fff,
    4.4px 4.4px #fff;
}

.language-code {
  line-height: 1;
}

.language-switch button.is-active {
  background: #0b0b0b;
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--surface-line);
  border-radius: 8px;
  background: #fff;
  color: var(--primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  font-size: var(--text-sm);
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

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

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  background: #fff;
  color: var(--primary);
  border-color: rgba(124, 26, 34, 0.28);
}

.btn-light {
  background: #fff;
  color: var(--primary);
}

.page-main {
  padding-top: 76px;
}

.home-page .site-header,
.theme-page .site-header {
  top: 14px;
  left: 20px;
  right: 20px;
  width: auto;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.10);
}

.home-page .nav-wrap,
.theme-page .nav-wrap {
  height: 54px;
  padding: 0;
}

.home-page .brand,
.theme-page .brand {
  font-size: var(--text-base);
}

.home-page .brand-logo,
.theme-page .brand-logo {
  height: 32px;
}

.home-page .brand-mark,
.theme-page .brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  font-size: var(--text-xs);
}

.home-page .nav-link,
.theme-page .nav-link {
  border-radius: 999px;
  padding: 8px 14px;
  font-size: var(--text-xs);
}

.home-page .nav-actions .btn,
.theme-page .nav-actions .btn {
  border-radius: 999px;
  padding: 9px 15px;
  font-size: var(--text-xs);
}

.home-page .page-main,
.theme-page .page-main {
  padding-top: 0;
}

.hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--dark);
  color: #fff;
}

.home-hero {
  min-height: 620px;
  height: 90vh;
  margin: 8px 12px 0;
  border-radius: 28px;
  align-items: center;
}

.home-hero .hero-content {
  display: grid;
  grid-template-columns: minmax(0, 470px) minmax(260px, 1fr);
  align-items: center;
  max-width: min(var(--container), calc(100% - 40px));
  padding: 36px 0 0;
  text-align: left;
}

.home-hero .hero-content > * {
  grid-column: 1;
}

.home-hero .hero-media::after {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.04));
}

.home-hero .hero-media {
  background-position: center right;
}

.home-hero-media {
  background-image: url('../imagems%20site/herocmc.webp');
}

@media (max-width: 900px) {
  .home-hero-media {
    background-image: url('../imagems%20site/mobile%20cmc.webp');
  }
}

.home-hero h1 {
  max-width: 470px;
  font-size: var(--title-lg);
  line-height: var(--leading-title);
}

.home-page h1 {
  font-size: var(--title-lg);
  line-height: var(--leading-title);
  letter-spacing: 0;
}

.home-page h2,
.home-page .mosaic-panel h2,
.home-page .cta-strip h2 {
  font-size: var(--title-md);
  line-height: var(--leading-title);
  letter-spacing: 0;
}

.home-hero .lead {
  max-width: 450px;
  margin-bottom: 24px;
  font-size: var(--text-md);
}

.hero-info-card {
  position: absolute;
  right: clamp(24px, 6vw, 90px);
  bottom: 42px;
  z-index: 2;
  width: min(380px, 34vw);
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 16px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.34);
  color: #fff;
  backdrop-filter: blur(12px);
}

.hero-info-card img {
  width: 112px;
  height: 92px;
  border-radius: 12px;
  object-fit: cover;
}

.hero-info-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: var(--text-sm);
  line-height: 1.25;
}

.hero-info-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: var(--text-xs);
  line-height: 1.45;
}

.scroll-cue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  color: #fff;
  transform: translateX(-50%);
}

.scroll-cue {
  animation: scrollCuePulse 2s ease-in-out infinite;
}

.scroll-cue .material-symbols-outlined {
  animation: scrollCueArrow 1.2s ease-in-out infinite;
}

@keyframes scrollCuePulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.18);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
  }
}

@keyframes scrollCueArrow {
  0%,
  100% {
    transform: translateY(-2px);
  }
  50% {
    transform: translateY(4px);
  }
}

.hero-media,
.hero-media::after {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-size: cover;
  background-position: center;
}

.hero-media::after {
  content: "";
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.22));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 120px 0 72px;
}

.eyebrow {
  color: var(--primary-light);
  text-transform: uppercase;
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero .eyebrow {
  color: #f4c542;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: var(--title-lg);
  line-height: var(--leading-tight);
  letter-spacing: 0;
}

.page-hero {
  background: var(--surface-soft);
  border-bottom: 1px solid var(--surface-line);
  padding: 96px 0 72px;
}

.theme-page .page-hero {
  position: relative;
  min-height: 430px;
  display: grid;
  align-items: end;
  margin: 8px 12px 0;
  overflow: hidden;
  border: 0;
  border-radius: 28px;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.18)),
    var(--hero-image, url("https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?q=80&w=1800&auto=format&fit=crop"));
  background-position: center;
  background-size: cover;
  color: #fff;
  padding: 150px 0 64px;
}

.theme-page .page-hero h1 {
  max-width: 760px;
  color: #fff;
  font-size: var(--title-lg);
  line-height: var(--leading-tight);
}

.theme-page .page-hero .lead {
  color: rgba(255, 255, 255, 0.88);
}

.theme-page .page-hero .eyebrow {
  color: #ffb7b4;
}

.theme-page .about-hero {
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.12)),
    url("../imagems site/sobrecmc.webp");
  background-position: center;
}

.theme-page .about-hero .eyebrow {
  color: #ffd447;
}

.page-hero h1 {
  color: var(--primary);
}

.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: var(--text-md);
}

.hero .lead {
  color: rgba(255, 255, 255, 0.9);
}

.section {
  padding: 96px 0;
}

.section-soft {
  background: var(--surface-soft);
}

.section-dark {
  background: var(--primary);
  color: #fff;
}

.section-title {
  max-width: 780px;
  margin-bottom: 34px;
  font-size: var(--title-md);
  line-height: var(--leading-title);
  letter-spacing: 0;
}

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: center;
}

.card {
  background: var(--surface-card);
  border: 1px solid var(--surface-line);
  border-radius: 12px;
  overflow: hidden;
}

.card-body {
  padding: 26px;
}

.feature-card {
  min-height: 190px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-card .material-symbols-outlined {
  font-size: 40px;
  color: var(--primary);
  align-self: flex-start;
}

.feature-card.highlight .material-symbols-outlined {
  color: #fff;
}

.feature-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: var(--text-md);
}

.feature-card.highlight {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.product-media {
  height: 230px;
  display: grid;
  place-items: center;
  background: #f0eded;
  overflow: hidden;
}

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

.product-card h3 {
  margin-bottom: 10px;
  font-size: var(--text-xl);
  line-height: 1.25;
}

.spec-list {
  display: grid;
  gap: 0;
  margin: 20px 0;
  border-top: 1px solid var(--surface-line);
}

.spec-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--surface-line);
}

.spec-list dt,
.spec-list span:first-child {
  color: var(--muted);
  font-weight: 700;
}

.spec-list dd,
.spec-list span:last-child {
  margin: 0;
  font-weight: 800;
  text-align: right;
}

.band {
  border-radius: 18px;
  padding: clamp(32px, 6vw, 72px);
  background: var(--primary);
  color: #fff;
}

.home-solutions {
  padding-top: 86px;
}

.solution-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 46px;
  overflow: hidden;
  border-radius: 0;
  background: #111;
}

.mosaic-panel {
  min-height: 430px;
  padding: clamp(28px, 5vw, 58px);
}

.mosaic-primary {
  padding-left: max(20px, calc((100vw - var(--container)) / 2));
  background: var(--primary);
  color: #fff;
}

.mosaic-dark {
  padding-right: max(20px, calc((100vw - var(--container)) / 2));
  background: #252323;
  color: #fff;
}

.solution-mosaic .mosaic-image:nth-child(3) {
  padding-left: max(20px, calc((100vw - var(--container)) / 2));
}

.mosaic-panel h2 {
  max-width: 460px;
  margin-bottom: 28px;
  font-size: var(--title-md);
  line-height: var(--leading-title);
}

.mosaic-panel .check-list li {
  position: relative;
  display: block;
}

.mosaic-panel .check-list .material-symbols-outlined {
  position: absolute;
  top: 2px;
  left: -30px;
}

.mosaic-image {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.mosaic-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.72));
}

.mosaic-image span,
.mosaic-image small {
  position: relative;
  z-index: 1;
}

.mosaic-image span {
  max-width: 260px;
  font-size: var(--title-sm);
  font-weight: 800;
  line-height: var(--leading-tight);
}

.mosaic-image small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.products-section {
  background: var(--surface-soft);
}

.theme-page .section:nth-of-type(even) {
  background: var(--surface-soft);
}

.theme-page .section > .container > .section-title:first-child {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.theme-page .feature-card,
.theme-page .product-card,
.theme-page form.card,
.theme-page .filters {
  border-color: transparent;
  border-radius: 18px;
}

.theme-page .product-card .product-media {
  height: 250px;
  margin: 14px 14px 0;
  border-radius: 16px;
  background: #fff;
}

.theme-page .product-card .product-media img {
  object-fit: cover;
}

.theme-page .filters {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
}

.products-section .product-card {
  border-radius: 18px;
  border-color: transparent;
}

.products-section .product-media {
  height: 320px;
  margin: 14px 14px 0;
  border-radius: 16px;
  background: #f2efed;
}

.home-page .products-section .product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.cta-strip-section {
  padding: 58px 0;
  background: var(--surface-soft);
}

.cta-strip {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  border-radius: 22px;
  padding: 38px 260px;
  background:
    linear-gradient(90deg, rgba(124, 26, 34, 0.92), rgba(124, 26, 34, 0.78)),
    url("../imagems site/sobrecmc.webp");
  background-position: center;
  background-size: cover;
  color: #fff;
}

.cta-strip > :not(.cta-strip-img) {
  position: relative;
  z-index: 1;
}

.cta-strip h2 {
  margin-bottom: 6px;
  font-size: var(--title-md);
  line-height: var(--leading-title);
}

.cta-strip p {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.84);
}

.cta-strip-img {
  position: absolute;
  top: 24px;
  bottom: 0;
  width: 225px;
  height: 180px;
  object-fit: cover;
  display: none;
}

.cta-left {
  left: -22px;
  transform: rotate(-9deg);
}

.cta-right {
  right: -22px;
  transform: rotate(9deg);
}

.comparison-section {
  background: #fff;
}

.home-comparison {
  border: 0;
  border-radius: 16px;
  box-shadow: none;
}

.home-comparison .comparison-column {
  background: #f7f5f4;
}

.home-comparison .comparison-column:nth-child(2) {
  margin: -22px 0;
  border-radius: 12px;
  background: #252323;
  color: #fff;
  transform: scale(1.02);
}

.final-image-cta {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.final-cta-media,
.final-cta-media::after {
  position: absolute;
  inset: 0;
}

.final-cta-media {
  background-size: cover;
  background-position: center;
}

.final-cta-media::after {
  content: "";
  background: linear-gradient(90deg, rgba(124, 26, 34, 0.82), rgba(124, 26, 34, 0.20));
}

.final-image-cta .container {
  position: relative;
  z-index: 1;
}

.final-cta-copy {
  max-width: 610px;
}

.home-faq {
  background: var(--primary);
}

.band h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: var(--title-md);
  line-height: var(--leading-title);
}

.image-panel {
  min-height: 420px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
}

.about-photo {
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: var(--surface-soft);
}

.about-photo img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.about-image-panel {
  background-image: url("../imagems site/cliente cmc.webp");
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.check-list .material-symbols-outlined {
  color: var(--primary);
  font-size: 20px;
}

.section-dark .check-list .material-symbols-outlined,
.band .check-list .material-symbols-outlined {
  color: #66ff8e;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 40px;
  align-items: end;
  margin-bottom: 32px;
}

.section-heading-row .section-title {
  margin-bottom: 0;
}

.filters {
  position: sticky;
  top: 100px;
  padding: 22px;
}

.filters-header,
.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.filters h2 {
  font-size: var(--text-xl);
}

.filter-clear {
  border: 0;
  background: transparent;
  color: var(--primary);
  font: inherit;
  font-size: var(--text-sm);
  font-weight: 800;
  cursor: pointer;
}

.filter-group {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.filter-group strong {
  color: var(--primary);
  font-size: var(--text-sm);
  text-transform: uppercase;
}

.filter-group label {
  display: flex;
  width: 100%;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  line-height: 1.35;
}

.filter-group input {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  padding: 0;
  accent-color: var(--primary);
}

.catalog-content {
  min-width: 0;
}

.catalog-toolbar {
  margin-bottom: 18px;
  padding: 14px 16px;
  border: 1px solid var(--surface-line);
  border-radius: 14px;
  background: #fff;
  color: var(--muted);
  font-weight: 800;
}

.catalog-toolbar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.catalog-toolbar .btn {
  min-height: 40px;
  padding: 10px 14px;
}

.product-grid {
  align-items: stretch;
}

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

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

.product-card .btn {
  margin-top: auto;
}

.product-tag {
  width: fit-content;
  margin-bottom: 12px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(124, 26, 34, 0.09);
  color: var(--primary);
  font-size: var(--text-xs);
  font-weight: 900;
}

.empty-state {
  padding: 34px;
  border: 1px dashed rgba(124, 26, 34, 0.35);
  border-radius: 18px;
  background: #fff;
  text-align: center;
}

.empty-state strong {
  display: block;
  margin-bottom: 8px;
  font-size: var(--text-xl);
}

.empty-state p {
  max-width: 560px;
  margin: 0 auto 20px;
  color: var(--muted);
}

.process-list {
  display: grid;
  gap: 16px;
}

.process-list article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--surface-line);
  border-radius: 16px;
  background: #fff;
}

.process-list span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  font-weight: 900;
}

.process-list strong {
  display: block;
  margin-bottom: 4px;
  font-size: var(--text-lg);
}

.process-list p {
  margin: 0;
  color: var(--muted);
}

.catalog-cta {
  padding-right: clamp(28px, 6vw, 72px);
  padding-left: clamp(28px, 6vw, 72px);
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 28px;
  align-items: start;
}

.admin-form,
.admin-list-card {
  border-radius: 18px;
  border-color: transparent;
}

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

.admin-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.admin-row {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--surface-line);
  border-radius: 14px;
  background: #fff;
}

.admin-row img {
  width: 74px;
  height: 58px;
  border-radius: 10px;
  object-fit: cover;
  background: var(--surface-soft);
}

.admin-row strong,
.admin-row span {
  display: block;
}

.admin-row span {
  color: var(--muted);
  font-size: var(--text-sm);
  font-weight: 700;
}

.admin-row .btn {
  min-height: 38px;
  padding: 9px 12px;
}

.comparison {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--surface-line);
  border-radius: 18px;
  background: #fff;
}

.comparison-column {
  padding: 28px;
}

.comparison-column:nth-child(2) {
  background: var(--primary);
  color: #fff;
}

.comparison h3 {
  font-size: var(--text-xl);
}

.comparison ul {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.comparison li {
  min-height: 58px;
  padding: 14px 0;
  border-top: 1px solid rgba(95, 94, 90, 0.22);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.field {
  display: grid;
  gap: 6px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--muted);
  font-size: var(--text-sm);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfc9c8;
  border-radius: 8px;
  background: #fff;
  padding: 13px 14px;
  color: var(--text);
  font: inherit;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(124, 26, 34, 0.18);
  border-color: var(--primary-light);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.faq-item summary {
  position: relative;
  cursor: pointer;
  padding: 20px 58px 20px 22px;
  font-weight: 800;
  list-style: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: var(--text-xl);
  line-height: 1;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: rgba(255, 255, 255, 0.84);
}

.site-footer {
  padding: 70px 0 30px;
  background: #050505;
  color: #fff;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  gap: 34px;
}

.site-footer h3 {
  color: #fff;
  font-size: var(--text-sm);
  text-transform: uppercase;
}

.site-footer a,
.site-footer p,
.site-footer span {
  color: rgba(255, 255, 255, 0.72);
}

.footer-brand {
  margin: 34px 0 24px;
  color: rgba(255, 255, 255, 0.10);
  font-size: var(--title-lg);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 800;
}

.whatsapp-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #2de679, #0fbf55);
  color: #fff;
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.36);
  animation: whatsappPulse 2.2s ease-in-out infinite;
}

.whatsapp-fab::before {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(37, 211, 102, 0.36);
  border-radius: inherit;
  animation: whatsappRing 2.2s ease-in-out infinite;
}

.whatsapp-fab::after {
  content: attr(data-tooltip);
  position: absolute;
  right: 74px;
  bottom: 50%;
  width: max-content;
  max-width: 230px;
  padding: 10px 13px;
  border-radius: 10px;
  background: #1f1f1f;
  color: #fff;
  font-size: var(--text-sm);
  font-weight: 800;
  line-height: 1.3;
  opacity: 0;
  pointer-events: none;
  transform: translate(8px, 50%);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.whatsapp-fab:hover::after {
  opacity: 1;
  transform: translate(0, 50%);
}

.whatsapp-fab svg {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  fill: currentColor;
}

@keyframes whatsappPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-2px) scale(1.04);
  }
}

@keyframes whatsappRing {
  0% {
    opacity: 0.7;
    transform: scale(0.92);
  }
  70%,
  100% {
    opacity: 0;
    transform: scale(1.22);
  }
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

@media (max-width: 900px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .main-nav {
    position: absolute;
    top: 76px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--surface-line);
    border-radius: 12px;
    background: #fff;
  }

  .main-nav.is-open {
    display: flex;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero {
    min-height: 560px;
  }

  .home-page .site-header,
  .theme-page .site-header {
    left: 12px;
    right: 12px;
  }

  .home-hero {
    min-height: 660px;
    height: 90vh;
    margin: 6px 8px 0;
    border-radius: 22px;
  }

  .home-hero .hero-content {
    grid-template-columns: 1fr;
    max-width: min(100% - 32px, var(--container));
    padding: 70px 0 120px;
  }

  .hero-info-card {
    left: 16px;
    right: 16px;
    bottom: 64px;
    width: auto;
    grid-template-columns: 88px 1fr;
  }

  .hero-info-card img {
    width: 88px;
    height: 76px;
  }

  .theme-page .page-hero {
    min-height: 500px;
    margin: 6px 8px 0;
    border-radius: 22px;
    padding: 126px 0 54px;
  }

  .split,
  .grid-2,
  .grid-3,
  .grid-4,
  .section-heading-row,
  .catalog-layout,
  .comparison,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .filters {
    position: static;
  }

  .catalog-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .catalog-toolbar-actions {
    justify-content: stretch;
  }

  .catalog-toolbar-actions .btn {
    flex: 1 1 180px;
  }

  .catalog-toolbar .btn {
    width: 100%;
  }

  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-row {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .admin-row .btn {
    grid-column: span 1;
  }

  .solution-mosaic {
    grid-template-columns: 1fr;
  }

  .mosaic-panel {
    padding-right: 16px;
    padding-left: 16px;
    min-height: 330px;
  }

  .mosaic-panel .check-list .material-symbols-outlined {
    display: none;
  }

  .solution-mosaic .mosaic-image:nth-child(3) {
    padding-left: 16px;
  }

  .cta-strip {
    padding: 34px 22px;
  }

  .cta-strip-img {
    display: none;
  }

  .home-comparison .comparison-column:nth-child(2) {
    margin: 0;
    transform: none;
  }

  .final-image-cta {
    min-height: 520px;
  }

  .section {
    padding: 72px 0;
  }

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