﻿:root {
  --bg: #d8dfdf;
  --surface: rgba(245, 246, 241, 0.74);
  --surface-strong: rgba(253, 251, 246, 0.88);
  --line: rgba(255, 255, 255, 0.28);
  --text: #101719;
  --muted: #435155;
  --accent: #c86b31;
  --accent-strong: #8a3f14;
  --shadow: 0 24px 70px rgba(16, 23, 25, 0.24);
  --header-offset: 72px;
  --content-max: 1560px;
  --content-narrow: 1320px;
  --page-gutter: clamp(20px, 4vw, 60px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.76), transparent 32%),
    linear-gradient(180deg, #eff2ee 0%, #dbe1df 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.page-shell {
  position: relative;
  overflow-x: clip;
  isolation: isolate;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: max(700px, 100svh);
  padding:
    calc(var(--header-offset) + 34px)
    max(var(--page-gutter), calc((100vw - var(--content-max)) / 2 + var(--page-gutter)))
    48px;
  display: grid;
  grid-template-columns: minmax(620px, 860px) clamp(252px, 19vw, 312px);
  align-items: end;
  align-content: end;
  justify-content: space-between;
  column-gap: clamp(28px, 3vw, 44px);
  overflow: hidden;
  isolation: isolate;
}

.hero__backdrop,
.hero__grain {
  position: absolute;
  inset: 0;
}

.hero__backdrop {
  background:
    linear-gradient(90deg, rgba(16, 23, 25, 0.84) 0%, rgba(16, 23, 25, 0.62) 34%, rgba(16, 23, 25, 0.24) 65%, rgba(16, 23, 25, 0.18) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.hero__backdrop::before {
  content: "";
  position: absolute;
  inset: 0 -80px 0 0;
  z-index: -1;
  background: url("../image/8.jpg") center 60% / cover no-repeat;
  transform: translateX(-80px);
}

.hero__grain {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.04;
  mix-blend-mode: screen;
}

.hero__content,
.side-cards {
  position: relative;
  z-index: 1;
}

.topbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  padding: 4px clamp(12px, 1.4vw, 18px);
  background: linear-gradient(180deg, rgba(11, 15, 17, 0.72), rgba(11, 15, 17, 0.80));
  box-shadow: 0 10px 24px rgba(11, 15, 17, 0.18);
  backdrop-filter: blur(12px);
  isolation: isolate;
}

.topbar__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
  flex-wrap: wrap;
}

/* ── Hamburger toggle (hidden on desktop) ── */
.topbar__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  z-index: 10;
}

.topbar__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.topbar__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.topbar__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.topbar__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.brand-block {
  flex: 0 0 auto;
  min-width: clamp(180px, 12vw, 220px);
  max-width: clamp(220px, 15vw, 290px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-block img {
  display: block;
  width: 100%;
  max-width: clamp(220px, 15vw, 290px);
  height: auto;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.18));
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
  color: rgba(255, 255, 255, 0.88);
}

