: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;
  }
}
/* Página Ferramentas */
.tools-page {
  background: var(--cream-2);
}

.tools-hero {
  position: relative;
  min-height: 430px;
  padding: 136px 0 46px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(247, 243, 233, .99) 0%, rgba(247, 243, 233, .94) 35%, rgba(247, 243, 233, .42) 62%, rgba(247, 243, 233, .08) 100%),
    radial-gradient(circle at 80% 30%, rgba(240, 161, 44, .18), transparent 28%),
    linear-gradient(135deg, #faf7ee, #eef0e6);
}

.tools-hero-grid {
  display: grid;
  grid-template-columns: minmax(320px, 460px) 1fr;
  align-items: center;
  gap: 50px;
}

.tools-hero-content {
  position: relative;
  z-index: 3;
}

.tools-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;
}

.tools-hero-content h1 span {
  color: var(--orange);
}

.tools-hero-content p {
  max-width: 440px;
  margin: 24px 0 0;
  color: #1f2e24;
  font-size: 17px;
  line-height: 1.72;
}

.tools-hero-visual {
  position: relative;
  min-height: 270px;
}

.tools-hero-visual img {
  position: absolute;
  right: -70px;
  bottom: -54px;
  width: min(760px, 68vw);
  max-width: none;
  filter: saturate(1.08) contrast(1.02);
}

.tools-calculator {
  padding: 42px 0 24px;
  background: var(--cream-2);
}

.tools-tabs-title {
  margin: 0 0 24px;
  text-align: center;
  color: var(--green-900);
  font-size: 17px;
  font-weight: 900;
}

.tools-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 30px;
  border: 1px solid rgba(0, 60, 31, .12);
  border-radius: 12px;
  background: rgba(255, 255, 255, .76);
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(0, 44, 22, .06);
}

.tool-tab {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 72px;
  padding: 16px 22px;
  border: 0;
  border-right: 1px solid rgba(0, 60, 31, .10);
  background: transparent;
  color: var(--green-900);
  text-align: left;
  cursor: pointer;
  transition: background .22s ease, color .22s ease, transform .22s ease;
}

.tool-tab:last-child {
  border-right: 0;
}

.tool-tab:hover,
.tool-tab:focus-visible {
  background: rgba(73, 170, 69, .07);
}

.tool-tab.is-active {
  background: linear-gradient(135deg, var(--green-950), var(--green-900));
  color: var(--white);
}

.tool-tab-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(73, 170, 69, .10);
  color: var(--green-700);
  font-size: 22px;
}

.tool-tab.is-active .tool-tab-icon {
  background: rgba(255, 255, 255, .12);
  color: var(--orange-strong);
}

.tool-tab strong {
  display: block;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 900;
}

.tool-tab small {
  display: block;
  margin-top: 4px;
  color: inherit;
  opacity: .76;
  font-size: 12px;
  line-height: 1.35;
}

.tools-panels {
  position: relative;
}

.tool-panel[hidden] {
  display: none;
}

.tool-form-card {
  display: grid;
  grid-template-columns: 1.35fr .85fr;
  gap: 42px;
  padding: 38px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(0, 60, 31, .08);
  box-shadow: 0 22px 64px rgba(0, 44, 22, .08);
}

.tool-title-row {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 34px;
}

.tool-title-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: 26px;
}

.tool-title-row h2 {
  margin: 0 0 7px;
  color: var(--green-900);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.1;
  letter-spacing: -.04em;
  font-weight: 900;
}

.tool-title-row p {
  margin: 0;
  color: #26362d;
  font-size: 15px;
  line-height: 1.55;
}

.tool-form {
  display: grid;
  gap: 26px;
}

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

.tool-form label {
  display: grid;
  gap: 9px;
}

.tool-form label > span {
  color: var(--green-950);
  font-size: 14px;
  line-height: 1.25;
  font-weight: 850;
}

.tool-form input,
.tool-form select,
.tool-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 15px 18px;
  border: 1px solid rgba(0, 60, 31, .15);
  border-radius: 10px;
  background: rgba(255, 255, 255, .84);
  color: var(--text);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.tool-form input:focus,
.tool-form select:focus,
.tool-form textarea:focus {
  border-color: rgba(216, 138, 37, .65);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(216, 138, 37, .11);
}

.tool-file {
  grid-column: span 2;
}

.tool-file input {
  display: none;
}

.tool-file strong {
  display: grid;
  place-items: center;
  min-height: 74px;
  padding: 18px;
  border: 1px dashed rgba(0, 60, 31, .28);
  border-radius: 10px;
  color: var(--green-900);
  background: rgba(255, 255, 255, .62);
  font-size: 14px;
  text-align: center;
  cursor: pointer;
}

.tool-file small {
  margin-top: -4px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.tool-calculate {
  width: min(260px, 100%);
}

.tool-result-card {
  padding: 34px 34px 30px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 100% 0%, rgba(73, 170, 69, .12), transparent 32%),
    linear-gradient(135deg, #f1f6ed, #ffffff);
  border: 1px solid rgba(0, 60, 31, .07);
}

.tool-result-card .tool-title-row {
  margin-bottom: 26px;
}

.tool-result-list {
  display: grid;
  gap: 20px;
}

.tool-result-list article {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 60, 31, .12);
}

.tool-result-list article:last-child {
  border-bottom: 0;
}

.tool-result-list span {
  display: block;
  margin-bottom: 6px;
  color: var(--green-950);
  font-size: 14px;
  font-weight: 850;
}

.tool-result-list strong {
  display: block;
  color: var(--green-900);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.1;
  letter-spacing: -.04em;
  font-weight: 920;
}

.tool-result-note {
  margin: 26px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 60, 31, .10);
  color: #35463b;
  font-size: 13px;
  line-height: 1.55;
}

.tool-status-ok {
  color: var(--green-700) !important;
}

.tool-status-bad {
  color: #b94716 !important;
}

.tools-info {
  padding: 26px 0 58px;
  background: var(--cream-2);
}

.tools-info-box {
  display: grid;
  grid-template-columns: 70px 1fr 430px;
  gap: 22px;
  align-items: center;
  min-height: 120px;
  overflow: hidden;
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(73, 170, 69, .10), rgba(255, 255, 255, .78));
  border: 1px solid rgba(0, 60, 31, .07);
  box-shadow: 0 18px 46px rgba(0, 44, 22, .06);
}

.tools-info-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-left: 28px;
  border-radius: 50%;
  background: var(--green-900);
  color: var(--white);
  font-size: 26px;
}

.tools-info-box h2 {
  margin: 0 0 8px;
  color: var(--green-900);
  font-size: 21px;
  line-height: 1.2;
  font-weight: 900;
}

.tools-info-box p {
  margin: 0;
  color: #26362d;
  font-size: 14px;
  line-height: 1.55;
}

.tools-info-visual {
  align-self: stretch;
  min-height: 120px;
  background:
    linear-gradient(90deg, rgba(247, 243, 233, .10), rgba(0, 44, 22, .20)),
    url("../img/home/hero-frutas.svg") center/cover no-repeat,
    linear-gradient(135deg, #eef0e6, #cdd8c4);
}

@media (max-width: 1180px) {
  .tool-form-card {
    grid-template-columns: 1fr;
  }

  .tools-info-box {
    grid-template-columns: 70px 1fr;
    padding-right: 28px;
  }

  .tools-info-visual {
    display: none;
  }
}

@media (max-width: 900px) {
  .tools-hero-grid {
    grid-template-columns: 1fr;
  }

  .tools-hero-visual {
    min-height: 220px;
  }

  .tools-hero-visual img {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 640px);
    margin-inline: auto;
  }

  .tools-tabs {
    grid-template-columns: 1fr;
  }

  .tool-tab {
    border-right: 0;
    border-bottom: 1px solid rgba(0, 60, 31, .10);
  }

  .tool-tab:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 720px) {
  .tools-hero {
    padding-top: 126px;
  }

  .tool-form-card {
    padding: 24px;
  }

  .tool-form-grid {
    grid-template-columns: 1fr;
  }

  .tool-file {
    grid-column: auto;
  }

  .tool-title-row {
    grid-template-columns: 48px 1fr;
    gap: 14px;
  }

  .tool-title-icon {
    width: 48px;
    height: 48px;
  }

  .tools-info-box {
    grid-template-columns: 1fr;
    padding: 26px;
  }

  .tools-info-icon {
    margin-left: 0;
  }
}
/* Correção global: header fixo não sobrepor o hero */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 10px 0;
  min-height: 94px;
  background: rgba(247, 243, 233, .96);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 30px rgba(0, 44, 22, .08);
}

.header-inner {
  min-height: 74px;
}

.brand img {
  width: auto;
  max-width: 250px;
  height: 72px;
  max-height: 72px;
  object-fit: contain;
}

/* Compensação do header fixo nos heros das páginas */
.hero-home,
.about-hero,
.products-hero,
.differentials-hero,
.jobs-hero,
.contact-hero,
.tools-hero {
  padding-top: 150px;
}

/* Página ferramentas especificamente estava encostando no header */
.tools-hero {
  min-height: 470px;
}

/* Ajuste responsivo */
@media (max-width: 1180px) {
  .brand img {
    max-width: 220px;
    height: 66px;
    max-height: 66px;
  }

  .site-header {
    min-height: 88px;
  }

  .header-inner {
    min-height: 68px;
  }

  .hero-home,
  .about-hero,
  .products-hero,
  .differentials-hero,
  .jobs-hero,
  .contact-hero,
  .tools-hero {
    padding-top: 142px;
  }
}

