:root {
  --nav-h: 80px;
  --transition: .38s cubic-bezier(.4, 0, .2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: 'Inter', sans-serif;
  background: #FAF8F4;
  color: #2C1D10;
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ── TYPOGRAPHY ── */
.font-display {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

/* ── NAV ── */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
  background: rgba(250, 248, 244, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(44, 29, 16, .08);
}

#nav.scrolled {
  padding: 12px 0;
}

.nav-link {
  color: #2C1D10;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #B8924A;
  transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: #B8924A;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-logo-img {
  filter: none;
  transition: filter var(--transition);
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #2C1D10;
  border-radius: 2px;
  transition: var(--transition);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(20, 12, 5, 0.88) 0%,
      rgba(20, 12, 5, 0.45) 45%,
      rgba(20, 12, 5, 0.15) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 96px;
}

/* ── DIVIDER ── */
.gold-line {
  display: block;
  width: 48px;
  height: 1px;
  background: #B8924A;
}

/* ── BADGE ── */
.luxury-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #B8924A;
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

.luxury-badge::before,
.luxury-badge::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: #B8924A;
}

/* ── BUTTONS ── */
.btn-luxury {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: #B8924A;
  color: #fff;
  box-shadow: 0 4px 24px rgba(184, 146, 74, .25);
}

.btn-primary:hover {
  background: #9A7A3C;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(184, 146, 74, .35);
}

.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, .5);
  color: #fff;
  background: transparent;
}

.btn-outline-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .08);
}

.btn-outline-dark {
  border: 1px solid #B8924A;
  color: #B8924A;
  background: transparent;
}

.btn-outline-dark:hover {
  background: #B8924A;
  color: #fff;
}

/* ── SCROLL ARROW ── */
.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, .5);
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.scroll-cue-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, .4));
  animation: scroll-pulse 2.2s ease-in-out infinite;
}

@keyframes scroll-pulse {

  0%,
  100% {
    opacity: .5;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.15);
  }
}

/* ── DIFERENCIAIS ── */
.diff-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(44, 29, 16, .08);
  background: #fff;
}

.diff-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 32px;
  border-right: 1px solid rgba(44, 29, 16, .08);
  transition: var(--transition);
}

.diff-item:last-child {
  border-right: none;
}

.diff-item:hover {
  background: rgba(184, 146, 74, .04);
}

.diff-icon-wrap {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border: 1px solid rgba(184, 146, 74, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

@media (max-width: 768px) {
  .diff-strip {
    grid-template-columns: 1fr;
  }

  .diff-item {
    border-right: none;
    border-bottom: 1px solid rgba(44, 29, 16, .08);
  }

  .diff-item:last-child {
    border-bottom: none;
  }
}

/* ── MASONRY GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(3, 220px);
  gap: 8px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item:nth-child(1) {
  grid-column: 1 / 6;
  grid-row: 1 / 3;
}

.gallery-item:nth-child(2) {
  grid-column: 6 / 9;
  grid-row: 1 / 2;
}

.gallery-item:nth-child(3) {
  grid-column: 9 / 13;
  grid-row: 1 / 2;
}

.gallery-item:nth-child(4) {
  grid-column: 6 / 10;
  grid-row: 2 / 3;
}

.gallery-item:nth-child(5) {
  grid-column: 10 / 13;
  grid-row: 2 / 3;
}

.gallery-item:nth-child(6) {
  grid-column: 1 / 5;
  grid-row: 3 / 4;
}

.gallery-item:nth-child(7) {
  grid-column: 5 / 9;
  grid-row: 3 / 4;
}

.gallery-item:nth-child(8) {
  grid-column: 9 / 13;
  grid-row: 3 / 4;
}



.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.25, .46, .45, .94);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(20, 12, 5, .8));
  display: flex;
  align-items: flex-end;
  padding: 24px;
  pointer-events: none;
}

.gallery-label {
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.gallery-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: #B8924A;
}

/* ── SOBRE ── */
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
}

.sobre-img {
  position: relative;
  overflow: hidden;
}

.sobre-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sobre-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184, 146, 74, .15) 0%, transparent 60%);
}

.stat-card {
  border-top: 1px solid rgba(44, 29, 16, .1);
  padding-top: 20px;
}

/* ── PRODUTOS ── */
.filter-chip {
  padding: 9px 22px;
  border: 1px solid rgba(44, 29, 16, .15);
  background: transparent;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #4A3322;
  transition: var(--transition);
}

.filter-chip.active,
.filter-chip:hover {
  background: #2C1D10;
  color: #fff;
  border-color: #2C1D10;
}

.product-card {
  background: #fff;
  overflow: hidden;
  transition: var(--transition);
}

.product-card:hover {
  box-shadow: 0 20px 60px rgba(44, 29, 16, .12);
  transform: translateY(-6px);
}

.product-img-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.25, .46, .45, .94);
}

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

