:root {
  --green-950: #002c16;
  --green-900: #003c1f;
  --green-800: #064b28;
  --green-700: #126233;
  --green-500: #49aa45;
  --orange: #d88a25;
  --orange-strong: #f0a12c;
  --cream: #f7f3e9;
  --cream-2: #fbf8ef;
  --white: #ffffff;
  --text: #132018;
  --muted: #5d6b61;
  --line: rgba(0, 60, 31, .14);
  --shadow: 0 24px 70px rgba(0, 44, 22, .13);
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-pill: 999px;
  --container: 1180px;
  --section: clamp(56px, 7vw, 96px);
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--font);
  background: var(--cream);
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  background: var(--green-900);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 10px;
  z-index: 9999;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 30;
  padding: 18px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 32px);
  min-height: 66px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
}

.brand img {
  width: 236px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.1vw, 32px);
  margin-left: auto;
}

.main-nav a {
  position: relative;
  font-size: 14px;
  font-weight: 760;
  color: #111b14;
  letter-spacing: .01em;
  padding: 8px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary,
.btn-whatsapp {
  background: var(--green-900);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(0, 60, 31, .18);
}

.btn-primary:hover,
.btn-whatsapp:hover {
  background: var(--green-800);
}

.btn-secondary {
  background: var(--white);
  color: var(--orange);
  box-shadow: 0 12px 30px rgba(0, 44, 22, .08);
}

.btn-orange {
  background: var(--orange-strong);
  color: var(--white);
  box-shadow: 0 15px 30px rgba(216, 138, 37, .24);
}

.btn-outline-light {
  color: var(--cream);
  border-color: rgba(255, 255, 255, .25);
}

.btn-outline-light:hover,
.btn-outline-light:focus-visible {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.5);
}

.header-whatsapp {
  min-width: 146px;
  margin-left: 10px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: var(--green-900);
  color: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.hero-home {
  position: relative;
  min-height: 720px;
  padding: 128px 0 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 60% 20%, rgba(255,255,255,.88) 0 26%, rgba(255,255,255,0) 50%),
    linear-gradient(90deg, rgba(247,243,233,.96) 0%, rgba(247,243,233,.85) 38%, rgba(247,243,233,.32) 62%, rgba(247,243,233,.9) 100%),
    url("../img/home/campo-bg.svg") center/cover no-repeat;
}

.hero-home::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 90px;
  background: linear-gradient(180deg, rgba(247,243,233,0), var(--cream));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(330px, 470px) minmax(520px, 1fr);
  align-items: center;
  gap: 30px;
}

.hero-content {
  position: relative;
  z-index: 4;
  padding: 18px 0 128px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--green-800);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.section-kicker {
  color: var(--orange);
}

.section-kicker.centered {
  text-align: center;
  color: var(--green-800);
}

.hero-content h1 {
  margin: 0;
  color: var(--green-900);
  font-size: clamp(42px, 5.5vw, 70px);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 920;
}

.hero-content h1 span {
  color: var(--orange);
}

.hero-content > p:not(.eyebrow) {
  max-width: 440px;
  margin: 24px 0 28px;
  color: #1f2e24;
  font-size: clamp(16px, 1.5vw, 19px);
}

.hero-actions {
  position: relative;
  z-index: 5;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  align-self: center;
  justify-self: end;
  width: min(860px, 66vw);
  margin-right: clamp(-86px, -5vw, -34px);
  margin-bottom: 0;
  transform: translateY(-118px);
}

.quality-strip {
  position: relative;
  z-index: 3;
  width: min(640px, 100%);
  margin: -206px 0 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--green-900);
  color: var(--white);
  border-radius: 12px;
  box-shadow: 0 26px 50px rgba(0, 44, 22, .22);
  overflow: hidden;
}

.quality-strip article {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 106px;
  padding: 18px 18px;
  border-right: 1px solid rgba(255,255,255,.18);
}

.quality-strip article:last-child {
  border-right: 0;
}

.quality-strip article:nth-child(3) {
  display: none;
}

.quality-strip img {
  width: 42px;
  flex: 0 0 auto;
}

.quality-strip h2 {
  margin: 0 0 5px;
  font-size: 15px;
  line-height: 1.13;
}

.quality-strip p {
  margin: 0;
  color: rgba(255,255,255,.74);
  font-size: 12px;
  line-height: 1.35;
}

.brands-section {
  padding: 36px 0 58px;
  background: linear-gradient(180deg, var(--cream) 0%, #f1eee4 100%);
}

.brand-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 18px;
}

.brand-card {
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(255,255,255,.84);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 38px rgba(0, 44, 22, .07);
  overflow: hidden;
}

.brand-card img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
}

