:root {
  --bg: #f6f3ee;
  --surface: #ffffff;
  --surface-soft: #efe9df;
  --surface-dark: #181818;

  --text: #171717;
  --text-soft: #565656;
  --line: rgba(23, 23, 23, 0.10);

  --primary: #d87a22;
  --primary-dark: #b96010;

  --hero-bg: #101010;

  --cyan-1: #ecfeff;
  --cyan-2: #cffafe;
  --cyan-3: #a5f3fc;

  --magenta-1: #fdf2f8;
  --magenta-2: #fbcfe8;
  --magenta-3: #f9a8d4;

  --process-1: #f5f7fb;
  --process-2: #e8eef7;

  --products-1: #f6f3ee;
  --products-2: #efe8de;

  --radius-xl: 28px;
  --radius-lg: 20px;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.08);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

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

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

.section-space {
  padding: 92px 0;
}

/* =========================
   HEADER
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 243, 238, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(23, 23, 23, 0.06);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.95rem;
  color: var(--text-soft);
  font-weight: 500;
}

.desktop-nav a:hover,
.mobile-menu a:hover {
  color: var(--primary);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 14px 34px rgba(216, 122, 34, 0.28);
}

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

.btn-secondary {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
}

.menu-toggle {
  display: none;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  transition: .2s ease;
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,0.98);
}

.mobile-menu.active {
  display: block;
}

.mobile-menu-inner {
  display: grid;
  gap: 14px;
  padding: 20px 0 26px;
}

/* =========================
   HERO
========================= */

.hero-section {
  position: relative;
  min-height: calc(100vh - 84px);
  overflow: hidden;
  background: var(--hero-bg);
  color: #fff;
  display: flex;
  align-items: stretch;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s ease, visibility 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.55) 34%, rgba(0,0,0,0.24) 62%, rgba(0,0,0,0.18) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.32) 0%, rgba(0,0,0,0.18) 46%, rgba(0,0,0,0.44) 100%);
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 6s ease;
}

.hero-slide.active img {
  transform: scale(1);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 760px) 1fr;
  gap: 34px;
  align-items: end;
  min-height: calc(100vh - 84px);
  padding: 64px 0 54px;
}

.hero-content {
  max-width: 760px;
  padding: 12px 0;
}

.hero-badge,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-family: 'Montserrat', sans-serif;
  backdrop-filter: blur(8px);
}

.section-kicker-dark {
  color: var(--text);
  background: rgba(23, 23, 23, 0.06);
}

.hero-text-slider {
  position: relative;
  min-height: 330px;
  max-width: 720px;
}

.hero-text-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(46px);
  transition: opacity .85s ease, transform .85s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  pointer-events: none;
}

.hero-text-item.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-content h1,
.section-title {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 4vw, 4.5rem);
  max-width: 11ch;
  margin-bottom: 18px;
  text-shadow: 0 6px 32px rgba(0,0,0,0.28);
}

.hero-content p,
.section-text {
  margin: 0;
  font-size: 1.08rem;
  color: rgba(255,255,255,0.86);
  max-width: 62ch;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 0;
}

.hero-buttons .btn-secondary {
  border-color: rgba(255,255,255,0.3);
  color: #fff;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
}

.hero-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end; 
  gap: 12px;
  margin-top: 32px;
}

.hero-dot {
  width: 2px;
  height: 12px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.34);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.hero-dot.active {
  background: var(--primary);
  transform: scale(1.16);
}

.hero-side-card {
  align-self: start;
  justify-self: end;
  margin-top: 40px;
  width: min(100%, 340px);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 28px;
  padding: 24px;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.16);
}

.hero-side-card strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.28rem;
  margin-bottom: 8px;
}

.hero-side-card p {
  color: rgba(255,255,255,0.78);
  margin: 0;
}

.hero-side-text {
  margin-top: 14px !important;
}

/* =========================
   CARDS GERAIS
========================= */
/* =========================
   ANIMAÇÃO AO ROLAR - PROCESSO
   Observação: os elementos só ficam ocultos
   quando o JS adiciona .js-enabled no body
========================= */

body.js-enabled .process-intro,
body.js-enabled .process-card {
  opacity: 0;
  transform: translateY(32px) scale(0.98);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  will-change: opacity, transform;
}

