/* ==========================================================================
   LANDING PAGE MOTOMCO — CSS ORGANIZADO

   01. Variáveis e reset
   02. Estrutura geral, tipografia e botões
   03. Cabeçalho e navegação
   04. Hero
   05. Seções de conteúdo
   06. Equipamentos
   07. Aplicações e grãos
   08. Assistência, contato e rodapé
   09. Responsividade
   10. Utilitários de imagens e logos
   ========================================================================== */

:root {
  --green-950: #10271f;
  --green-900: #18382b;
  --green-800: #244a38;
  --green-700: #365b43;
  --olive: #66764a;
  --beige: #e7dbc1;
  --beige-light: #f5efe3;
  --cream: #fbf7ef;
  --gold: #d9923b;
  --gold-dark: #b36e27;
  --terracotta: #9f5c39;
  --white: #ffffff;
  --ink: #172019;
  --muted: #667068;
  --border: rgba(24, 56, 43, 0.14);
  --shadow: 0 24px 70px rgba(24, 56, 43, 0.14);
  --radius-small: 14px;
  --radius: 24px;
  --radius-large: 36px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.narrow {
  max-width: 1080px;
}

.section {
  padding: 110px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #f6d7a5;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 32px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow.dark {
  color: var(--terracotta);
}

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

h1,
h2 {
  font-family: "Inter", sans-serif;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 6vw, 6.1rem);
}

h1 span {
  color: #f1b55f;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 4.5vw, 4.3rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.26rem;
  line-height: 1.28;
}

p {
  color: var(--muted);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--green-950);
  background: var(--gold);
  box-shadow: 0 12px 30px rgba(217, 146, 59, 0.24);
  font-weight: 800;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.button:hover {
  border-color: #e7a44f;
  background: #e7a44f;
  transform: translateY(-2px);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.button-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.13);
}

.button-small {
  min-height: 44px;
  padding-inline: 19px;
  font-size: 0.9rem;
}

.button-dark {
  border-color: var(--green-900);
  color: var(--white);
  background: var(--green-900);
  box-shadow: none;
}

.button-dark:hover {
  border-color: var(--green-800);
  background: var(--green-800);
}

/* ==========================================================================
   03. CABEÇALHO E NAVEGAÇÃO
   ========================================================================== */

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.header-inner {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  color: var(--green-950);
  background: var(--gold);
  font-size: 1.2rem;
  font-weight: 900;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 1.08rem;
}

.brand-copy small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
  font-weight: 700;
}

.main-nav > a:not(.button):hover {
  color: var(--white);
}

.menu-toggle {
  display: none;
  padding: 8px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

/* ==========================================================================
   04. HERO
   ========================================================================== */

.hero {
  position: relative;
  display: flex;
  min-height: 930px;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(11, 30, 23, 0.96) 0%, rgba(16, 39, 31, 0.88) 47%, rgba(16, 39, 31, 0.48) 100%),
    radial-gradient(circle at 78% 28%, rgba(225, 146, 52, 0.72), transparent 22%),
    linear-gradient(180deg, #784c31 0%, #53613a 45%, #18382b 100%);
}

.hero::before {
  position: absolute;
  right: -10%;
  bottom: -18%;
  width: 70%;
  height: 58%;
  border-radius: 50% 50% 0 0;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(222, 180, 103, 0.11) 0,
      rgba(222, 180, 103, 0.11) 4px,
      transparent 4px,
      transparent 15px
    );
  content: "";
  opacity: 0.7;
  transform: rotate(-6deg);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 39, 31, 0.14), rgba(16, 39, 31, 0.5)),
    radial-gradient(circle at 84% 36%, rgba(247, 186, 103, 0.3), transparent 30%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  gap: 70px;
  grid-template-columns: 1.14fr 0.86fr;
  padding-top: 120px;
}

.hero-content > p {
  max-width: 670px;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-trust {
  display: grid;
  max-width: 690px;
  margin-top: 55px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  gap: 22px;
  grid-template-columns: repeat(2, 1fr);
}

.hero-trust div {
  display: flex;
  flex-direction: column;
}

.hero-trust strong {
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.hero-trust span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.83rem;
}

/* ==========================================================================
   HERO — APRESENTAÇÃO DOS EQUIPAMENTOS MOTOMCO
   A imagem deve ser um PNG/WebP com fundo transparente.
   ========================================================================== */

.hero-product {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}

.hero-product-frame {
  position: relative;
  width: 100%;
  max-width: 720px;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  border-radius: 36px;
  overflow: visible;
}

.hero-product-glow {
  position: absolute;
  z-index: 0;
  top: 24px;
  right: -10px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(226, 158, 49, 0.44) 0%,
    rgba(226, 158, 49, 0.20) 38%,
    rgba(226, 158, 49, 0.05) 62%,
    rgba(226, 158, 49, 0) 76%
  );
  filter: blur(16px);
  pointer-events: none;
}