.products-preview {
  padding: 54px 0 50px;
  background:
    radial-gradient(circle at 95% 20%, rgba(73,170,69,.18), transparent 30%),
    linear-gradient(135deg, var(--green-950), #002413 62%, #003b1f);
  color: var(--white);
  overflow: hidden;
}

.products-grid {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 42px;
  align-items: end;
}

.products-copy h2 {
  margin: 0 0 24px;
  max-width: 360px;
  color: var(--white);
  font-size: clamp(27px, 3vw, 37px);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.products-carousel {
  min-width: 0;
}

.products-carousel-top {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin: 0 0 16px;
}

.carousel-btn {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: var(--white);
  cursor: pointer;
  transition: background .2s ease, transform .2s ease, opacity .2s ease;
}

.carousel-btn:hover,
.carousel-btn:focus-visible {
  background: rgba(255,255,255,.16);
  transform: translateY(-1px);
}

.carousel-btn:disabled {
  cursor: not-allowed;
  opacity: .38;
  transform: none;
}

.carousel-btn span {
  display: block;
  margin-top: -2px;
  font-size: 30px;
  line-height: 1;
}

.product-list {
  display: flex;
  gap: 26px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0 2px 4px;
  scrollbar-width: none;
}

.product-list::-webkit-scrollbar {
  display: none;
}

.product-card {
  flex: 0 0 clamp(170px, 17vw, 210px);
  scroll-snap-align: start;
  display: grid;
  place-items: center;
  min-height: 172px;
  padding: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 10px;
}

.product-card img {
  height: 112px;
  object-fit: contain;
}

.product-card h3 {
  margin: 8px 0 0;
  color: var(--white);
  font-size: 15px;
  font-weight: 850;
}

.process-section {
  padding: 44px 0 54px;
  background: var(--cream-2);
}

.process-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

.process-heading h2 {
  margin: 0;
  color: var(--green-900);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 31px;
  left: 8%;
  right: 8%;
  border-top: 1px dashed rgba(0, 60, 31, .22);
}

.process-steps article {
  position: relative;
  text-align: center;
}

.process-steps article > span {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  background: var(--cream-2);
  color: var(--green-700);
  font-size: 0;
  border-radius: 50%;
  border: 3px solid var(--green-500);
  z-index: 2;
}

.process-steps img {
  position: relative;
  z-index: 3;
  width: 66px;
  height: 66px;
  padding: 16px;
  margin: 0 auto 16px;
  background: var(--green-500);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(73,170,69,.24);
}

.process-steps h3 {
  margin: 0 0 7px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.2;
}

.process-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.site-footer {
  padding: 44px 0 18px;
  background:
    radial-gradient(circle at 8% 18%, rgba(73,170,69,.16), transparent 28%),
    linear-gradient(135deg, #002712, var(--green-950) 55%, #00391e);
  color: rgba(255,255,255,.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr .9fr 1.45fr 1.45fr;
  gap: 32px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-about p,
.footer-cta p {
  max-width: 260px;
  margin: 18px 0 18px;
  font-size: 14px;
}

.site-footer h2 {
  margin: 0 0 15px;
  color: var(--white);
  font-size: 16px;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin: 8px 0;
  font-size: 14px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--white);
}

.contact-list span {
  color: var(--green-500);
  margin-right: 8px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 16px;
  font-size: 12px;
  color: rgba(255,255,255,.58);
}

.footer-bottom p {
  margin: 0;
}


@media (max-width: 1180px) {
  .brand img {
    width: 214px;
  }

  .main-nav {
    gap: 18px;
  }

  .main-nav a {
    font-size: 13px;
  }

  .header-whatsapp {
    min-width: 136px;
    padding-inline: 18px;
  }
}

@media (max-width: 1120px) {
  .header-inner {
    gap: 16px;
  }

  .main-nav {
    gap: 16px;
  }

  .main-nav a {
    font-size: 13px;
  }

  .header-whatsapp {
    display: none;
  }

  .quality-strip {
    width: 100%;
    margin-top: -118px;
  }

  .product-list {
    gap: 16px;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .site-header {
    position: fixed;
    padding: 12px 0;
    background: rgba(247,243,233,.94);
    backdrop-filter: blur(12px);
    box-shadow: 0 12px 30px rgba(0, 44, 22, .08);
  }

  .brand img {
    width: 196px;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 88px;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 12px;
    background: var(--white);
    border-radius: 18px;
    box-shadow: var(--shadow);
    transform: translateY(-14px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .2s ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 14px 12px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .main-nav a::after {
    display: none;
  }

  .hero-home {
    min-height: auto;
    padding-top: 112px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero-content {
    padding: 18px 0 4px;
  }

  .hero-image {
    width: min(100%, 650px);
    justify-self: center;
    margin: -18px 0 20px;
    transform: none;
  }

  .quality-strip {
    grid-template-columns: repeat(2, 1fr);
    margin: 0;
  }

  .quality-strip article:nth-child(2) {
    border-right: 0;
  }

  .quality-strip article:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255,255,255,.16);
  }

  .brand-cards {
    grid-template-columns: 1fr;
  }

  .products-grid,
  .process-layout {
    grid-template-columns: 1fr;
  }

  .product-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .process-steps::before {
    display: none;
  }

  .process-steps article {
    display: grid;
    grid-template-columns: 70px 1fr;
    column-gap: 18px;
    text-align: left;
    align-items: center;
    padding: 16px;
    background: var(--white);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 44, 22, .06);
  }

  .process-steps article > span {
    display: none;
  }

  .process-steps img {
    grid-row: span 2;
    margin: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .hero-content h1 {
    font-size: clamp(38px, 13vw, 52px);
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .quality-strip {
    grid-template-columns: 1fr;
  }

  .quality-strip article {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.16);
  }

  .quality-strip article:last-child {
    border-bottom: 0;
  }

  .products-preview {
    padding-top: 44px;
  }

  .product-list {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 140px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/* Ajustes do carrossel de produtos */
@media (max-width: 900px) {
  .products-carousel-top {
    justify-content: flex-start;
    margin-top: 2px;
  }

  .product-card {
    flex-basis: min(68vw, 230px);
  }
}

@media (max-width: 620px) {
  .products-grid {
    gap: 28px;
  }

  .products-carousel-top {
    justify-content: flex-start;
    margin: 0 0 14px;
  }

  .product-card {
    flex-basis: 78vw;
    min-height: 150px;
  }
}

.inner-placeholder {
  min-height: 62vh;
  padding: 150px 0 80px;
  background: linear-gradient(180deg, var(--cream), var(--cream-2));
}

.inner-placeholder-card {
  max-width: 760px;
  padding: 42px;
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.inner-placeholder-card h1 {
  margin: 0 0 14px;
  color: var(--green-900);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: -.05em;
}

.inner-placeholder-card p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 18px;
}

.page-sobre .site-header,
.page-produtos .site-header,
.page-diferenciais .site-header,
.page-trabalhe .site-header,
.page-contato .site-header {
  position: fixed;
  background: rgba(247,243,233,.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 30px rgba(0, 44, 22, .08);
}
/* Efeito hover - Cards das marcas */
.brand-card {
  position: relative;
  cursor: pointer;
  transition:
    transform .28s ease,
    box-shadow .28s ease,
    border-color .28s ease,
    background .28s ease;
}

.brand-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(216, 138, 37, .14),
    rgba(73, 170, 69, .10)
  );
  opacity: 0;
  transition: opacity .28s ease;
  pointer-events: none;
}

.brand-card img {
  transition: transform .32s ease, filter .32s ease;
}

.brand-card:hover,
.brand-card:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 26px 58px rgba(0, 44, 22, .16);
  border-color: rgba(216, 138, 37, .28);
}

.brand-card:hover::after,
.brand-card:focus-within::after {
  opacity: 1;
}

.brand-card:hover img,
.brand-card:focus-within img {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.03);
}
/* Ajustes do rodapé */
.footer-logo img {
  width: 230px;
  max-width: 100%;
  height: auto;
}

.footer-column h2,
.footer-cta h2 {
  text-transform: none;
}

.footer-contact {
  min-width: 340px;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact-list a {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
}

.contact-list small {
  color: rgba(255,255,255,.56);
  font-size: 12px;
  line-height: 1.2;
}

.footer-email {
  white-space: nowrap;
  word-break: normal;
}

.social-links a span {
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
}

@media (max-width: 1180px) {
  .footer-contact {
    min-width: 0;
  }

  .footer-email {
    white-space: normal;
  }
}

@media (min-width: 1181px) {
  .footer-grid {
    grid-template-columns: 1.35fr .9fr .85fr 1.55fr 1.35fr;
  }
}
/* Barra de rolagem personalizada */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--orange) var(--green-950);
}

::-webkit-scrollbar {
  width: 13px;
}

::-webkit-scrollbar-track {
  background: var(--green-950);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--orange), var(--orange-strong));
  border: 3px solid var(--green-950);
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--orange-strong), var(--orange));
}