body.js-enabled .process-intro.is-visible,
body.js-enabled .process-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

body.js-enabled .process-grid .process-card:nth-child(1) {
  transition-delay: 0.08s;
}

body.js-enabled .process-grid .process-card:nth-child(2) {
  transition-delay: 0.16s;
}

body.js-enabled .process-grid .process-card:nth-child(3) {
  transition-delay: 0.24s;
}

body.js-enabled .process-grid .process-card:nth-child(4) {
  transition-delay: 0.32s;
}

@media (prefers-reduced-motion: reduce) {
  body.js-enabled .process-intro,
  body.js-enabled .process-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
/* =========================*/

.highlight-card,
.info-card,
.process-card,
.faq-item,
.list-card {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(23,23,23,0.08);
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.04);
  backdrop-filter: blur(4px);
}

.highlight-card h3,
.info-card h3,
.process-card h3,
.faq-item h3,
.list-card h3,
.footer-brand h3 {
  margin: 0 0 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.15;
}

.highlight-card p,
.info-card p,
.process-card p,
.faq-item p,
.list-card li,
.footer-grid p {
  margin: 0;
  color: var(--text-soft);
}

/* =========================
   HIGHLIGHTS Produtos e segmentos
========================= */

.highlights-section {
  padding: 32px 0 24px;
}

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

.highlight-card {
  padding: 24px;
  background: #fff;
}

.hero-image-wrap {
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #ece6dc, #f7f3ee);
  aspect-ratio: 10 / 10;
  margin-bottom: 18px;
}



.hero-image-wrap img,
.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.highlight-card .hero-image-wrap {
  margin-top: 16px;
  aspect-ratio: 4 / 3;
}

.highlight-card > img {
  display: block;
  width: 50%;       /* ajuste o tamanho aqui */
  max-width: 70px;
  height: auto;
  margin: 0 auto 16px auto; /* 🔥 centraliza */
  object-fit: contain;
}


/* =========================
   LAYOUTS DE SEÇÃO
========================= */

.about-grid,
.products-grid,
.contact-grid,
.cta-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
}

.section-title {
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  max-width: 14ch;
  margin-bottom: 18px;
}

.section-text {
  color: var(--text-soft);
}

.section-text + .section-text {
  margin-top: 16px;
}

.about-cards-grid,
.products-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.info-card,
.list-card {
  padding: 26px;
  height: 100%;
}

/* =========================
   QUEM SOMOS - MAGENTA
========================= */

.about-section {
  position: relative;
  background: linear-gradient(
    135deg,
    var(--magenta-1) 0%,
    var(--magenta-2) 52%,
    var(--magenta-3) 100%
  );
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.34);
  pointer-events: none;
}

.about-section .container {
  position: relative;
  z-index: 1;
}

.about-section .info-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(140, 40, 90, 0.10);
  backdrop-filter: blur(6px);
}

/* =========================
   SOLUÇÕES - VÍDEO / CIANO
========================= */

.solutions-media-section {
  position: relative;
  min-height: 90vh;
  overflow: hidden;
  background: #061417;
}

.solutions-media-slider {
  position: relative;
  width: 100%;
  min-height: 90vh;
}

.solutions-media-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  z-index: 1;
}

.solutions-media-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.solutions-media-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.solutions-media-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(
      90deg,
      rgba(0, 110, 120, 0.52) 0%,
      rgba(0, 90, 100, 0.34) 34%,
      rgba(0, 0, 0, 0.18) 62%,
      rgba(0, 0, 0, 0.38) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.36) 0%,
      rgba(0, 0, 0, 0.22) 46%,
      rgba(0, 0, 0, 0.54) 100%
    );
}

.solutions-media-content {
  position: relative;
  z-index: 4;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  padding: 90px 0 120px;
}

.solutions-media-inner {
  max-width: 820px;
  margin: 0;
}

.solutions-media-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  margin-bottom: 20px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.24);
  background: rgba(0, 180, 180, 0.16);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.solutions-media-title {
  margin: 0;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.3rem, 5vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 900;
  text-transform: none;
}

.solutions-media-text {
  margin: 24px 0 0;
  max-width: 760px;
  color: rgba(255,255,255,0.92);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.7;
}

.solutions-media-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 32px;
}