@media (max-width: 900px) {
  .site-header {
    min-height: 82px;
    padding: 8px 0;
  }

  .header-inner {
    min-height: 66px;
  }

  .brand img {
    max-width: 190px;
    height: 60px;
    max-height: 60px;
  }

  .main-nav {
    top: 92px;
  }

  .hero-home,
  .about-hero,
  .products-hero,
  .differentials-hero,
  .jobs-hero,
  .contact-hero,
  .tools-hero {
    padding-top: 122px;
  }
}

@media (max-width: 620px) {
  .brand img {
    max-width: 168px;
    height: 54px;
    max-height: 54px;
  }

  .hero-home,
  .about-hero,
  .products-hero,
  .differentials-hero,
  .jobs-hero,
  .contact-hero,
  .tools-hero {
    padding-top: 116px;
  }
}
/* Ferramentas - seleção de tipo de caixa */
.tool-radio-group {
  grid-column: span 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  border: 0;
}

.tool-radio-group legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  color: var(--green-950);
  font-size: 14px;
  line-height: 1.25;
  font-weight: 850;
}

.tool-radio-option {
  position: relative;
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 74px;
  padding: 16px;
  border: 1px solid rgba(0, 60, 31, .15);
  border-radius: 12px;
  background: rgba(255, 255, 255, .72);
  cursor: pointer;
  transition: border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.tool-radio-option:hover {
  border-color: rgba(216, 138, 37, .40);
  background: var(--white);
}

.tool-radio-option input {
  width: 18px;
  height: 18px;
  min-height: auto;
  padding: 0;
  accent-color: var(--green-700);
}

.tool-radio-option strong {
  display: block;
  color: var(--green-900);
  font-size: 14px;
  line-height: 1.25;
  font-weight: 900;
}

.tool-radio-option small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
}

.tool-radio-option:has(input:checked) {
  border-color: rgba(0, 60, 31, .38);
  background: rgba(73, 170, 69, .08);
  box-shadow: 0 0 0 4px rgba(73, 170, 69, .08);
}

@media (max-width: 720px) {
  .tool-radio-group {
    grid-column: auto;
    grid-template-columns: 1fr;
  }
}
/* Ferramentas - switch de unidade da NF */
.tool-unit-field {
  display: grid;
  gap: 12px;
}

.tool-unit-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}

.tool-unit-switch legend {
  width: 100%;
  margin-bottom: 2px;
  color: var(--green-950);
  font-size: 14px;
  line-height: 1.25;
  font-weight: 850;
}

.tool-unit-switch label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(0, 60, 31, .15);
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  color: var(--green-900);
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
  transition: background .22s ease, border-color .22s ease, color .22s ease, box-shadow .22s ease;
}

.tool-unit-switch input {
  width: 15px;
  height: 15px;
  min-height: auto;
  padding: 0;
  accent-color: var(--green-700);
}

.tool-unit-switch label:has(input:checked) {
  background: rgba(73, 170, 69, .10);
  border-color: rgba(0, 60, 31, .34);
  box-shadow: 0 0 0 4px rgba(73, 170, 69, .07);
}

.tool-field-help {
  display: block;
  margin-top: -2px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}
/* Ferramentas - ajuste visual do seguro de carga */
.tool-panel[data-tool-panel="seguro"] .tool-form-grid {
  grid-template-columns: repeat(2, minmax(260px, 380px));
  justify-content: start;
  align-items: start;
}

.tool-panel[data-tool-panel="seguro"] .tool-form input {
  max-width: 380px;
}

.tool-capacity-field {
  display: grid;
  gap: 12px;
}

.tool-truck-switch {
  margin-top: 2px;
}

.tool-truck-switch legend {
  margin-bottom: 4px;
}

.tool-capacity-required input {
  border-color: rgba(185, 71, 22, .55) !important;
  box-shadow: 0 0 0 4px rgba(185, 71, 22, .10) !important;
}

@media (max-width: 720px) {
  .tool-panel[data-tool-panel="seguro"] .tool-form-grid {
    grid-template-columns: 1fr;
  }

  .tool-panel[data-tool-panel="seguro"] .tool-form input {
    max-width: 100%;
  }
}

/* Ferramentas - ações de cálculo */
.tool-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.tool-clear-btn {
  height: 52px;
  padding: 0 28px;
  border-radius: 16px;
  border: 1px solid #d7dfd9;
  background: #f3f6f3;
  color: #164b31;
  font-weight: 900;
  font-size: 16px;
  cursor: pointer;
  transition: .2s ease;
}

.tool-clear-btn:hover {
  background: #e7eee9;
}
/* ==========================================================
   TARIFAS BANCÁRIAS - NOVO DASHBOARD
   ========================================================== */


.page-tarifas {
    background: var(--cream);
}


.tarifas-page {

    padding-top: 130px;
    padding-bottom: 80px;

}



/* HERO */

.tarifas-hero {

    margin-bottom:45px;

}


.tarifas-hero h1 {

    margin:0;
    font-size:46px;
    font-weight:950;
    color:var(--green-900);
    letter-spacing:-0.04em;

}


.tarifas-hero p:not(.eyebrow){

    max-width:700px;
    color:var(--muted);
    font-size:18px;
    line-height:1.6;

}





/* BOX PRINCIPAL */


.tarifas-box {

    background:#fff;
    border-radius:30px;
    padding:35px;
    margin-bottom:35px;
    border:1px solid rgba(0,60,31,.08);
    box-shadow:0 20px 50px rgba(0,44,22,.08);

}



.tarifas-section-title {

    margin-bottom:30px;

}



.tarifas-section-title h2 {

    margin:0;
    color:var(--green-900);
    font-size:28px;
    font-weight:950;

}



.tarifas-section-title p {

    color:var(--muted);

}






/* EMPRESAS */


.tarifas-empresas-grid {

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;

}



.empresa-tarifa-card {


    background:#fafcf9;
    border:1px solid #e1e9e3;
    border-radius:24px;
    padding:24px;
    transition:.25s;


}


.empresa-tarifa-card:hover {

    transform:translateY(-4px);
    box-shadow:0 18px 40px rgba(0,44,22,.10);

}




.empresa-tarifa-card header {

    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:22px;

}



.empresa-tarifa-card h3 {

    margin:0;
    color:var(--green-900);
    font-size:20px;
    font-weight:950;

}



.empresa-tarifa-card header span {


    background:#eaf4ed;
    color:var(--green-700);
    padding:6px 12px;
    border-radius:50px;
    font-size:12px;
    font-weight:900;


}






/* UPLOAD */


.upload-area {


    height:150px;
    border:2px dashed #b9cdbd;
    border-radius:22px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:8px;
    cursor:pointer;
    background:#fff;
    transition:.25s;

}



.upload-area:hover {

    border-color:var(--green-700);
    background:#f5faf6;

}



.upload-icon {

    font-size:38px;

}



.upload-area strong {

    color:var(--green-900);
    font-weight:900;

}



.upload-area small {

    color:var(--muted);
    text-align:center;

}







/* COMPETENCIA */


.empresa-tarifa-card > label:not(.upload-area) {


    display:block;
    margin-top:18px;
    margin-bottom:8px;
    font-size:14px;
    font-weight:850;
    color:var(--text);


}



.tarifa-competencia {


    width:100%;
    height:45px;
    border-radius:14px;
    border:1px solid #dce5df;
    padding:0 12px;
    font-weight:800;

}





/* STATUS */


.upload-status {


    margin-top:16px;
    padding:12px;
    border-radius:14px;
    background:#f0f5f1;
    color:var(--muted);
    text-align:center;
    font-weight:800;
    font-size:13px;


}







/* RESULTADOS */


.resultados-grid {


    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;


}




.resultado-card {


    background:#fff;
    border-radius:25px;
    padding:28px;
    border:1px solid #e1e8e3;
    box-shadow:0 15px 40px rgba(0,44,22,.07);


}




.resultado-card header {


    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;


}




.resultado-card h3 {


    margin:0;
    color:var(--green-900);
    font-size:24px;


}




.resultado-card header span {


    font-size:12px;
    color:var(--muted);
    font-weight:800;


}





.resultado-card h4 {


    margin:25px 0 12px;
    color:var(--green-900);
    font-size:17px;


}





/* TABELAS */


.resultado-card table {


    width:100%;
    border-collapse:collapse;
    margin-bottom:20px;


}



.resultado-card th {


    background:#f2f7f3;
    padding:12px;
    text-align:left;
    font-size:13px;
    color:var(--green-900);


}



.resultado-card td {


    padding:12px;
    border-bottom:1px solid #edf1ed;
    font-size:14px;


}



.resultado-card th:last-child,
.resultado-card td:last-child {

    text-align:right;

}





/* TOTAL */


.resultado-total {


    display:flex;
    justify-content:space-between;
    align-items:center;
    background:linear-gradient(
        135deg,
        var(--green-900),
        var(--green-700)
    );
    color:white;
    padding:18px 20px;
    border-radius:18px;
    font-weight:900;


}



.resultado-total strong {


    font-size:24px;


}






/* CORES EMPRESAS */


.empresa-tarifa-card.agua {

    border-top:5px solid #0b8f48;

}


.empresa-tarifa-card.frutas {

    border-top:5px solid #f18b20;

}


.empresa-tarifa-card.delu {

    border-top:5px solid #126233;

}


.empresa-tarifa-card.prates {

    border-top:5px solid #777;

}





/* RESPONSIVO */


@media(max-width:1200px){


    .tarifas-empresas-grid {

        grid-template-columns:repeat(2,1fr);

    }


}



