
/* ============================================
   VARIÁVEIS GLOBAIS
   ============================================ */
:root {
  --cream:         #e6ccb1;
  --white:         #ffffff;
  --dark:          #222224;
  --off-white:     #fff8f0;
  --brown:         #ac8f70;
}


/* ============================================
   RESET E BASE
   ============================================ */
* { margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
}

html { 
  scroll-behavior: smooth;  
  color-scheme: only light; 
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--dark);
  color: var(--off-white);
  overflow-x: hidden;
}


/* ============================================
   NAVEGAÇÃO
   ============================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 3rem;
  background: rgba(34,34,36,0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(230,204,177,0.06);
  transition: background 0.4s ease;
}

.nav-logo-img { height: 42px; width: auto; }

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.1em;
  color: var(--cream);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links li:not(.nav-contato):not(.nav-cases) {
  display: none;
}

.nav-links li:not(.nav-contato) a {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.3s;
}
.nav-links li:not(.nav-contato) a:hover { opacity: 1; }


/* CONTATO */
.nav-contato {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contato-pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cream);
  flex-shrink: 0;
  position: relative;
}
.contato-pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid var(--cream);
  animation: ripple 1.8s ease-out infinite;
}

@keyframes ripple {
  0%   { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(2.4); opacity: 0; }
}

.contato-animado {
  display: inline-flex;
  gap: 1px;
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
}

.contato-animado span {
  display: inline-block;
  opacity: 0;
  transform: translateY(-40px);
  animation: dropLetter 0.6s ease forwards;
  color: var(--cream);
}
.contato-animado span:nth-child(1) { animation-delay: 0.00s; }
.contato-animado span:nth-child(2) { animation-delay: 0.08s; }
.contato-animado span:nth-child(3) { animation-delay: 0.16s; }
.contato-animado span:nth-child(4) { animation-delay: 0.24s; }
.contato-animado span:nth-child(5) { animation-delay: 0.32s; }
.contato-animado span:nth-child(6) { animation-delay: 0.40s; }
.contato-animado span:nth-child(7) { animation-delay: 0.48s; }

@keyframes dropLetter {
  0%   { opacity: 0; transform: translateY(-40px); }
  60%  { transform: translateY(5px); }
  100% { opacity: 1; transform: translateY(0); }
}

.contato-animado:hover span {
  animation: jumpLetter 0.4s ease forwards;
  color: var(--off-white);
  opacity: 1;
}
.contato-animado:hover span:nth-child(1) { animation-delay: 0.00s; }
.contato-animado:hover span:nth-child(2) { animation-delay: 0.04s; }
.contato-animado:hover span:nth-child(3) { animation-delay: 0.08s; }
.contato-animado:hover span:nth-child(4) { animation-delay: 0.12s; }
.contato-animado:hover span:nth-child(5) { animation-delay: 0.16s; }
.contato-animado:hover span:nth-child(6) { animation-delay: 0.20s; }
.contato-animado:hover span:nth-child(7) { animation-delay: 0.24s; }

@keyframes jumpLetter {
  0%   { opacity: 1; transform: translateY(0); }
  30%  { opacity: 1; transform: translateY(-10px); }
  60%  { opacity: 1; transform: translateY(3px); }
  100% { opacity: 1; transform: translateY(0); }
}


/* ============================================
   HERO
   ============================================ */
#hero {
  position: relative;
  height: 280vh;
  background: var(--dark);
}

.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.hero-bg-text {
  position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(6rem, 16vw, 18rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(172,143,112,0.08);
  white-space: nowrap;
  user-select: none;
  animation: driftRight 18s linear infinite;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  text-align: center;
  line-height: 0.8;
}
@keyframes driftRight {
  0%   { left: -10%; }
  100% { left: 110%; }
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.18;
  animation: blobFloat 8s ease-in-out infinite;
  pointer-events: none;
}
.blob-1 { 
  width: 400px; 
  height: 400px; 
  background: var(--cream); 
  top: -180px; 
  right: -180px; 
}

.blob-2 { 
  width: 300px; 
  height: 300px; 
  background: var(--brown); 
  bottom: 0; 
  left: 0; 
  animation-delay: 2s; 
  transform: translate(-40%,40%) 
  translateZ(0);
}

@keyframes blobFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-20px); }
}

.hero-content {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: auto;
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 3rem;
  animation: fadeUp 0.8s 0.2s both;
  position: relative;
  z-index: 10;
}

.hero-title-block {
  position: relative;
  animation: fadeUp 0.8s 0.4s both;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.t-coffee {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(14rem, 24vw, 26rem);
  color: var(--cream);
  display: block;
  letter-spacing: -0.01em;
  line-height: 0.40;
  position: relative;
  z-index: 5;
  margin-bottom: 0.35em;
}

.t-us {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(12rem, 22vw, 24rem);
  color: transparent;
  -webkit-text-stroke: 3px var(--cream);
  letter-spacing: -0.01em;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 47%;
  z-index: 25;
  pointer-events: none;
  white-space: nowrap;
}

.video-reveal-wrap {
  position: absolute;
  left: 50%;
  width: min(28vw, 320px);
  height: calc(min(28vw, 320px) * 0.58);
  top: 55%;
  transform: translateX(-50%) rotate(-7deg);
  border-radius: 12px;
  z-index: 10;
  overflow: hidden;
  will-change: width, height, top, border-radius, transform;
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
}
.video-reveal-wrap video {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.video-fallback { display: none; }

.scroll-hint {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brown);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 12;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, transparent, var(--brown));
  animation: scrollDown 1.5s ease-in-out infinite;
}
@keyframes scrollDown {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee-faixa {
  background: var(--cream);
  overflow: hidden;
  padding: 18px 0;
  white-space: nowrap;
  position: relative;
  z-index: 5;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 3rem;
  animation: marqueeScroll 20s linear infinite;
}
.marquee-track span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.25em;
  color: var(--dark);
}
.marquee-dot { 
  color: var(--brown) !important; 
  font-size: 0.9rem !important; 
  opacity: 0.7; 
}

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ============================================
   SOBRE
   ============================================ */
#sobre {
  background: var(--dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  position: relative;
}

.sobre-left {
  padding: 100px 56px 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(230,204,177,0.1);
  position: relative;
  z-index: 2;
  font-family: 'Montserrat', sans-serif;
}