.solutions-media-actions .btn-secondary {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.28);
  color: #fff;
}

.solutions-media-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: 0.25s ease;
}

.solutions-media-nav:hover {
  background: rgba(255,255,255,0.18);
}

.solutions-media-prev {
  left: 24px;
}

.solutions-media-next {
  right: 24px;
}

.solutions-media-dots {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 10px;
}

.solutions-media-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: 0.25s ease;
}

.solutions-media-dot.active {
  background: #fff;
  transform: scale(1.15);
}

/* =========================
   PROCESSO
========================= */

.process-section {
  background: linear-gradient(
    180deg,
    var(--process-1) 0%,
    var(--process-2) 100%
  );
}

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

.process-card {
  padding: 26px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(23, 23, 23, 0.06);
  backdrop-filter: blur(4px);
  text-align: left;
}

.process-number {
  display: inline-flex;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: #fff;
  background: var(--primary);
  margin-bottom: 18px;
}
.process-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
}

/* =========================
   PRODUTOS
========================= */

.products-section {
  background: linear-gradient(
    180deg,
    var(--products-1) 0%,
    var(--products-2) 100%
  );
}

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

.products-intro {
  display: block;
}

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

.products-showcase-full {
  grid-column: 1 / -1; /* faz ocupar toda a largura abaixo */
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.products-section .showcase-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  min-width: 0;
  width: 100%;
  height: 220px;
  background: #d9d0c2;
  box-shadow: var(--shadow);
}

.products-section .showcase-card img,
.products-section .showcase-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}

.products-section .showcase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.62) 42%,
    rgba(0,0,0,0.22) 72%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
}

.products-section .showcase-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px 18px 16px;
  color: #fff;
  z-index: 2;
}

.products-section .showcase-overlay strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  margin-bottom: 4px;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0,0,0,0.55);
}

.products-section .showcase-overlay span {
  display: block;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 2px 10px rgba(0,0,0,0.45);
}

.list-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
}

.list-card li + li {
  margin-top: 8px;
}

.list-card-soft {
  background: rgba(255,255,255,0.72);
}

@media (max-width: 1080px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .products-cards-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 820px) {
  .products-cards-grid,
  .products-showcase-full {
    grid-template-columns: 1fr;
  }
}
.products-showcase-slider {
  grid-column: 1 / -1;
  display: flex;
  gap: 18px;
  margin-top: 26px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.products-showcase-slider .showcase-card {
  position: relative;
  flex: 0 0 280px; /* largura de cada card */
  height: 220px;
  overflow: hidden;
  border-radius: 22px;
  background: #d9d0c2;
  box-shadow: var(--shadow);
  scroll-snap-align: start;
}

.products-showcase-slider .showcase-card img,
.products-showcase-slider .showcase-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  display: block;
}

.products-showcase-slider .showcase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.62) 42%,
    rgba(0,0,0,0.22) 72%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
}

.products-showcase-slider .showcase-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px 18px 16px;
  color: #fff;
  z-index: 2;
}

.products-showcase-slider .showcase-overlay strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  margin-bottom: 4px;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0,0,0,0.55);
}

.products-showcase-slider .showcase-overlay span {
  display: block;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 2px 10px rgba(0,0,0,0.45);
}

.products-showcase-marquee {
  grid-column: 1 / -1;
  position: relative;
  overflow: hidden;
  margin-top: 26px;
  width: 100%;
}

.products-showcase-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marqueeProducts 38s linear infinite;
}

.products-showcase-marquee:hover .products-showcase-track {
  animation-play-state: paused;
}

.products-showcase-marquee .showcase-card {
  position: relative;
  flex: 0 0 320px;
  width: 320px;
  height: 220px;
  overflow: hidden;
  border-radius: 22px;
  background: #d9d0c2;
  box-shadow: var(--shadow);
}

.products-showcase-marquee .showcase-card video,
.products-showcase-marquee .showcase-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}

.products-showcase-marquee .showcase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.62) 42%,
    rgba(0,0,0,0.22) 72%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
}

.products-showcase-marquee .showcase-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px 18px 16px;
  color: #fff;
  z-index: 2;
}

.products-showcase-marquee .showcase-overlay strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  margin-bottom: 4px;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0,0,0,0.55);
}