@media(max-width:700px){


    .tarifas-empresas-grid,
    .resultados-grid {

        grid-template-columns:1fr;

    }


    .tarifas-box {

        padding:20px;

    }


}
/* ==========================================================
   REDESIGN 2026 — HOME, PRODUTOS, MARCAS E RODAPÉ
   ========================================================== */

/* Hero da home: banner aprovado no desktop */
.hero-home-redesign {
  min-height: 0;
  padding: 94px 0 0 !important;
  overflow: hidden;
  background: #f8f4e9;
}

.hero-home-redesign::after {
  display: none;
}

.hero-banner-desktop {
  position: relative;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  background: #f8f4e9;
}

.hero-banner-image {
  width: 100%;
  height: auto;
  display: block;
}

.hero-hotspot {
  position: absolute;
  z-index: 4;
  top: 64.1%;
  height: 6.5%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, .9vw, 16px);
  padding: 0 clamp(12px, 1.25vw, 24px);
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: clamp(11px, 1.02vw, 17px);
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.hero-hotspot-brands {
  left: 7.65%;
  width: 16.45%;
  background: #003c20;
  color: #fff;
  border-color: rgba(255,255,255,.08);
  box-shadow: 0 13px 28px rgba(0, 44, 22, .22);
}

.hero-hotspot-products {
  left: 25.05%;
  width: 13.2%;
  background: #fff;
  color: #df8614;
  border-color: rgba(0,60,31,.04);
  box-shadow: 0 13px 28px rgba(0, 44, 22, .10);
}

.hero-hotspot-arrow {
  flex: 0 0 auto;
  font-size: 1.22em;
  line-height: 1;
  transition: transform .2s ease;
}

.hero-hotspot:hover {
  transform: translateY(-3px);
}

.hero-hotspot-brands:hover {
  background: #00522c;
  color: #fff;
  box-shadow: 0 17px 34px rgba(0, 44, 22, .28);
}

.hero-hotspot-products:hover {
  background: #fffaf1;
  color: #c96f00;
  border-color: rgba(223,134,20,.18);
  box-shadow: 0 17px 34px rgba(0, 44, 22, .14);
}

.hero-hotspot:hover .hero-hotspot-arrow {
  transform: translateX(4px);
}

.hero-hotspot:focus-visible {
  outline: 3px solid #f0a12c;
  outline-offset: 4px;
}

.hero-banner-mobile {
  display: none;
}

/* Títulos de seção */
.section-heading-centered {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading-centered h2 {
  margin: 0;
  color: var(--green-900);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.section-heading-centered > p:last-child {
  max-width: 650px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

/* Cards das marcas */
.brands-section-redesign {
  position: relative;
  padding: 72px 0 80px;
  background:
    radial-gradient(circle at 8% 12%, rgba(240, 161, 44, .10), transparent 25%),
    radial-gradient(circle at 92% 80%, rgba(73, 170, 69, .10), transparent 25%),
    linear-gradient(180deg, #fbf8ef, #f4f0e5);
}

.brand-cards-redesign {
  gap: 26px;
  margin-top: 0;
}

.brand-cards-redesign .brand-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  min-height: 410px;
  overflow: hidden;
  border: 1px solid rgba(0, 60, 31, .08);
  border-radius: 24px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 22px 56px rgba(0,44,22,.09);
}

.brand-cards-redesign .brand-card::after {
  content: "";
  position: absolute;
  inset: auto -45px -55px auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,161,44,.18), rgba(240,161,44,0) 70%);
  opacity: 1;
}

.brand-logo-panel {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #fff;
  border-bottom: 1px solid rgba(0,60,31,.08);
}

.brand-logo-panel::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(0,44,22,.06));
  pointer-events: none;
}

.brand-logo-panel img {
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 20px 24px;
  object-fit: contain;
  object-position: center;
  background: #fff;
  transition: transform .35s ease, filter .35s ease;
}

.brand-card-agua .brand-logo-panel img {
  padding: 24px 22px;
}

.brand-card-delu .brand-logo-panel img {
  padding: 0;
  object-fit: cover;
  object-position: center 51%;
}

.brand-card-frutas-horta .brand-logo-panel img {
  padding: 22px 24px;
}

.brand-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 25px 26px 24px;
}

.brand-card-tag {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 13px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(73,170,69,.10);
  color: var(--green-800);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.brand-card-content p {
  margin: 0 0 22px;
  color: #34443a;
  font-size: 15px;
  line-height: 1.65;
}

.brand-card-group {
  margin-top: auto;
  color: var(--green-800);
  font-size: 12px;
  font-weight: 850;
}

.brand-cards-redesign .brand-card:hover,
.brand-cards-redesign .brand-card:focus-within {
  transform: translateY(-8px);
  border-color: rgba(216,138,37,.24);
  box-shadow: 0 30px 70px rgba(0,44,22,.14);
}

.brand-cards-redesign .brand-card:hover .brand-logo-panel img {
  filter: saturate(1.06) contrast(1.03);
}

.brand-cards-redesign .brand-card-agua:hover .brand-logo-panel img,
.brand-cards-redesign .brand-card-frutas-horta:hover .brand-logo-panel img {
  transform: scale(1.025);
}

.brand-cards-redesign .brand-card-delu:hover .brand-logo-panel img {
  transform: scale(1.035);
}

/* Produtos reais na home */
.products-preview-redesign {
  padding: 72px 0 66px;
  background:
    radial-gradient(circle at 93% 18%, rgba(240,161,44,.16), transparent 26%),
    radial-gradient(circle at 75% 100%, rgba(73,170,69,.16), transparent 35%),
    linear-gradient(135deg, #002b17, #004324 58%, #00341b);
}

.products-preview-redesign .products-grid {
  align-items: center;
}

.products-intro {
  max-width: 330px;
  margin: -8px 0 26px;
  color: rgba(255,255,255,.70);
  font-size: 14px;
  line-height: 1.65;
}

.products-preview-redesign .product-list {
  gap: 18px;
}

.products-preview-redesign .product-card {
  position: relative;
  flex-basis: clamp(180px, 17vw, 220px);
  min-height: 230px;
  padding: 22px 16px 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 22px;
  background: linear-gradient(180deg, #fffdf7, #f1ecdf);
  box-shadow: 0 18px 36px rgba(0,20,10,.22);
  transition: transform .25s ease, box-shadow .25s ease;
}

.products-preview-redesign .product-card::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  width: 150px;
  height: 150px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,161,44,.12), rgba(73,170,69,.04) 62%, transparent 64%);
}

.products-preview-redesign .product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 52px rgba(0,20,10,.30);
}

.products-preview-redesign .product-card img {
  position: relative;
  z-index: 2;
  width: 176px;
  height: 158px;
  object-fit: contain;
  filter: drop-shadow(0 14px 14px rgba(0,44,22,.15));
}

.products-preview-redesign .product-card h3 {
  position: relative;
  z-index: 2;
  margin-top: 8px;
  color: var(--green-900);
  font-size: 16px;
}

/* CTA final da home */
.home-contact-cta {
  padding: 58px 0 70px;
  background: var(--cream-2);
}

.home-contact-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
  padding: 44px 48px;
  overflow: hidden;
  border: 1px solid rgba(0,60,31,.09);
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 10%, rgba(240,161,44,.16), transparent 27%),
    linear-gradient(135deg, #fffdf8, #f0f2e8);
  box-shadow: 0 24px 60px rgba(0,44,22,.09);
}

.home-contact-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -95px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  border: 38px solid rgba(73,170,69,.07);
}

.home-contact-card h2 {
  position: relative;
  z-index: 2;
  max-width: 650px;
  margin: 0;
  color: var(--green-900);
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.home-contact-card > div > p:last-child {
  max-width: 650px;
  margin: 16px 0 0;
  color: var(--muted);
}

.home-contact-actions {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
  min-width: 245px;
}

/* Página de produtos com imagens reais */
.products-hero-redesign {
  min-height: 590px;
  background:
    radial-gradient(circle at 78% 30%, rgba(240,161,44,.20), transparent 30%),
    radial-gradient(circle at 95% 80%, rgba(73,170,69,.13), transparent 28%),
    linear-gradient(135deg, #faf7ee, #eef0e6);
}

.products-real-collage {
  position: relative;
  min-height: 430px;
  isolation: isolate;
}

.products-collage-orbit {
  position: absolute;
  inset: 6% 5% 2% 11%;
  border-radius: 48% 52% 48% 52%;
  background: radial-gradient(circle at 50% 45%, rgba(255,255,255,.98), rgba(238,232,211,.82) 58%, rgba(240,161,44,.11) 60%, transparent 74%);
  border: 1px solid rgba(0,60,31,.07);
  box-shadow: 0 30px 70px rgba(0,44,22,.10);
  z-index: -1;
}

.product-fruit {
  position: absolute;
  width: 260px;
  max-width: none;
  filter: drop-shadow(0 20px 18px rgba(0,44,22,.17));
}

.product-fruit-melao {
  left: 2%;
  top: 6%;
  width: 270px;
  transform: rotate(-5deg);
}

.product-fruit-coco {
  left: 34%;
  top: -2%;
  width: 260px;
  z-index: 2;
}

.product-fruit-mamao {
  right: -2%;
  top: 16%;
  width: 280px;
  transform: rotate(7deg);
  z-index: 1;
}

.product-fruit-laranja {
  left: 19%;
  bottom: -3%;
  width: 240px;
  z-index: 4;
}

.product-fruit-abacate {
  right: 13%;
  bottom: -8%;
  width: 250px;
  z-index: 5;
}

.catalog-grid-real .catalog-card {
  grid-template-columns: 1fr;
  gap: 0;
  min-height: 490px;
  padding: 0;
  align-items: stretch;
}

.catalog-grid-real .catalog-image {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.96), rgba(240,236,220,.80) 65%, rgba(73,170,69,.08) 66%);
  border-bottom: 1px solid rgba(0,60,31,.07);
}

