*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --marrom: #5c3d2e;
  --marrom2: #7a4f3a;
  --caramelo: #9c6b20;
  --areia: #c4956a;
  --creme: #f5f0e8;
  --creme2: #ede6d6;
  --bege: #d4c5a9;
  --texto: #3a2a1e;
  --texto2: #6b4f3a;
  --branco: #fdfaf5;
  --radius: 16px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--branco);
  color: var(--texto);
  font-family: "Lato", sans-serif;
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
}
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 5vw;
  background: #fdfaf5;
  border-bottom: 1px solid rgba(92, 61, 46, 0.08);
  transition: box-shadow 0.3s;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}
.nav-brand img {
  height: 46px;
  width: 46px;
  object-fit: contain;
}
.nav-brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.nav-brand-name {
  font-family: "Playfair Display", serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--marrom);
  white-space: nowrap;
}
.nav-brand-sub {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--texto2);
  opacity: 0.7;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--texto2);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: var(--marrom);
}
.nav-cta {
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.6rem 1.5rem;
  border: 1.5px solid var(--marrom);
  color: var(--marrom);
  border-radius: 40px;
  text-decoration: none;
  font-weight: 700;
  transition:
    background 0.3s,
    color 0.3s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--marrom);
  color: var(--branco);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--marrom);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 8rem 6vw 7rem;
  background: linear-gradient(135deg, var(--creme2) 0%, var(--branco) 60%);
  gap: 4rem;
  position: relative;
  overflow: hidden;
}
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-logo-wrap {
  position: relative;
  width: 380px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(196, 149, 106, 0.25);
  animation: ringPulseHero 5s ease-in-out infinite;
}
.hero-logo-ring:nth-child(2) {
  inset: -24px;
  border-color: rgba(196, 149, 106, 0.12);
  animation-delay: -2.5s;
}
.hero-logo-bg {
  width: 85%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, var(--creme2), var(--bege));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 60px rgba(92, 61, 46, 0.12);
  position: relative;
  z-index: 1;
}
.hero-logo-bg img {
  width: 85%;
  height: 85%;
  object-fit: contain;
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--caramelo);
  margin-bottom: 2rem;
  font-weight: 700;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.2s forwards;
}
.hero-eyebrow::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--caramelo);
}
h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--marrom);
  margin-bottom: 1.6rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.4s forwards;
}
h1 em {
  font-style: italic;
  color: var(--caramelo);
}
h1 span {
  display: block;
}
.hero-sub {
  font-size: 1rem;
  color: var(--texto2);
  max-width: 480px;
  margin-bottom: 2.8rem;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.6s forwards;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.8s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1s ease 1.4s forwards;
}
.hero-scroll span {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(106, 79, 58, 0.4);
}
.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(92, 61, 46, 0.3), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
.btn-prim {
  padding: 0.9rem 2.2rem;
  background: var(--marrom);
  color: var(--branco);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 50px;
  text-decoration: none;
  transition:
    background 0.3s,
    transform 0.3s var(--ease),
    box-shadow 0.3s;
  box-shadow: 0 4px 24px rgba(92, 61, 46, 0.18);
  display: inline-block;
  text-align: center;
}
.btn-prim:hover {
  background: var(--marrom2);
  transform: translateY(-3px);
  box-shadow: 0 8px 36px rgba(92, 61, 46, 0.28);
}
.btn-sec {
  padding: 0.9rem 2rem;
  border: 1.5px solid var(--bege);
  color: var(--texto2);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 50px;
  text-decoration: none;
  transition:
    border-color 0.3s,
    color 0.3s;
  display: inline-block;
}
.btn-sec:hover {
  border-color: var(--marrom);
  color: var(--marrom);
}
section {
  padding: 7rem 6vw;
}
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--caramelo);
  margin-bottom: 0.9rem;
  font-weight: 700;
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--marrom);
  margin-bottom: 1.4rem;
}
.section-title em {
  font-style: italic;
  color: var(--caramelo);
}
#sobre {
  background: var(--creme2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.sobre-img-card {
  background: var(--branco);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  box-shadow: 0 12px 50px rgba(92, 61, 46, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  border: 1px solid rgba(196, 149, 106, 0.15);
}
.sobre-logo-big {
  width: 200px;
  height: 200px;
  object-fit: contain;
}
.sobre-divider {
  width: 60px;
  height: 1px;
  background: var(--bege);
}
.sobre-nome {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: var(--marrom);
  text-align: center;
}
.sobre-titulo {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--texto2);
  text-align: center;
}
.sobre-rntp {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--bege);
  text-align: center;
  font-weight: 700;
}
.sobre-content p {
  color: var(--texto2);
  margin-bottom: 1rem;
  font-size: 0.97rem;
}
.sobre-quote-block {
  margin-top: 2.5rem;
  padding: 1.8rem 2rem;
  border-left: 3px solid var(--areia);
  background: rgba(255, 255, 255, 0.5);
  border-radius: 0 12px 12px 0;
}
.sobre-quote-text {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--marrom2);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.sobre-quote-author {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--areia);
  font-weight: 700;
}
.sobre-credenciais {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 2rem;
}
.cred-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.85rem;
  color: var(--texto2);
}
.cred-item::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--caramelo);
}
#servicos {
  background: var(--branco);
}
.bento-intro {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 4rem;
}
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 170px;
  gap: 14px;
}
.bento-card {
  border: 1px solid rgba(196, 149, 106, 0.28);
  border-radius: var(--radius);
  background: var(--creme2);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition:
    border-color 0.3s,
    transform 0.3s var(--ease),
    box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.bento-card:hover {
  border-color: rgba(156, 107, 32, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(92, 61, 46, 0.1);
}
.bento-card.featured {
  background: linear-gradient(150deg, var(--marrom) 0%, var(--marrom2) 100%);
  border-color: transparent;
}
/* Imagem de fundo do card featured (substitua o src pelo arquivo desejado) */
.bento-card.featured .featured-symbol {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  max-width: 200px;
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}
.bento-card.featured .bento-tag,
.bento-card.featured .bento-title,
.bento-card.featured .bento-desc {
  position: relative;
  z-index: 1;
}
.bento-card.featured .bento-title,
.bento-card.featured .bento-desc {
  color: rgba(253, 250, 245, 0.9);
}
.bento-card.featured .bento-tag {
  color: var(--areia);
}
.bento-card.span-5 {
  grid-column: span 5;
}
.bento-card.span-7 {
  grid-column: span 7;
}
.bento-card.span-12 {
  grid-column: span 12;
}
.bento-card.row-2 {
  grid-row: span 2;
}
.bento-tag {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--caramelo);
  margin-bottom: 0.4rem;
  font-weight: 700;
}
.bento-title {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--marrom);
  line-height: 1.3;
}
.bento-desc {
  font-size: 0.8rem;
  color: var(--texto2);
  margin-top: 0.4rem;
  line-height: 1.5;
}
.bento-emoji {
  font-size: 1.8rem;
  line-height: 1;
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  opacity: 0.55;
}
.online-section {
  background: linear-gradient(135deg, var(--marrom) 0%, var(--marrom2) 100%);
  padding: 5rem 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.online-content p:first-child {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--areia);
  margin-bottom: 0.8rem;
  font-weight: 700;
}
.online-title {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--branco);
  line-height: 1.2;
}
.online-title em {
  font-style: italic;
}
.online-desc {
  color: rgba(253, 250, 245, 0.65);
  margin-top: 1rem;
  font-size: 0.95rem;
  max-width: 440px;
}
.online-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.online-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 40px;
  padding: 0.5rem 1rem;
  font-size: 0.78rem;
  color: rgba(253, 250, 245, 0.8);
}
.btn-prim-inv {
  padding: 1rem 2.4rem;
  background: var(--branco);
  color: var(--marrom);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  transition:
    background 0.3s,
    transform 0.3s;
}
.btn-prim-inv:hover {
  background: var(--creme);
  transform: translateY(-3px);
}
#processo {
  background: var(--creme2);
}
.processo-intro {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}
.step {
  padding: 2rem 1.5rem;
  background: var(--branco);
  border-radius: var(--radius);
  border: 1px solid rgba(196, 149, 106, 0.15);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(92, 61, 46, 0.1);
}
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--marrom);
  color: var(--branco);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 16px rgba(92, 61, 46, 0.2);
}
.step-title {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--marrom);
  text-align: center;
  margin-bottom: 0.5rem;
}
.step-desc {
  font-size: 0.82rem;
  color: var(--texto2);
  text-align: center;
  line-height: 1.5;
}