.topbar__actions a {
  padding: 7px 10px;
  border-radius: 999px;
  font-size: clamp(0.74rem, 0.72vw, 0.86rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
  white-space: nowrap;
  background: transparent;
  border: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.topbar__actions a:hover,
.topbar__actions a:focus-visible {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.hero__content {
  width: 100%;
  max-width: min(860px, 100%);
  color: #f5f1ea;
  padding-bottom: clamp(22px, 3vw, 40px);
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.company-panel h3,
.overview-card h3 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.01em;
}

.hero h1 {
  max-width: none;
  font-size: clamp(2.2rem, 3vw, 4.2rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.hero__title span {
  display: block;
  white-space: nowrap;
}

.hero__lead {
  margin: 16px 0 0;
  max-width: 68ch;
  font-size: clamp(0.92rem, 0.72vw + 0.56rem, 1rem);
  line-height: 1.55;
  color: rgba(255, 245, 236, 0.86);
}

.hero__metrics {
  margin-top: 28px;
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
}

.hero__metrics div {
  min-width: 200px;
  padding: 18px 20px;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.hero__metrics strong,
.company-panel h3 {
  display: block;
  font-size: 1.18rem;
}

.hero__metrics span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 245, 236, 0.78);
}

.side-cards {
  position: relative;
  width: 100%;
  max-width: clamp(252px, 19vw, 312px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  justify-self: end;
  align-self: start;
  margin-top: clamp(34px, 7vh, 88px);
  transform: none;
}

.nav-card {
  position: relative;
  min-height: 112px;
  border: none;
  border-radius: 24px;
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(8, 11, 12, 0.02) 0%, rgba(8, 11, 12, 0.62) 68%, rgba(8, 11, 12, 0.94) 100%),
    linear-gradient(180deg, rgba(13, 18, 20, 0.08), rgba(13, 18, 20, 0.18)),
    var(--card-image) center center / cover;
  box-shadow: 0 22px 44px rgba(8, 11, 12, 0.28);
  backdrop-filter: blur(8px);
  text-align: left;
  color: #f7f0e8;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.nav-card.is-active {
  transform: translateX(-6px);
  border-color: rgba(246, 211, 141, 0.72);
  box-shadow: 0 24px 50px rgba(8, 11, 12, 0.3);
  outline: none;
}

.nav-card:hover,
.nav-card:focus-visible {
  transform: translateX(-10px) scale(1.01);
  border-color: rgba(246, 211, 141, 0.82);
  box-shadow: 0 28px 58px rgba(8, 11, 12, 0.34);
  outline: none;
}

.nav-card__footer,
.nav-card__service,
.nav-card__name {
  display: block;
}

.nav-card__footer {
  position: relative;
  z-index: 1;
}

.nav-card__service {
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(243, 228, 207, 0.78);
}

.nav-card__name {
  margin-top: 4px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.55rem;
  line-height: 0.92;
  text-transform: uppercase;
  color: #fff5e8;
  text-shadow: 0 12px 20px rgba(0, 0, 0, 0.34);
}


.section {
  padding:
    90px
    max(var(--page-gutter), calc((100vw - var(--content-max)) / 2 + var(--page-gutter)));
  scroll-margin-top: var(--header-offset);
}

.section__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 34px;
}

.section__header,
.story-grid,
.overview-grid,
.overview-grid--wide,
.company-layout,
.contact-box {
  width: min(100%, var(--content-narrow));
  margin-inline: auto;
}

.section h2 {
  font-size: clamp(3rem, 7vw, 5.2rem);
  text-transform: uppercase;
  line-height: 0.98;
}

.section__lead {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.55;
  color: var(--text);
}


.section--story .section__header {
  justify-content: center;
  text-align: center;
  margin-bottom: 8px;
}

.section--story .story-panel--lead {
  grid-column: 1 / -1;
  text-align: center;
  padding: clamp(14px, 2vw, 22px) clamp(20px, 3vw, 36px);
}

.section--story .story-panel--lead p {
  max-width: 68ch;
  margin-inline: auto;
}

.section--story .story-grid {
  gap: 8px;
}

.section--story .story-panel {
  padding: clamp(14px, 1.8vw, 18px);
}

.section--story .story-panel p,
.section--story .feature-list li {
  font-size: clamp(0.85rem, 1.4vw, 0.92rem);
}

.section--story h2 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
}

.story-panel h3 {
  margin-bottom: 8px;
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--text);
}

/* ── Detalhes visuais seção Grupo Jacaré ── */

.section__tagline {
  margin-top: 6px;
  font-size: clamp(0.82rem, 1.3vw, 0.95rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-align: center;
}

.section--story .story-panel--lead {
  position: relative;
  border-left: 3px solid var(--accent);
  border-radius: 0;
  background: var(--surface);
}


/* ── Painel unificado (services) ── */

.section--story .story-panel--lead .story-kicker {
  font-size: clamp(0.9rem, 1.6vw, 1.1rem);
  letter-spacing: 0.18em;
  margin-bottom: 12px;
  color: var(--accent-strong);
}

.section--story .story-panel--services .story-kicker {
  font-size: clamp(0.9rem, 1.6vw, 1.1rem);
  letter-spacing: 0.18em;
  margin-bottom: 12px;
  color: var(--accent-strong);
}

.section--story .story-panel--services {
  grid-column: 1 / -1;
  border-left: 3px solid var(--accent);
  border-radius: 0;
  background: var(--surface);
  padding: clamp(14px, 2vw, 22px) clamp(20px, 3vw, 36px);
  text-align: center;
}

.section--story .feature-list.feature-list--grid {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  gap: 6px clamp(40px, 6vw, 100px);
  text-align: center;
  margin-bottom: 10px;
  padding-left: 0;
}

.services-contact {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(200, 107, 49, 0.18);
}

.services-contact__text {
  font-size: clamp(0.78rem, 1.2vw, 0.88rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 6px;
}

@media (max-width: 640px) {
  .feature-list--grid {
    grid-template-columns: 1fr;
  }
}

.section--story .feature-list {
  list-style: none;
  padding-left: 0;
}

.section--story .feature-list li::before {
  content: "✦ ";
  color: var(--accent);
  font-size: 0.7em;
  margin-right: 4px;
}

.section--story .feature-list--grid li::before {
  content: none;
}

.section--story .action-grid--group {
  gap: 20px;
  justify-content: center;
}

.section--story .action-link {
  flex-direction: column;
  gap: 4px;
}

.section--story .action-link__icon {
  width: 36px;
  height: 36px;
}

.section--story .action-link .icon-svg {
  width: 36px;
  height: 36px;
}

.section--story .action-link__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.section--story {
  margin-top: -1px;
  scroll-margin-top: 0px;
  padding-top: clamp(14px, 1.8vw, 24px);
  padding-bottom: clamp(14px, 1.8vw, 24px);
  min-height: calc(100vh - var(--header-offset));
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  background:
    radial-gradient(circle at top right, rgba(200, 107, 49, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(248, 245, 239, 0.86));
}

/* ── Ajustes seção Empresas ── */

.section--overview .section__header {
  text-align: center;
}

.section--overview h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  white-space: nowrap;
}

.section--overview .overview-card {
  padding: clamp(22px, 3vw, 36px) clamp(20px, 3vw, 30px);
  padding: clamp(16px, 2vw, 24px) clamp(14px, 2vw, 20px);
}

.section--overview .overview-card h3 {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.2;
  margin-bottom: 8px;
}

.section--overview .overview-card p:last-child {
  font-size: clamp(0.85rem, 1.4vw, 0.95rem);
  line-height: 1.5;
}

.section--overview .story-kicker {
  margin-bottom: 14px;
}
.section--overview {
  scroll-margin-top: 0px;
  min-height: calc(100vh - var(--header-offset));
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

.section--overview,
.section--differentials {
  background:
    linear-gradient(180deg, rgba(255, 252, 248, 0.9), rgba(239, 235, 229, 0.7)),
    radial-gradient(circle at top right, rgba(200, 107, 49, 0.08), transparent 36%);
}


/* ── Ajustes seção Diferenciais ── */

.section--differentials .section__header {
  text-align: center;
  justify-content: center;
}

.section--differentials h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  width: 100%;
}

.section--differentials .overview-card {
  text-align: center;
  padding: clamp(16px, 2vw, 24px) clamp(14px, 2vw, 20px);
}

.section--differentials .overview-card h3 {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.2;
  margin-bottom: 8px;
}

.section--differentials .overview-card p:last-child {
  font-size: clamp(0.85rem, 1.4vw, 0.95rem);
  line-height: 1.5;
}

.section--differentials .story-kicker {
  margin-bottom: 14px;
}

.section--differentials {
  scroll-margin-top: 0px;
  min-height: calc(100vh - var(--header-offset));
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}
.story-grid,
.company-layout,
.contact-box,
.overview-grid {
  display: grid;
  gap: 22px;
}

.story-grid {
  grid-template-columns: 1fr 1fr;
}

.overview-grid {
  grid-template-columns: repeat(3, minmax(240px, 1fr));
}

.overview-grid--wide {
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  width: min(100%, var(--content-narrow));
  margin-inline: auto;
}

.story-panel,
.company-panel,
.contact-box,
.overview-card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid rgba(16, 23, 25, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.story-panel p,
.company-copy p,
.company-panel li,
.overview-card p:last-child,
.company-panel--contact p {
  margin: 0;
  line-height: 1.55;
  color: var(--muted);
}

.story-panel--lead {
  background: linear-gradient(180deg, rgba(255, 248, 240, 0.95), rgba(247, 242, 234, 0.8));
}

.story-panel--quote {
  display: flex;
  align-items: flex-end;
  background: linear-gradient(180deg, rgba(200, 107, 49, 0.2), rgba(16, 23, 25, 0.06));
}

.story-panel--quote p {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.98;
  color: var(--text);
  text-transform: uppercase;
}

.story-kicker {
  margin-bottom: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.feature-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 14px;
  color: var(--muted);
}

.company-layout {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  column-gap: clamp(30px, 4vw, 60px);
}

.company-copy {
  padding: 10px 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.company-copy p + p {
  margin-top: 14px;
}

.company-copy p {
  max-width: 52ch;
  font-size: clamp(0.98rem, 1.4vw, 1.12rem);
  line-height: 1.55;
}

.company-copy .section__lead {
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
}

.company-copy .action-grid {
  display: flex;
  justify-content: center;
  max-width: 52ch;
  align-self: flex-start;
  margin-top: clamp(18px, 2.5vh, 28px);
  padding-left: 12ch;
  gap: 24px;
}

.company-copy .action-link__icon {
  width: 42px;
  height: 42px;
}

.company-copy .action-link .icon-svg {
  width: 42px;
  height: 42px;
}

.section-copy-compact {
  max-width: 42ch;
  color: var(--muted);
}

.company-note {
  margin-top: 14px;
  font-size: 0.84rem;
  color: rgba(72, 66, 62, 0.78);
}

.company-stack {
  display: grid;
  gap: 12px;
}

.company-stack__title {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 4px;
  white-space: nowrap;
}

.company-panel {
  background: var(--surface-strong);
}

.company-panel--detail h3 {
  margin-bottom: 16px;
  font-size: 2rem;
  text-transform: uppercase;
}

/* ── Company sections: fit in one viewport ── */

.company-section {
  min-height: calc(100svh - var(--header-offset));
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  padding-top: clamp(14px, 2vh, 40px);
  padding-bottom: clamp(14px, 2vh, 40px);
  scroll-margin-top: 0px;
}

.company-section .section__header {
  margin-bottom: clamp(12px, 2vh, 24px);
}

.company-section .company-layout {
  gap: clamp(10px, 1.5vh, 18px);
}

.company-section .company-copy {
  padding: 0;
}

.company-section .company-copy p {
  font-size: clamp(0.82rem, 1.2vw, 0.92rem);
  line-height: 1.45;
}

.company-section .company-copy p + p {
  margin-top: clamp(6px, 1vh, 14px);
}

.company-section .section__lead {
  font-size: clamp(0.95rem, 1.6vw, 1.2rem);
  line-height: 1.4;
}

.company-section .action-grid {
  margin-top: clamp(10px, 1.5vh, 20px);
  justify-content: center;
}

.company-section .company-stack {
  gap: clamp(6px, 0.8vh, 10px);
}

.company-section .company-panel {
  padding: clamp(10px, 1.2vh, 18px) clamp(14px, 1.5vw, 22px);
}

.company-section .company-panel--detail h3 {
  margin-bottom: clamp(6px, 0.8vh, 12px);
  font-size: clamp(1.1rem, 1.6vw, 1.5rem);
}

.company-section .feature-list {
  gap: clamp(4px, 0.6vh, 10px);
  font-size: clamp(0.78rem, 1.1vw, 0.88rem);
}

.company-section .company-panel--contact p {
  font-size: clamp(0.78rem, 1.1vw, 0.88rem);
}

.company-section .panel-actions {
  margin-top: clamp(8px, 1vh, 18px);
  justify-content: center;
}

.company-section .section h2,
.company-section h2 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
}

.overview-card h3 {
  margin-bottom: 12px;
  font-size: 2rem;
  line-height: 0.98;
  text-transform: uppercase;
}

.action-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.action-grid--group {
  margin-top: 12px;
}

.action-link,
.section-link,
.contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(20, 44, 66, 0.62);
  text-align: center;
  box-shadow: none;
  transition: color 220ms ease, filter 220ms ease;
  position: relative;
  overflow: visible;
}

.action-link__icon,
.section-link__icon,
.contact-link__icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: inherit;
  transition: transform 220ms ease, filter 220ms ease, color 220ms ease;
}

.icon-svg {
  display: block;
  width: 34px;
  height: 34px;
  fill: currentColor;
  filter: drop-shadow(0 2px 3px rgba(16, 31, 43, 0.08));
  transition: transform 220ms ease, filter 220ms ease;
}

.action-link__label,
.section-link__label {
  display: none;
}

.action-link:hover,
.action-link:focus-visible,
.section-link:hover,
.section-link:focus-visible,
.contact-link:hover,
.contact-link:focus-visible {
  color: var(--icon-hover, #1f4f78);
  outline: none;
}

.action-link:hover .action-link__icon,
.action-link:focus-visible .action-link__icon,
.section-link:hover .section-link__icon,
.section-link:focus-visible .section-link__icon,
.contact-link:hover .contact-link__icon,
.contact-link:focus-visible .contact-link__icon {
  animation: iconHoverLift 280ms ease forwards;
}

.action-link:hover .icon-svg,
.action-link:focus-visible .icon-svg,
.section-link:hover .icon-svg,
.section-link:focus-visible .icon-svg,
.contact-link:hover .icon-svg,
.contact-link:focus-visible .icon-svg {
  transform: translateY(-3px) scale(1.08);
  filter: drop-shadow(0 10px 18px var(--icon-shadow, rgba(31, 79, 120, 0.28)));
}

.panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
}

.section-link,
.contact-link {
  margin-top: 26px;
}

.section-link--ghost {
  color: rgba(20, 44, 66, 0.62);
}

@keyframes iconHoverLift {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-2px) scale(1.04);
  }
}