.catalog-grid-real .catalog-image::after {
  content: "";
  position: absolute;
  inset: auto 18% 18px;
  height: 16px;
  border-radius: 50%;
  background: rgba(0,44,22,.12);
  filter: blur(11px);
}

.catalog-grid-real .catalog-image img {
  position: relative;
  z-index: 2;
  width: 230px;
  height: 215px;
  object-fit: contain;
  filter: drop-shadow(0 17px 14px rgba(0,44,22,.13));
}

.catalog-grid-real .catalog-info {
  padding: 26px 28px 28px;
}

/* Novo rodapé */
.site-footer-redesign {
  position: relative;
  padding: 68px 0 20px;
  overflow: hidden;
  background:
    radial-gradient(circle at 6% 8%, rgba(73,170,69,.22), transparent 28%),
    radial-gradient(circle at 96% 90%, rgba(240,161,44,.12), transparent 25%),
    linear-gradient(135deg, #001f10, #00391e 55%, #002814);
}

.site-footer-redesign::before {
  content: "";
  position: absolute;
  right: -110px;
  top: -130px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 0 0 36px rgba(255,255,255,.025), 0 0 0 72px rgba(255,255,255,.018);
}

.footer-main {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.45fr .8fr 1.05fr 1.35fr;
  gap: 42px;
  align-items: start;
  padding-bottom: 42px;
}

.footer-brand-panel .footer-logo img {
  width: 245px;
  max-width: 100%;
}

.footer-brand-panel > p {
  max-width: 330px;
  margin: 20px 0 22px;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.72;
}

.footer-contact-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.footer-contact-chips a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 13px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.86);
  font-size: 12px;
  font-weight: 750;
}

.site-footer-redesign .footer-column h2 {
  margin-bottom: 18px;
  font-size: 15px;
  letter-spacing: .02em;
}

.site-footer-redesign .footer-column li {
  margin: 10px 0;
  color: rgba(255,255,255,.70);
  font-size: 13px;
  line-height: 1.45;
}

.footer-brands-column li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-brand-dot {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  margin-top: 5px;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255,255,255,.05);
}

.footer-brand-dot-agua { background: #f0a12c; }
.footer-brand-dot-delu { background: #63c244; }
.footer-brand-dot-frutas { background: #ff7417; }

.footer-tools-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: #f4b64a;
  font-size: 12px;
  font-weight: 850;
}

.footer-contact-card {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.035));
  box-shadow: 0 20px 50px rgba(0,0,0,.15);
}

.footer-contact-kicker {
  margin: 0 0 9px;
  color: #f4b64a;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.footer-contact-card h2 {
  margin: 0;
  color: #fff;
  font-size: 21px;
  line-height: 1.2;
}

.footer-contact-card > p:not(.footer-contact-kicker) {
  margin: 14px 0 20px;
  color: rgba(255,255,255,.68);
  font-size: 13px;
  line-height: 1.6;
}

.btn-footer-whatsapp {
  width: 100%;
  min-height: 44px;
  background: #fff;
  color: var(--green-900);
  box-shadow: none;
}

.btn-footer-whatsapp:hover,
.btn-footer-whatsapp:focus-visible {
  background: #f7f3e9;
  color: var(--green-900);
}

.footer-location-link {
  display: block;
  margin-top: 14px;
  text-align: center;
  color: rgba(255,255,255,.75);
  font-size: 12px;
  font-weight: 750;
}

.footer-utility {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.55);
  font-size: 12px;
}

.footer-utility span {
  color: rgba(255,255,255,.80);
  font-weight: 850;
}

.footer-utility a {
  color: rgba(255,255,255,.64);
}

.site-footer-redesign .footer-bottom {
  position: relative;
  z-index: 2;
  padding-top: 18px;
}

/* Responsividade do redesign */
@media (max-width: 1180px) {
  .hero-home-redesign {
    padding-top: 88px !important;
  }

  .footer-main {
    grid-template-columns: 1.25fr .8fr 1fr;
  }

  .footer-contact-card {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px 28px;
    align-items: center;
  }

  .footer-contact-card .footer-contact-kicker,
  .footer-contact-card h2,
  .footer-contact-card > p {
    grid-column: 1;
  }

  .footer-contact-card .btn-footer-whatsapp,
  .footer-contact-card .footer-location-link {
    grid-column: 2;
    min-width: 240px;
  }
}

@media (max-width: 900px) {
  .hero-home-redesign {
    padding: 102px 0 0 !important;
    background:
      radial-gradient(circle at 90% 8%, rgba(240,161,44,.16), transparent 30%),
      linear-gradient(180deg, #faf7ee, #f2eee2);
  }

  .hero-banner-desktop {
    display: none;
  }

  .hero-banner-mobile {
    display: block;
    padding-top: 34px;
    padding-bottom: 46px;
  }

  .hero-mobile-copy {
    position: relative;
    z-index: 4;
  }

  .hero-mobile-title {
    max-width: 690px;
    margin: 0;
    color: var(--green-900);
    font-size: clamp(42px, 8vw, 68px);
    line-height: 1.00;
    letter-spacing: -.055em;
  }

  .hero-mobile-title span {
    color: var(--orange);
  }

  .hero-mobile-copy > p:not(.eyebrow) {
    max-width: 580px;
    margin: 22px 0 26px;
    color: #26352c;
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-mobile-fruits {
    position: relative;
    min-height: 390px;
    margin: 20px 0 8px;
  }

  .hero-mobile-fruits::before {
    content: "";
    position: absolute;
    inset: 8% 4% 4%;
    border-radius: 48% 52% 45% 55%;
    background: radial-gradient(circle at 50% 45%, #fff, #ece5d4 68%, transparent 69%);
  }

  .hero-mobile-fruit {
    position: absolute;
    width: 240px;
    filter: drop-shadow(0 18px 16px rgba(0,44,22,.16));
  }

  .hero-mobile-fruit.fruit-coco {
    top: 0;
    left: 30%;
    z-index: 2;
  }

  .hero-mobile-fruit.fruit-laranja {
    left: 4%;
    bottom: 1%;
    width: 215px;
    z-index: 3;
  }

  .hero-mobile-fruit.fruit-manga {
    right: 1%;
    bottom: -2%;
    width: 225px;
    z-index: 4;
  }

  .hero-mobile-fruit.fruit-abacate {
    right: 24%;
    bottom: -6%;
    width: 210px;
    z-index: 5;
  }

  .hero-mobile-quality {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    border: 1px solid rgba(0,60,31,.10);
    border-radius: 22px;
    background: rgba(255,255,255,.78);
    box-shadow: 0 18px 45px rgba(0,44,22,.08);
  }

  .hero-mobile-quality article {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    align-items: center;
    min-height: 105px;
    padding: 17px;
    border-right: 1px solid rgba(0,60,31,.09);
  }

  .hero-mobile-quality article:last-child {
    border-right: 0;
  }

  .hero-mobile-quality img {
    width: 42px;
    height: 42px;
  }

  .hero-mobile-quality strong,
  .hero-mobile-quality span {
    display: block;
  }

  .hero-mobile-quality strong {
    color: var(--green-900);
    font-size: 13px;
    line-height: 1.25;
  }

  .hero-mobile-quality span {
    margin-top: 3px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.35;
  }

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

  .brand-cards-redesign .brand-card:last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - 13px);
    width: 100%;
    justify-self: center;
  }

  .home-contact-card {
    grid-template-columns: 1fr;
    padding: 38px 34px;
  }

  .home-contact-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-width: 0;
  }

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

  .products-real-collage {
    width: min(100%, 680px);
    min-height: 420px;
    margin-inline: auto;
  }

  .footer-main {
    grid-template-columns: 1.2fr 1fr;
  }

  .footer-contact-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .hero-home-redesign {
    padding-top: 98px !important;
  }

  .hero-banner-mobile {
    padding-top: 24px;
    padding-bottom: 34px;
  }

  .hero-mobile-title {
    font-size: clamp(38px, 12vw, 54px);
  }

  .hero-mobile-copy .hero-actions,
  .hero-mobile-copy .btn {
    width: 100%;
  }

  .hero-mobile-fruits {
    min-height: 310px;
    margin-top: 12px;
  }

  .hero-mobile-fruit {
    width: 190px;
  }

  .hero-mobile-fruit.fruit-coco {
    left: 25%;
  }

  .hero-mobile-fruit.fruit-laranja {
    width: 170px;
  }

  .hero-mobile-fruit.fruit-manga {
    width: 175px;
  }

  .hero-mobile-fruit.fruit-abacate {
    right: 21%;
    width: 160px;
  }

  .hero-mobile-quality {
    grid-template-columns: 1fr;
  }

  .hero-mobile-quality article {
    border-right: 0;
    border-bottom: 1px solid rgba(0,60,31,.09);
  }

  .hero-mobile-quality article:last-child {
    border-bottom: 0;
  }

  .brands-section-redesign {
    padding: 56px 0 62px;
  }

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

  .brand-cards-redesign .brand-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .brand-logo-panel {
    height: 200px;
  }

  .products-preview-redesign {
    padding: 54px 0 52px;
  }

  .products-preview-redesign .product-card {
    flex-basis: 72vw;
  }

  .home-contact-cta {
    padding: 42px 0 54px;
  }

  .home-contact-card {
    padding: 30px 24px;
  }

  .home-contact-actions {
    grid-template-columns: 1fr;
  }

  .products-real-collage {
    min-height: 330px;
  }

  .product-fruit-melao { width: 190px; }
  .product-fruit-coco { width: 185px; left: 32%; }
  .product-fruit-mamao { width: 195px; }
  .product-fruit-laranja { width: 170px; }
  .product-fruit-abacate { width: 175px; }

  .catalog-grid-real .catalog-card {
    min-height: 0;
  }

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

  .footer-contact-card {
    display: block;
  }

  .footer-contact-card .btn-footer-whatsapp,
  .footer-contact-card .footer-location-link {
    min-width: 0;
  }

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


/* Correção de publicação/cache — versão 20260723-2 */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

@media (min-width: 901px) {
  .hero-home-redesign .hero-banner-desktop {
    display: block !important;
    width: 100vw !important;
    max-width: none !important;
    margin: 0 !important;
  }

  .hero-home-redesign .hero-banner-mobile {
    display: none !important;
  }
}

.brand-cards-redesign {
  display: grid !important;
}

.brand-cards-redesign > .brand-card {
  display: flex !important;
  flex-direction: column !important;
}

.site-footer-redesign .footer-main {
  display: grid !important;
}


/* Ajuste manual 01 — botões do hero e hover do WhatsApp no rodapé */
.site-footer-redesign a.btn-footer-whatsapp {
  background: #fff;
  color: #003c1f;
  border: 1px solid rgba(255,255,255,.78);
  text-decoration: none;
}

.site-footer-redesign a.btn-footer-whatsapp:hover,
.site-footer-redesign a.btn-footer-whatsapp:focus-visible {
  background: #f4b64a;
  color: #003c1f;
  border-color: #f4b64a;
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
}

.site-footer-redesign a.btn-footer-whatsapp span {
  color: currentColor;
}


/* =========================================================
   AJUSTE MANUAL 02 — PÁGINA SOBRE
   ========================================================= */
.page-sobre .about-hero {
  min-height: 660px;
  padding-bottom: 64px;
}

.page-sobre .about-hero-grid {
  grid-template-columns: minmax(390px, 520px) minmax(0, 1fr);
  gap: clamp(42px, 5vw, 78px);
}

.page-sobre .about-hero-content p:not(.section-kicker) {
  max-width: 520px;
}

.page-sobre .about-hero-photo {
  position: relative;
  min-height: 470px;
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(216, 138, 37, .42);
  border-radius: 34px 34px 34px 88px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .94), rgba(242, 230, 197, .82));
  box-shadow:
    0 30px 80px rgba(0, 44, 22, .17),
    0 0 0 8px rgba(240, 161, 44, .09);
  overflow: visible;
}

