/* ════════════════════════════════════════════════════
   MADERATA MÓVEIS RÚSTICOS — CSS Premium
   Paleta: #B3A28E · #24150E · #836D55 · #5A3E28
   ════════════════════════════════════════════════════ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bege:    #B3A28E;
  --cafe:    #24150E;
  --taupe:   #836D55;
  --bronze:  #5A3E28;
  --branco:  #FAF7F2;
  --dourado: #C9A96E;
  --preto:   #1A1008;
}

html {
  scroll-behavior: auto;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  background: var(--branco);
  color: var(--cafe);
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

/* ════════════════════════════════════════════════════
   LOADING SCREEN
   ════════════════════════════════════════════════════ */

#loading-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: radial-gradient(ellipse at 50% 0%, #24150e 0%, #3a2010 50%, #24150e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.loading-logo-img {
  height: clamp(50px, 10vw, 80px);
  width: auto;
  object-fit: contain;
  animation: fadeInDown 0.8s ease forwards;
  filter: brightness(1.1);
}

.loading-linha {
  width: 60px;
  height: 1px;
  background: var(--dourado);
  animation: expandX 1s ease 0.3s forwards;
  transform: scaleX(0);
}

@keyframes expandX {
  to { transform: scaleX(1); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.loading-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(201, 169, 110, 0.8);
  margin-bottom: 0.5rem;
}

.loading-bar-wrap {
  width: 200px;
  height: 1px;
  background: rgba(250, 247, 242, 0.15);
  border-radius: 2px;
  overflow: hidden;
}

#loading-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--dourado), var(--bege));
  border-radius: 2px;
  transition: width 0.2s ease;
}

#loading-pct {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 300;
  color: rgba(250, 247, 242, 0.5);
  letter-spacing: 0.1em;
}

/* ════════════════════════════════════════════════════
   NAVEGAÇÃO
   ════════════════════════════════════════════════════ */

#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 247, 242, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

#nav.scrolled {
  box-shadow: 0 4px 30px rgba(36, 21, 14, 0.1);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.9rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(36, 21, 14, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--dourado);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--bronze); }
.nav-links a:hover::after { width: 100%; }

.nav-orcamento {
  flex-shrink: 0;
  padding: 0.65rem 1.4rem;
  background: linear-gradient(135deg, var(--bronze) 0%, var(--cafe) 100%);
  color: var(--branco);
  border-radius: 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 16px rgba(36, 21, 14, 0.2);
  white-space: nowrap;
}

.nav-orcamento:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(36, 21, 14, 0.3);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--cafe);
  transition: all 0.3s ease;
}

.hamburger.ativo span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.ativo span:nth-child(2) { opacity: 0; }
.hamburger.ativo span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 0 2.5rem;
  background: rgba(250, 247, 242, 0.98);
  border-top: 1px solid transparent;
  gap: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.35s ease, border-color 0.3s ease;
}

.mobile-menu.ativo {
  max-height: 500px;
  padding-top: 1.5rem;
  padding-bottom: 2rem;
  gap: 1.2rem;
  opacity: 1;
  pointer-events: auto;
  border-top-color: rgba(201, 169, 110, 0.15);
}

.mobile-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(36, 21, 14, 0.7);
  text-decoration: none;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
  transition: color 0.3s ease;
}

.mobile-link:hover { color: var(--bronze); }

.mobile-link-wpp {
  background: linear-gradient(135deg, var(--bronze), var(--cafe));
  color: var(--branco) !important;
  padding: 0.8rem 1.5rem;
  border-radius: 2rem;
  border-bottom: none !important;
  text-align: center;
  margin-top: 0.5rem;
}

/* ════════════════════════════════════════════════════
   HERO — CANVAS ANIMADO
   ════════════════════════════════════════════════════ */

#hero {
  position: relative;
}

.canvas-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100vw;
  overflow: clip;
  background: #24150e url('../frames/frame0001.webp') center center / cover no-repeat;
}

#canvas1 {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: transparent;
}

.canvas-overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(to top, rgba(36,21,14,0.45) 0%, transparent 100%);
  pointer-events: none;
  z-index: 5;
}