.action-link--whatsapp,
.section-link--whatsapp,
.contact-link--whatsapp {
  --icon-hover: #25d366;
  --icon-shadow: rgba(37, 211, 102, 0.34);
}

.action-link--instagram {
  --icon-hover: #d62976;
  --icon-shadow: rgba(214, 41, 118, 0.3);
}

.action-link--facebook {
  --icon-hover: #1877f2;
  --icon-shadow: rgba(24, 119, 242, 0.3);
}

.action-link--mercadolivre {
  --icon-hover: #ffe600;
  --icon-shadow: rgba(255, 230, 0, 0.3);
}

.action-link--location,
.section-link--location {
  --icon-hover: #2d8fd6;
  --icon-shadow: rgba(45, 143, 214, 0.3);
}

.contact-link--email {
  --icon-hover: #c97b1f;
  --icon-shadow: rgba(201, 123, 31, 0.28);
}

.contact-actions .icon-svg {
  width: 34px;
  height: 34px;
}

.contact-link {
  margin-top: 0;
}


/* ── Seção Contato ── */

.contact-footer-wrapper {
  display: flex;
  flex-direction: column;
  height: calc(100svh - var(--header-offset));
  max-height: calc(100svh - var(--header-offset));
}

.section--contact {
  flex: 1;
  min-height: 0;
  padding: clamp(20px, 4vh, 48px) 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  background:
    radial-gradient(circle at bottom left, rgba(200, 107, 49, 0.12), transparent 40%),
    linear-gradient(180deg, rgba(248, 245, 239, 0.9), rgba(255, 252, 248, 0.95));
}