.sobre-tag {
  font-size: 0.62rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--brown);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
}
.sobre-tag::before { 
  content: ''; 
  width: 24px; 
  height: 1px; 
  background: var(--brown); 
  display: inline-block; 
}

.sobre-titulo-grande {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4.5rem, 10vw, 8rem);
  line-height: 0.88;
  color: var(--cream);
  letter-spacing: -0.01em;
  margin-bottom: 56px;
}
.sobre-titulo-grande .outline { 
  color: transparent; 
  -webkit-text-stroke: 0.5px var(--cream); /*HISTÓ*/
}

.sobre-texto {
  font-size: 0.7rem;
  line-height: 2.1;
  color: rgba(255,248,240,0.52);
  margin-bottom: 44px;
}
.sobre-texto strong { 
  color: var(--cream); 
  font-weight: 700; 
}

.sobre-texto .bloco { 
  display: block; 
  margin-bottom: 16px;
}

.sobre-nome {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: var(--cream);
  line-height: 1.2;
}
.sobre-cargo {
  font-size: 0.56rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 16px;
  display: block;
}

.sobre-stat {
  display: flex;
  gap: 48px;
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid rgba(230,204,177,0.08);
}
.stat-numero { 
  font-family: 'Bebas Neue', sans-serif; 
  font-size: 2.8rem; 
  color: var(--cream); 
  line-height: 1; 
}

.stat-label { 
  font-size: 0.56rem; 
  letter-spacing: 0.25em; 
  text-transform: uppercase; 
  color: var(--brown); 
  margin-top: 4px; 
}

.sobre-right {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.sobre-ano {
  position: absolute;
  top: 48px; right: 16px;
  font-size: 0.56rem;
  letter-spacing: 0.2em;
  color: rgba(230,204,177,0.25);
  writing-mode: vertical-rl;
  z-index: 3;
}

.fotos-stack {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 4px;
  position: absolute;
  inset: 0;
}

.foto-grande { 
  flex: 0 0 60%; 
  position: relative; 
  overflow: hidden; 
}

.fotos-dupla { 
  flex: 0 0 calc(40% - 4px); 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 4px; 
}

.foto-item { 
  position: relative; 
  overflow: hidden; 
  flex: 1; 
}

.foto-item img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  object-position: center top; 
  display: block; 
  transition: transform 0.6s ease; 
}

.foto-item:hover img { 
  transform: scale(1.04); 
}

.foto-grande .foto-overlay {
  position: absolute; 
  bottom: 0; 
  left: 0; 
  right: 0; 
  height: 55%;
  background: linear-gradient(to top, rgba(34,34,36,0.92) 0%, rgba(34,34,36,0.5) 50%, transparent 100%);
  z-index: 1;
}

.foto-caption { 
  position: absolute; 
  bottom: 32px; 
  left: 32px; 
  right: 32px; 
  z-index: 2; 
}

.foto-caption-tag {
  font-size: 0.58rem; 
  letter-spacing: 0.3em; 
  text-transform: uppercase;
  color: var(--brown); 
  display: flex; 
  align-items: center; 
  gap: 10px; 
  margin-bottom: 10px;
}
.foto-caption-tag::before { 
  content: ''; 
  width: 18px; 
  height: 1px; 
  background: var(--brown); 
  display: inline-block; 
}

.foto-caption-frase { 
  font-family: 'Bebas Neue', sans-serif; 
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); 
  line-height: 0.95; 
  color: var(--cream); 
  letter-spacing: 0.02em; 
}

.foto-caption-frase .outline { 
  color: transparent; 
  -webkit-text-stroke: 1.5px 
  var(--cream); }


/* ============================================
   SERVIÇOS
   ============================================ */
#servicos {
  background: var(--cream);
  padding: 100px 60px;
  position: relative;
  overflow: hidden;
}
.servicos-inner { 
  position: relative; 
  z-index: 1; 
  max-width: 1100px; 
  margin: 0 auto; }

.servicos-tag {
  font-size: 0.62rem; 
  letter-spacing: 0.4em; 
  text-transform: uppercase;
  color: #ac8f70; 
  display: flex; 
  align-items: center; 
  gap: 12px; 
  margin-bottom: 36px;
}

.servicos-tag::before { 
  content: ''; 
  width: 24px; 
  height: 1px; 
  background: #ac8f70; 
  display: inline-block; }

.servicos-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 50px;
  align-items: start;
}

.servicos-titulo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4.5rem, 10vw, 8rem);
  line-height: 0.88; 
  color: #222224; 
  letter-spacing: -0.01em;
}

.sv-outline { 
  color: transparent; 
  -webkit-text-stroke: 0.5px #222224; /*ÊNCIA*/
}

.servicos-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem; 
  line-height: 2.1;
  color: rgba(34,34,36,0.6); 
  margin-bottom: 44px;
}

.btn-whatsapp {
  display: inline-flex; 
  flex-direction: column;
  align-items: center; 
  gap: 10px; 
  margin-top: 100px; 
  text-decoration: none;
}

.btn-wpp-circulo {
  width: 56px; 
  height: 56px; 
  border-radius: 50%;
  border: 1.5px solid #222224; 
  display: flex; 
  align-items: center;
  justify-content: center; 
  animation: pulsar-wpp 2s ease-in-out infinite; 
  transition: background 0.3s;
}

.btn-wpp-circulo i { 
  font-size: 24px; 
  color: #222224; 
  transition: color 0.3s; 
}

.btn-whatsapp:hover .btn-wpp-circulo { 
  background: #222224; 
}

.btn-whatsapp:hover .btn-wpp-circulo i { 
  color: var(--cream); 
}

.btn-wpp-texto {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.15em; 
  text-transform: uppercase; 
  color: #222224;
  text-align: center; 
  white-space: nowrap;
}

@keyframes pulsar-wpp {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.1); }
}

.servicos-lista { 
  display: flex; 
  flex-direction: column; 
}

.lista-item {
  display: flex; 
  align-items: flex-start; 
  gap: 16px;
  padding: 18px 0; 
  border-top: 1px solid rgba(34,34,36,0.12);
}

.lista-item:last-child { 
  border-bottom: 1px solid rgba(34,34,36,0.12); 
}