/* Botões flutuantes */
.floating-actions {
  position: fixed;
  inset: auto 24px 24px 24px;
  z-index: 80;
  pointer-events: none;
}

.floating-btn {
  position: fixed;
  bottom: 24px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 18px 38px rgba(0, 44, 22, .28);
  transition:
    transform .24s ease,
    box-shadow .24s ease,
    background .24s ease,
    opacity .24s ease,
    visibility .24s ease;
  pointer-events: auto;
}

.floating-btn:hover,
.floating-btn:focus-visible {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 24px 48px rgba(0, 44, 22, .34);
}

.floating-btn-whatsapp {
  right: 24px;
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
}

.floating-btn-whatsapp::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: inherit;
  border: 1px solid rgba(73, 170, 69, .34);
  animation: pulseWhatsapp 1.8s ease infinite;
}

.floating-btn-top {
  left: 24px;
  background: linear-gradient(135deg, var(--orange-strong), var(--orange));
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
}

.floating-btn-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-btn-top.is-visible:hover,
.floating-btn-top.is-visible:focus-visible {
  transform: translateY(-4px) scale(1.04);
}

@keyframes pulseWhatsapp {
  0% {
    opacity: .7;
    transform: scale(.92);
  }

  70% {
    opacity: 0;
    transform: scale(1.22);
  }

  100% {
    opacity: 0;
    transform: scale(1.22);
  }
}

@media (max-width: 620px) {
  .floating-btn {
    width: 52px;
    height: 52px;
    bottom: 18px;
    font-size: 22px;
  }

  .floating-btn-whatsapp {
    right: 16px;
  }

  .floating-btn-top {
    left: 16px;
  }

  ::-webkit-scrollbar {
    width: 9px;
  }
}
/* Header fixo em todas as páginas */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(247, 243, 233, .94);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 30px rgba(0, 44, 22, .08);
}
/* Ícone WhatsApp */
.whatsapp-svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  display: block;
}

.whatsapp-svg-small {
  width: 18px;
  height: 18px;
}
/* Página Sobre o Grupo */
.about-page {
  background: var(--cream-2);
}

.about-hero {
  position: relative;
  min-height: 620px;
  padding: 138px 0 48px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(247, 243, 233, .98) 0%, rgba(247, 243, 233, .90) 34%, rgba(247, 243, 233, .35) 62%, rgba(247, 243, 233, .12) 100%),
    radial-gradient(circle at 94% 78%, rgba(216, 138, 37, .28), transparent 20%),
    linear-gradient(135deg, #f8f4ea, #eef0e4);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(330px, 450px) 1fr;
  align-items: center;
  gap: 56px;
}

.about-hero-content {
  position: relative;
  z-index: 3;
}

.about-hero-content h1 {
  margin: 0;
  color: var(--green-900);
  font-size: clamp(38px, 4.6vw, 58px);
  line-height: 1.02;
  letter-spacing: -.055em;
  font-weight: 920;
}

.about-hero-content h1 span {
  color: var(--orange);
}

.about-hero-content p:not(.section-kicker) {
  max-width: 460px;
  margin: 22px 0 0;
  color: #1f2e24;
  font-size: 17px;
  line-height: 1.72;
}

.about-hero-photo {
  min-height: 420px;
  border-radius: 0 0 0 70px;
  background:
    linear-gradient(90deg, rgba(247, 243, 233, .58), rgba(247, 243, 233, 0) 36%),
    linear-gradient(180deg, rgba(0, 60, 31, .16), rgba(0, 44, 22, .18)),
    url("../img/sobre/hero-galpao.jpg") center/cover no-repeat,
    linear-gradient(135deg, #cfd6c6, #73816e);
  box-shadow: 0 28px 80px rgba(0, 44, 22, .16);
  overflow: hidden;
}

.about-hero-photo span {
  display: none;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 30px;
}

.about-stats article {
  display: grid;
  grid-template-columns: 38px 1fr;
  column-gap: 12px;
  align-items: center;
}

.about-stats img {
  grid-row: span 2;
  width: 38px;
  height: 38px;
}

.about-stats strong {
  display: block;
  color: var(--green-900);
  font-size: 24px;
  line-height: 1;
  font-weight: 920;
}

.about-stats span {
  color: #2c3a31;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 760;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 36px;
}

.centered-heading {
  text-align: center;
}

.section-heading h2,
.structure-copy h2,
.about-cta-box h2 {
  margin: 0;
  color: var(--green-900);
  font-size: clamp(30px, 3.3vw, 46px);
  line-height: 1.08;
  letter-spacing: -.045em;
  font-weight: 900;
}

.about-operation {
  padding: 58px 0 66px;
  background:
    radial-gradient(circle at 50% 0%, rgba(73, 170, 69, .08), transparent 30%),
    var(--cream-2);
}

.operation-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 34px;
  position: relative;
}

.operation-flow::before {
  content: "";
  position: absolute;
  top: 87px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(18, 98, 51, .45), transparent);
}

.operation-card {
  position: relative;
  z-index: 2;
  min-height: 215px;
  padding: 34px 20px 24px;
  text-align: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(0, 60, 31, .07);
  box-shadow: 0 18px 48px rgba(0, 44, 22, .07);
}

.operation-number {
  position: absolute;
  top: -15px;
  left: 22px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-700);
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
}

.operation-card img {
  width: 66px;
  height: 66px;
  margin: 0 auto 18px;
}

.operation-card h3 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 880;
}

.operation-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.about-structure {
  padding: 24px 0 66px;
  background: var(--cream-2);
}

.structure-grid {
  display: grid;
  grid-template-columns: minmax(290px, 360px) 1fr;
  gap: 42px;
  align-items: center;
}