.contact-box--centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  max-width: 520px;
  padding: 20px 24px;
}

.section--contact h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.15;
  color: var(--text);
}

.contact-subtitle {
  font-size: clamp(0.9rem, 1.6vw, 1.05rem);
  color: var(--muted);
  line-height: 1.5;
}

.contact-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 14px 32px;
  background: #25d366;
  color: #fff;
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: 8px;
  text-decoration: none;
  transition: background 200ms ease, transform 200ms ease, box-shadow 200ms ease;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.contact-cta:hover,
.contact-cta:focus-visible {
  background: #1eba59;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  outline: none;
}

.contact-cta__icon {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
}

.contact-cta__icon .icon-svg {
  width: 24px;
  height: 24px;
  fill: #fff;
  filter: none;
}

.contact-channels {
  display: flex;
  justify-content: center;
  gap: clamp(32px, 5vw, 56px);
  margin-top: 8px;
}

.contact-channel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: rgba(20, 44, 66, 0.62);
  --icon-hover: #25d366;
  --icon-shadow: rgba(37, 211, 102, 0.34);
  transition: color 220ms ease;
}

.contact-channel:hover,
.contact-channel:focus-visible {
  color: var(--icon-hover);
  outline: none;
}

.contact-channel__icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  transition: transform 220ms ease, filter 220ms ease, color 220ms ease;
}