.lista-num { 
  font-family: 'Bebas Neue', sans-serif; 
  font-size: 1.5rem; 
  color: #ac8f70; 
  min-width: 24px; 
  padding-top: 1px; 
}

.lista-titulo { 
font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem; 
  font-weight: 700; 
  color: #222224; 
  letter-spacing: 0.05em; 
  margin-bottom: 4px; 
}

.lista-texto { 
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem; 
  line-height: 1.8; 
  color: rgba(34,34,36,0.6); 
}

.timeline-titulo {
  font-size: 0.62rem; 
  letter-spacing: 0.4em; 
  text-transform: uppercase;
  color: #ac8f70; 
  margin-bottom: 48px; 
  display: flex; 
  align-items: center; 
  gap: 12px;
}

.timeline-titulo::before { 
  content: ''; 
  width: 24px; 
  height: 1px; 
  background: #ac8f70; 
  display: inline-block; 
}

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

.timeline-step { 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  text-align: center; 
  padding: 0 12px; 
  position: relative; 
}

.step-circulo {
  width: 36px; 
  height: 36px; 
  border-radius: 50%; 
  background: #222224;
  display: flex; 
  align-items: center; 
  justify-content: center;
  margin-bottom: 16px; 
  flex-shrink: 0; 
  position: relative; 
  z-index: 2;
}

.step-num { 
  font-family: 'Bebas Neue', sans-serif; 
  font-size: 1rem; 
  color: var(--cream); 
  line-height: 1; 
}

.timeline-linha {
  position: absolute; 
  top: 17px; 
  left: calc(50% + 18px);
  width: calc(100% - 36px); 
  height: 1px; 
  background: transparent; 
  overflow: hidden;
}

.timeline-linha-fill { 
  height: 100%; 
  width: 0%; 
  background: #222224; 
  transition: width 0.8s ease; 
}

.timeline-step.ativo .timeline-linha-fill { 
  width: 100%; 
}

.timeline-step.last .timeline-linha { 
  display: none; 
}

.step-nome { 
  font-family: 'Bebas Neue', sans-serif; 
  font-size: 1.3rem; 
  color: #222224; 
  letter-spacing: 0.05em; 
  margin-bottom: 8px; 
}

.step-desc { 
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem; 
  line-height: 1.8; 
  color: rgba(34,34,36,0.55); 
}


/* ============================================
   GALERIA
   ============================================ */
#galeria {
  background: var(--dark);
  position: relative;
  padding: 100px 0 120px;
}

.galeria-sticky {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 60px;
}

.galeria-topo {
  margin-bottom: 60px;
}

.galeria-tag {
  font-size: 0.62rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--brown);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.galeria-tag::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--brown);
  display: inline-block;
}

.galeria-titulo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: 0.88;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.gl-outline {
  color: transparent;
  -webkit-text-stroke: 0.5px var(--cream);
}

.galeria-nav-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: relative;
}

.galeria-cards {
  position: relative;
  width: 300px;
  height: 420px;
  flex-shrink: 0;
}

.card-polaroid {
  background: var(--off-white);
  border-radius: 8px;
  padding: 14px 14px 48px;
  width: 100%;
  position: absolute;
  top: 0; left: 0;
  opacity: 0;
  pointer-events: none;
  transform: rotate(var(--rot, 0deg)) translateX(60px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.card-polaroid.ativo {
  opacity: 1;
  pointer-events: auto;
  transform: rotate(var(--rot, 0deg)) translateX(0);
}

.card-polaroid.saindo-esq {
  opacity: 0;
  transform: rotate(var(--rot, 0deg)) translateX(-60px);
}

.card-polaroid.saindo-dir {
  opacity: 0;
  transform: rotate(var(--rot, 0deg)) translateX(60px);
}

.card-foto {
  width: 100%;
  aspect-ratio: 1/1.1;
  overflow: hidden;
  border-radius: 4px;
  background: #2a2826;
}
.card-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-legenda {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  color: var(--dark);
  text-align: center;
  margin-top: 14px;
  opacity: 0.7;
}

.galeria-seta {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(230,204,177,0.25);
  background: transparent;
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s, transform 0.2s;
}
.galeria-seta:hover {
  background: rgba(230,204,177,0.1);
  border-color: rgba(230,204,177,0.5);
  transform: scale(1.08);
}
.galeria-seta:active {
  transform: scale(0.95);
}

.galeria-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}
.galeria-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(230,204,177,0.2);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}
.galeria-dot.ativo {
  background: var(--cream);
  transform: scale(1.3);
}


/* ============================================
   DEGUSTAÇÃO
   ============================================ */
#degustacao { 
  background: var(--cream); 
  padding: 100px 60px; 
  overflow: hidden; 
  position: relative; 
}

.degu-inner { 
  max-width: 1100px; 
  margin: 0 auto; 
}

.degu-tag {
  font-size: 0.62rem; 
  letter-spacing: 0.4em; 
  text-transform: uppercase;
  color: var(--brown); 
  display: flex; 
  align-items: center; 
  gap: 12px; 
  margin-bottom: 20px;
}

.degu-tag::before { 
  content: ''; 
  width: 24px; 
  height: 1px; 
  background: var(--brown); 
  display: inline-block; 
}

.degu-titulo-wrap { 
  position: relative; 
  z-index: 1; 
}

.degu-titulo { 
  font-family: 'Bebas Neue', sans-serif; 
  font-size: clamp(4.5rem, 12vw, 10rem); 
  line-height: 0.85; 
  color: #222224; 
  letter-spacing: -0.01em;
}
.degu-outline { 
  color: transparent; 
  -webkit-text-stroke: 0.5px #222224; /*AROMA*/
}

.degu-leque {
  position: relative; 
  height: 380px;
  display: flex; 
  align-items: center; 
  justify-content: center;
  margin-top: -40px; 
  z-index: 2;
}
.degu-foto {
  position: absolute; 
  width: 210px; 
  height: 280px;
  border-radius: 12px; 
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(34,34,36,0.22); 
  background: #2a2826;
  transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94), opacity 0.8s ease;
}

.degu-foto img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  display: block; 
}

.degu-esq  { 
  transform: rotate(-12deg) translateX(-180px) translateY(20px); 
  z-index: 1; 
  opacity: 0.8; 
}
.degu-centro { 
  transform: rotate(0deg) translateY(-10px); 
  z-index: 3; 
}