.page-sobre .about-hero-photo::before,
.page-sobre .about-hero-photo::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 2;
}

.page-sobre .about-hero-photo::before {
  inset: -14px 28px 28px -14px;
  border: 2px solid rgba(0, 78, 43, .16);
  border-radius: 42px 42px 42px 96px;
}

.page-sobre .about-hero-photo::after {
  width: 92px;
  height: 92px;
  right: -25px;
  bottom: -25px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 161, 44, .25), rgba(240, 161, 44, 0) 68%);
}

.page-sobre .about-hero-photo img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 450px;
  object-fit: cover;
  object-position: center;
  border-radius: 25px 25px 25px 78px;
}

.page-sobre .about-brand-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.page-sobre .about-brand-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 60, 31, .10);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 44, 22, .08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.page-sobre .about-brand-card::after {
  content: "";
  position: absolute;
  inset: auto 14px 0;
  height: 3px;
  border-radius: 99px 99px 0 0;
  background: linear-gradient(90deg, var(--green-700), var(--orange));
  opacity: .75;
}

.page-sobre .about-brand-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  transition: transform .3s ease;
}

.page-sobre .about-brand-card:hover {
  transform: translateY(-4px);
  border-color: rgba(216, 138, 37, .28);
  box-shadow: 0 18px 38px rgba(0, 44, 22, .13);
}

.page-sobre .about-brand-card:hover img {
  transform: scale(1.025);
}

.page-sobre .about-process-showcase {
  padding-top: 56px;
  padding-bottom: 78px;
  background:
    radial-gradient(circle at 10% 12%, rgba(240, 161, 44, .08), transparent 24%),
    linear-gradient(180deg, #f8f4ea 0%, #f2efe4 100%);
}

.page-sobre .about-process-showcase .structure-grid {
  grid-template-columns: minmax(300px, 360px) minmax(0, 1fr);
  align-items: start;
}

.page-sobre .process-photo-cards {
  align-items: stretch;
}

.page-sobre .process-photo-card {
  display: flex;
  flex-direction: column;
  background: #003c1f;
  border: 1px solid rgba(255, 255, 255, .08);
  transition: transform .28s ease, box-shadow .28s ease;
}

.page-sobre .process-photo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 58px rgba(0, 44, 22, .20);
}

.page-sobre .process-photo-card .structure-photo {
  min-height: 220px;
  background: #dfe5d8;
  overflow: hidden;
}

.page-sobre .process-photo-card .structure-photo img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  transition: transform .45s ease;
}

.page-sobre .process-photo-card:hover .structure-photo img {
  transform: scale(1.045);
}

.page-sobre .process-photo-card .structure-info {
  flex: 1;
  min-height: 172px;
  padding: 22px;
}

.page-sobre .process-card-label {
  display: inline-block;
  margin-bottom: 10px;
  color: #f6aa2f;
  font-size: 11px;
  line-height: 1;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 900;
}

.page-sobre .process-photo-card .structure-info h3 {
  font-size: 18px;
}

@media (max-width: 1120px) {
  .page-sobre .about-hero-grid,
  .page-sobre .about-process-showcase .structure-grid {
    grid-template-columns: 1fr;
  }

  .page-sobre .about-hero-photo {
    min-height: 420px;
  }

  .page-sobre .about-hero-photo img {
    min-height: 400px;
  }

  .page-sobre .about-brand-cards {
    max-width: 720px;
  }
}

@media (max-width: 760px) {
  .page-sobre .about-hero {
    padding-bottom: 46px;
  }

  .page-sobre .about-brand-cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .page-sobre .about-brand-card img {
    aspect-ratio: 16 / 7;
    object-fit: cover;
  }

  .page-sobre .about-hero-photo {
    min-height: 300px;
    padding: 7px;
    border-radius: 24px 24px 24px 54px;
  }

  .page-sobre .about-hero-photo::before {
    inset: -9px 16px 18px -9px;
    border-radius: 29px 29px 29px 62px;
  }

  .page-sobre .about-hero-photo img {
    min-height: 286px;
    border-radius: 18px 18px 18px 46px;
  }

  .page-sobre .about-process-showcase {
    padding-top: 42px;
  }

  .page-sobre .process-photo-card .structure-photo,
  .page-sobre .process-photo-card .structure-photo img {
    min-height: 240px;
    height: 240px;
  }
}

/* Ajuste manual 03 — página Trabalhe Conosco */
.page-trabalhe .jobs-hero-photo {
  isolation: isolate;
  position: relative;
  min-height: 410px;
  margin: 0;
  padding: 9px;
  border: 1px solid rgba(216, 138, 37, .48);
  border-radius: 28px 28px 28px 72px;
  background: rgba(255, 255, 255, .76);
  box-shadow:
    0 28px 72px rgba(0, 44, 22, .16),
    0 0 0 8px rgba(240, 161, 44, .09);
  overflow: visible;
}

.page-trabalhe .jobs-hero-photo::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -13px 20px 20px -13px;
  border: 2px solid rgba(240, 161, 44, .42);
  border-radius: 35px 35px 35px 82px;
  pointer-events: none;
  transition: transform .35s ease, border-color .35s ease;
}

.page-trabalhe .jobs-hero-photo::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 9px;
  border-radius: 20px 20px 20px 62px;
  background: linear-gradient(135deg, rgba(0, 60, 31, .02), rgba(0, 60, 31, .14));
  pointer-events: none;
}

.page-trabalhe .jobs-hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 392px;
  object-fit: cover;
  object-position: center;
  border-radius: 20px 20px 20px 62px;
  transition: transform .55s cubic-bezier(.2,.75,.2,1), filter .35s ease;
}

.page-trabalhe .jobs-hero-photo:hover::before {
  transform: translate(5px, -5px);
  border-color: rgba(216, 138, 37, .72);
}

.page-trabalhe .jobs-hero-photo:hover img {
  transform: scale(1.018);
  filter: saturate(1.06) contrast(1.02);
}

.page-trabalhe .benefits-panel {
  padding: 36px;
  border-radius: 24px;
}

.page-trabalhe .benefits-icons {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 34px 0 30px;
}

.page-trabalhe .benefit-item {
  position: relative;
  min-height: 154px;
  padding: 20px 12px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid rgba(0, 60, 31, .09);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(238,247,234,.72));
  box-shadow: 0 12px 28px rgba(0, 44, 22, .055);
  overflow: hidden;
  transition:
    transform .28s cubic-bezier(.2,.75,.2,1),
    box-shadow .28s ease,
    border-color .28s ease,
    background .28s ease;
}