/* ── DEPOIMENTOS CARROSSEL (SETAS VISÍVEIS) ── */
#depoimentos {
  background: var(--branco);
}
.dep-intro {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 3rem;
}
.carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.carousel-container {
  flex: 1;
  overflow: hidden;
}
.dep-track {
  display: flex;
  gap: 1.4rem;
  transition: transform 0.5s var(--ease);
}
.dep-card {
  flex-shrink: 0;
  width: calc(25% - 1.05rem);
  padding: 1.8rem;
  border: 1px solid rgba(196, 149, 106, 0.2);
  border-radius: 16px;
  background: var(--creme);
  display: flex;
  flex-direction: column;
  transition:
    border-color 0.3s,
    transform 0.3s;
}
.dep-card:hover {
  border-color: var(--areia);
  transform: translateY(-5px);
}
.dep-stars {
  color: var(--caramelo);
  font-size: 0.8rem;
  margin-bottom: 0.8rem;
  letter-spacing: 0.1em;
}
.dep-text {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 0.98rem;
  color: var(--marrom2);
  line-height: 1.65;
  margin-bottom: 1.2rem;
  flex: 1;
}
.dep-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-top: 1px solid rgba(196, 149, 106, 0.15);
  padding-top: 1rem;
  margin-top: auto;
}
.dep-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--marrom), var(--areia));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--branco);
  font-weight: 700;
}
.dep-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--marrom);
}
.dep-role {
  font-size: 0.7rem;
  color: var(--texto2);
}