.degu-dir  { 
  transform: rotate(12deg) translateX(180px) translateY(20px); 
  z-index: 1; 
  opacity: 0.8; 
}

.degu-baixo { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 60px; 
  margin-top: 60px; 
}

.degu-desc { 
  font-size: 0.7rem; 
  line-height: 2.1; 
  color: rgba(34,34,36,0.6); 
  margin-bottom: 36px; 
}

.degu-itens { 
  display: flex; 
  flex-direction: column; 
}

.degu-item { 
  display: flex; 
  gap: 16px; 
  padding: 16px 0; 
  border-top: 1px solid rgba(34,34,36,0.12); 
  align-items: flex-start; 
}

.degu-item:last-child { 
  border-bottom: 1px solid rgba(34,34,36,0.12); 
}

.degu-icone { 
  font-size: 16px; 
  min-width: 24px; 
  padding-top: 2px; 
}

.degu-item-titulo { 
  font-size: 0.72rem; 
  font-weight: 700; 
  color: #222224; 
  margin-bottom: 4px; 
}

.degu-item-texto { 
  font-size: 0.65rem; 
  line-height: 1.8; 
  color: rgba(34,34,36,0.6); 
}

.btn-degu { 
  display: inline-flex; 
  flex-direction: column; 
  align-items: center; 
  gap: 10px; 
  text-decoration: none; 
}

.btn-degu-circulo {
  width: 56px; 
  height: 56px; 
  border-radius: 50%; 
  border: 1.5px solid #222224;
  display: flex; 
  align-items: center; 
  justify-content: center;
  animation: pulsar-wpp 2s ease-in-out infinite; 
  transition: background 0.3s;
}

.btn-degu-circulo i { 
  font-size: 24px; 
  color: #222224; 
  transition: color 0.3s; 
}

.btn-degu:hover .btn-degu-circulo { 
  background: #222224; 
}

.btn-degu:hover .btn-degu-circulo i { 
  color: var(--cream); 
}

.btn-degu-texto { 
  font-size: 0.55rem; 
  letter-spacing: 0.15em; 
  text-transform: uppercase; 
  color: #222224; 
  text-align: center; 
  white-space: nowrap; 
}


/* ============================================
   PARCEIROS
   ============================================ */
#parceiros { 
  background: var(--dark); 
  padding: 100px 0 0; 
  position: relative; 
}

#parceiros::before { 
  content: ''; 
  position: absolute; 
  top: 0; left: 0; 
  right: 0; 
  height: 1px; 
  background: linear-gradient(to right, transparent, rgba(230,204,177,0.2), transparent); 
}

.parceiros-inner { 
  max-width: 1100px; 
  margin: 0 auto; 
  padding: 0 60px; 
  padding-bottom: 80px;
}

.parceiros-tag { 
  font-size: 0.62rem; 
  letter-spacing: 0.4em; 
  text-transform: uppercase; 
  color: var(--brown); 
  display: flex; 
  align-items: center; 
  gap: 12px; 
  margin-bottom: 24px; 
}

.parceiros-tag::before { 
  content: ''; 
  width: 24px; 
  height: 1px; 
  background: var(--brown); 
  display: inline-block; 
}

.parceiros-titulo { 
  font-family: 'Bebas Neue', sans-serif; 
  font-size: clamp(4rem, 9vw, 7rem); 
  line-height: 0.88; 
  color: var(--cream); 
  letter-spacing: -0.01em; 
  margin-bottom: 24px; 
}

.pc-outline { 
  color: transparent; 
  -webkit-text-stroke: 0.5px var(--cream); /*NA NOSSA*/ 
}

.parceiros-desc { 
  font-size: 0.7rem; 
  line-height: 2.1; 
  color: rgba(255,248,240,0.5); 
  max-width: 500px; 
  margin-bottom: 60px; 
}

.parceiros-stats { 
  display: flex;
  align-items: center; 
  gap: 40px; 
  margin-bottom: 80px; 
  padding-bottom: 60px; 
  border-bottom: 1px solid rgba(230,204,177,0.1); 
}

.pstat-num { 
  font-family: 'Bebas Neue', sans-serif; 
  font-size: 3.5rem; 
  color: var(--cream); 
  line-height: 1; 
}

.pstat-label { 
  font-size: 0.58rem; 
  letter-spacing: 0.2em; 
  text-transform: uppercase; 
  color: var(--brown); 
  margin-top: 4px; 
}

.pstat-divider { 
  width: 1px; 
  height: 50px; 
  background: rgba(230,204,177,0.15); 
}

.parceiros-carrossel { 
  background: #fff; 
  padding: 10px 0; 
  position: relative; 
  z-index: 1;
  isolation: isolate;
  border-top: 3px solid rgba(230,204,177,0.15); 
  border-bottom: 3px solid rgba(230,204,177,0.15); 
  margin-top: 0px; 
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  opacity: 1;
  overflow: hidden;
}

.parceiros-track { 
  display: flex; 
  align-items: center; 
  gap: 80px; 
  width: max-content; 
  animation: carrosselSlide 35s linear infinite;
  animation-play-state: running;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-style: flat;
}

@media (hover: hover) and (pointer: fine) {
  .parceiros-track:hover {
    animation-play-state: paused;
  }
}

.parceiro-logo { 
  flex-shrink: 0; 
  height: 30px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  position: relative; 
}

.parceiro-logo::after { 
  content: '✦'; 
  position: absolute; 
  right: -48px; 
  color: #ac8f70; 
  font-size: 0.6rem; 
  opacity: 0.4; 
}

.parceiro-logo:last-child::after { 
  display: none; 
}

.parceiro-logo img { 
  width: auto; 
  height: 26px; 
  max-width: 75px; 
  object-fit: contain; 
  filter: grayscale(15%); 
  transition: filter 0.3s, transform 0.3s; 
}

.parceiro-logo:hover img { 
  filter: grayscale(0%); 
  transform: scale(1.08); 
}

@keyframes carrosselSlide {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ============================================
   FEEDBACKS
   ============================================ */
.feedbacks-wrap {
  margin-top: 0;
  padding-top: 60px;
  border-top: 1px solid rgba(230,204,177,0.1);
}
 
.feedbacks-tag {
  font-size: 0.62rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--brown);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}