.page-trabalhe .benefit-item::after {
  content: "";
  position: absolute;
  inset: auto -30% -65% -30%;
  height: 95px;
  border-radius: 50%;
  background: rgba(73, 170, 69, .10);
  transition: transform .34s ease, background .34s ease;
}

.page-trabalhe .benefit-item:hover,
.page-trabalhe .benefit-item:focus-within {
  transform: translateY(-7px);
  border-color: rgba(216, 138, 37, .34);
  background: #fff;
  box-shadow: 0 22px 44px rgba(0, 44, 22, .12);
}

.page-trabalhe .benefit-item:hover::after {
  transform: translateY(-13px) scale(1.06);
  background: rgba(240, 161, 44, .13);
}

.page-trabalhe .benefit-icon {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  margin: 0 auto 15px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(73, 170, 69, .16);
  border-radius: 19px;
  background: rgba(73, 170, 69, .11);
  color: var(--green-800);
  box-shadow: inset 0 0 0 5px rgba(255,255,255,.44);
  transition: transform .3s ease, color .3s ease, background .3s ease, border-radius .3s ease;
}

.page-trabalhe .benefit-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-trabalhe .benefit-item:hover .benefit-icon {
  transform: translateY(-2px) rotate(-3deg) scale(1.07);
  border-radius: 50%;
  background: var(--green-900);
  color: #fff;
}

.page-trabalhe .benefits-icons h3 {
  position: relative;
  z-index: 1;
  max-width: 150px;
  color: var(--green-900);
  font-size: 14px;
  line-height: 1.28;
  font-weight: 850;
}

.page-trabalhe .benefits-icons h3 small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: .82em;
  font-weight: 700;
}

.page-trabalhe .benefit-more {
  grid-column: span 2;
  background:
    radial-gradient(circle at 85% 20%, rgba(240,161,44,.20), transparent 36%),
    linear-gradient(135deg, var(--green-950), var(--green-800));
  border-color: rgba(255, 255, 255, .12);
}

.page-trabalhe .benefit-more .benefit-icon {
  background: var(--orange-strong);
  color: var(--green-950);
  border-color: rgba(255,255,255,.25);
}

.page-trabalhe .benefit-more h3,
.page-trabalhe .benefit-more h3 small {
  color: #fff;
}

.page-trabalhe .benefit-more:hover {
  background:
    radial-gradient(circle at 80% 18%, rgba(255,255,255,.18), transparent 34%),
    linear-gradient(135deg, var(--green-800), var(--green-700));
}

.page-trabalhe .benefit-more:hover .benefit-icon {
  background: #fff;
  color: var(--orange);
}

.page-trabalhe .benefits-note {
  transition: transform .28s ease, box-shadow .28s ease, background .28s ease;
}

.page-trabalhe .benefits-note:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  box-shadow: 0 18px 38px rgba(0, 44, 22, .18);
}

.page-trabalhe .culture-values article {
  padding: 16px;
  margin: -16px;
  border-radius: 16px;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

.page-trabalhe .culture-values article:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.72);
  box-shadow: 0 16px 32px rgba(0,44,22,.07);
}

.page-trabalhe .culture-values article:hover > span {
  transform: scale(1.08) rotate(-4deg);
  background: var(--green-900);
  color: #fff;
}

.page-trabalhe .culture-values span {
  transition: transform .25s ease, background .25s ease, color .25s ease;
}

.page-trabalhe .job-card .catalog-link,
.page-trabalhe .open-jobs-heading .btn,
.page-trabalhe .resume-box .btn,
.page-trabalhe .jobs-hero-content .btn {
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease, gap .22s ease;
}

.page-trabalhe .job-card .catalog-link:hover,
.page-trabalhe .job-card .catalog-link:focus-visible {
  gap: 12px;
  color: var(--orange);
}

.page-trabalhe .jobs-hero-content .btn:hover,
.page-trabalhe .open-jobs-heading .btn:hover,
.page-trabalhe .resume-box .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 17px 34px rgba(0, 44, 22, .18);
}

@media (max-width: 1180px) {
  .page-trabalhe .benefits-icons {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .page-trabalhe .jobs-hero-photo {
    min-height: 340px;
    border-radius: 26px 26px 26px 58px;
  }

  .page-trabalhe .jobs-hero-photo img {
    min-height: 322px;
    border-radius: 18px 18px 18px 48px;
  }

  .page-trabalhe .jobs-hero-photo::after {
    border-radius: 18px 18px 18px 48px;
  }

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

  .page-trabalhe .benefit-more {
    grid-column: span 3;
  }
}

@media (max-width: 640px) {
  .page-trabalhe .jobs-hero-photo {
    min-height: 290px;
    padding: 7px;
    border-radius: 22px 22px 22px 48px;
  }

  .page-trabalhe .jobs-hero-photo::before {
    inset: -9px 13px 16px -9px;
    border-radius: 28px 28px 28px 58px;
  }

  .page-trabalhe .jobs-hero-photo::after {
    inset: 7px;
  }

  .page-trabalhe .jobs-hero-photo img {
    min-height: 276px;
    border-radius: 16px 16px 16px 40px;
  }

  .page-trabalhe .benefits-panel {
    padding: 25px 18px 22px;
  }

  .page-trabalhe .benefits-icons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .page-trabalhe .benefit-item {
    min-height: 142px;
    padding: 17px 9px 15px;
  }

  .page-trabalhe .benefit-icon {
    width: 58px;
    height: 58px;
  }

  .page-trabalhe .benefit-more {
    grid-column: span 2;
  }
}

/* =========================================================
   Página inicial — Instagram oficial
   ========================================================= */
.instagram-section {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 118px) 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(240, 161, 44, .16), transparent 25%),
    radial-gradient(circle at 92% 88%, rgba(76, 175, 80, .14), transparent 28%),
    linear-gradient(180deg, #fbf8ef 0%, #f4f0e5 100%);
}

.instagram-section::before,
.instagram-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(0, 76, 44, .08);
  border-radius: 50%;
}

.instagram-section::before {
  width: 310px;
  height: 310px;
  top: -170px;
  right: -70px;
}

.instagram-section::after {
  width: 220px;
  height: 220px;
  bottom: -135px;
  left: -70px;
}

.instagram-section-heading {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

.instagram-section-heading > div {
  max-width: 720px;
}

.instagram-section-heading h2 {
  max-width: 690px;
  margin: 8px 0 13px;
  color: var(--green-950);
  font-size: clamp(33px, 4.2vw, 58px);
  line-height: .98;
  letter-spacing: -.045em;
}

.instagram-section-heading p:last-child {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.instagram-heading-button {
  flex: 0 0 auto;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid rgba(0, 76, 44, .13);
  background: #fff;
  color: var(--green-900);
  box-shadow: 0 14px 34px rgba(0, 44, 22, .09);
  transition: transform .22s ease, background .22s ease, color .22s ease, box-shadow .22s ease;
}

.instagram-heading-button:hover,
.instagram-heading-button:focus-visible {
  transform: translateY(-3px);
  background: var(--green-900);
  color: #fff;
  box-shadow: 0 19px 40px rgba(0, 44, 22, .18);
}

.instagram-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(380px, 1.22fr);
  gap: 28px;
  align-items: stretch;
}

.instagram-profile-card,
.instagram-embed-panel {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

.instagram-profile-card {
  min-height: 570px;
  padding: clamp(28px, 4vw, 46px);
  display: flex;
  flex-direction: column;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255,255,255,.08), transparent 34%),
    linear-gradient(145deg, var(--green-950), #005936 68%, #08744a);
  border: 1px solid rgba(255,255,255,.13);
  box-shadow: 0 28px 58px rgba(0, 44, 22, .19);
}

.instagram-profile-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  pointer-events: none;
}

.instagram-profile-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.instagram-profile-glow-one {
  width: 220px;
  height: 220px;
  right: -90px;
  top: -80px;
  background: rgba(240, 161, 44, .31);
}

.instagram-profile-glow-two {
  width: 260px;
  height: 260px;
  left: -150px;
  bottom: -140px;
  background: rgba(77, 185, 75, .24);
}

.instagram-profile-top,
.instagram-profile-description,
.instagram-profile-topics,
.instagram-follow-button {
  position: relative;
  z-index: 2;
}

.instagram-profile-top {
  display: flex;
  align-items: center;
  gap: 18px;
}

.instagram-avatar-wrap {
  width: 88px;
  height: 88px;
  flex: 0 0 88px;
  display: grid;
  place-items: center;
  padding: 11px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 0 6px rgba(255,255,255,.12),
    0 16px 32px rgba(0,0,0,.18);
}

.instagram-avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.instagram-profile-label {
  display: inline-block;
  margin-bottom: 5px;
  color: #ffbf49;
  font-size: 12px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.instagram-profile-top h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(20px, 2.4vw, 29px);
  line-height: 1.1;
  letter-spacing: -.025em;
  overflow-wrap: anywhere;
}

.instagram-profile-description {
  margin: 38px 0 28px;
  color: rgba(255,255,255,.84);
  font-size: 18px;
  line-height: 1.65;
}

.instagram-profile-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.instagram-profile-topics span {
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.08);
  font-size: 13px;
  font-weight: 750;
  backdrop-filter: blur(8px);
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}

.instagram-profile-topics span:hover {
  transform: translateY(-2px);
  border-color: rgba(255,191,73,.42);
  background: rgba(255,191,73,.12);
}