.hero-product-image {
  position: relative;
  z-index: 2;
  display: block;
  width: 118%;
  max-width: none;
  height: auto;
  object-fit: contain;
  object-position: center;
  filter:
    drop-shadow(0 30px 30px rgba(0, 0, 0, 0.32))
    drop-shadow(0 8px 12px rgba(0, 0, 0, 0.18));
  transform: translate(-43px, 10px);;
}

.hero-authorized {
  position: absolute;
  z-index: 4;
  right: 8px;
  bottom: 50px;
  min-width: 210px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-radius: 18px;
  color: var(--green-900);
  background: rgba(246, 243, 232, 0.96);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(8px);
}

.hero-authorized span {
  color: #b76c3f;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.hero-authorized strong {
  color: var(--green-900);
  font-size: 1rem;
  font-weight: 800;
}

.sun-glow {
  position: absolute;
  top: 10%;
  right: 2%;
  width: 290px;
  height: 290px;
  border-radius: 50%;
  background: rgba(236, 161, 72, 0.42);
  filter: blur(10px);
}

.product-placeholder,
.image-placeholder {
  display: grid;
  min-height: 250px;
  place-items: center;
  border: 1px dashed rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.65);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(20, 47, 35, 0.3);
  backdrop-filter: blur(12px);
  text-align: center;
}

.product-placeholder {
  position: absolute;
  z-index: 2;
  top: 15%;
  right: 0;
  width: 92%;
  min-height: 430px;
  transform: rotate(2deg);
}

.hero-badge {
  position: absolute;
  z-index: 3;
  right: 9%;
  bottom: 15%;
  display: flex;
  width: 230px;
  flex-direction: column;
  padding: 20px 23px;
  border-radius: 18px;
  color: var(--green-950);
  background: rgba(247, 242, 232, 0.94);
  box-shadow: var(--shadow);
}

.hero-badge span {
  color: var(--terracotta);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-badge strong {
  margin-top: 4px;
}

/* ==========================================================================
   05. SEÇÕES DE CONTEÚDO
   ========================================================================== */

.problem {
  background: var(--beige-light);
}

.section-lead {
  max-width: 780px;
  margin-bottom: 54px;
  font-size: 1.08rem;
}

.cards-grid {
  display: grid;
  gap: 18px;
}

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

.info-card {
  min-height: 250px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.66);
}

.card-number {
  display: block;
  margin-bottom: 60px;
  color: var(--terracotta);
  font-size: 0.82rem;
  font-weight: 800;
}

.info-card p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.solution {
  position: relative;
  overflow: hidden;
  color: var(--white);

  background:
    radial-gradient(
      circle at 18% 20%,
      rgba(231, 166, 78, 0.15),
      transparent 32%
    ),
    radial-gradient(
      circle at 82% 72%,
      rgba(86, 116, 68, 0.20),
      transparent 38%
    ),
    repeating-linear-gradient(
      115deg,
      rgba(255, 255, 255, 0.018) 0,
      rgba(255, 255, 255, 0.018) 2px,
      transparent 2px,
      transparent 14px
    ),
    linear-gradient(
      135deg,
      #17382b 0%,
      #1d4635 48%,
      #10271f 100%
    );
}

.solution::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;

  background:
    repeating-linear-gradient(
      90deg,
      rgba(214, 173, 93, 0.035) 0,
      rgba(214, 173, 93, 0.035) 3px,
      transparent 3px,
      transparent 18px
    );

  opacity: 0.45;
  transform: rotate(-5deg) scale(1.1);
  pointer-events: none;
}

.solution > * {
  position: relative;
  z-index: 1;
}


.solution-grid,
.support-grid,
.contact-grid,
.grains-grid {
  display: grid;
  align-items: center;
  gap: 80px;
  grid-template-columns: 1fr 1fr;
}

.image-placeholder.large {
  aspect-ratio:1 / 1;
  object-fit: cover;
}

.solution .image-placeholder {
  border-color: rgba(255, 255, 255, 0.22);
}

.solution-content p,
.support-content p,
.contact-copy p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
}

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

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.88);
}