.carousel-btn {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--marrom);
  color: var(--branco);
  border: none;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.2s;
  box-shadow: 0 6px 18px rgba(92, 61, 46, 0.25);
  line-height: 1;
}
.carousel-btn:hover {
  background: var(--caramelo);
  transform: scale(1.05);
}
.carousel-btn.disabled {
  opacity: 0.4;
  pointer-events: none;
}

#cta {
  background: var(--creme2);
  text-align: center;
  padding: 9rem 6vw;
  position: relative;
  overflow: hidden;
}
.cta-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(196, 149, 106, 0.15);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ringPulseCta 6s ease-in-out infinite;
  pointer-events: none;
}
.cta-ring-1 {
  width: 400px;
  height: 400px;
}
.cta-ring-2 {
  width: 650px;
  height: 650px;
  animation-delay: -3s;
}
.cta-logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin: 0 auto 2rem;
  display: block;
  position: relative;
  z-index: 1;
}
.cta-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 400;
  color: var(--marrom);
  line-height: 1.15;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
}
.cta-title em {
  font-style: italic;
  color: var(--caramelo);
}
.cta-desc {
  color: var(--texto2);
  max-width: 460px;
  margin: 0 auto 2.8rem;
  font-size: 0.97rem;
  position: relative;
  z-index: 1;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-note {
  font-size: 0.75rem;
  color: var(--bege);
  margin-top: 1.5rem;
  letter-spacing: 0.08em;
}
footer {
  background: var(--marrom);
  color: rgba(253, 250, 245, 0.7);
  padding: 4rem 6vw 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3.5rem;
}
.footer-brand img {
  height: 64px;
  object-fit: contain;
  margin-bottom: 1.2rem;
  filter: brightness(0) invert(1);
  opacity: 0.75;
}
.footer-brand p {
  font-size: 0.85rem;
  max-width: 230px;
  color: rgba(253, 250, 245, 0.5);
}
.footer-col-title {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--areia);
  margin-bottom: 1.1rem;
  font-weight: 700;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-col a {
  font-size: 0.85rem;
  color: rgba(253, 250, 245, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: rgba(253, 250, 245, 0.9);
}
.footer-bottom {
  border-top: 1px solid rgba(253, 250, 245, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(253, 250, 245, 0.3);
  flex-wrap: wrap;
}
.footer-rntp {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--areia);
  opacity: 0.7;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(0.6);
  }
}
@keyframes ringPulseHero {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.1;
    transform: scale(1.04);
  }
}
@keyframes ringPulseCta {
  0%,
  100% {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.1;
    transform: translate(-50%, -50%) scale(1.04);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.12s;
}
.reveal-delay-2 {
  transition-delay: 0.24s;
}
.reveal-delay-3 {
  transition-delay: 0.36s;
}
.reveal-delay-4 {
  transition-delay: 0.48s;
}

@media (max-width: 1024px) {
  .dep-card {
    width: calc(50% - 0.7rem);
  }
  .carousel-btn {
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
  }
  .carousel-wrapper {
    gap: 0.8rem;
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 150px;
  }
  .bento-card.span-5,
  .bento-card.span-7 {
    grid-column: span 3;
  }
  .bento-card.span-12 {
    grid-column: span 6;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .footer-brand {
    grid-column: span 2;
  }
  #sobre {
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: #fdfaf5;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    transition: right 0.4s var(--ease);
    box-shadow: -8px 0 30px rgba(92, 61, 46, 0.1);
    z-index: 100;
  }
  .nav-links.active {
    right: 0;
  }
  .nav-cta.desktop-only {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  #hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 6rem 5vw 4rem;
  }
  .hero-logo-wrap {
    width: 220px;
  }
  .hero-scroll {
    display: none;
  }
  #sobre {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .bento {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .bento-card.span-5,
  .bento-card.span-7,
  .bento-card.span-12 {
    grid-column: span 1;
  }
  .online-section {
    flex-direction: column;
    text-align: center;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .dep-card {
    width: 100%;
  }
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
  }
  .carousel-wrapper {
    gap: 0.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-brand {
    grid-column: span 1;
  }
  .hero-actions {
    justify-content: center;
    margin-bottom: 1rem;
  }
}
