/* ========================================
   Reset e Configurações Gerais
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ========================================
   Fonts
   ======================================== */
@font-face {
  font-family: "Futura Medium";
  src: url("../public/fonts/Futura-Medium-BT.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Futura Book";
  src: url("../public/fonts/Futura-Bk-BT.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Futura Book";
  src: url("../public/fonts/Futura-Bk-BT-italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Spalla";
  src: url("../public/fonts/Spalla-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary-color: #8b7355;
  --secondary-color: #d4af37;
  --text-dark: #333333;
  --text-light: #666666;
  --bg-light: #f9f7f4;
  --bg-white: #ffffff;
  --accent-color: #a0826d;
  --black: #000000;
  --transition: all 0.3s ease;
  --font-heading: "Futura Medium", "Segoe UI", sans-serif;
  --font-body: "Futura Book", "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
  width: 100vw !important;
  overflow-x: hidden !important;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
}

h1,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 500;
}

h2 {
  font-family: "Spalla", var(--font-heading);
  font-weight: 700;
}

p,
a,
span,
li,
label,
input,
textarea,
button {
  font-family: var(--font-body);
}

body {
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-max {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========================================
   Top Header - Redes Sociais
   ======================================== */
.top-header {
  background-color: rgba(0, 0, 0, 0);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.top-header .container {
  display: flex;
  justify-content: flex-end;
}

.social-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.follow-text {
  color: white;
  font-size: 0.85rem;
  font-weight: 500;
}

.social-icon {
  color: white;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
}

.social-icon:hover {
  color: var(--secondary-color);
  transform: translateY(-2px);
}

/* ========================================
   Header Principal
   ======================================== */
.header-mobile-video {
  display: none;
}

.header-mobile-video__media {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.header-mobile-video__unmute {
  display: none;
}

.header {
  background-color: transparent;
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.header.scrolled {
  top: 0;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.header.scrolled .logo img {
  height: 56px;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 72px;
  width: auto;
  transition: height 0.3s ease;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 1.6rem;
}

.nav a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 1px;
  transition: var(--transition);
  position: relative;
}

.nav a:hover {
  color: var(--secondary-color);
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  background-color: #25d366;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background-color: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: white;
  transition: var(--transition);
}

/* ========================================
   Hero
   ======================================== */
.hero-casamentos {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-color: #1a1a1a;
  background-image: url("../public/images/bg-hero.webp?v=2");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-swiper {
  display: none;
}

@media (min-width: 769px) {
  .hero-background {
    background-image: none;
  }

  .hero-swiper {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .hero-swiper .swiper-wrapper,
  .hero-swiper .swiper-slide {
    width: 100%;
    height: 100%;
  }

  .hero-swiper .swiper-slide {
    overflow: hidden;
  }

  .hero-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-origin: center;
    will-change: transform;
  }

  .hero-swiper .swiper-slide-active img {
    animation: heroKenBurns 8s ease-out both;
  }
}

@keyframes heroKenBurns {
  from {
    transform: scale(1.05) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.16) translate3d(-1.5%, -1%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-swiper .swiper-slide-active img {
    animation: none !important;
  }
}

.hero-gradient-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 250px;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.64) 50%,
      transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-gradient-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background: linear-gradient(to top, rgb(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.64) 50%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  width: 100%;
  position: absolute;
  bottom: 0;
  z-index: 10;
}

.hero-content .container {
  max-width: 1200px;
}

.hero-inner {
  color: white;
  max-width: 640px;
  margin: 0 auto;
  padding: 6rem 0 4rem;
  text-align: center;
  position: relative;
  z-index: 10;
}

.hero-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.55);
  line-height: 1.15;
  text-transform: none;
}

.hero-description {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.45);
  font-weight: 400;
  margin: 0;
}

/* Banner Antigo - Mantido para outras páginas se necessário */
.banner {
  background:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("../../public/images/banner.jpg") center/cover no-repeat;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--bg-white);
  padding: 2rem;
}

.banner-content {
  max-width: 800px;
}

.banner-content h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.btn-primary {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: var(--secondary-color);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-color);
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 115, 85, 0.4);
}

/* ========================================
   Seção Quem Somos
   ======================================== */
.quem-somos {
  min-height: 100vh;
  background-image: url("../../public/images/bg-quem-somos-960w.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 5rem 0;
}

@media (min-width: 1400px) {
  .quem-somos {
    background-image: url("../../public/images/bg-quem-somos.webp");
  }
}

.quem-somos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.quem-somos-subtitle {
  font-size: 1.2rem;
  color: #353535;
  text-transform: uppercase;
  letter-spacing: 2px;

  display: block;
}

.quem-somos-title {
  font-size: 3rem;
  color: #25310b;
  margin-bottom: 2rem;
  letter-spacing: 3px;
}

.quem-somos-text p {
  color: #353535;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.quem-somos-text p strong {
  color: var(--primary-color);
  font-weight: 600;
}

/* Mosaico “Quem somos”: mesmo enquadramento 720:689, 4 peças em grelha 2×2 + fade (AOS por célula) */
.quem-somos-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  width: 100%;
  aspect-ratio: 720 / 689;
  gap: 0;
}

.quem-somos-mosaic__piece {
  position: relative;
  overflow: hidden;
  min-width: 0;
  min-height: 0;
}

.quem-somos-mosaic__piece img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  margin: 1rem auto 0;
}

/* ========================================
   Seção Nossos Espaços
   ======================================== */
.nossos-espacos {
  position: relative;
}

.espacos-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.espacos-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

/* Fundo animado (Ken Burns): camada separada para não conflitar com background-attachment */
.espacos-hero-bg__layer {
  position: absolute;
  inset: -11%;
  background-image: url("../../public/images/carrossel/c1-960w.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* scroll: fixed + transform no mesmo elemento quebra o parallax em vários browsers */
  background-attachment: scroll;
  opacity: 1;
  transition: opacity 0.48s cubic-bezier(0.33, 0, 0.2, 1);
  transform-origin: center center;
  will-change: transform;
  /* 8s = mesma cadência do Ken Burns da hero (.hero-swiper) */
  animation: espacosKenBurns 8s ease-in-out infinite alternate;
}

@media (min-width: 1400px) {
  .espacos-hero-bg__layer {
    background-image: url("../../public/images/carrossel/c1.webp");
  }
}

@keyframes espacosKenBurns {
  0% {
    transform: scale(1.03) translate3d(0.8%, 0.4%, 0);
  }

  100% {
    transform: scale(1.2) translate3d(-2.8%, -2.2%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .espacos-hero-bg__layer {
    animation: none !important;
  }
}

/* Aba em segundo plano: pausa Ken Burns / vídeo sem “saltar” ao voltar */
html.is-tab-hidden .espacos-hero-bg__layer,
html.is-tab-hidden .hero-swiper .swiper-slide-active img {
  animation-play-state: paused !important;
}

.espacos-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.35) 50%,
      rgba(0, 0, 0, 0.75) 100%);
  z-index: 1;
}

.espacos-gradient-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 250px;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.6) 40%,
      transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.espacos-gradient-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.espacos-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 5rem;
  padding-bottom: 2rem;
  width: 100%;
}