.structure-copy p:not(.section-kicker) {
  margin: 22px 0 28px;
  color: #2d3a31;
  font-size: 16px;
  line-height: 1.7;
}

.btn-outline-green {
  color: var(--green-800);
  border: 1px solid rgba(0, 60, 31, .22);
  box-shadow: none;
}

.structure-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.structure-card {
  overflow: hidden;
  border-radius: 16px;
  background: var(--green-900);
  box-shadow: 0 22px 54px rgba(0, 44, 22, .12);
}

.structure-photo {
  min-height: 160px;
  background:
    linear-gradient(180deg, rgba(0, 44, 22, .06), rgba(0, 44, 22, .32)),
    linear-gradient(135deg, #d5ddcf, #6f806b);
}

.structure-card-processamento .structure-photo {
  background:
    linear-gradient(180deg, rgba(0, 44, 22, .06), rgba(0, 44, 22, .38)),
    url("../img/sobre/galpao-processamento.jpg") center/cover no-repeat,
    linear-gradient(135deg, #d5ddcf, #6f806b);
}

.structure-card-delu .structure-photo {
  background:
    linear-gradient(180deg, rgba(0, 44, 22, .06), rgba(0, 44, 22, .38)),
    url("../img/sobre/novo-galpao-delu.jpg") center/cover no-repeat,
    linear-gradient(135deg, #d5ddcf, #6f806b);
}

.structure-card-lojas .structure-photo {
  background:
    linear-gradient(180deg, rgba(0, 44, 22, .06), rgba(0, 44, 22, .38)),
    url("../img/sobre/lojas-ceasa.jpg") center/cover no-repeat,
    linear-gradient(135deg, #d5ddcf, #6f806b);
}

.structure-info {
  min-height: 118px;
  padding: 20px 20px 22px;
  color: var(--white);
}

.structure-info h3 {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 880;
}

.structure-info p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  line-height: 1.45;
}

.about-cta {
  padding: 0 0 54px;
  background: var(--cream-2);
}

.about-cta-box {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1.3fr auto;
  align-items: center;
  gap: 34px;
  padding: 34px 46px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 50%, rgba(240, 161, 44, .25), transparent 28%),
    linear-gradient(135deg, var(--green-950), var(--green-900));
  color: var(--white);
  box-shadow: 0 24px 70px rgba(0, 44, 22, .18);
}

.about-cta-box::after {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -110px;
  width: 360px;
  height: 270px;
  background: url("../img/home/hero-frutas.svg") center/contain no-repeat;
  opacity: .52;
  pointer-events: none;
}

.about-cta-box h2 {
  position: relative;
  z-index: 2;
  color: var(--white);
  font-size: clamp(28px, 3vw, 40px);
}

.about-cta-box h2 span {
  color: var(--orange-strong);
}

.about-cta-box p {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 17px;
  line-height: 1.55;
}

.about-cta-box .btn {
  position: relative;
  z-index: 2;
  white-space: nowrap;
}

@media (max-width: 1120px) {
  .about-hero-grid,
  .structure-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-photo {
    min-height: 320px;
    border-radius: 28px;
  }

  .operation-flow,
  .structure-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .operation-flow::before {
    display: none;
  }

  .about-cta-box {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .about-cta-box .btn {
    width: fit-content;
  }
}

@media (max-width: 760px) {
  .about-hero {
    min-height: auto;
    padding-top: 126px;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .operation-flow,
  .structure-cards {
    grid-template-columns: 1fr;
  }

  .operation-card {
    min-height: auto;
  }

  .about-cta-box {
    padding: 30px 24px;
  }

  .about-cta-box .btn {
    width: 100%;
  }
}
/* Página Produtos */
.products-page {
  background: var(--cream-2);
}

.products-hero {
  position: relative;
  min-height: 500px;
  padding: 136px 0 54px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(247, 243, 233, .99) 0%, rgba(247, 243, 233, .92) 35%, rgba(247, 243, 233, .38) 62%, rgba(247, 243, 233, .08) 100%),
    radial-gradient(circle at 82% 30%, rgba(240, 161, 44, .20), transparent 28%),
    linear-gradient(135deg, #faf7ee, #eff0e7);
}

.products-hero-grid {
  display: grid;
  grid-template-columns: minmax(330px, 470px) 1fr;
  align-items: center;
  gap: 48px;
}

.products-hero-content {
  position: relative;
  z-index: 3;
}

.products-hero-content h1 {
  margin: 0;
  color: var(--green-900);
  font-size: clamp(38px, 4.4vw, 58px);
  line-height: 1.03;
  letter-spacing: -.055em;
  font-weight: 920;
}

.products-hero-content h1 span {
  color: var(--orange);
}

.products-hero-content p {
  max-width: 460px;
  margin: 24px 0 28px;
  color: #1f2e24;
  font-size: 17px;
  line-height: 1.72;
}

.products-hero-visual {
  position: relative;
  min-height: 310px;
}

.products-hero-visual img {
  position: absolute;
  right: -90px;
  bottom: -40px;
  width: min(820px, 70vw);
  max-width: none;
  filter: saturate(1.06) contrast(1.02);
}

.products-catalog {
  padding: 42px 0 56px;
  background:
    radial-gradient(circle at 50% 0%, rgba(73, 170, 69, .07), transparent 32%),
    var(--cream-2);
}

.catalog-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 20px;
  color: var(--green-800);
}

.catalog-heading h2 {
  margin: 0;
  color: var(--green-900);
  font-size: 18px;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 900;
}

.catalog-heading span {
  color: var(--green-500);
  font-size: 22px;
  font-weight: 900;
}

.catalog-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.catalog-filter {
  min-width: 96px;
  min-height: 38px;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 60, 31, .14);
  background: rgba(255, 255, 255, .64);
  color: var(--green-900);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: background .22s ease, color .22s ease, border-color .22s ease, transform .22s ease;
}

.catalog-filter:hover,
.catalog-filter:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(216, 138, 37, .38);
}

.catalog-filter.is-active {
  background: var(--green-900);
  color: var(--white);
  border-color: var(--green-900);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.catalog-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(150px, .9fr) 1fr;
  gap: 20px;
  align-items: center;
  min-height: 250px;
  padding: 28px 28px 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .80);
  border: 1px solid rgba(0, 60, 31, .07);
  box-shadow: 0 18px 45px rgba(0, 44, 22, .07);
  overflow: hidden;
  transition: transform .26s ease, box-shadow .26s ease, border-color .26s ease;
}