.instagram-follow-button {
  width: 100%;
  min-height: 58px;
  margin-top: auto;
  padding: 0 21px;
  justify-content: flex-start;
  gap: 12px;
  border: 0;
  color: var(--green-950);
  background: linear-gradient(135deg, #fff, #f8f0df);
  box-shadow: 0 18px 38px rgba(0,0,0,.18);
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease;
}

.instagram-follow-button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.instagram-follow-button > span:last-child {
  margin-left: auto;
  font-size: 20px;
  transition: transform .22s ease;
}

.instagram-follow-button:hover,
.instagram-follow-button:focus-visible {
  transform: translateY(-4px);
  background: linear-gradient(135deg, #ffb82e, #f4d04e);
  box-shadow: 0 23px 44px rgba(0,0,0,.24);
}

.instagram-follow-button:hover > span:last-child {
  transform: translateX(5px);
}

.instagram-embed-panel {
  padding: 22px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(0, 76, 44, .10);
  box-shadow: 0 24px 54px rgba(0, 44, 22, .11);
  backdrop-filter: blur(10px);
}

.instagram-embed-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 4px 6px 18px;
  color: var(--green-950);
}

.instagram-embed-heading > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.instagram-embed-heading strong {
  font-size: 16px;
}

.instagram-embed-heading > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.instagram-live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #43b54b;
  box-shadow: 0 0 0 5px rgba(67,181,75,.12);
}

.instagram-embed-frame {
  min-height: 460px;
  display: grid;
  place-items: start center;
  overflow: hidden;
  padding: 8px;
  border: 1px solid rgba(0, 76, 44, .08);
  border-radius: 21px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(249,247,240,.96));
}

.instagram-embed-frame .instagram-media {
  width: 100% !important;
  max-width: 540px !important;
  min-width: 0 !important;
  margin: 0 auto !important;
  border-radius: 16px !important;
}

.instagram-embed-fallback {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 28px;
  color: var(--green-900);
  text-align: center;
}

.instagram-embed-fallback svg {
  width: 50px;
  height: 50px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.instagram-embed-fallback p {
  margin: 0;
  color: var(--muted);
}

.instagram-embed-fallback a {
  color: var(--green-900);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.instagram-embed-note {
  margin: 14px 6px 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
  text-align: center;
}

@media (max-width: 980px) {
  .instagram-section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .instagram-profile-card {
    min-height: 430px;
  }
}

@media (max-width: 640px) {
  .instagram-section {
    padding: 62px 0;
  }

  .instagram-section-heading {
    margin-bottom: 25px;
  }

  .instagram-section-heading h2 {
    font-size: 36px;
  }

  .instagram-heading-button {
    width: 100%;
  }

  .instagram-profile-card,
  .instagram-embed-panel {
    border-radius: 22px;
  }

  .instagram-profile-card {
    min-height: 420px;
    padding: 27px 22px;
  }

  .instagram-avatar-wrap {
    width: 72px;
    height: 72px;
    flex-basis: 72px;
  }

  .instagram-profile-top {
    gap: 14px;
  }

  .instagram-profile-description {
    margin-top: 29px;
    font-size: 16px;
  }

  .instagram-embed-panel {
    padding: 13px;
  }

  .instagram-embed-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
    padding: 8px 7px 15px;
  }

  .instagram-embed-frame {
    min-height: 410px;
    padding: 0;
  }

  .instagram-embed-note {
    margin-inline: 4px;
  }
}

/* =========================================================
   V7 — identidade do grupo no header + favicon
   ========================================================= */
.site-header .brand-group {
  width: clamp(280px, 25vw, 342px);
  min-width: clamp(280px, 25vw, 342px);
  padding: 7px 12px;
  border: 1px solid rgba(0, 60, 31, .10);
  border-radius: 16px;
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 8px 22px rgba(0, 44, 22, .07);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.site-header .brand-group:hover,
.site-header .brand-group:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(216, 138, 37, .34);
  box-shadow: 0 12px 28px rgba(0, 44, 22, .11);
}

.site-header .brand-group img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  max-height: 54px;
  object-fit: contain;
}

@media (max-width: 1260px) {
  .site-header .brand-group {
    width: 276px;
    min-width: 276px;
    padding-inline: 10px;
  }

  .site-header .brand-group img {
    max-height: 48px;
  }

  .main-nav {
    gap: 14px;
  }
}

@media (max-width: 1120px) {
  .site-header .brand-group {
    width: 300px;
    min-width: 300px;
  }
}

@media (max-width: 900px) {
  .site-header .brand-group {
    width: min(68vw, 286px);
    min-width: 0;
    padding: 6px 9px;
    border-radius: 13px;
  }

  .site-header .brand-group img {
    max-height: 46px;
  }
}

@media (max-width: 620px) {
  .site-header .brand-group {
    width: min(66vw, 226px);
    padding: 5px 8px;
  }

  .site-header .brand-group img {
    max-height: 39px;
  }
}

@media (max-width: 390px) {
  .site-header .brand-group {
    width: 204px;
  }
}

/* =========================================================
   V8 — Modernização da página Contato e Localizações
   ========================================================= */
.contact-page-v8 {
  overflow: clip;
}

.contact-hero-v8 {
  min-height: 620px;
  padding: 148px 0 78px;
  background:
    radial-gradient(circle at 88% 22%, rgba(239, 157, 34, .18), transparent 30%),
    radial-gradient(circle at 4% 85%, rgba(72, 169, 66, .10), transparent 26%),
    linear-gradient(135deg, #fbf8ef 0%, #f4f1e7 55%, #eef2e7 100%);
}

.contact-hero-v8::before,
.contact-hero-v8::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
}

.contact-hero-v8::before {
  width: 340px;
  height: 340px;
  top: -180px;
  right: 8%;
  border: 1px solid rgba(0, 60, 31, .08);
  box-shadow: 0 0 0 38px rgba(0, 60, 31, .018), 0 0 0 76px rgba(0, 60, 31, .012);
}

.contact-hero-v8::after {
  width: 220px;
  height: 220px;
  left: -110px;
  bottom: -110px;
  background: rgba(216, 138, 37, .08);
}

.contact-hero-v8 .contact-hero-grid {
  grid-template-columns: minmax(390px, .82fr) minmax(520px, 1.18fr);
  gap: 70px;
}

.contact-hero-v8 .contact-hero-content h1 {
  max-width: 590px;
  font-size: clamp(46px, 5vw, 72px);
}

.contact-hero-v8 .contact-hero-content h1 span::after {
  display: none;
}

.contact-hero-v8 .contact-hero-content > p:not(.section-kicker) {
  max-width: 560px;
  margin-bottom: 32px;
  font-size: 18px;
}

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

.contact-hero-btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  box-shadow: 0 14px 30px rgba(0, 52, 27, .12);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

.contact-hero-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transition: transform .25s ease;
}

.contact-hero-btn:hover,
.contact-hero-btn:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 20px 38px rgba(0, 52, 27, .18);
}

.contact-hero-btn:hover svg,
.contact-hero-btn:focus-visible svg {
  transform: translateX(3px) scale(1.05);
}

.contact-hero-btn-whatsapp:hover,
.contact-hero-btn-whatsapp:focus-visible {
  background: #e8951d;
  color: var(--green-900);
}

.contact-hero-btn-location {
  background: rgba(255, 255, 255, .82);
  color: var(--green-900);
  border-color: rgba(0, 60, 31, .13);
}

.contact-hero-btn-location:hover,
.contact-hero-btn-location:focus-visible {
  background: var(--green-900);
  color: #fff;
  border-color: var(--green-900);
}

.contact-hero-v8 .contact-hero-visual {
  min-height: 410px;
  display: grid;
  align-items: center;
}

.contact-hero-image-frame {
  position: relative;
  isolation: isolate;
  min-height: 410px;
  padding: 12px;
  border-radius: 38px 38px 92px 38px;
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(247,243,233,.68));
  border: 1px solid rgba(0, 60, 31, .12);
  box-shadow: 0 34px 70px rgba(0, 45, 23, .16), 0 0 0 10px rgba(255,255,255,.36);
  transition: transform .35s ease, box-shadow .35s ease;
}

.contact-hero-image-frame::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 36px -24px -24px 42px;
  border-radius: 34px 34px 100px 34px;
  background: linear-gradient(135deg, rgba(73,170,69,.18), rgba(216,138,37,.16));
  filter: blur(1px);
}

.contact-hero-image-frame:hover {
  transform: translateY(-7px) rotate(-.25deg);
  box-shadow: 0 42px 84px rgba(0, 45, 23, .20), 0 0 0 10px rgba(255,255,255,.46);
}

.contact-hero-image-frame img {
  position: static;
  width: 100%;
  height: 410px;
  max-width: none;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 29px 29px 80px 29px;
  filter: saturate(1.04) contrast(1.02);
  transition: transform .5s ease, filter .5s ease;
}

.contact-hero-image-frame:hover img {
  transform: scale(1.018);
  filter: saturate(1.1) contrast(1.04);
}

.contact-hero-image-label {
  position: absolute;
  z-index: 2;
  left: 34px;
  bottom: 32px;
  padding: 11px 15px;
  border-radius: 999px;
  background: rgba(0, 60, 31, .92);
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .02em;
  box-shadow: 0 12px 24px rgba(0, 40, 20, .22);
  backdrop-filter: blur(8px);
}

.contact-page-v8 .contact-main {
  padding: 72px 0;
  background:
    radial-gradient(circle at 8% 20%, rgba(73,170,69,.06), transparent 26%),
    var(--cream-2);
}

.contact-page-v8 .contact-main-grid {
  grid-template-columns: minmax(360px, .92fr) minmax(520px, 1.08fr);
  gap: 64px;
}

.contact-page-v8 .contact-channels h2::before {
  display: none;
}