.contact-channel:hover .contact-channel__icon {
  animation: iconHoverLift 280ms ease forwards;
}

.contact-channel:hover .icon-svg {
  transform: translateY(-3px) scale(1.08);
  filter: drop-shadow(0 10px 18px var(--icon-shadow));
}

.contact-channel__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (min-width: 1600px) {
  .hero {
    min-height: max(760px, 100svh);
    grid-template-columns: minmax(700px, 940px) clamp(264px, 18vw, 320px);
  }

  .hero__content {
    max-width: 920px;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 2.7vw, 4.6rem);
  }

  .hero__lead {
    max-width: 72ch;
    font-size: 1.02rem;
  }

  .section h2 {
    font-size: clamp(3.2rem, 5vw, 5.4rem);
  }
}

@media (min-width: 1500px) and (min-height: 900px) {
  .hero {
    align-items: center;
    align-content: center;
    padding-top: calc(var(--header-offset) + 18px);
    padding-bottom: 24px;
  }

  .hero__content {
    align-self: center;
    padding-bottom: 0;
  }

  .side-cards {
    align-self: center;
    margin-top: 0;
  }
}

@media (max-width: 1360px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) clamp(250px, 22vw, 290px);
    justify-content: initial;
  }

  .hero__content {
    width: min(760px, calc(100% - 300px - 36px));
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(1.95rem, 3.6vw, 3.5rem);
  }

  .hero__title span {
    white-space: normal;
  }

  .hero__lead {
    max-width: 620px;
  }

  .side-cards {
    max-width: clamp(250px, 22vw, 290px);
  }
}