/* Topo */
.espacos-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.espacos-subtitle {
  display: block;
  font-size: 20px;
  color: white;
  letter-spacing: 1px;
}

.espacos-title {
  font-size: 3.5rem;
  color: white;
  letter-spacing: 4px;
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.espacos-filter {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.5rem;
}

.espacos-filter-main {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  font-family: var(--font-heading);
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 10px 24px;
  line-height: 1.3;
  letter-spacing: 0.03em;
  border-radius: 50px;
  backdrop-filter: blur(10px);
}

.espacos-filter-main.active,
.espacos-filter-main:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: white;
  color: white;
  font-size: 20px;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.espacos-filter-sub {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  font-family: var(--font-body);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 10px 24px;
  line-height: 1.3;
  border-radius: 50px;
  backdrop-filter: blur(8px);
}

.espacos-filter-sub.active,
.espacos-filter-sub:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.6);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 3px 12px rgba(255, 255, 255, 0.15);
}

/* Meio - descrição */
.espacos-middle {
  display: flex;
  justify-content: flex-end;
  margin-top: 2rem;
}

.espacos-desc {
  max-width: 560px;
  text-align: center;
}

.espacos-desc p {
  color: white;
  font-size: 1rem;
  text-align: right;
  margin-bottom: 1rem;
  line-height: none;
}

/* Bottom - label + carrossel */
.espacos-bottom {
  margin-top: 2rem;
}