.canvas-overlay-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(to right, rgba(36,21,14,0.55) 0%, rgba(36,21,14,0.18) 60%, transparent 100%);
  pointer-events: none;
  z-index: 5;
}

.canvas-block {
  position: absolute;
  left: 5vw;
  top: 50%;
  transform: translateY(-50%) translateY(20px);
  max-width: 42vw;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.canvas-block.ativo {
  opacity: 1;
  transform: translateY(-50%) translateY(0);
  pointer-events: auto;
}

.cb-label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.92);
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75), 0 0 24px rgba(0, 0, 0, 0.45);
}

.cb-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--branco);
  margin-bottom: 1.5rem;
  text-shadow: 0 3px 22px rgba(0,0,0,0.62), 0 0 36px rgba(0,0,0,0.4);
}

.cb-linha {
  width: 40px;
  height: 1px;
  background: var(--dourado);
  margin-bottom: 1.2rem;
}

.cb-body {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(0.95rem, 1.35vw, 1.08rem);
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.92);
  max-width: 400px;
  margin-bottom: 2rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.78), 0 0 26px rgba(0, 0, 0, 0.45);
}

.cb-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.cb-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  border-radius: 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-decoration: none;
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.cb-cta-primary {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.cb-cta-secondary {
  background: rgba(250, 247, 242, 0.12);
  color: var(--branco);
  border: 1px solid rgba(250, 247, 242, 0.35);
  backdrop-filter: blur(10px);
}

.cb-cta:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(36, 21, 14, 0.4);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  z-index: 15;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.scroll-indicator-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--dourado), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.7); opacity: 0.5; }
}

.scroll-indicator span {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.6);
  writing-mode: vertical-rl;
}

/* ════════════════════════════════════════════════════
   UTILS — SECTION COMMON
   ════════════════════════════════════════════════════ */

.section-inner {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-label {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 1rem;
}

.section-linha-dourada {
  width: 50px;
  height: 1px;
  background: var(--dourado);
  margin: 1rem auto;
}

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--cafe);
  margin-bottom: 1.2rem;
  line-height: 1.15;
}

.section-body {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(0.88rem, 1.4vw, 0.98rem);
  font-weight: 300;
  line-height: 1.95;
  color: rgba(36, 21, 14, 0.62);
  max-width: 560px;
  margin: 0 auto;
}

/* ════════════════════════════════════════════════════
   SOBRE
   ════════════════════════════════════════════════════ */

#sobre {
  position: relative;
  overflow: hidden;
  padding: 9rem 0;
  background:
    radial-gradient(ellipse at 20% 12%, rgba(201, 169, 110, 0.18) 0%, transparent 34%),
    radial-gradient(ellipse at 82% 18%, rgba(131, 109, 85, 0.2) 0%, transparent 38%),
    linear-gradient(135deg, #5A3E28 0%, #3A2010 52%, #24150E 100%);
}

#sobre::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../pattern.png');
  background-size: 280px;
  background-repeat: repeat;
  opacity: 0.045;
  pointer-events: none;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.sobre-texto {}

.sobre-texto .section-heading {
  text-align: left;
  margin-bottom: 0;
  color: var(--branco);
}

#sobre .section-body {
  color: rgba(250, 247, 242, 0.72);
}

.sobre-destaque {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.5rem;
  background: rgba(250, 247, 242, 0.07);
  border-radius: 12px;
  border: 1px solid rgba(201, 169, 110, 0.25);
}

.destaque-linha {
  width: 3px;
  min-height: 100%;
  background: var(--dourado);
  border-radius: 4px;
  flex-shrink: 0;
  align-self: stretch;
}

.sobre-destaque p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--dourado);
  line-height: 1.5;
  font-style: italic;
}

.sobre-visual {
  position: relative;
}

.sobre-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(36, 21, 14, 0.2);
}

.sobre-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.sobre-img-wrap:hover img {
  transform: scale(1.04);
}

.sobre-badge {
  position: absolute;
  bottom: 2rem;
  left: -1.5rem;
  background: var(--cafe);
  color: var(--branco);
  padding: 1.2rem 1.5rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 10px 30px rgba(36, 21, 14, 0.3);
}

.badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--dourado);
  line-height: 1;
}

.badge-txt {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(250, 247, 242, 0.75);
  letter-spacing: 0.04em;
  line-height: 1.4;
}

/* ════════════════════════════════════════════════════
   DIFERENCIAIS
   ════════════════════════════════════════════════════ */

#diferenciais {
  padding: 9rem 0;
  background:
    linear-gradient(rgba(250, 247, 242, 0.88), rgba(250, 247, 242, 0.88)),
    url('../pattern.png') center / 620px auto repeat,
    #faf7f2;
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.diferencial-card {
  padding: 2.2rem;
  background: rgba(250, 247, 242, 0.85);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 18px;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s ease;
  backdrop-filter: blur(8px);
}

.diferencial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(36, 21, 14, 0.12);
  border-color: rgba(201, 169, 110, 0.4);
}

.diferencial-icon {
  width: 54px;
  height: 54px;
  background: var(--bronze);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  transition: background 0.3s ease;
}

.diferencial-card:hover .diferencial-icon {
  background: var(--cafe);
}

.diferencial-icon svg path,
.diferencial-icon svg rect,
.diferencial-icon svg circle {
  stroke: var(--branco);
}

.diferencial-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--cafe);
  margin-bottom: 0.8rem;
  line-height: 1.25;
}

.diferencial-linha {
  width: 28px;
  height: 1px;
  background: var(--dourado);
  margin-bottom: 1rem;
}

.diferencial-card p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.87rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(36, 21, 14, 0.58);
}

/* ════════════════════════════════════════════════════
   AMBIENTES
   ════════════════════════════════════════════════════ */

#ambientes {
  padding: 9rem 0;
  background: var(--branco);
}

.ambientes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.ambiente-card {
  border-radius: 20px;
  overflow: hidden;
  background: rgba(250, 247, 242, 0.9);
  border: 1px solid rgba(201, 169, 110, 0.18);
  transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1),
              box-shadow 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.ambiente-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 70px rgba(36, 21, 14, 0.16);
}

.ambiente-img-wrap {
  position: relative;
  overflow: hidden;
}

.ambiente-img-wrap img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.ambiente-card:hover .ambiente-img-wrap img {
  transform: scale(1.07);
}

.ambiente-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(36,21,14,0.25) 100%);
  pointer-events: none;
}

.ambiente-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(36, 21, 14, 0.75);
  color: var(--dourado);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 2rem;
  backdrop-filter: blur(8px);
}

.ambiente-body {
  padding: 1.8rem 2rem 2rem;
}

.ambiente-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--cafe);
  margin-bottom: 0.7rem;
  line-height: 1.2;
}

.ambiente-linha {
  width: 28px;
  height: 1px;
  background: var(--dourado);
  margin-bottom: 0.9rem;
}

.ambiente-body p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.86rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(36, 21, 14, 0.58);
  margin-bottom: 1.4rem;
}

.ambiente-cta {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--bronze);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.3s ease, gap 0.3s ease;
}

.ambiente-cta:hover {
  color: var(--dourado);
  gap: 0.7rem;
}

/* ════════════════════════════════════════════════════
   PROCESSO ARTESANAL
   ════════════════════════════════════════════════════ */

#processo {
  position: relative;
  overflow: hidden;
  padding: 9rem 0;
  background: radial-gradient(ellipse at 40% 0%,
    rgba(90,62,40,0.1) 0%,
    rgba(179,162,142,0.2) 40%,
    #faf7f2 90%);
}

#processo::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../pattern.png');
  background-size: 260px;
  background-repeat: repeat;
  opacity: 0.06;
  z-index: 0;
  pointer-events: none;
}

#processo > * {
  position: relative;
  z-index: 1;
}

.processo-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 1rem;
}

.processo-etapa {
  position: relative;
  padding: 0 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.etapa-numero {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: rgba(90, 62, 40, 0.88);
  line-height: 1;
  margin-bottom: 1rem;
  text-shadow: 0 8px 24px rgba(36, 21, 14, 0.12);
}

.etapa-conector {
  position: absolute;
  top: 1.5rem;
  left: 3.5rem;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, rgba(90,62,40,0.45), rgba(201,169,110,0.18));
}