.catalog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 138, 37, .26);
  box-shadow: 0 28px 64px rgba(0, 44, 22, .12);
}

.catalog-card.is-hidden {
  display: none;
}

.catalog-image {
  display: grid;
  place-items: center;
}

.catalog-image img {
  width: 190px;
  height: 150px;
  object-fit: contain;
  transition: transform .3s ease;
}

.catalog-card:hover .catalog-image img {
  transform: scale(1.05);
}

.catalog-info {
  position: relative;
}

.catalog-icon {
  position: absolute;
  top: -8px;
  right: -4px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(73, 170, 69, .10);
  color: var(--green-700);
  font-size: 18px;
}

.catalog-info h3 {
  margin: 0 44px 10px 0;
  color: var(--green-900);
  font-size: 22px;
  line-height: 1.1;
  font-weight: 900;
}

.catalog-info p {
  margin: 0 0 16px;
  color: #2e3b32;
  font-size: 15px;
  line-height: 1.65;
}

.catalog-info ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}

.catalog-info li {
  position: relative;
  margin: 7px 0;
  padding-left: 22px;
  color: #253229;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 680;
}

.catalog-info li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 15px;
  height: 15px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-500);
  color: var(--white);
  font-size: 10px;
  font-weight: 900;
}

.catalog-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 8px 17px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 60, 31, .22);
  color: var(--green-800);
  font-size: 13px;
  font-weight: 850;
  transition: background .22s ease, color .22s ease, border-color .22s ease;
}

.catalog-link:hover,
.catalog-link:focus-visible {
  background: var(--green-900);
  color: var(--white);
  border-color: var(--green-900);
}

.products-benefits {
  padding: 0 0 58px;
  background: var(--cream-2);
}

.benefits-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  padding-top: 8px;
}

.benefits-row article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 15px;
  align-items: start;
  padding-right: 18px;
  border-right: 1px solid rgba(0, 60, 31, .10);
}

.benefits-row article:last-child {
  border-right: 0;
}

.benefits-row img {
  width: 52px;
  height: 52px;
}

.benefits-row h3 {
  margin: 0 0 8px;
  color: var(--green-900);
  font-size: 15px;
  line-height: 1.25;
  font-weight: 900;
}

.benefits-row p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

@media (max-width: 1180px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-row article {
    border-right: 0;
  }
}

@media (max-width: 900px) {
  .products-hero-grid {
    grid-template-columns: 1fr;
  }

  .products-hero-visual {
    min-height: 230px;
  }

  .products-hero-visual img {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 640px);
    margin-inline: auto;
  }
}