.espacos-label {
  display: block;
  color: white;
  font-size: 1.6rem;
  font-family: var(--font-heading);
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.espacos-carousel-wrapper {
  position: relative;
}

.espacos-swiper {
  width: 100%;
}

.carousel-item {
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.carousel-item.active-slide {
  opacity: 1;
}

.carousel-item a {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.carousel-item a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
  pointer-events: none;
}

.carousel-item:hover a::after {
  background: rgba(0, 0, 0, 0.3);
}

.carousel-item img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  transition: transform 0.3s ease;
}

.carousel-item:hover img {
  transform: scale(1.05);
}

/* Setas Swiper customizadas */
.espacos-prev,
.espacos-next {
  background: none !important;
  color: white !important;
  width: 36px !important;
  height: 36px !important;
}

.espacos-prev::after,
.espacos-next::after {
  font-size: 1.8rem !important;
  color: white;
  font-weight: 700;
}

.espacos-prev.swiper-button-disabled,
.espacos-next.swiper-button-disabled {
  opacity: 0 !important;
  pointer-events: none;
}

/* ========================================
   Seção Ambientes
   ======================================== */
.ambientes {
  padding: 5rem 0;
  background-color: var(--bg-white);
}

.ambientes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.ambientes .btn-lugar-completo {
  display: block;
  width: fit-content;
  margin: 2.5rem auto 0;
  text-align: center;
}

.ambientes-info-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  width: 100%;
  margin: 0 0 2.75rem;
  box-sizing: border-box;
}

.ambientes-info-card {
  position: relative;
  border-radius: 16px;
  padding: 1.4rem 1.25rem 1.35rem;
  overflow: hidden;
  border: 1px solid rgba(37, 49, 11, 0.08);
  box-shadow: 0 14px 36px rgba(37, 49, 11, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ambientes-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 16px 16px 0 0;
  z-index: 1;
}

.ambientes-info-card--park {
  background: #faf8f5;
}

.ambientes-info-card--park::before {
  background: rgba(37, 49, 11, 0.16);
}

.ambientes-info-card--access {
  background: #faf8f5;
}

.ambientes-info-card--access::before {
  background: rgba(37, 49, 11, 0.16);
}

.ambientes-info-card--hours {
  background: #faf8f5;
}

.ambientes-info-card--hours::before {
  background: rgba(37, 49, 11, 0.16);
}

.ambientes-info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(37, 49, 11, 0.12);
}

@media (prefers-reduced-motion: reduce) {
  .ambientes-info-card:hover {
    transform: none;
  }
}

.ambientes-info-card__icon-wrap {
  position: relative;
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ambientes-info-card__icon-bg {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(118, 33, 13, 0.12);
  box-shadow: 0 4px 14px rgba(37, 49, 11, 0.06);
}

.ambientes-info-card--park .ambientes-info-card__icon-bg {
  background: rgba(245, 241, 234, 0.82);
}

.ambientes-info-card--access .ambientes-info-card__icon-bg {
  background: rgba(245, 241, 234, 0.82);
}

.ambientes-info-card--hours .ambientes-info-card__icon-bg {
  background: rgba(245, 241, 234, 0.82);
}

.ambientes-info-card__icon {
  position: relative;
  z-index: 1;
  color: #4a3520;
}

.ambientes-info-card--access .ambientes-info-card__icon {
  color: #4a3520;
}

.ambientes-info-card--hours .ambientes-info-card__icon {
  color: #4a3520;
}

.ambientes-info-card__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #25310b;
  margin: 0 0 0.65rem;
  position: relative;
  z-index: 1;
}

.ambientes-info-card__text {
  font-size: 0.92rem;
  line-height: 1.68;
  color: var(--text-dark);
  margin: 0;
  position: relative;
  z-index: 1;
}

.ambientes-info-card__text strong {
  color: #25310b;
  font-weight: 600;
}

@media (max-width: 900px) {
  .ambientes-info-strip {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2.25rem;
  }
}

.ambiente-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ambiente-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.ambiente-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.ambiente-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, var(--black) 0%, transparent 100%);
}