@media (max-width: 1180px) {
  :root {
    --header-offset: 88px;
  }

  .hero {
    min-height: auto;
    display: block;
    padding-top: calc(var(--header-offset) + 20px);
    padding-bottom: 34px;
  }

  .hero__content {
    width: min(100%, 760px);
    max-width: 100%;
  }

  .hero__title span {
    white-space: normal;
  }

  .side-cards {
    position: static;
    width: 100%;
    margin-top: 30px;
    grid-template-columns: repeat(4, minmax(240px, 1fr));
    overflow-x: auto;
    padding-bottom: 6px;
    padding-right: 2px;
    transform: none;
    scrollbar-width: thin;
  }

  .story-grid,
  .overview-grid,
  .overview-grid--wide,
  .company-layout,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .company-section {
    min-height: auto;
    padding-top: clamp(30px, 4vh, 50px);
    padding-bottom: clamp(30px, 4vh, 50px);
  }

  .company-stack__title {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
  }

  .company-copy .action-grid {
    padding-left: 0;
    justify-content: center;
    align-self: center;
    max-width: none;
  }

  .action-grid,
  .panel-actions {
    justify-content: center;
  }

  .company-copy {
    align-items: center;
    text-align: center;
  }

  .story-panel,
  .overview-card {
    padding: 20px 18px;
  }

  .story-panel h3 {
    font-size: clamp(1rem, 4vw, 1.2rem);
  }

  .story-panel p,
  .overview-card p {
    font-size: clamp(0.82rem, 3.2vw, 0.9rem);
  }

  .overview-card h3 {
    font-size: clamp(1.1rem, 4.5vw, 1.5rem);
  }
}