.etapa-conector-last {
  display: none;
}

.etapa-conteudo {
  background: rgba(250, 247, 242, 0.9);
  border: 1px solid rgba(90, 62, 40, 0.18);
  border-radius: 16px;
  padding: 1.8rem;
  flex: 1;
  width: 100%;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.processo-etapa:hover .etapa-conteudo {
  border-color: rgba(90, 62, 40, 0.36);
  box-shadow: 0 16px 36px rgba(36, 21, 14, 0.12);
}

.etapa-conteudo h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--cafe);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.etapa-conteudo p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(36, 21, 14, 0.58);
}

/* ════════════════════════════════════════════════════
   GARANTIA
   ════════════════════════════════════════════════════ */

#garantia {
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 0%, #24150e 0%, #3a2010 50%, #24150e 100%);
  padding: 9rem 0;
}

#garantia::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../pattern.png');
  background-size: 280px;
  background-repeat: repeat;
  opacity: 0.04;
  z-index: 0;
  pointer-events: none;
}

#garantia-ripple {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.garantia-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2.5rem;
  text-align: center;
}

.garantia-selo {
  width: 82px;
  height: 82px;
  margin: 0 auto 1.6rem;
  border-radius: 50%;
  color: var(--dourado);
  background: rgba(250, 247, 242, 0.06);
  border: 1px solid rgba(201, 169, 110, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

.garantia-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--branco);
  line-height: 1.2;
  margin-bottom: 2rem;
}

.garantia-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.95;
  color: rgba(250, 247, 242, 0.62);
  margin-bottom: 1.5rem;
}

.garantia-destaque {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin: 2.5rem 0;
  padding: 1.5rem 2rem;
  border: 1px solid rgba(201, 169, 110, 0.25);
  border-radius: 12px;
  background: rgba(250, 247, 242, 0.04);
}

.garantia-destaque-linha {
  width: 40px;
  height: 1px;
  background: var(--dourado);
  flex-shrink: 0;
}

.garantia-destaque p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--dourado);
  font-style: italic;
  line-height: 1.5;
}

.garantia-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 2.4rem;
  background: linear-gradient(135deg, var(--bronze) 0%, var(--cafe) 100%);
  color: var(--branco);
  border-radius: 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-decoration: none;
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 25px rgba(36, 21, 14, 0.4);
  margin-top: 1rem;
}

.garantia-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(36, 21, 14, 0.5);
}

/* ════════════════════════════════════════════════════
   DEPOIMENTOS
   ════════════════════════════════════════════════════ */

#depoimentos {
  position: relative;
  padding: 9rem 0;
  background:
    linear-gradient(rgba(250, 247, 242, 0.9), rgba(250, 247, 242, 0.9)),
    url('../pattern.png') center / 420px auto repeat,
    var(--branco);
  overflow: hidden;
}

#depoimentos .section-label,
#depoimentos .section-heading {
  color: var(--cafe);
}

#depoimentos .section-body {
  color: rgba(36, 21, 14, 0.58);
}

.depoimentos-carrossel-wrap {
  position: relative;
  overflow: hidden;
}

.depoimentos-carrossel {
  display: flex;
  gap: 1.8rem;
  transition: transform 0.55s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
}

.depoimento-card {
  flex: 0 0 calc(33.333% - 1.2rem);
  min-width: 0;
  background: linear-gradient(145deg, rgba(90, 62, 40, 0.96), rgba(36, 21, 14, 0.96));
  border: 1px solid rgba(201, 169, 110, 0.28);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  box-shadow: inset 0 1px 0 rgba(250, 247, 242, 0.08);
  backdrop-filter: blur(8px);
  transition: box-shadow 0.35s ease, border-color 0.35s ease, transform 0.35s ease, background 0.35s ease;
}

.depoimento-card:hover {
  transform: translateY(-6px);
  background: linear-gradient(145deg, rgba(105, 74, 48, 0.98), rgba(36, 21, 14, 0.98));
  box-shadow: 0 24px 60px rgba(36, 21, 14, 0.2);
  border-color: rgba(201, 169, 110, 0.48);
}