.check-list li::before {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
  border-radius: 50%;
  color: var(--green-950);
  background: var(--gold);
  content: "✓";
  font-size: 0.78rem;
  font-weight: 900;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #f4c783;
  font-weight: 800;
}

/* ==========================================================================
   06. EQUIPAMENTOS
   ========================================================================== */

.products {
  background: var(--cream);
}

.section-heading {
  margin-bottom: 52px;
}

.section-heading.split {
  display: grid;
  align-items: end;
  gap: 80px;
  grid-template-columns: 1.2fr 0.8fr;
}

.section-heading.split p {
  margin-bottom: 8px;
}

.section-heading.centered {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

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

.product-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  background: var(--white);
  box-shadow: 0 20px 50px rgba(24, 56, 43, 0.08);
}

.product-image {
  min-height: 300px;
  height: 300px;
  border: 0;
  border-radius: 0;
  color: var(--muted);
  background: #dfe6da;

  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-image img {
  width: 140%;
  height: 140%;
  object-fit:contain;
  object-position: center;
  display: block;
}

.product-body {
  padding: 30px;
}

.product-tag {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--terracotta);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-body ul {
  margin: 22px 0 28px;
  padding-left: 20px;
  color: var(--muted);
}

.featured-card {
  display: flex;
  align-items: end;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 10%, rgba(217, 146, 59, 0.48), transparent 28%),
    var(--green-900);
}

.featured-content {
  padding: 36px;
}

.featured-content p {
  color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   07. APLICAÇÕES E GRÃOS
   ========================================================================== */

.applications {
  color: var(--white);
  background:
    linear-gradient(rgba(16, 39, 31, 0.92), rgba(16, 39, 31, 0.94)),
    linear-gradient(120deg, #3c4f30, #93643b);
}

.applications .section-heading p {
  color: rgba(255, 255, 255, 0.66);
}

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

.application-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(8px);
}

.application-card::after {
  position: absolute;
  right: -55px;
  bottom: -75px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
}

.application-card span {
  color: #f1bd75;
  font-size: 0.8rem;
  font-weight: 800;
}

.application-card h3 {
  position: absolute;
  bottom: 25px;
  left: 30px;
  max-width: 75%;
}

.grains .eyebrow {
  color: #f28c3a;
}

.grains h2 {
  color: #ffffff;
  font-weight: 800;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.35),
    0 8px 24px rgba(0, 0, 0, 0.20);
}

.grains p {
  color: rgba(255, 255, 255, 0.82);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
}


.grains {
  position: relative;
  overflow: hidden;

  background-image: url("images/truck-working-field-sunny-day.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Camada do degradê */
.grains::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;

  background: linear-gradient(
    90deg,
    rgba(5, 28, 21, 0.90) 0%,
    rgba(5, 28, 21, 0.68) 25%,
    rgba(5, 28, 21, 0.22) 50%,
    rgba(5, 28, 21, 0.03) 70%,
    rgba(5, 28, 21, 0) 100%
  );

  pointer-events: none;
}

/* Todo o conteúdo fica acima do degradê */
.grains > * {
  position: relative;
  z-index: 1;
}

.grain-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.grain-list span {
  display: inline-flex;
  min-width: 110px;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;

  border: 1px solid rgba(255, 255, 255, 0.40);
  border-radius: 999px;

  color: var(--green-900);
  background: rgba(255, 255, 255, 0.72);

  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);

  font-weight: 800;
}

/* ==========================================================================
   08. ASSISTÊNCIA, CONTATO E RODAPÉ
   ========================================================================== */

.support {
  color: var(--white);
  background: var(--green-950);
}

.support-points {
  display: grid;
  margin-top: 38px;
  gap: 22px;
}

.support-points div {
  display: flex;
  flex-direction: column;
  padding-left: 18px;
  border-left: 2px solid var(--gold);
}

.support-points span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

.contact {
  color: var(--white);
  background:
    radial-gradient(circle at 10% 10%, rgba(217, 146, 59, 0.16), transparent 30%),
    var(--green-900);
}

.contact-highlight {
  display: flex;
  margin-top: 40px;
  flex-direction: column;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.contact-highlight span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.62);
}

.lead-form {
  padding: 34px;
  border-radius: var(--radius-large);
  color: var(--ink);
  background: var(--cream);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
}

.lead-form label {
  display: flex;
  margin-bottom: 18px;
  flex-direction: column;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(24, 56, 43, 0.15);
  border-radius: 13px;
  outline: none;
  color: var(--ink);
  background: var(--white);
}