@media (max-width: 980px) {
  .brand-block {
    min-width: 190px;
    max-width: 228px;
  }

  .hero {
    padding-bottom: 28px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(1.95rem, 5vw, 3.1rem);
  }

  .hero__lead {
    max-width: 100%;
    font-size: 0.96rem;
  }

  .side-cards {
    grid-template-columns: repeat(4, minmax(230px, 240px));
  }

  .section h2 {
    font-size: clamp(2.6rem, 8vw, 4.4rem);
  }
}

@media (max-width: 860px) {
  :root {
    --header-offset: 64px;
  }

  .topbar__toggle {
    display: flex;
  }

  .topbar__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: nowrap;
  }

  .topbar__actions {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0;
    background: rgba(11, 15, 17, 0.95);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 10px 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  }

  .topbar__actions.is-open {
    display: flex;
  }

  .topbar__actions a {
    font-size: 0.9rem;
    padding: 12px 20px;
    width: 100%;
    justify-content: flex-start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .topbar {
    position: fixed;
  }

  .hero h1 {
    max-width: 100%;
  }

  .side-cards {
    grid-template-columns: repeat(4, minmax(232px, 256px));
  }

  .nav-card:hover,
  .nav-card:focus-visible,
  .nav-card.is-active {
    transform: none;
  }

  .section {
    padding: 72px 20px;
  }

  .section__header {
    display: block;
  }

  .action-grid,
  .panel-actions {
    gap: 14px;
    justify-content: center;
  }

  .action-link,
  .section-link,
  .contact-link {
    width: auto;
    min-width: 0;
    height: auto;
    min-height: 0;
  }

  .action-link__icon,
  .section-link__icon,
  .contact-link__icon {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: calc(var(--header-offset) + 14px);
  }

  .brand-block {
    min-width: 180px;
    max-width: 220px;
  }

  .hero h1 {
    font-size: clamp(1.75rem, 8.5vw, 2.5rem);
  }

  .hero__lead {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .side-cards {
    grid-template-columns: repeat(4, minmax(208px, 224px));
    gap: 10px;
  }

  .story-panel,
  .company-panel,
  .contact-box,
  .overview-card {
    padding: 22px;
  }

  .story-panel {
    padding: 16px 14px;
  }

  .story-panel h3 {
    font-size: clamp(0.9rem, 3.8vw, 1.1rem);
  }

  .section--story .story-panel p,
  .section--story .feature-list li {
    font-size: clamp(0.78rem, 3vw, 0.85rem);
  }

  .overview-card {
    padding: 16px 14px;
  }

  .overview-card h3 {
    font-size: clamp(1rem, 4vw, 1.3rem);
    margin-bottom: 8px;
  }

  .overview-card p:last-child {
    font-size: clamp(0.78rem, 3vw, 0.85rem);
  }

  .company-section .company-panel {
    padding: 14px 16px;
  }

  .company-section .company-panel--detail h3 {
    font-size: clamp(0.95rem, 4vw, 1.15rem);
    margin-bottom: 6px;
  }

  .company-section .feature-list {
    font-size: clamp(0.75rem, 3.2vw, 0.85rem);
    gap: 4px;
  }

  .company-section .company-panel--contact p {
    font-size: clamp(0.75rem, 3.2vw, 0.85rem);
  }

  .company-stack__title {
    font-size: clamp(1.3rem, 5vw, 1.6rem);
  }

  .company-section .company-stack {
    gap: 6px;
  }
}

@media (max-width: 560px) {
  .hero__metrics {
    display: grid;
    grid-template-columns: 1fr;
  }

  .section-link,
  .contact-link {
    justify-content: center;
  }

  .action-link,
  .section-link,
  .contact-link {
    width: auto;
    min-width: 0;
    height: auto;
    min-height: 0;
  }

  .action-link__icon,
  .section-link__icon,
  .contact-link__icon {
    width: 30px;
    height: 30px;
  }

  .action-grid,
  .panel-actions {
    justify-content: center;
  }

  .story-panel {
    padding: 14px 12px;
  }

  .overview-card {
    padding: 14px 12px;
  }

  .company-section .company-panel {
    padding: 12px 14px;
  }

  .company-section .company-panel--detail h3 {
    font-size: 0.9rem;
    margin-bottom: 4px;
  }

  .company-section .feature-list {
    font-size: 0.74rem;
    gap: 3px;
    padding-left: 14px;
  }

  .company-section .company-panel--contact p {
    font-size: 0.74rem;
  }

  .company-stack__title {
    font-size: 1.2rem;
  }

  .action-link__label,
  .section-link__label {
    display: none;
  }

  .brand-block {
    min-width: 220px;
    max-width: 280px;
  }

  .nav-card {
    min-height: 188px;
  }

  .contact-box {
    padding: 22px;
  }
}







/* ── Footer ── */

.site-footer {
  background: linear-gradient(180deg, rgba(11, 15, 17, 0.72), rgba(11, 15, 17, 0.80));
  backdrop-filter: blur(12px);
  padding: clamp(14px, 2.5vw, 22px) clamp(16px, 3vw, 32px);
  color: rgba(255, 255, 255, 0.7);
  flex-shrink: 0;
}

.footer__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer__left {
  flex: 0 0 auto;
}

.footer__logo {
  display: block;
  width: clamp(160px, 13vw, 230px);
  height: auto;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}

.footer__center {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.footer__social-text {
  font-size: clamp(0.68rem, 0.9vw, 0.78rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.45);
}

.footer__social-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer__social-link {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 200ms ease, transform 200ms ease;
}

.footer__social-link .icon-svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  filter: none;
}

.footer__social-link--whatsapp:hover { color: #25d366; transform: translateY(-2px); }
.footer__social-link--instagram:hover { color: #d62976; transform: translateY(-2px); }
.footer__social-link--facebook:hover { color: #1877f2; transform: translateY(-2px); }

.footer__right {
  flex: 0 0 auto;
  text-align: right;
}

.footer__copy {
  font-size: clamp(0.62rem, 0.85vw, 0.72rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 2px;
}

.footer__credit {
  font-size: clamp(0.56rem, 0.7vw, 0.64rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.25);
}

.footer__credit-link {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  font-weight: 600;
  transition: color 200ms ease;
}

.footer__credit-link:hover,
.footer__credit-link:focus-visible {
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 640px) {
  .footer__inner {
    flex-direction: column;
    text-align: center;
  }
  .footer__right {
    text-align: center;
  }
}