.products-showcase-marquee .showcase-overlay span {
  display: block;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 2px 10px rgba(0,0,0,0.45);
}

@keyframes marqueeProducts {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 9px));
  }
}
/* =========================
   CTA
========================= */

.cta-shell {
  border-radius: 32px;
  padding: 34px;
  background: linear-gradient(135deg, #1a1a1a, #292929);
  color: #fff;
  box-shadow: var(--shadow);
}

.cta-shell .section-kicker {
  background: rgba(255,255,255,0.10);
  color: #ffcf9f;
}

.cta-shell .section-title,
.cta-shell .cta-side p,
.contact-title {
  color: #fff;
}

.cta-shell .section-text,
.cta-shell p {
  color: rgba(255,255,255,0.76);
}

.cta-side {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 14px;
}

/* =========================
   FAQ
========================= */

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

.faq-item {
  padding: 24px;
  background: #fff;
}

/* =========================
   CONTATO
========================= */

.contact-section .cta-shell {
  background: linear-gradient(
    135deg,
    #e2872f 0%,
    #d87a22 45%,
    #b96010 100%
  );
}

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

.quote-form textarea,
.quote-form button {
  grid-column: 1 / -1;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.14);
  color: #fff;
  border-radius: 16px;
  padding: 15px 16px;
  font: inherit;
  outline: none;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: rgba(255,255,255,0.78);
}

.quote-form input:focus,
.quote-form textarea:focus {
  border-color: rgba(255,255,255,0.64);
  background: rgba(255,255,255,0.2);
}

/* =========================
   FOOTER
========================= */

.site-footer {
  padding: 48px 0 20px;
  background: #111;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
}

.footer-label {
  display: inline-block;
  margin-bottom: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #ffcf9f;
}

.footer-copy {
 text-align: center;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.62);
  font-size: .92rem;

}

/* =========================
   RESPONSIVO
========================= */

@media (max-width: 1080px) {
  .hero-grid,
  .about-grid,
  .products-grid,
  .contact-grid,
  .cta-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    align-items: center;
  }

  .hero-side-card {
    justify-self: start;
  }

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

  .about-cards-grid,
  .products-cards-grid,
  .showcase-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

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

  .hero-section,
  .hero-grid {
    min-height: auto;
  }

  .hero-grid {
    padding: 48px 0 42px;
  }

  .hero-text-slider {
    min-height: 380px;
  }

  .hero-content h1 {
    max-width: none;
  }

  .highlights-grid,
  .about-cards-grid,
  .products-cards-grid,
  .process-grid,
  .showcase-grid,
  .quote-form,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .process-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .process-intro,
  .process-grid,
  .process-card {
    width: 100%;
  }


  .section-space {
    padding: 72px 0;
  }

  .cta-shell {
    padding: 24px;
  }
}

@media (max-width: 768px) {
  .solutions-media-section,
  .solutions-media-slider,
  .solutions-media-content {
    min-height: 78vh;
  }

  .solutions-media-title {
    font-size: clamp(2rem, 9vw, 3.3rem);
    line-height: 1.02;
  }

  .solutions-media-text {
    font-size: 1rem;
    line-height: 1.6;
  }

  .solutions-media-nav {
    width: 44px;
    height: 44px;
    font-size: 1.6rem;
  }

  .solutions-media-prev {
    left: 10px;
  }

  .solutions-media-next {
    right: 10px;
  }
}

.about-section .section-kicker {
  color: #000;
  background: rgba(214, 51, 132, 0.20);
  border: 1px solid rgba(160, 20, 90, 0.18);
}

.about-section .btn-primary {
  background: #c2185b;
  color: #fff;
  box-shadow: 0 14px 34px rgba(194, 24, 91, 0.28);
}

.about-section .btn-primary:hover {
  background: #a9154d;
}

.about-section .btn-secondary {
  background: rgba(194, 24, 91, 0.10);
  border: 1px solid rgba(194, 24, 91, 0.24);
  color: #5a1230;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  font-size: 22px;
  padding: 14px 16px;
  border-radius: 50%;
  z-index: 999;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.whatsapp-float img {
  width: 48px;   /* 🔥 ajuste aqui */
  height: 48px;  /* 🔥 ajuste aqui */
}