.ambiente-nome {
  color: white;
  font-size: 40px;
  letter-spacing: 3px;
  font-weight: 700;
  margin-bottom: 0.6rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.ambiente-linha {
  width: 90%;
  height: 6px;
  background-color: #e4a023;
  border-radius: 2px;
  margin-bottom: 20px;
}

/* Coluna esquerda: texto e linha ancorados à direita, linha encosta na borda direita */
.ambientes-grid .ambiente-card:nth-child(1) .ambiente-image-overlay {
  text-align: right;
}

.ambientes-grid .ambiente-card:nth-child(1) .ambiente-linha {
  margin-left: auto;
  margin-right: -2rem;
}

/* Coluna direita: texto e linha ancorados à esquerda, linha encosta na borda esquerda */
.ambientes-grid .ambiente-card:nth-child(2) .ambiente-image-overlay {
  text-align: left;
}

.ambientes-grid .ambiente-card:nth-child(2) .ambiente-linha {
  margin-right: auto;
  margin-left: -2rem;
}

/* ========================================
   Seção Espaço Empresarial
   ======================================== */
.empresarial {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.empresarial-header {
  text-align: center;
  margin: 0 auto 2.5rem;
}

.empresarial-subtitle {
  display: block;
  font-size: 1rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.empresarial-title {
  font-size: 1.6rem;
  color: #25310b;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

/* Corpo da seção — mesmo ritmo tipográfico da seção Buffet */
.empresarial-copy {
  margin: 0.25rem auto 0;
  text-align: left;
}

.empresarial-lead {
  font-size: 1.08rem;
  line-height: 1.65;
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.empresarial-text {
  font-size: 0.98rem;
  line-height: 1.7;
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.empresarial-text:last-child {
  margin-bottom: 0;
}

.empresarial-lead strong,
.empresarial-text strong {
  color: #25310b;
  font-weight: 600;
  text-align: center;
}

.empresarial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.24rem;
}

.empresarial-thumb {
  display: block;
  border-radius: 4px;
  overflow: hidden;
  outline: none;
  transition: var(--transition);
}

.empresarial-thumb:focus-visible {
  box-shadow: 0 0 0 3px rgba(37, 49, 11, 0.35);
}

.empresarial-thumb:hover {
  opacity: 0.95;
}

.empresarial-thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.ambiente-info {
  padding: 0 0.5rem;
}

.ambiente-desc {
  color: var(--black);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

.ambiente-capacidade {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.capacidade-icon {
  width: 36px;
  height: 36px;
}

.ambiente-capacidade span {
  font-size: 1.05rem;
  font-weight: 600;
  color: #25310b;
  font-family: var(--font-heading);
}

/* ========================================
   Seção Buffet & Pacotes
   ======================================== */
.buffet {
  padding: 5rem 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-light) 50%, #ffffff 100%);
  border-top: 1px solid rgba(37, 49, 11, 0.06);
  border-bottom: 1px solid rgba(37, 49, 11, 0.06);
}

.buffet-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
  max-width: 1180px;
}

.buffet-visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(37, 49, 11, 0.12);
}

.buffet-image {
  width: 100%;
  height: auto;
  max-height: 500px;
  display: block;
  object-fit: cover;
}

.buffet-content {
  padding: 0.5rem 0;
}

.buffet-eyebrow {
  display: block;
  font-size: 0.85rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 0.75rem;
}

.buffet-title {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  color: #25310b;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}

.buffet-lead {
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.buffet-text {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.buffet-text strong {
  color: #25310b;
  font-weight: 600;
}

.buffet-note {
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 1.75rem;
  line-height: 1.5;
}

.btn-buffet {
  display: inline-block;
  padding: 16px 32px;
  background-color: #76210d;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-heading);
  letter-spacing: 0.04em;
  transition: var(--transition);
}

.btn-buffet:hover {
  background-color: #5a1809;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(118, 33, 13, 0.35);
}

@media (max-width: 900px) {
  .buffet-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .buffet-visual {
    order: -1;
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .buffet {
    padding: 3.5rem 0;
  }

  .btn-buffet {
    width: 100%;
    text-align: center;
  }
}

/* ========================================
   Seção Depoimentos
   ======================================== */
.depoimentos {
  padding: 5rem 0 5.5rem;
  background: linear-gradient(165deg, #faf8f5 0%, #ffffff 42%, #f5f1ea 100%);
  border-top: 1px solid rgba(37, 49, 11, 0.06);
  overflow: visible;
}

.depoimentos-inner {
  max-width: 1240px;
}

.depoimentos-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.depoimentos-eyebrow {
  display: block;
  font-size: 0.85rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.75rem;
}

.depoimentos-title {
  font-size: clamp(1.85rem, 3.2vw, 2.6rem);
  color: #25310b;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
  font-weight: 700;
  line-height: 1.15;
}

.depoimentos-lead {
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--text-dark);
  margin: 0;
}

.depoimentos-carousel {
  position: relative;
  overflow: visible;
  padding: 0 1rem 4.75rem;
  margin: 0;
}

/* Viewport com recorte: esconde slides vizinhos (loop) além dos 2 visíveis.
   Setas e paginação ficam na área de padding do próprio .swiper, não são cortadas. */
.depoimentos-swiper.swiper {
  overflow: hidden !important;
  padding: 0 3.25rem 4.5rem;
  box-sizing: border-box;
}

.depoimentos-swiper .swiper-slide {
  height: auto;
  display: flex;
  justify-content: center;
  align-items: stretch;
  /* respiro lateral para a sombra não “morrer” na borda do slide */
  padding: 4px 12px;
  box-sizing: border-box;
}

.depoimentos-swiper .swiper-slide .depoimento-card {
  width: 100%;
  max-width: none;
  margin: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.depoimento-card {
  position: relative;
  overflow: hidden;
  background: #faf6f0;
  border-radius: 18px;
  padding: 0 1.75rem 1.65rem;
  padding-top: 0;
  border: 1px solid rgba(118, 33, 13, 0.1);
  box-shadow: 0 8px 16px rgba(37, 49, 11, 0.08), 0 1px 0 rgba(255, 255, 255, 0.75) inset;
}

.depoimento-card::after {
  content: none;
}

.depoimento-card__accent {
  position: relative;
  z-index: 1;
  height: 4px;
  width: 100%;
  border-radius: 18px 18px 0 0;
  background: rgba(118, 33, 13, 0.28);
}

.depoimento-card__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1.25rem 0 0.35rem;
  margin-bottom: 0.15rem;
}

.depoimento-card__rating {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-left: auto;
  margin-right: 0.35rem;
  color: #b8892e;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.6));
}

.depoimento-card__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(118, 33, 13, 0.55);
}

.depoimento-card__ico--quote {
  color: rgba(118, 33, 13, 0.42);
}

.depoimento-card__ico--heart {
  color: rgba(182, 82, 72, 0.55);
}

.depoimento-card:hover {
  transform: translateY(-3px);
  border-color: rgba(118, 33, 13, 0.16);
  box-shadow: 0 22px 50px rgba(37, 49, 11, 0.11), 0 1px 0 rgba(255, 255, 255, 0.85) inset;
}

@media (prefers-reduced-motion: reduce) {
  .depoimento-card:hover {
    transform: none;
  }
}

/* Setas na faixa lateral interna do Swiper (evita overflow-x no html cortar posições negativas) */
.depoimentos-prev,
.depoimentos-next {
  width: 48px !important;
  height: 48px !important;
  margin-top: 0 !important;
  top: 42%;
  z-index: 12;
  color: #76210d !important;
  background: rgba(255, 255, 255, 0.95) !important;
  border-radius: 50%;
  border: 1px solid rgba(118, 33, 13, 0.18);
  box-shadow: 0 8px 24px rgba(37, 49, 11, 0.1);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.depoimentos-prev {
  left: 0.35rem !important;
}

.depoimentos-next {
  right: 0.35rem !important;
}

.depoimentos-prev::after,
.depoimentos-next::after {
  font-size: 1rem !important;
  font-weight: 700 !important;
}

.depoimentos-prev:hover,
.depoimentos-next:hover {
  background: #76210d !important;
  color: #fff !important;
  transform: scale(1.06);
  box-shadow: 0 10px 28px rgba(118, 33, 13, 0.35);
}

.depoimentos-prev.swiper-button-disabled,
.depoimentos-next.swiper-button-disabled {
  opacity: 0.35 !important;
}

/* Bullets dentro do padding inferior do Swiper (valor negativo era recortado pelo overflow) */
.depoimentos-pagination.swiper-pagination-bullets {
  bottom: 1rem !important;
  z-index: 11;
}

.depoimentos-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: rgba(37, 49, 11, 0.25);
  opacity: 1;
  transition: transform 0.25s ease, background 0.25s ease;
}

.depoimentos-pagination .swiper-pagination-bullet-active {
  background: #76210d;
  transform: scale(1.25);
}

.depoimento-destaque {
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 600;
  color: #25310b;
  line-height: 1.45;
  margin: 0 0 1rem;
  letter-spacing: 0.02em;
}

.depoimento-text {
  position: relative;
  z-index: 1;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-dark);
  margin: 0 0 1.25rem;
  flex-grow: 1;
}

.depoimento-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(37, 49, 11, 0.1);
}

.depoimento-footer__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(118, 33, 13, 0.12);
  color: rgba(118, 33, 13, 0.55);
  box-shadow: 0 4px 12px rgba(37, 49, 11, 0.06);
}

.depoimento-autor {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #76210d;
  margin: 0;
}

@media (max-width: 768px) {
  .depoimentos {
    padding: 3.25rem 0 4rem;
  }

  .depoimentos-carousel {
    padding: 0 0.25rem 3.75rem;
    margin: 0;
  }

  /* Só o necessário para as setas (481–768px); no ≤480 as setas somem */
  .depoimentos-swiper.swiper {
    padding: 0 2.15rem 3.75rem;
  }

  .depoimentos-swiper .swiper-slide {
    padding: 4px 4px;
  }

  .depoimentos-pagination.swiper-pagination-bullets {
    bottom: 0.65rem !important;
  }

  .depoimentos-prev,
  .depoimentos-next {
    width: 40px !important;
    height: 40px !important;
    top: 40%;
  }

  .depoimentos-prev {
    left: 0.2rem !important;
  }

  .depoimentos-next {
    right: 0.2rem !important;
  }

  .depoimento-card {
    padding: 0 1.25rem 1.45rem;
  }

  .depoimento-destaque {
    font-size: 1.05rem;
  }

  .depoimento-text {
    font-size: 0.92rem;
  }

  .depoimento-card__top {
    padding-top: 1.05rem;
    gap: 0.4rem;
  }

  .depoimento-card__ico--quote svg {
    width: 22px;
    height: 22px;
  }

  .depoimento-card__rating svg {
    width: 11px;
    height: 11px;
  }

  .depoimento-card__ico--heart svg {
    width: 15px;
    height: 15px;
  }
}

@media (max-width: 480px) {
  .depoimentos-title {
    letter-spacing: 0.08em;
  }

  .depoimentos .container.depoimentos-inner {
    padding-left: 12px;
    padding-right: 12px;
  }

  .depoimentos-carousel {
    padding: 0 0 3.5rem;
  }

  /* Largura total no telefone: setas escondidas, sem reserva lateral */
  .depoimentos-swiper.swiper {
    padding: 0 0 3.5rem;
  }

  .depoimentos-swiper .swiper-slide {
    padding: 2px 0;
  }

  .depoimentos-prev,
  .depoimentos-next {
    display: none !important;
  }

  .depoimento-card {
    padding: 0 1.1rem 1.35rem;
  }
}

/* ========================================
   Seção Um Lugar Completo
   ======================================== */
.lugar-completo {
  display: flex;
  flex-direction: column;
  background-color: var(--bg-white);
  overflow: hidden;
}

.lugar-completo-text {
  position: relative;
  z-index: 1;
  padding: 1rem 0 4rem;
  text-align: center;
  transform: translateY(-400px) !important;
  margin-bottom: -400px !important;
}

.lugar-completo-title {
  font-size: 2.8rem;
  color: #25310b;
  letter-spacing: 4px;
  margin-bottom: 2rem;
  font-weight: 700;
}

.lugar-completo-text p {
  max-width: 700px;
  margin: 0 auto 1.2rem;
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.8;
}

.btn-lugar-completo {
  display: inline-block;
  margin-top: 2rem;
  padding: 18px 38px;
  background-color: #76210d;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.btn-lugar-completo:hover {
  background-color: #5a1809;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(118, 33, 13, 0.35);
}

.lugar-completo-image {
  width: 100%;
  height: 479px;
  object-fit: contain;
  background-image: url("../../public/images/bg-espaco-960w.webp");
  background-size: cover;
  background-position: bottom;

  @media (max-width: 768px) {
    background-image: url("../../public/images/bg-espaco-mobile.webp");
  }
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background-color: #c7a97b2e;
  padding: 3.5rem 0 0;
}

.footer-main {
  display: grid;
  grid-template-columns: auto 1fr 1fr 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  padding-bottom: 3rem;
}

.footer-col-logo {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  height: 90px;
  width: auto;
}

.footer-social {
  display: flex;
  flex-direction: row;
  gap: 0.6rem;
  justify-content: center;
  align-items: center;
}

.footer-siga {
  font-size: 0.85rem;
  color: var(--text-dark);
  font-family: var(--font-body);
}

.footer-social-icons {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
}

.footer-social-icon:hover {
  background-color: #5a1809;
  transform: translateY(-2px);
}

.footer-social-icon img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-top: 0.5rem;
}

.footer-nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 1px;
  font-weight: 600;
  transition: var(--transition);
}

.footer-nav a:hover {
  color: #76210d;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.footer-col p {
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 1.6;
}

.footer-col a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-col a:hover {
  opacity: 0.7;
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  font-size: 0.85rem;
  color: var(--text-dark);
}

.footer-bredi {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-dark);
}

.footer-bredi a {
  display: flex;
  align-items: center;
}

.bredi-logo {
  height: 18px;
  width: auto;
}

/* ========================================
   Responsividade
   ======================================== */
@media (max-width: 768px) {
  /* Hero só no desktop: no mobile o destaque é o vídeo do header */
  .hero-casamentos {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .top-header {
    display: none;
  }

  .header {
    position: relative;
    top: 0;
    left: auto;
    right: auto;
    padding: 0;
  }

  .header.scrolled {
    background-color: transparent;
    backdrop-filter: none;
    box-shadow: none;
  }

  .header .container {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 0.75rem 20px;
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.5) 40%,
        rgba(0, 0, 0, 0) 100%);
  }

  .header-mobile-video {
    display: block;
    width: 100vw;
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
  }

  .header-mobile-video__media {
    width: 100%;
    height: auto;
    object-fit: contain;
    pointer-events: none;
  }

  .header-mobile-video__unmute {
    display: none;
    position: absolute;
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .header-mobile-video__unmute.is-visible {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .header-mobile-video__media::-webkit-media-controls {
    display: none !important;
  }

  .header-mobile-video__media::-webkit-media-controls-enclosure {
    display: none !important;
  }

  .header-mobile-video__media::-webkit-media-controls-panel {
    display: none !important;
  }

  .header-right {
    gap: 1rem;
  }

  .nav {
    position: fixed;
    top: 70px;
    right: -100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    width: 70%;
    max-width: 300px;
    height: calc(100vh - 70px);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    padding: 2rem;
  }

  .header.scrolled .nav {
    top: 60px;
    height: calc(100vh - 60px);
  }

  .nav.active {
    right: 0;
  }

  .nav ul {
    flex-direction: column;
    gap: 1.5rem;
  }

  .nav a {
    color: white;
    font-size: 1.1rem;
  }

  .logo img {
    height: 50px;
  }

  .banner-content h2 {
    font-size: 2rem;
  }

  .banner-content p {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .quem-somos-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .quem-somos-image {
    order: -1;
  }

  .quem-somos-mosaic {
    max-width: 400px;
    margin: 0 auto;
  }

  .quem-somos-text p {
    text-align: center;
  }

  .espacos-top {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 20px;
  }

  .espacos-filter {
    align-items: center;
    margin-top: 1.5rem;
    gap: 0.6rem;
  }

  .espacos-filter-main {
    font-size: 24px;
    padding: 10px 28px;
  }

  .espacos-filter-sub {
    font-size: 16px;
    padding: 8px 20px;
  }

  .espacos-title {
    font-size: 2.5rem;
  }

  .espacos-middle {
    justify-content: center;
    padding: 0 20px;
  }

  .espacos-desc {
    max-width: 100%;
    text-align: center;
  }

  .espacos-desc p {
    text-align: center;
  }

  .carousel-item {
    flex: 0 0 calc(33.333% - 8px);
  }

  /* Hero responsivo */
  .hero-inner {
    padding: 5rem 0 3rem;
    max-width: 100%;
  }

  .hero-title {
    font-size: 1.65rem;
    letter-spacing: 0.04em;
  }

  .hero-description {
    font-size: 1rem;
  }

  /* Ambientes Responsivo */
  .ambientes-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .ambiente-image img {
    aspect-ratio: 4 / 3;
  }

  .ambientes-grid .ambiente-card:nth-child(1) .ambiente-image-overlay,
  .ambientes-grid .ambiente-card:nth-child(2) .ambiente-image-overlay {
    text-align: left;
  }

  .ambientes-grid .ambiente-card:nth-child(1) .ambiente-linha {
    margin-left: -2rem;
    margin-right: auto;
  }

  .ambiente-nome {
    font-size: 28px;
  }

  .ambiente-image img {
    aspect-ratio: 16 / 12;
  }

  .ambiente-info {
    padding: 0 1rem;
  }

  .ambiente-desc {
    font-size: 0.9rem;
  }

  .empresarial-title {
    font-size: 2rem;
    letter-spacing: 2px;
  }

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

  /* Footer Responsivo */
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-col-logo {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.6rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 35px;
  }

  .btn-whatsapp {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }

  .btn-whatsapp svg {
    width: 16px;
    height: 16px;
  }

  .banner {
    min-height: 400px;
  }

  .banner-content h2 {
    font-size: 1.5rem;
  }

  .banner-content p {
    font-size: 1rem;
  }

  .btn-primary {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }

  .hero-title {
    font-size: 1.45rem;
    letter-spacing: 0.03em;
  }

  .quem-somos {
    padding: 3rem 0;
    min-height: auto;
  }

  .quem-somos-title {
    font-size: 2rem;
  }

  .espacos-hero {
    min-height: auto;
    padding: 3rem 0;
  }

  .espacos-container {
    padding: 1.5rem 20px;
  }

  .espacos-filter {
    align-items: center;
    margin-top: 1rem;
  }

  .espacos-filter-main {
    font-size: 20px;
    padding: 8px 24px;
  }

  .espacos-filter-sub {
    font-size: 14px;
    padding: 6px 18px;
  }

  .espacos-title {
    font-size: 1.8rem;
    letter-spacing: 2px;
  }

  .espacos-label {
    font-size: 1.3rem;
    padding: 0 20px;
  }

  .ambiente-nome {
    font-size: 24px;
    letter-spacing: 2px;
  }

  .carousel-item {
    flex: 0 0 calc(50% - 6px);
  }

  .carousel-item img {
    height: 90px;
  }

  .hero-inner {
    padding: 4.5rem 0 2.5rem;
  }

  .hero-title {
    font-size: 1.35rem;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .hero-gradient-bottom {
    height: 400px;
  }

  /* Footer Responsivo Mobile */
  .footer-main {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-col {
    text-align: center;
  }

  .footer-col-logo {
    flex-direction: column;
    align-items: center;
  }

  .footer-social {
    align-items: center;
  }

  .footer-nav {
    align-items: center;
  }

  .footer-logo {
    height: 70px;
  }

  .lugar-completo-title {
    font-size: 2rem;
    letter-spacing: 2px;
  }

  .btn-lugar-completo {
    padding: 14px 28px;
    font-size: 0.9rem;
  }
}

/* Dispositivos muito pequenos */
@media (max-width: 375px) {
  .hero-title {
    font-size: 1.25rem;
    letter-spacing: 0.03em;
  }
}

.quem-somos-mosaic__piece--tl{
  transform: translateX(48px) translateY(-24px) !important;
  scale: 1.24;
  z-index: 10;
}

.quem-somos-mosaic__piece--tr{
  transform: translateY(64px) !important;
  z-index: 20;
}

.quem-somos-mosaic__piece--br{
  transform: translateX(-24px)  translateY(-88px) !important;
  scale: 0.88;
  z-index: 30;
}

.quem-somos-mosaic__piece--bl{
  transform: translateY(-64px) !important;
  z-index: 10;
}

@media (max-width: 768px) {
  .quem-somos-mosaic__piece--tl{
    transform: translateX(24px) translateY(-12px) !important;
    scale: 1.32 !important;
  }
  
  .quem-somos-mosaic__piece--tr{
    transform: translateY(32px) !important;
  }

  .quem-somos-mosaic__piece--br{
    transform: translateX(-24px)  translateY(-44px) !important;
    scale: 0.88 !important;
  }
  
  .quem-somos-mosaic__piece--bl{
    transform: translateX(6px) translateY(-32px) !important;
    scale: 0.88 !important;
    
  }
}