.product-tag {
  position: absolute;
  top: 16px;
  left: 0;
  background: #B8924A;
  color: #fff;
  padding: 5px 16px;
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ── DEPOIMENTOS ── */
.depo-card {
  padding: 40px 36px;
  background: #fff;
  border: 1px solid rgba(44, 29, 16, .06);
  transition: var(--transition);
}

.depo-card:hover {
  border-color: rgba(184, 146, 74, .3);
  box-shadow: 0 12px 40px rgba(44, 29, 16, .07);
}

.depo-card:nth-child(n+4) {
  display: none;
}

.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  line-height: .6;
  color: rgba(184, 146, 74, .2);
  margin-bottom: 20px;
  display: block;
}

/* ── CTA SECTION ── */
.cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 12, 5, 0.88);
}

/* ── BLOG ── */
.blog-card {
  background: #fff;
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(44, 29, 16, .1);
}

.blog-img-wrap {
  height: 220px;
  overflow: hidden;
}

.blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}

.blog-card:hover .blog-img-wrap img {
  transform: scale(1.06);
}

/* ── FOOTER ── */
.footer-link {
  color: rgba(255, 255, 255, .45);
  font-size: .85rem;
  transition: color var(--transition);
}

.footer-link:hover {
  color: #D4AE72;
}

/* ── WHATSAPP FLOAT ── */
.wpp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #B8924A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(184, 146, 74, .4);
  transition: var(--transition);
  animation: wpp-pulse 2.5s infinite;
}

.wpp-btn:hover {
  transform: scale(1.1);
  background: #9A7A3C;
}

@keyframes wpp-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(184, 146, 74, .5);
  }

  50% {
    box-shadow: 0 0 0 16px rgba(184, 146, 74, 0);
  }
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── MOBILE MENU ── */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 82%;
  max-width: 360px;
  height: 100vh;
  background: #2C1D10;
  z-index: 1001;
  padding: 88px 40px 40px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.mobile-drawer.open {
  right: 0;
}

.mobile-drawer a {
  color: rgba(255, 255, 255, .8);
  font-size: 1.1rem;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  display: block;
  transition: color var(--transition);
}

.mobile-drawer a:hover {
  color: #D4AE72;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }

  .hamburger-btn {
    display: flex;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 200px);
  }

  .gallery-item:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
  }

  .gallery-item:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }

  .gallery-item:nth-child(3) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }

  .gallery-item:nth-child(4) {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
  }

  .gallery-item:nth-child(5) {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
  }

  .gallery-item:nth-child(6) {
    grid-column: 1 / 2;
    grid-row: 4 / 5;
  }

  .gallery-item:nth-child(7) {
    grid-column: 2 / 3;
    grid-row: 4 / 5;
  }

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

  .sobre-img {
    min-height: 360px;
    order: -1;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(7, 200px);
  }

  .gallery-item {
    grid-column: 1 / -1 !important;
    grid-row: auto !important;
  }
}

/* Swiper Hero Carousel */
.hero-swiper {
  width: 100%;
  height: calc(100vh - var(--nav-h));
  min-height: 460px;
}

.hero-swiper .swiper-slide {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-swiper .slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 6s ease;
}

.hero-swiper .swiper-slide-active .slide-bg {
  transform: scale(1.08);
}

.hero-swiper .slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 15, 26, 0.85) 0%, rgba(10, 15, 26, 0.6) 40%, rgba(153, 16, 9, 0.35) 100%);
}

.hero-swiper .slide-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 0 1.5rem;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.hero-swiper .swiper-slide-active .slide-content {
  opacity: 1;
  transform: translateY(0);
}

.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
  background: rgba(220, 38, 38, 0.8);
  border-color: rgba(220, 38, 38, 0.9);
}

.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}

.hero-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  transition: all 0.3s ease;
}

.hero-swiper .swiper-pagination-bullet-active {
  background: #DC2626;
  width: 36px;
  border-radius: 6px;
}

/* Hero Mobile */
@media (max-width: 767px) {
  .hero-swiper {
    height: auto;
    min-height: 0;
  }

  .hero-swiper .swiper-slide {
    min-height: calc(100svh - 80px);
    padding: 2.5rem 1rem 5rem;
    align-items: center;
  }

  /* Esconde setas laterais no mobile â€” navegaÃ§Ã£o fica nos bullets */
  .hero-swiper .swiper-button-next,
  .hero-swiper .swiper-button-prev {
    display: none !important;
  }

  /* Bullets sobem para nÃ£o sobrepostos */
  .hero-swiper .swiper-pagination {
    bottom: 1rem !important;
  }

  /* Textos menores no mobile para caber na dobra */
  .hero-swiper .slide-content h2 {
    font-size: 1.75rem !important;
    line-height: 1.2 !important;
    margin-bottom: 0.75rem !important;
  }

  .hero-swiper .slide-content p {
    font-size: 0.95rem !important;
    margin-bottom: 1.25rem !important;
  }

  .hero-swiper .slide-content>div:first-child {
    margin-bottom: 0.75rem !important;
    font-size: 0.75rem !important;
    padding: 0.35rem 1rem !important;
  }

  .hero-swiper .slide-content .flex.flex-col {
    gap: 0.625rem !important;
  }

  .hero-swiper .slide-content a {
    padding: 0.75rem 1.5rem !important;
    font-size: 0.9rem !important;
  }
}

.grecaptcha-badge {
  visibility: hidden !important;
}