@media (max-width: 720px) {
  .products-hero {
    padding-top: 126px;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .catalog-card {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .catalog-image img {
    width: 220px;
    height: 160px;
  }

  .benefits-row {
    grid-template-columns: 1fr;
  }
}
/* Página Diferenciais */
.differentials-page {
  background: var(--cream-2);
}

.differentials-hero {
  position: relative;
  min-height: 510px;
  padding: 136px 0 56px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(247, 243, 233, .99) 0%, rgba(247, 243, 233, .92) 34%, rgba(247, 243, 233, .34) 62%, rgba(247, 243, 233, .10) 100%),
    radial-gradient(circle at 80% 28%, rgba(240, 161, 44, .24), transparent 28%),
    linear-gradient(135deg, #faf7ee, #eef0e6);
}

.differentials-hero-grid {
  display: grid;
  grid-template-columns: minmax(330px, 465px) 1fr;
  align-items: center;
  gap: 52px;
}

.differentials-hero-content {
  position: relative;
  z-index: 3;
}

.differentials-hero-content h1 {
  margin: 0;
  color: var(--green-900);
  font-size: clamp(38px, 4.4vw, 58px);
  line-height: 1.03;
  letter-spacing: -.055em;
  font-weight: 920;
}

.differentials-hero-content h1 span {
  color: var(--orange);
}

.differentials-hero-content p {
  max-width: 470px;
  margin: 24px 0 28px;
  color: #1f2e24;
  font-size: 17px;
  line-height: 1.72;
}

.differentials-hero-visual {
  position: relative;
  min-height: 320px;
}

.differentials-hero-visual::before {
  content: "";
  position: absolute;
  inset: 20px -80px 0 0;
  border-radius: 42px 0 0 42px;
  background:
    linear-gradient(90deg, rgba(247, 243, 233, .35), rgba(0, 44, 22, .18)),
    url("../img/diferenciais/hero-ceasa.jpg") center/cover no-repeat,
    linear-gradient(135deg, #a9b39a, #40533c);
  box-shadow: 0 28px 80px rgba(0, 44, 22, .14);
}

.differentials-hero-visual img {
  position: absolute;
  right: -80px;
  bottom: -42px;
  z-index: 2;
  width: min(760px, 66vw);
  max-width: none;
  filter: saturate(1.08) contrast(1.02);
}

.differentials-list {
  padding: 46px 0 30px;
  background:
    radial-gradient(circle at 50% 0%, rgba(73, 170, 69, .07), transparent 32%),
    var(--cream-2);
}

.differentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.differential-card {
  display: grid;
  grid-template-columns: 1fr 160px;
  min-height: 230px;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(0, 60, 31, .07);
  box-shadow: 0 18px 48px rgba(0, 44, 22, .07);
  transition: transform .26s ease, box-shadow .26s ease, border-color .26s ease;
}

.differential-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 138, 37, .26);
  box-shadow: 0 28px 64px rgba(0, 44, 22, .12);
}

.differential-content {
  padding: 30px 26px;
}

.differential-content img {
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
  padding: 12px;
  border-radius: 50%;
  background: rgba(73, 170, 69, .11);
}

.differential-content h3 {
  margin: 0 0 18px;
  color: var(--green-900);
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: -.03em;
  font-weight: 900;
}

.differential-content p {
  margin: 0;
  color: #24332a;
  font-size: 15px;
  line-height: 1.72;
}

.differential-photo {
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(0, 44, 22, .02), rgba(0, 44, 22, .18)),
    linear-gradient(135deg, #dce4d4, #7c8b73);
}

.differential-producer .differential-photo {
  background:
    linear-gradient(180deg, rgba(0, 44, 22, .02), rgba(0, 44, 22, .18)),
    url("../img/diferenciais/compra-produtor.jpg") center/cover no-repeat,
    linear-gradient(135deg, #dce4d4, #7c8b73);
}

.differential-quality .differential-photo {
  background:
    linear-gradient(180deg, rgba(0, 44, 22, .02), rgba(0, 44, 22, .18)),
    url("../img/diferenciais/controle-qualidade.jpg") center/cover no-repeat,
    linear-gradient(135deg, #dce4d4, #7c8b73);
}

.differential-processing .differential-photo {
  background:
    linear-gradient(180deg, rgba(0, 44, 22, .02), rgba(0, 44, 22, .18)),
    url("../img/diferenciais/processamento-proprio.jpg") center/cover no-repeat,
    linear-gradient(135deg, #dce4d4, #7c8b73);
}

.differential-structure .differential-photo {
  background:
    linear-gradient(180deg, rgba(0, 44, 22, .02), rgba(0, 44, 22, .18)),
    url("../img/diferenciais/estrutura-moderna.jpg") center/cover no-repeat,
    linear-gradient(135deg, #dce4d4, #7c8b73);
}

.differential-logistics .differential-photo {
  background:
    linear-gradient(180deg, rgba(0, 44, 22, .02), rgba(0, 44, 22, .18)),
    url("../img/diferenciais/logistica-eficiente.jpg") center/cover no-repeat,
    linear-gradient(135deg, #dce4d4, #7c8b73);
}

.differential-client .differential-photo {
  background:
    linear-gradient(180deg, rgba(0, 44, 22, .02), rgba(0, 44, 22, .18)),
    url("../img/diferenciais/foco-cliente.jpg") center/cover no-repeat,
    linear-gradient(135deg, #dce4d4, #7c8b73);
}

.differentials-commitment {
  padding: 28px 0 58px;
  background: var(--cream-2);
}

.commitment-box {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 300px 1.1fr 1.9fr;
  align-items: center;
  gap: 32px;
  min-height: 150px;
  padding: 0 42px 0 0;
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 50%, rgba(240, 161, 44, .18), transparent 30%),
    linear-gradient(135deg, var(--green-950), var(--green-900));
  color: var(--white);
  box-shadow: 0 24px 70px rgba(0, 44, 22, .16);
}

.commitment-image {
  align-self: stretch;
  min-height: 150px;
  background:
    linear-gradient(90deg, rgba(0, 44, 22, .14), rgba(0, 44, 22, .05)),
    url("../img/home/hero-frutas.svg") center/cover no-repeat,
    linear-gradient(135deg, #345c30, #0f3e22);
}

.commitment-box h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
  letter-spacing: -.045em;
  font-weight: 900;
}

.commitment-box h2 span {
  color: var(--orange-strong);
}

.commitment-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.commitment-items article {
  text-align: center;
}

.commitment-items span {
  display: block;
  margin-bottom: 10px;
  color: var(--orange-strong);
  font-size: 32px;
  line-height: 1;
}

.commitment-items h3 {
  margin: 0;
  color: rgba(255, 255, 255, .92);
  font-size: 15px;
  line-height: 1.28;
  font-weight: 850;
}

@media (max-width: 1180px) {
  .differentials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .commitment-box {
    grid-template-columns: 230px 1fr;
    padding: 0 32px 28px 0;
  }

  .commitment-items {
    grid-column: 1 / -1;
    padding-left: 32px;
  }
}

@media (max-width: 900px) {
  .differentials-hero-grid {
    grid-template-columns: 1fr;
  }

  .differentials-hero-visual {
    min-height: 260px;
  }

  .differentials-hero-visual::before {
    inset: 0;
    border-radius: 28px;
  }

  .differentials-hero-visual img {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    width: min(100%, 640px);
  }

  .differential-card {
    grid-template-columns: 1fr 135px;
  }
}

@media (max-width: 720px) {
  .differentials-hero {
    padding-top: 126px;
  }

  .differentials-grid {
    grid-template-columns: 1fr;
  }

  .differential-card {
    grid-template-columns: 1fr;
  }

  .differential-photo {
    min-height: 190px;
    order: -1;
  }

  .commitment-box {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 24px 28px;
  }

  .commitment-image {
    margin: 0 -24px;
  }

  .commitment-items {
    grid-template-columns: 1fr 1fr;
    padding-left: 0;
  }
}
/* Página Trabalhe Conosco */
.jobs-page {
  background: var(--cream-2);
}

.jobs-hero {
  position: relative;
  min-height: 520px;
  padding: 136px 0 58px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(247, 243, 233, .99) 0%, rgba(247, 243, 233, .93) 34%, rgba(247, 243, 233, .42) 62%, rgba(247, 243, 233, .08) 100%),
    radial-gradient(circle at 80% 28%, rgba(240, 161, 44, .20), transparent 28%),
    linear-gradient(135deg, #faf7ee, #eef0e6);
}

.jobs-hero-grid {
  display: grid;
  grid-template-columns: minmax(330px, 470px) 1fr;
  align-items: center;
  gap: 54px;
}

.jobs-hero-content {
  position: relative;
  z-index: 3;
}

.jobs-hero-content h1 {
  margin: 0;
  color: var(--green-900);
  font-size: clamp(38px, 4.5vw, 60px);
  line-height: 1.03;
  letter-spacing: -.055em;
  font-weight: 920;
}

.jobs-hero-content h1 span {
  color: var(--orange);
}

.jobs-hero-content h1 span::after {
  content: " 🌿";
  color: var(--green-500);
  font-size: .62em;
}

.jobs-hero-content p {
  max-width: 470px;
  margin: 24px 0 28px;
  color: #1f2e24;
  font-size: 17px;
  line-height: 1.72;
}

.jobs-hero-photo {
  position: relative;
  min-height: 335px;
  border-radius: 0 0 0 56px;
  background:
    linear-gradient(90deg, rgba(247, 243, 233, .42), rgba(247, 243, 233, 0) 42%),
    linear-gradient(180deg, rgba(0, 44, 22, .04), rgba(0, 44, 22, .16)),
    url("../img/trabalhe/equipe-ceasa.jpg") center/cover no-repeat,
    linear-gradient(135deg, #d9e1d0, #4c6549);
  box-shadow: 0 28px 80px rgba(0, 44, 22, .14);
}

.jobs-culture {
  padding: 54px 0 40px;
  background: var(--cream-2);
}

.jobs-culture-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 52px;
  align-items: start;
}

.culture-copy h2,
.benefits-panel h2,
.open-jobs-heading h2,
.resume-copy h2 {
  margin: 0;
  color: var(--green-900);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -.045em;
  font-weight: 900;
}

.culture-copy h2::before,
.open-jobs-heading h2::before {
  content: "🌿";
  display: inline-block;
  margin-right: 10px;
  font-size: .72em;
  vertical-align: .08em;
}

.culture-copy > p {
  max-width: 620px;
  margin: 16px 0 28px;
  color: #26362d;
  font-size: 16px;
  line-height: 1.72;
}

.culture-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px 32px;
}

.culture-values article {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  align-items: start;
}

.culture-values span,
.job-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(73, 170, 69, .11);
  color: var(--green-800);
  font-size: 25px;
  line-height: 1;
}

.culture-values h3 {
  margin: 0 0 8px;
  color: var(--green-900);
  font-size: 19px;
  line-height: 1.2;
  font-weight: 900;
}

.culture-values p {
  margin: 0;
  color: #344239;
  font-size: 14px;
  line-height: 1.6;
}

.benefits-panel {
  padding: 34px 34px 30px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(0, 60, 31, .08);
  box-shadow: 0 22px 60px rgba(0, 44, 22, .08);
}

.benefits-panel h2::before {
  content: "▧";
  display: inline-grid;
  place-items: center;
  margin-right: 12px;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(73, 170, 69, .10);
  color: var(--green-700);
  font-size: 18px;
  vertical-align: .1em;
}

.benefits-icons {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  margin: 40px 0 32px;
}

.benefits-icons article {
  text-align: center;
}

.benefits-icons span {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: rgba(73, 170, 69, .11);
  color: var(--green-800);
  font-size: 25px;
}

.benefits-icons h3 {
  margin: 0;
  color: var(--green-900);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 850;
}

.benefits-note {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green-950), var(--green-900));
  color: var(--white);
}

.benefits-note span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange-strong);
  color: var(--white);
  font-size: 22px;
}