.contact-channels-intro {
  max-width: 520px;
  margin: -12px 0 24px;
  color: #546158;
  line-height: 1.65;
}

.contact-page-v8 .contact-channel-list {
  gap: 14px;
}

.contact-page-v8 .contact-channel-card {
  min-height: 112px;
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(255,255,255,.9);
  overflow: hidden;
}

.contact-page-v8 .contact-channel-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--green-500), var(--orange));
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .25s ease;
}

.contact-page-v8 .contact-channel-card {
  position: relative;
}

.contact-page-v8 .contact-channel-card:hover::before,
.contact-page-v8 .contact-channel-card:focus-visible::before {
  transform: scaleY(1);
}

.contact-page-v8 .contact-channel-card:hover,
.contact-page-v8 .contact-channel-card:focus-visible {
  transform: translateY(-5px) translateX(3px);
  background: #fff;
  border-color: rgba(216, 138, 37, .32);
  box-shadow: 0 25px 50px rgba(0, 44, 22, .12);
}

.contact-page-v8 .channel-icon {
  transition: transform .25s ease, background .25s ease, color .25s ease;
}

.contact-page-v8 .channel-icon svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.contact-page-v8 .contact-channel-card:hover .channel-icon,
.contact-page-v8 .contact-channel-card:focus-visible .channel-icon {
  transform: rotate(-6deg) scale(1.08);
  background: var(--green-900);
  color: #fff;
}

.contact-page-v8 .channel-arrow {
  transition: transform .25s ease, color .25s ease;
}

.contact-page-v8 .contact-channel-card:hover .channel-arrow,
.contact-page-v8 .contact-channel-card:focus-visible .channel-arrow {
  transform: translateX(5px);
  color: var(--orange);
}

.contact-channel-card-static {
  cursor: default;
}

.channel-status {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(216,138,37,.11);
  color: #8b5103;
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.contact-channel-instagram:hover .channel-icon,
.contact-channel-instagram:focus-visible .channel-icon {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.contact-page-v8 .contact-form-card {
  position: sticky;
  top: 120px;
  padding: 38px;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(255,255,255,.82));
  box-shadow: 0 26px 66px rgba(0, 44, 22, .11);
  transition: transform .3s ease, box-shadow .3s ease;
}

.contact-page-v8 .contact-form-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 34px 78px rgba(0, 44, 22, .15);
}

.contact-page-v8 .contact-form-card h2 {
  margin-bottom: 26px;
}

.contact-page-v8 .contact-form input,
.contact-page-v8 .contact-form select,
.contact-page-v8 .contact-form textarea {
  border-radius: 14px;
  background: #fff;
}

.contact-page-v8 .contact-submit {
  min-height: 56px;
  border-radius: 999px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.contact-page-v8 .contact-submit:hover,
.contact-page-v8 .contact-submit:focus-visible {
  transform: translateY(-3px);
  background: var(--orange);
  color: var(--green-900);
  box-shadow: 0 18px 34px rgba(216,138,37,.25);
}

.contact-locations {
  scroll-margin-top: 110px;
  padding: 86px 0 94px;
  background:
    linear-gradient(180deg, rgba(0,55,29,.985), rgba(0,45,24,.995)),
    radial-gradient(circle at 90% 10%, rgba(73,170,69,.32), transparent 32%);
  color: #fff;
}

.contact-locations-heading {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(360px, .85fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 34px;
}

.contact-locations-heading h2 {
  max-width: 680px;
  margin: 0;
  color: #fff;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.contact-locations-heading > p {
  margin: 0 0 5px;
  color: rgba(255,255,255,.76);
  font-size: 16px;
  line-height: 1.68;
}

.contact-locations .section-kicker {
  color: #ffac31;
}

.driver-route-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  margin-bottom: 32px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 26px;
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(8px);
}

.driver-route-step {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.075);
  transition: transform .25s ease, background .25s ease;
}

.driver-route-step:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,.11);
}

.driver-route-step > span {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--green-900);
  font-size: 20px;
  font-weight: 950;
  box-shadow: 0 10px 24px rgba(216,138,37,.25);
}

.driver-route-step strong {
  display: block;
  margin-bottom: 3px;
  color: #fff;
  font-size: 14px;
}

.driver-route-step p {
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: 13px;
}

.driver-route-arrow {
  color: #ffac31;
  font-size: 30px;
  font-weight: 900;
}

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

.location-destination-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 30px;
  background: #f9f6ed;
  color: #1b2a21;
  box-shadow: 0 28px 60px rgba(0,20,10,.28);
  transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease;
}

.location-destination-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,172,49,.48);
  box-shadow: 0 38px 78px rgba(0,20,10,.38);
}

.location-destination-photo {
  position: relative;
  height: 250px;
  overflow: hidden;
  background: #dfe8db;
}

.location-destination-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(0,40,20,.42));
  pointer-events: none;
}

.location-destination-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s ease, filter .55s ease;
}

.location-destination-card:hover .location-destination-photo img {
  transform: scale(1.055);
  filter: saturate(1.08) contrast(1.03);
}

.location-step-badge {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(0,60,31,.92);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(0,30,15,.22);
}

.location-destination-content {
  padding: 30px 30px 26px;
}

.location-type {
  margin: 0 0 8px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.location-destination-content h3 {
  margin: 0 0 14px;
  color: var(--green-900);
  font-size: 28px;
  letter-spacing: -.035em;
}

.location-destination-content address {
  margin: 0 0 14px;
  color: #33443a;
  font-style: normal;
  font-size: 15px;
  line-height: 1.65;
}

.location-guidance {
  margin: 0 0 22px;
  padding: 12px 14px;
  border-left: 3px solid var(--orange);
  border-radius: 0 10px 10px 0;
  background: rgba(216,138,37,.08);
  color: #46544b;
  font-size: 13px;
  line-height: 1.5;
}

.location-route-btn {
  min-height: 50px;
  width: 100%;
  justify-content: center;
  background: var(--green-900);
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(0,60,31,.16);
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}

.location-route-btn:hover,
.location-route-btn:focus-visible {
  transform: translateY(-3px);
  background: var(--orange);
  color: var(--green-900);
  box-shadow: 0 17px 30px rgba(216,138,37,.25);
}

.location-map-embed {
  height: 240px;
  border-top: 1px solid rgba(0,60,31,.09);
  overflow: hidden;
}

.location-map-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  filter: saturate(.74) contrast(.96);
  transition: filter .4s ease, transform .4s ease;
}

.location-destination-card:hover .location-map-embed iframe {
  filter: saturate(1) contrast(1);
  transform: scale(1.01);
}

@media (max-width: 1180px) {
  .contact-hero-v8 .contact-hero-grid {
    grid-template-columns: minmax(330px, .9fr) minmax(430px, 1.1fr);
    gap: 42px;
  }

  .contact-page-v8 .contact-main-grid {
    grid-template-columns: 1fr;
  }

  .contact-page-v8 .contact-form-card {
    position: static;
  }

  .contact-locations-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 920px) {
  .contact-hero-v8 {
    padding-top: 130px;
  }

  .contact-hero-v8 .contact-hero-grid {
    grid-template-columns: 1fr;
  }

  .contact-hero-v8 .contact-hero-content {
    text-align: center;
  }

  .contact-hero-v8 .contact-hero-content > p:not(.section-kicker),
  .contact-hero-v8 .contact-hero-content h1 {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-hero-actions {
    justify-content: center;
  }

  .contact-hero-v8 .contact-hero-visual,
  .contact-hero-image-frame {
    min-height: 360px;
  }

  .contact-hero-image-frame img {
    height: 360px;
  }

  .location-destinations-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .contact-hero-v8 {
    min-height: 0;
    padding: 118px 0 58px;
  }

  .contact-hero-v8 .contact-hero-content h1 {
    font-size: clamp(40px, 13vw, 56px);
  }

  .contact-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contact-hero-btn {
    width: 100%;
  }

  .contact-hero-v8 .contact-hero-visual,
  .contact-hero-image-frame {
    min-height: 290px;
  }

  .contact-hero-image-frame {
    padding: 8px;
    border-radius: 24px 24px 58px 24px;
  }

  .contact-hero-image-frame img {
    height: 290px;
    border-radius: 18px 18px 50px 18px;
  }

  .contact-hero-image-label {
    left: 22px;
    bottom: 20px;
  }

  .contact-page-v8 .contact-main {
    padding: 56px 0;
  }

  .contact-page-v8 .contact-channel-card {
    grid-template-columns: 54px 1fr;
    padding: 18px;
  }

  .contact-page-v8 .channel-status {
    grid-column: 2;
    justify-self: start;
  }

  .contact-page-v8 .contact-form-card {
    padding: 25px 20px;
    border-radius: 22px;
  }

  .contact-locations {
    padding: 66px 0 72px;
  }

  .driver-route-flow {
    grid-template-columns: 1fr;
  }

  .driver-route-arrow {
    transform: rotate(90deg);
    justify-self: center;
  }

  .location-destination-photo {
    height: 210px;
  }

  .location-destination-content {
    padding: 24px 20px 22px;
  }

  .location-map-embed {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .contact-page-v8 .contact-channel-card h3 {
    font-size: 15px;
  }

  .contact-page-v8 .contact-channel-card p {
    font-size: 14px;
  }

  .contact-page-v8 .contact-channel-card small {
    font-size: 11px;
  }

  .location-destination-content h3 {
    font-size: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-page-v8 *,
  .contact-page-v8 *::before,
  .contact-page-v8 *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}