.depoimento-aspas {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--dourado);
  line-height: 0.8;
  opacity: 0.6;
}

.depoimento-texto {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: rgba(250, 247, 242, 0.9);
  line-height: 1.65;
  font-style: italic;
  flex: 1;
}

.depoimento-linha {
  width: 30px;
  height: 1px;
  background: var(--dourado);
  margin: 0.5rem 0;
}

.depoimento-autor {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.56);
}

.depoimento-estrelas {
  color: var(--dourado);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

.depoimento-google {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.6rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(201, 169, 110, 0.22);
}

.depoimento-google span {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  color: rgba(250, 247, 242, 0.5);
  letter-spacing: 0.04em;
}

.depoimentos-controles {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.dep-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.35);
  background: rgba(250, 247, 242, 0.9);
  color: var(--bronze);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.dep-btn:hover {
  background: var(--dourado);
  color: var(--branco);
  border-color: var(--dourado);
}

.dep-dots {
  display: flex;
  gap: 0.5rem;
}

.dep-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}

.dep-dot.ativo {
  background: var(--dourado);
  transform: scale(1.3);
}

/* ════════════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════════════ */

#faq {
  padding: 9rem 0;
  background: radial-gradient(ellipse at 70% 30%,
    rgba(131,109,85,0.1) 0%,
    rgba(179,162,142,0.14) 60%,
    #faf7f2 100%);
}

.faq-lista {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}

.faq-pergunta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.6rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--cafe);
  transition: color 0.3s ease;
}

.faq-pergunta:hover {
  color: var(--bronze);
}

.faq-icone {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--dourado);
  transition: transform 0.35s ease;
  line-height: 1;
  flex-shrink: 0;
}

.faq-item.ativo .faq-icone {
  transform: rotate(45deg);
}

.faq-resposta {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, padding 0.35s ease;
}

.faq-item.ativo .faq-resposta {
  max-height: 300px;
  padding-bottom: 1.5rem;
}

.faq-resposta p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(36, 21, 14, 0.62);
}

/* ════════════════════════════════════════════════════
   CONTATO
   ════════════════════════════════════════════════════ */

#contato {
  background: radial-gradient(ellipse at 50% 0%, #24150e 0%, #3a2010 50%, #24150e 100%);
  padding: 9rem 0;
}

.contato-inner {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contato-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--branco);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.contato-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(250, 247, 242, 0.58);
  margin-bottom: 2.5rem;
}

.contato-info {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-bottom: 2.5rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.info-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.info-item div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.info-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dourado);
  display: block;
}

.info-item span {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(250, 247, 242, 0.62);
  line-height: 1.6;
}

.contato-wpp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 2.2rem;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  border-radius: 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.contato-wpp-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

/* Mapa */
.contato-mapa {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.mapa-wrap {
  border-radius: 18px;
  overflow: hidden;
  height: 320px;
  border: 1px solid rgba(201, 169, 110, 0.2);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.mapa-card {
  background: rgba(250, 247, 242, 0.06);
  border: 1px solid rgba(201, 169, 110, 0.18);
  border-radius: 14px;
  padding: 1.4rem 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.mapa-card-titulo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--branco);
}

.mapa-card-end {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(250, 247, 242, 0.5);
  line-height: 1.6;
}

.mapa-rota-btn {
  flex-shrink: 0;
  padding: 0.6rem 1.4rem;
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 2rem;
  color: var(--dourado);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.mapa-rota-btn:hover {
  background: rgba(201, 169, 110, 0.1);
  border-color: var(--dourado);
}

/* ════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════ */

.site-footer {
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 0%, #3a2010 0%, #24150e 58%, #1a1008 100%);
  border-top: 1px solid rgba(201, 169, 110, 0.18);
  padding: 2.2rem 0;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../pattern.png');
  background-size: 280px;
  background-repeat: repeat;
  opacity: 0.04;
  pointer-events: none;
}

.site-footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.footer-seal {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.9rem 1.2rem;
  border-radius: 14px;
  border: 1px solid rgba(201, 169, 110, 0.28);
  background: rgba(250, 247, 242, 0.06);
  color: var(--dourado);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
  max-width: 520px;
}

.footer-seal-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 110, 0.1);
  flex-shrink: 0;
}