.benefits-note p {
  margin: 0;
  color: rgba(255, 255, 255, .88);
  font-size: 17px;
  line-height: 1.4;
  font-weight: 780;
}

.open-jobs {
  padding: 26px 0 34px;
  background: var(--cream-2);
}

.open-jobs-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.open-jobs-heading h2 {
  max-width: 720px;
  font-size: clamp(24px, 2.4vw, 34px);
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.job-card {
  min-height: 246px;
  padding: 28px 28px 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .80);
  border: 1px solid rgba(0, 60, 31, .07);
  box-shadow: 0 18px 45px rgba(0, 44, 22, .07);
  transition: transform .26s ease, box-shadow .26s ease, border-color .26s ease;
}

.job-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 138, 37, .28);
  box-shadow: 0 28px 64px rgba(0, 44, 22, .12);
}

.job-icon {
  margin-bottom: 18px;
}

.job-card h3 {
  margin: 0 0 5px;
  color: var(--green-900);
  font-size: 19px;
  line-height: 1.2;
  font-weight: 900;
}

.job-location {
  margin: 0 0 7px;
  color: #2f4036;
  font-size: 13px;
  font-weight: 760;
}

.job-type {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(240, 161, 44, .16);
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
}

.job-card p:not(.job-location) {
  margin: 0 0 18px;
  color: #344239;
  font-size: 14px;
  line-height: 1.55;
}

.jobs-resume {
  padding: 12px 0 58px;
  background: var(--cream-2);
}

.resume-box {
  overflow: hidden;
  display: grid;
  grid-template-columns: 150px 1fr 1.3fr auto;
  align-items: center;
  gap: 32px;
  min-height: 126px;
  padding: 0 36px 0 0;
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 50%, rgba(240, 161, 44, .18), transparent 30%),
    linear-gradient(135deg, var(--green-950), var(--green-900));
  color: var(--white);
  box-shadow: 0 24px 70px rgba(0, 44, 22, .16);
}

.resume-image {
  align-self: stretch;
  min-height: 126px;
  background:
    linear-gradient(90deg, rgba(0, 44, 22, .12), rgba(0, 44, 22, .08)),
    url("../img/trabalhe/equipe-maos.jpg") center/cover no-repeat,
    linear-gradient(135deg, #477340, #102f1d);
}

.resume-copy h2 {
  color: var(--white);
  font-size: clamp(25px, 2.5vw, 36px);
}

.resume-copy h2 span {
  color: var(--orange-strong);
}

.resume-copy p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 15px;
  line-height: 1.45;
}

.resume-info {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: center;
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, .12);
}

.resume-info > span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange-strong);
  color: var(--white);
  font-size: 24px;
}

.resume-info h3 {
  margin: 0 0 4px;
  color: var(--white);
  font-size: 16px;
  font-weight: 900;
}

.resume-info p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  line-height: 1.4;
}

@media (max-width: 1180px) {
  .jobs-culture-grid {
    grid-template-columns: 1fr;
  }

  .jobs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .resume-box {
    grid-template-columns: 130px 1fr;
    padding: 0 28px 28px 0;
  }

  .resume-info {
    grid-column: 1 / -1;
    margin-left: 28px;
    padding-left: 0;
    border-left: 0;
  }

  .resume-box .btn {
    grid-column: 1 / -1;
    margin-left: 28px;
    width: fit-content;
  }
}