.lead-form input,
.lead-form select {
  height: 52px;
  padding: 0 15px;
}

.lead-form textarea {
  min-height: 130px;
  padding: 14px 15px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(217, 146, 59, 0.12);
}

.privacy-check {
  display: flex !important;
  align-items: flex-start;
  flex-direction: row !important;
  gap: 10px !important;
  font-weight: 500 !important;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.form-button {
  width: 100%;
  border: 0;
}

.site-footer {
  padding: 75px 0 24px;
  color: rgba(255, 255, 255, 0.72);
  background: #0b1c16;
}

.footer-grid {
  display: grid;
  gap: 50px;
  grid-template-columns: 1.4fr repeat(3, 1fr);
}

.footer-grid > div {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}

.footer-grid strong {
  margin-bottom: 8px;
  color: var(--white);
}

.footer-brand {
  margin-bottom: 10px;
}

.footer-grid p {
  max-width: 320px;
  color: rgba(255, 255, 255, 0.58);
}

.footer-bottom {
  display: flex;
  margin-top: 55px;
  justify-content: space-between;
  gap: 30px;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
}

/* ==========================================================================
   09. RESPONSIVIDADE
   ========================================================================== */

@media (max-width: 1080px) {
  .main-nav {
    gap: 18px;
  }

  .hero-grid,
  .solution-grid,
  .support-grid,
  .contact-grid,
  .grains-grid {
    gap: 48px;
  }

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

  .featured-card {
    min-height: 360px;
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .section {
    padding: 82px 0;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 86px;
    right: 20px;
    left: 20px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    background: rgba(16, 39, 31, 0.98);
    box-shadow: var(--shadow);
  }

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

  .main-nav .button {
    margin-top: 8px;
  }

  .hero {
    min-height: auto;
    padding: 160px 0 90px;
  }

  .hero-grid,
  .solution-grid,
  .support-grid,
  .contact-grid,
  .grains-grid,
  .section-heading.split {
    grid-template-columns: 1fr;
  }

  .hero-product {
    min-height: 480px;
  }

  .product-placeholder {
    left: 4%;
    width: 92%;
  }

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

  .section-heading.split {
    gap: 20px;
  }

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

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  h2 {
    font-size: clamp(2.2rem, 11vw, 3.2rem);
  }

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

  .hero-trust,
  .four-columns,
  .products-grid,
  .applications-grid,
  .form-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-product {
    min-height: 410px;
  }

  .product-placeholder {
    min-height: 330px;
  }

  .hero-badge {
    right: 3%;
    bottom: 0;
    width: 210px;
  }

  .image-placeholder.large {
    min-height: 390px;
  }

  .lead-form {
    padding: 24px 18px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* ==========================================================================
   10. UTILITÁRIOS DE IMAGENS E LOGOS
   ========================================================================== */

/* Imagens inseridas nos blocos da landing page */
.product-media,
.photo-media,
.product-card-media {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.media-image {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
}

/* Equipamentos em PNG: mostra o produto inteiro sem deformar ou cortar */
.media-contain {
  object-fit: contain;
  object-position: center;
  padding: clamp(18px, 3vw, 38px);
}

/* Fotografias: preenche todo o bloco mantendo a proporção */
.media-cover {
  object-fit: cover;
  object-position: center;
}

.product-placeholder.product-media {
  background: transparent;
}

.product-card-media {
  height: 300px;
}

.product-card-media .media-contain {
  padding: 24px;
}

.solution-media .photo-media {
  height: 590px;
  background: var(--green-900);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.solution-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* Ajuste individual do enquadramento das fotos, caso necessário */
.solution-media .media-cover {
  object-position: center center;
}

.support-media .media-cover {
  object-position: center center;
}

@media (max-width: 560px) {
  .product-card-media {
    height: 260px;
  }

  .solution-media .photo-media,
  .support-media.photo-media {
    height: 390px;
  }
}


/* Logos em imagem */
.brand-logo-link {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.site-logo {
  display: block;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}

.site-logo-header {
  height: 54px;
}

.site-logo-footer {
  height: 62px;
}

.site-header.is-scrolled .site-logo-header {
  height: 48px;
}

@media (max-width: 820px) {
  .site-logo-header {
    height: 46px;
  }

  .site-logo-footer {
    height: 54px;
  }
}

@media (max-width: 560px) {
  .site-logo-header {
    height: 40px;
    max-width: 190px;
  }

  .site-logo-footer {
    height: 48px;
    max-width: 210px;
  }
}