.feedbacks-tag::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--brown);
  display: inline-block;
}
 
.feedbacks-nav-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
 
.feedbacks-cards {
  position: relative;
  width: 380px;
  height: 240px;
  flex-shrink: 0;
}
 
.feedback-card {
  background: var(--cream);
  border: 1px solid rgba(230,204,177,0.15);
  border-radius: 14px;
  padding: 28px 24px 22px;
  width: 100%;
  position: absolute;
  top: 0; left: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(60px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
 
.fb-aspas {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 3rem;
  color: var(--brown);
  line-height: 1;
  margin-bottom: 10px;
  opacity: 1;
}
 
.fb-texto {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  line-height: 1.9;
  color: rgba(34,34,36,0.65);
  font-style: italic;
  margin-bottom: 18px;
}
 
.fb-divisor {
  height: 1px;
  background: rgba(34,34,36,0.1);
  margin-bottom: 16px;
}
 
.fb-autor-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
 
.fb-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(172,143,112,0.15);
  border: 1px solid rgba(172,143,112,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--dark);
  flex-shrink: 0;
  letter-spacing: 0.05em;
}
 
.fb-autor-info {
  flex: 1;
  min-width: 0;
}
 
.fb-nome {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.03em;
}
 
.fb-evento {
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  color: rgba(34,34,36,0.5);
  margin-top: 3px;
  text-transform: uppercase;
}
 
.fb-estrelas {
  display: flex;
  gap: 2px;
  flex-shrink: 0;
}
 
.fb-estrela {
  font-size: 0.7rem;
  color: var(--dark);
}
 
.feedbacks-seta {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(230,204,177,0.2);
  background: transparent;
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s, transform 0.2s;
}
.feedbacks-seta:hover {
  background: rgba(230,204,177,0.08);
  border-color: rgba(230,204,177,0.4);
  transform: scale(1.08);
}
.feedbacks-seta:active {
  transform: scale(0.95);
}
 
.feedbacks-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}
 
.feedbacks-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(230,204,177,0.15);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}
.feedbacks-dot.ativo {
  background: var(--brown);
  transform: scale(1.3);
}


/* ============================================
   CASES — FAIXA + PAINEL EXPANSÍVEL
   ============================================ */
 
.cases-faixa {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border: 1px solid rgba(230,204,177,0.1);
  border-radius: 14px;
  cursor: pointer;
  margin-top: 32px;
  transition: border-color 0.22s, background 0.22s;
}
.cases-faixa:hover,
.cases-faixa.aberto {
  border-color: rgba(172,143,112,0.4);
  background: rgba(172,143,112,0.03);
}
 
.cf-titulo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: var(--cream);
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.cf-sub {
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown);
  margin-top: 5px;
}
 
.cf-dir {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.cf-seta {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(230,204,177,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown);
  transition: border-color 0.22s, background 0.22s, transform 0.4s;
}
.cases-faixa.aberto .cf-seta {
  border-color: var(--brown);
  background: rgba(172,143,112,0.1);
  transform: rotate(180deg);
}
.cf-ver {
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(172,143,112,0.45);
  transition: color 0.22s;
}
.cases-faixa.aberto .cf-ver { color: var(--brown); }
 
/* PAINEL */
.cases-painel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cases-painel.aberto { max-height: 800px; }
.cases-painel-wrap { padding: 4px 0 0; }
 
/* LINHAS DE CASE */
.case-linha {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(230,204,177,0.06);
  cursor: pointer;
  transition: padding-left 0.2s;
}
.case-linha:first-child {
  border-top: 1px solid rgba(230,204,177,0.06);
  margin-top: 8px;
}
.case-linha:hover { padding-left: 8px; }
 
.cl-esq {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
  min-width: 0;
}
.cl-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: rgba(172,143,112,0.2);
  line-height: 1.1;
  flex-shrink: 0;
  transition: color 0.2s;
}
.case-linha:hover .cl-num { color: var(--brown); }
 
.cl-cat {
  font-size: 0.5rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 4px;
}
.cl-titulo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}
.cl-desc {
  font-size: 0.58rem;
  color: rgba(230,204,177,0.3);
  line-height: 1.6;
}
 
.cl-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  flex-shrink: 0;
}
.cl-tag {
  font-size: 0.52rem;
  letter-spacing: 0.1em;
  padding: 3px 9px;
  border-radius: 20px;
  border: 1px solid rgba(230,204,177,0.08);
  color: rgba(230,204,177,0.3);
  transition: border-color 0.2s, color 0.2s;
}
.case-linha:hover .cl-tag {
  border-color: rgba(172,143,112,0.3);
  color: var(--brown);
}
 
.cl-seta {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(230,204,177,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(172,143,112,0.3);
  flex-shrink: 0;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.case-linha:hover .cl-seta {
  border-color: var(--brown);
  color: var(--cream);
  transform: rotate(-45deg);
}
 
/* RODAPÉ DO PAINEL */
.cases-rodape {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 8px;
  gap: 12px;
}
 
.btn-ver-todos {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid rgba(230,204,177,0.12);
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.22s, background 0.22s;
}
.btn-ver-todos:hover {
  border-color: rgba(172,143,112,0.4);
  background: rgba(172,143,112,0.05);
}
.bvt-texto {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(230,204,177,0.45);
  transition: color 0.22s;
}
.btn-ver-todos:hover .bvt-texto { color: var(--cream); }
.bvt-seta {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(230,204,177,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown);
  flex-shrink: 0;
  transition: border-color 0.22s, background 0.22s, transform 0.22s;
}
.btn-ver-todos:hover .bvt-seta {
  border-color: var(--brown);
  background: rgba(172,143,112,0.1);
  transform: rotate(-45deg);
}
 
.btn-fechar-cases {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  transition: opacity 0.22s;
}
.btn-fechar-cases:hover { opacity: 0.7; }
.bfc-circulo {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(230,204,177,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(172,143,112,0.5);
  transition: border-color 0.22s, color 0.22s;
}
.btn-fechar-cases:hover .bfc-circulo {
  border-color: rgba(172,143,112,0.4);
  color: var(--brown);
}
.bfc-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.48rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(172,143,112,0.35);
}


/* ============================================
   FRASE IMPACTO
   ============================================ */
#frase-impacto { 
  background: var(--cream); 
  padding: 0; 
  overflow: hidden; 
}
.frase-baixo { 
  display: grid; 
  grid-template-columns: 1.2fr 1fr; 
  height: 60vh; 
}

.frase-foto { 
  position: relative; 
  overflow: hidden; 
}

.frase-foto img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  object-position: center; 
  display: block; 
  transition: transform 0.6s ease; 
}