.footer-seal span {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 0.25rem;
}

.footer-seal p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(250, 247, 242, 0.55);
  white-space: nowrap;
}

/* ════════════════════════════════════════════════════
   CTA FIXO WHATSAPP
   ════════════════════════════════════════════════════ */

.cta-fixo {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  z-index: 900;
  padding: 0.85rem 2rem;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  border-radius: 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  white-space: nowrap;
  display: none;
  align-items: center;
  gap: 0.6rem;
}

.cta-fixo.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ════════════════════════════════════════════════════
   ANIMAÇÕES GSAP — classes só marcam elementos, GSAP controla o estado
   ════════════════════════════════════════════════════ */

.gsap-fade-up,
.gsap-fade-left,
.gsap-fade-right {
  /* sem opacity:0 aqui — GSAP define via inline style para evitar conflito */
  will-change: opacity, transform;
}

/* ════════════════════════════════════════════════════
   RESPONSIVO — TABLET 1024px
   ════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .nav-links { gap: 1.2rem; }

  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .sobre-badge {
    left: 1rem;
  }

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

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

  .processo-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .etapa-conector { display: none; }

  .contato-inner {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

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

  .footer-seal p {
    white-space: normal;
  }

  .depoimento-card {
    flex: 0 0 calc(50% - 0.9rem);
  }
}

/* ════════════════════════════════════════════════════
   RESPONSIVO — MOBILE 768px
   ════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-orcamento { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }

  .nav-inner { padding: 0.9rem 1.5rem; }

  .canvas-block {
    left: 4vw;
    max-width: 82vw;
  }

  .canvas-overlay-bottom {
    height: 48%;
    background: linear-gradient(to top, rgba(36,21,14,0.62) 0%, rgba(36,21,14,0.18) 68%, transparent 100%);
  }

  .canvas-overlay-left {
    width: 100%;
    background: linear-gradient(to right, rgba(36,21,14,0.58) 0%, rgba(36,21,14,0.28) 58%, rgba(36,21,14,0.08) 100%);
  }

  .cb-heading {
    font-size: clamp(2.45rem, 9vw, 3.45rem);
  }

  .cb-label {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.94);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85), 0 0 28px rgba(0, 0, 0, 0.55);
  }

  .cb-body {
    font-size: clamp(1.08rem, 4.35vw, 1.22rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.96);
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 0, 0, 0.55);
  }

  .cb-cta {
    font-size: 0.84rem;
  }

  .cb-btns {
    flex-direction: column;
    align-items: flex-start;
  }

  .diferenciais-grid {
    grid-template-columns: 1fr;
  }

  .ambientes-grid {
    grid-template-columns: 1fr;
  }

  .processo-timeline {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .cta-fixo { display: inline-flex; }

  .scroll-indicator { display: none; }

  .depoimento-card {
    flex: 0 0 calc(100% - 0rem);
  }

  #sobre, #diferenciais, #ambientes, #processo, #garantia, #depoimentos, #faq, #contato {
    padding: 5rem 0;
  }

  .section-header { margin-bottom: 3rem; }

  .mapa-wrap { height: 220px; }
}

@media (max-width: 480px) {
  .section-inner { padding: 0 1.2rem; }
  .contato-inner { padding: 0 1.2rem; }
  .garantia-inner { padding: 0 1.2rem; }
  .garantia-selo { width: 70px; height: 70px; }
  .sobre-img-wrap img { height: 300px; }
  .sobre-badge { left: 0.5rem; bottom: 1rem; }

  .mapa-card { flex-direction: column; }

  .depoimento-card { padding: 1.8rem 1.5rem; }

  .site-footer { padding: 1.8rem 0 2.2rem; }
  .site-footer-inner { padding: 0 1.2rem; }
  .footer-seal {
    width: 100%;
    align-items: flex-start;
  }
}