@media (max-width: 900px) {
  .jobs-hero-grid {
    grid-template-columns: 1fr;
  }

  .jobs-hero-photo {
    min-height: 300px;
    border-radius: 28px;
  }

  .benefits-icons {
    grid-template-columns: repeat(3, 1fr);
  }

  .open-jobs-heading {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .jobs-hero {
    padding-top: 126px;
  }

  .culture-values,
  .jobs-grid {
    grid-template-columns: 1fr;
  }

  .benefits-icons {
    grid-template-columns: repeat(2, 1fr);
  }

  .resume-box {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 0 24px 28px;
  }

  .resume-image {
    margin: 0 -24px;
  }

  .resume-info,
  .resume-box .btn {
    margin-left: 0;
  }

  .resume-box .btn {
    width: 100%;
  }
}
/* Página Contato */
.contact-page {
  background: var(--cream-2);
}

.contact-hero {
  position: relative;
  min-height: 500px;
  padding: 136px 0 54px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(247, 243, 233, .99) 0%, rgba(247, 243, 233, .93) 34%, rgba(247, 243, 233, .42) 62%, rgba(247, 243, 233, .08) 100%),
    radial-gradient(circle at 82% 30%, rgba(240, 161, 44, .20), transparent 28%),
    linear-gradient(135deg, #faf7ee, #eef0e6);
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(330px, 470px) 1fr;
  align-items: center;
  gap: 54px;
}

.contact-hero-content {
  position: relative;
  z-index: 3;
}

.contact-hero-content h1 {
  margin: 0;
  color: var(--green-900);
  font-size: clamp(38px, 4.5vw, 60px);
  line-height: 1.03;
  letter-spacing: -.055em;
  font-weight: 920;
}

.contact-hero-content h1 span {
  color: var(--orange);
}

.contact-hero-content h1 span::after {
  content: " 🌿";
  color: var(--green-500);
  font-size: .62em;
}

.contact-hero-content p {
  max-width: 455px;
  margin: 24px 0 28px;
  color: #1f2e24;
  font-size: 17px;
  line-height: 1.72;
}

.contact-hero-visual {
  position: relative;
  min-height: 315px;
}

.contact-hero-visual img {
  position: absolute;
  right: -90px;
  bottom: -42px;
  width: min(820px, 70vw);
  max-width: none;
  filter: saturate(1.06) contrast(1.02);
}

.contact-main {
  padding: 52px 0 36px;
  background: var(--cream-2);
}

.contact-main-grid {
  display: grid;
  grid-template-columns: minmax(320px, .82fr) minmax(520px, 1.18fr);
  gap: 54px;
  align-items: start;
}

.contact-channels h2,
.contact-form-card h2,
.location-card h2,
.quick-service-card h2 {
  margin: 0 0 26px;
  color: var(--green-900);
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.1;
  letter-spacing: -.04em;
  font-weight: 900;
}

.contact-channels h2::before {
  content: "🌿";
  margin-right: 10px;
  font-size: .72em;
}

.contact-channel-list {
  display: grid;
  gap: 12px;
}

.contact-channel-card {
  display: grid;
  grid-template-columns: 62px 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 96px;
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(0, 60, 31, .07);
  box-shadow: 0 16px 38px rgba(0, 44, 22, .06);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.contact-channel-card:hover,
.contact-channel-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(216, 138, 37, .28);
  box-shadow: 0 24px 52px rgba(0, 44, 22, .10);
}

.channel-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(73, 170, 69, .10);
  color: var(--green-800);
  font-size: 24px;
}

.contact-channel-card h3 {
  margin: 0 0 5px;
  color: var(--green-900);
  font-size: 17px;
  font-weight: 900;
}

.contact-channel-card p {
  margin: 0 0 3px;
  color: #17251d;
  font-size: 15px;
  font-weight: 740;
  word-break: break-word;
}

.contact-channel-card small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.channel-arrow {
  color: var(--green-700);
  font-size: 28px;
  line-height: 1;
}

.contact-form-card {
  padding: 30px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(0, 60, 31, .07);
  box-shadow: 0 20px 58px rgba(0, 44, 22, .08);
}

.contact-form-card h2 {
  margin-bottom: 22px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 15px 18px;
  border: 1px solid rgba(0, 60, 31, .13);
  border-radius: 10px;
  background: rgba(255, 255, 255, .76);
  color: var(--text);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 145px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(216, 138, 37, .65);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(216, 138, 37, .11);
}

.form-consent {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #344239;
  font-size: 14px;
  line-height: 1.4;
}

.form-consent input {
  width: 18px;
  height: 18px;
  min-height: auto;
  padding: 0;
  accent-color: var(--green-700);
}

.contact-submit {
  width: 100%;
}

.form-alert {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 760;
}

.form-alert-success {
  background: rgba(73, 170, 69, .12);
  color: var(--green-900);
  border: 1px solid rgba(73, 170, 69, .24);
}

.form-alert-error {
  background: rgba(216, 138, 37, .12);
  color: #7a3f00;
  border: 1px solid rgba(216, 138, 37, .25);
}

.contact-location {
  padding: 16px 0 58px;
  background: var(--cream-2);
}

.contact-location-grid {
  display: grid;
  grid-template-columns: minmax(300px, .9fr) minmax(220px, .52fr) minmax(420px, 1.28fr);
  gap: 16px;
  align-items: stretch;
}

.contact-map,
.location-card,
.quick-service-card {
  min-height: 205px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, .76);
  border: 1px solid rgba(0, 60, 31, .07);
  box-shadow: 0 16px 42px rgba(0, 44, 22, .06);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 205px;
  display: block;
  border: 0;
  filter: saturate(.82) contrast(.94);
}

.location-card {
  padding: 30px;
}

.location-card h2,
.quick-service-card h2 {
  margin-bottom: 18px;
  font-size: 24px;
}

.location-card p {
  margin: 0 0 8px;
  color: #253229;
  font-size: 14px;
  line-height: 1.45;
}

.location-card .catalog-link {
  margin-top: 14px;
}

.quick-service-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 210px;
  align-items: center;
  gap: 20px;
  padding: 30px;
  overflow: hidden;
}

.quick-service-card p {
  max-width: 430px;
  margin: 0 0 24px;
  color: #344239;
  font-size: 15px;
  line-height: 1.6;
}

.quick-service-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.quick-service-items article {
  text-align: center;
}

.quick-service-items span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: rgba(73, 170, 69, .10);
  color: var(--green-800);
  font-size: 20px;
  font-weight: 900;
}

.quick-service-items h3 {
  margin: 0;
  color: var(--green-900);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 850;
}

.quick-service-card img {
  width: 250px;
  max-width: none;
  margin-right: -50px;
  align-self: end;
}

@media (max-width: 1180px) {
  .contact-main-grid,
  .contact-location-grid {
    grid-template-columns: 1fr;
  }

  .contact-map iframe {
    min-height: 320px;
  }

  .quick-service-card {
    grid-template-columns: 1fr 180px;
  }
}

@media (max-width: 900px) {
  .contact-hero-grid {
    grid-template-columns: 1fr;
  }

  .contact-hero-visual {
    min-height: 230px;
  }

  .contact-hero-visual img {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 640px);
    margin-inline: auto;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .contact-hero {
    padding-top: 126px;
  }

  .contact-form-card {
    padding: 22px;
  }

  .contact-channel-card {
    grid-template-columns: 52px 1fr;
  }

  .channel-icon {
    width: 50px;
    height: 50px;
  }

  .channel-arrow {
    display: none;
  }

  .quick-service-card {
    grid-template-columns: 1fr;
  }

  .quick-service-card img {
    width: 190px;
    margin: 0 auto -50px;
  }

  .quick-service-items {
    grid-template-columns: 1fr;
  }
}