.frase-foto:hover img { 
  transform: scale(1.03); 
}

.frase-coffee-over { 
  position: absolute; 
  top: 24px; 
  left: 10px; 
  font-family: 'Bebas Neue', sans-serif; 
  font-size: clamp(4rem, 10vw, 8rem); 
  color: var(--cream); 
  line-height: 0.85; 
  letter-spacing: -0.02em; 
  pointer-events: none; 
  z-index: 10; 
}

.frase-us-over { 
  position: absolute; 
  bottom: 10px; 
  right: 10px; 
  font-family: 'Bebas Neue', sans-serif; 
  font-size: clamp(4rem, 10vw, 8rem); 
  color: transparent; 
  -webkit-text-stroke: 0.5px var(--cream); 
  line-height: 0.85; 
  letter-spacing: -0.02em; 
  pointer-events: none; 
  z-index: 10; 
}

.frase-dir { 
  display: flex; 
  flex-direction: column; 
  justify-content: center;
   gap: 4px; padding: 40px 40px 40px 48px; 
  }

.frase-linha { 
  font-family: 'Bebas Neue', sans-serif; 
  font-size: clamp(2rem, 4.5vw, 3.8rem); 
  color: var(--dark); letter-spacing: -0.01em; 
  display: block; 
  line-height: 0.92; 
}

.frase-outline { 
  color: transparent; -webkit-text-stroke: 0.5px var(--dark); 
}

@media (-webkit-min-device-pixel-ratio: 2) {
  .frase-us-over  { -webkit-text-stroke: 1px var(--cream); }
  .frase-outline  { -webkit-text-stroke: 0.5px var(--dark); }/*QUE IMPULSIONA - QUE CONECTA*/
}


/* ============================================
   FOOTER
   ============================================ */
#footer { 
  background: var(--dark); 
  position: relative; 
  overflow: hidden; 
  padding: 192px 60px 0; 
}

#footer::before { 
  content: ''; 
  position: absolute; 
  top: 0; left: 0; 
  right: 0; 
  height: 1px; 
  background: linear-gradient(to right, transparent, rgba(230,204,177,0.2), transparent); 
}

#beansCanvas { 
  position: absolute; 
  inset: 0; width: 100%; 
  height: 100%; 
  pointer-events: none; 
  z-index: 1; 
}

.ft-inner { 
  position: relative; 
  z-index: 2; 
  max-width: 1100px; 
  margin: 0 auto; 
  display: grid; 
  grid-template-columns: 1fr 1fr 1fr; gap: 60px; 
  padding-bottom: 60px; 
}

.ft-logo-img { 
  height: 150px; 
  width: auto; 
  display: block; 
  margin-left: -20px; 
  margin-top: -20px; 
}

.ft-tagline { 
  font-family: 'Montserrat', sans-serif; 
  font-size: 0.58rem; 
  letter-spacing: 0.2em; 
  color: var(--brown); 
  text-transform: uppercase; 
  margin-top: 8px; 
}

.ft-frase-delicada { 
  font-family: 'Montserrat', sans-serif; 
  font-size: 0.6rem; 
  line-height: 2.2; 
  color: rgba(230,204,177,0.38); 
  margin-top: 20px; 
  font-style: italic; 
  border-left: 1px solid rgba(172,143,112,0.25); 
  padding-left: 14px; 
}

.ft-social { 
  display: flex; 
  gap: 16px; 
  margin-top: 24px; 
}

.ft-soc-btn { 
  width: 36px; 
  height: 36px; 
  border-radius: 50%; 
  border: 1px solid rgba(230,204,177,0.2); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  color: var(--cream); 
  font-size: 14px; 
  text-decoration: none; 
  transition: background 0.3s; 
}

.ft-soc-btn:hover { 
  background: rgba(230,204,177,0.1); 
}

.ft-col-titulo { 
  font-family: 'Montserrat', sans-serif; 
  font-size: 0.58rem; 
  letter-spacing: 0.3em; 
  text-transform: uppercase; 
  color: var(--brown); 
  margin-bottom: 20px; 
}

.ft-links { 
  display: flex; 
  flex-direction: column; 
  gap: 12px; 
}

.ft-link { 
  font-family: 'Montserrat', sans-serif; 
  font-size: 0.65rem; 
  color: rgba(230,204,177,0.5); 
  text-decoration: none; 
  transition: color 0.3s; 
}

.ft-link:hover { 
  color: var(--cream); 
}

.ft-bottom { 
  position: relative; 
  z-index: 2; 
  border-top: 1px solid rgba(230,204,177,0.08); 
  padding: 29px 0; 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  gap: 15px; 
  max-width: 1100px; 
  margin: 0 auto; 
}

.ft-copy { 
  font-family: 'Montserrat', sans-serif; 
  font-size: 0.55rem; 
  color: rgba(230,204,177,0.25); 
  letter-spacing: 0.1em; 
}

.assinatura-daniel { 
  align-self: flex-end; 
  font-family: 'Montserrat', sans-serif; 
  font-size: 0.55rem; 
  letter-spacing: 0.2em; 
  color: rgba(230,204,177,0.25); 
  text-decoration: none; 
  transition: color 0.3s; 
}

.assinatura-daniel:hover { 
  color: rgba(230,204,177,0.8); 
}

.assinatura-daniel strong { 
  color: rgba(230,204,177,0.7); 
  font-weight: 700; 
  transition: color 0.3s; 
}

.assinatura-daniel:hover strong { 
  color: var(--cream); 
}

.cursor-daniel { 
  display: inline-block; 
  color: var(--brown); 
  animation: piscarCursor 0.8s step-end infinite; 
  margin-left: 1px; 
}

@keyframes piscarCursor {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}


/* ============================================
   BOTÃO FLUTUANTE
   ============================================ */
.btn-flutuante { 
  position: fixed; 
  bottom: 32px; 
  right: 32px; 
  z-index: 999; 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  gap: 8px; 
  cursor: pointer; 
  background: none; 
  border: none; 
}

.btn-flutuante-circulo { 
  width: 60px; 
  height: 60px; 
  border-radius: 50%; 
  background: var(--cream); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  box-shadow: 0 4px 24px rgba(0,0,0,0.4); 
  animation: pulsarBtn 2s ease-in-out infinite; 
  transition: background 0.3s, transform 0.2s; 
}

.btn-flutuante:hover .btn-flutuante-circulo { 
  background: var(--off-white); 
  transform: scale(1.08); 
}

.btn-flutuante-circulo i { 
  font-size: 26px; 
  color: var(--dark); 
}

.btn-flutuante-label { 
  font-family: 'Montserrat', sans-serif; 
  font-size: 0.48rem; 
  letter-spacing: 0.15em; 
  text-transform: uppercase; 
  color: rgba(230,204,177,0.6); 
  white-space: nowrap; 
}

.ft-wpp-btn { 
  position: relative; 
  background: none; 
  border: none; 
  cursor: pointer; 
  padding: 0; 
  margin-top: 210px; 
  margin-left: -30px; 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  gap: 8px; 
}

@keyframes pulsarBtn {
  0%, 100% { box-shadow: 0 4px 24px rgba(0,0,0,0.4), 0 0 0 0 rgba(230,204,177,0.3); }
  50%       { box-shadow: 0 4px 24px rgba(0,0,0,0.4), 0 0 0 12px rgba(230,204,177,0); }
}


/* ============================================
   MODAL
   ============================================ */
.modal-overlay { 
  display: none; 
  position: fixed; 
  inset: 0; background: rgba(0,0,0,0.75); 
  z-index: 1000; 
  align-items: center; 
  justify-content: center; 
  padding: 20px; 
}

.modal-overlay.aberto {
  display: flex; 
}

.modal { 
  background: #2a2826; 
  border: 1px solid rgba(230,204,177,0.12); 
  border-radius: 16px; 
  width: 100%; 
  max-width: 480px; 
  padding: 40px; 
  position: relative; 
  animation: slideUp 0.35s ease; 
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.modal-fechar { 
  position: absolute; 
  top: 16px; 
  right: 20px; 
  background: none; 
  border: none; 
  color: rgba(230,204,177,0.4); 
  font-size: 1.4rem; 
  cursor: pointer; 
  transition: color 0.3s; 
}

.modal-fechar:hover { 
  color: var(--cream); 
}

.modal-tag { 
  font-family: 'Montserrat', sans-serif; 
  font-size: 0.55rem; 
  letter-spacing: 0.3em; 
  text-transform: uppercase; 
  color: var(--brown); 
  margin-bottom: 12px; 
  display: flex; 
  align-items: center; 
  gap: 10px; 
}

.modal-tag::before { 
  content: ''; 
  width: 18px; 
  height: 1px; 
  background: var(--brown); 
  display: inline-block; 
}

.modal-titulo { 
  font-family: 'Bebas Neue', sans-serif; 
  font-size: 2.6rem; 
  color: var(--cream); 
  line-height: 0.88; 
  letter-spacing: -0.01em; 
  margin-bottom: 28px; 
}

.modal-titulo span { 
  color: transparent; 
  -webkit-text-stroke: 1px var(--cream); 
}

.form-btn { 
  background: #25D366; 
  color: #fff; 
  border: none; 
  border-radius: 8px; 
  padding: 12px 24px; 
  font-family: 'Montserrat', sans-serif; 
  font-size: 0.65rem; 
  letter-spacing: 0.15em; 
  text-transform: uppercase; 
  cursor: pointer; 
  display: flex; 
  align-items: center; 
  gap: 8px; 
  margin-top: 20px; 
  transition: background 0.3s; 
}

.form-btn:hover { 
  background: #1ebe5d; 
}
.form-grupo { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
  margin-bottom: 12px; 
}

.form-label { 
  color: var(--cream); 
  font-family: 'Montserrat', sans-serif; 
  font-size: 0.65rem; 
  letter-spacing: 0.15em; 
  text-transform: uppercase; 
  white-space: nowrap; 
}

.form-input { 
  background: transparent; 
  border: none; 
  border-bottom: 1px solid rgba(230,204,177,0.3); 
  color: var(--cream); 
  font-family: 'Montserrat', sans-serif; 
  font-size: 16px; 
  padding: 6px 0; 
  width: 100%; 
  outline: none; 
  transition: border-color 0.3s; 
}

.form-input:focus { 
  border-bottom-color: var(--cream); 
}

.form-input::placeholder { 
  color: rgba(230,204,177,0.3); 
}


/* ============================================
   RESPONSIVO — MOBILE (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {


  /* NAV */
  nav {
    padding: 0.9rem 1.2rem;
  }
 .nav-links li:not(.nav-contato):not(.nav-cases) {
  display: none;
  }
  .nav-logo-img {
    height: 36px;
  }
 .nav-cases {
  display: flex;
  align-items: center;
  }


  /* HERO */
  #hero {
    height: 230vh;
  }
  .hero-sticky {
    height: 100vh;
    height: 100dvh;
  }
  .t-coffee {
    font-size: clamp(7rem, 26vw, 12rem);
  }
  .t-us {
  font-size: clamp(6rem, 24vw, 11rem);
  -webkit-text-stroke: 2px var(--cream);
  top: 46%;
}
  .scroll-hint {
    bottom: 6rem;
  }


  /* SOBRE */
  #sobre {
    grid-template-columns: 1fr 1fr;
    min-height: auto;
  }
  .sobre-left {
    padding: 80px 16px 48px;
  }
  .sobre-titulo-grande {
    font-size: clamp(2.8rem, 11vw, 4.5rem);
    margin-bottom: 28px;
  }
  .sobre-texto {
    font-size: 0.62rem;
    line-height: 1.9;
    margin-bottom: 28px;
  }
  .sobre-nome {
    font-size: 1.1rem;
  }
  .sobre-cargo {
    font-size: 0.5rem;
  }
  .sobre-stat {
    gap: 24px;
    margin-top: 28px;
    padding-top: 20px;
  }
  .stat-numero {
    font-size: 2rem;
  }


  /* SERVIÇOS */
#servicos {
  padding: 60px 20px;
}
.servicos-top {
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.servicos-titulo {
  font-size: clamp(2.8rem, 11vw, 5rem);
}
.servicos-desc {
  font-size: 0.62rem;
  line-height: 1.9;
  margin-bottom: 24px;
}
.btn-whatsapp {
  margin-top: 140px;
}
.btn-wpp-texto {
  white-space: normal;
  text-align: center;
  max-width: 120px;
}
.lista-titulo {
  font-size: 0.65rem;
}
.lista-texto {
  font-size: 0.58rem;
}


  /* TIMELINE */
  .timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 12px;
    gap: 0;
  }

  .timeline-linha {
  left: calc(50% + 16px);
  width: calc(100% - 30px);
}

  .step-nome {
    font-size: 1rem;
  }
  .step-desc {
    font-size: 0.52rem;
  }


  /* GALERIA */
#galeria {
  padding: 60px 0 80px;
}
.galeria-sticky {
  padding: 0 20px;
}
.galeria-titulo {
  font-size: clamp(2.5rem, 10vw, 4rem);
}
.galeria-topo {
  margin-bottom: 30px;
}
.galeria-nav-wrap {
  gap: 16px;
}
.galeria-cards {
  width: 220px;
  height: 340px;
}
.card-polaroid {
  width: 100%;
  padding: 10px 10px 36px;
}
.galeria-seta {
  width: 40px;
  height: 40px;
}
.galeria-seta svg {
  width: 18px;
  height: 18px;
}


  /* DEGUSTAÇÃO */
  #degustacao {
    padding: 60px 20px;
  }
  .degu-titulo {
    font-size: clamp(2.8rem, 11vw, 5rem);
    line-height: 0.88;
  }
  .degu-leque {
    height: 280px;
    margin-top: 10px;
  }
  .degu-foto {
    width: 150px;
    height: 200px;
  }
  .degu-esq {
    transform: rotate(-12deg) translateX(-110px) translateY(20px);
  }
  .degu-dir {
    transform: rotate(12deg) translateX(110px) translateY(20px);
  }
  .degu-baixo {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
  }
  .degu-desc {
    font-size: 0.62rem;
    line-height: 1.9;
    margin-bottom: 20px;
  }
  .degu-item-titulo {
    font-size: 0.65rem;
  }
  .degu-item-texto {
    font-size: 0.58rem;
  }

  .btn-degu {
  margin-top: 35px;
}


  /* PARCEIROS */
  #parceiros {
    padding: 60px 0 0;
  }
  .parceiros-inner {
    padding: 0 20px;
    padding-bottom: 48px;
  }
  .parceiros-titulo {
    font-size: clamp(2.8rem, 11vw, 5rem);
  }
  .parceiros-desc {
    font-size: 0.62rem;
    margin-bottom: 32px;
  }
  .parceiros-stats {
    gap: 20px;
    margin-bottom: 48px;
    padding-bottom: 36px;
    flex-wrap: nowrap;
    border-bottom: none !important;
  }
  .pstat-num {
    font-size: 2.4rem;
  }
  .pstat-label {
    font-size: 0.5rem;
  }
  .pstat-divider {
    height: 36px;
  }
  .parceiros-carrossel {
  border-top: none !important;;
}

#parceiros::before {
  display: none;
}


/* FEEDBACKS */
  .feedbacks-wrap {
    padding-top: 40px;
  }
  .feedbacks-nav-wrap {
    gap: 12px;
  }
  .feedbacks-cards {
    width: 240px;
    height: 270px;
  }
  .feedback-card {
    padding: 20px 16px 18px;
  }
  .fb-aspas {
    font-size: 2.2rem;
    margin-bottom: 8px;
  }
  .fb-texto {
    font-size: 0.62rem;
    line-height: 1.8;
    margin-bottom: 14px;
  }
  .fb-nome {
    font-size: 0.6rem;
  }
  .fb-evento {
    font-size: 0.5rem;
  }
  .feedbacks-seta {
    width: 38px;
    height: 38px;
  }
  .feedbacks-seta svg {
    width: 16px;
    height: 16px;
  }
  .feedbacks-dots {
    margin-top: 24px;
  }


/* CASES */
  .cases-faixa {
    padding: 16px 16px;
  }
  .cf-titulo {
    font-size: 1.1rem;
  }
  .case-linha {
    flex-wrap: wrap;
    gap: 10px;
  }
  .cl-tags {
    display: none;
  }
  .cases-rodape {
    flex-direction: row;
    gap: 10px;
  }
  .btn-ver-todos {
    padding: 11px 14px;
    flex: 1;
    justify-content: center;
  }


  /* FRASE IMPACTO */
  .frase-baixo {
    grid-template-columns: 1.2fr 1fr;
    height: 50vh;
  }
  .frase-dir {
    padding: 20px 16px 20px 20px;
  }
  .frase-linha {
    font-size: clamp(1.4rem, 5vw, 2.2rem);
  }


  /* FOOTER */
  #footer {
    padding: 115px 20px 0;
  }
  .ft-inner {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    padding-bottom: 40px;
  }
  .ft-logo-img {
    height: 80px;
    margin-left: 0px;
    margin-top: 0px;
  }
  .ft-tagline {
    font-size: 0.5rem;
  }
  .ft-frase-delicada {
    font-size: 0.52rem;
    line-height: 1.9;
    margin-top: 12px;
  }
  .ft-col-titulo {
    font-size: 0.5rem;
    margin-bottom: 12px;
  }
  .ft-link {
    font-size: 0.55rem;
  }
  .ft-links {
    gap: 8px;
  }
  .ft-wpp-btn {
    margin-top: 140px;
    margin-left: 0;
  }
  .btn-flutuante-circulo {
    width: 48px;
    height: 48px;
  }
  .btn-flutuante-circulo i {
    font-size: 20px;
  }
  .btn-flutuante-label {
    font-size: 0.42rem;
  }
  .ft-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }
  .assinatura-daniel {
    align-self: center;
  }
  .ft-copy {
    font-size: 0.48rem;
  }


  /* MODAL */
  .modal {
    padding: 28px 20px;
  }
  .modal-titulo {
    font-size: 2rem;
  }
}