/* Importação de Fontes do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700;800&display=swap');

/* Variáveis CSS / Tokens de Design */
:root {
  --bg-primary: #F5F2EC;
  --bg-secondary: #E7DED1;
  --bg-accent: #D8C9B6;
  --wood-caramel: #A97243;
  --wood-dark: #7B4E2D;
  --text-dark: #1A1A1A;
  --text-muted: #5E5E5E;
  --bg-white: #FFFFFF;
  --border-color: rgba(26, 26, 26, 0.08);
  
  --font-title: 'Montserrat', sans-serif;
  --font-text: 'Inter', sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  
  --container-width: 1280px;
}

/* Reset de Estilos Básicos */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-text);
  background-color: var(--bg-primary);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

button {
  font-family: var(--font-text);
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
  transition: var(--transition-smooth);
}

/* Classes Utilitárias */
.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
}

.section-padding {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-uppercase {
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Efeito de Reveal Suave no Scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

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

/* Header & Barra de Navegação */
header {
  position: sticky;
  top: 0;
  background-color: rgba(245, 242, 236, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: var(--transition-smooth);
}

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

.logo img {
  height: 38px;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: var(--transition-smooth);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 36px;
}

nav a {
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  position: relative;
  padding: 4px 0;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--wood-caramel);
  transition: var(--transition-smooth);
}

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

nav a:hover {
  color: var(--wood-caramel);
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.icon-btn {
  color: var(--text-dark);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: 50%;
  transition: var(--transition-smooth);
}

.icon-btn svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.8;
}

.icon-btn:hover {
  transform: translateY(-2px);
  color: var(--wood-caramel);
  background-color: rgba(26, 26, 26, 0.03);
}

/* Menu Hambúrguer */
.menu-toggle {
  display: none;
}

@media (max-width: 992px) {
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(26, 26, 26, 0.03);
  }
  
  nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    padding: 30px 5%;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    z-index: 999;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
  }
  
  nav.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  
  nav ul {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
}

/* Botão Estilo Pílula Premium */
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--text-dark);
  color: var(--bg-white);
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  border: 1.5px solid var(--text-dark);
  transition: var(--transition-smooth);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.btn-pill:hover {
  background-color: transparent;
  color: var(--text-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Seção Hero - Estilo de Fundo de Tela Inteira com Conteúdo Sobreposto */
.hero {
  position: relative;
  width: 100% !important;
  max-width: 100% !important;
  background-color: var(--bg-primary);
  overflow: visible;
  padding: 0 !important;
  margin: 0 !important;
}

.hero-image-wrapper {
  position: relative;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  padding: 0 !important;
  overflow: visible; /* Mantém balões de preço visíveis nas bordas */
}

.hero-image-wrapper img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
}

.hero-content-overlay {
  position: absolute;
  top: 20%; /* Posicionado mais para baixo para reduzir o vão de parede vazia até os móveis no desktop */
  left: 50%;
  width: 90%;
  max-width: 850px;
  text-align: center;
  z-index: 5;
}

/* Transições combinadas com reveal para manter centralização no desktop */
.hero-content-overlay.reveal {
  opacity: 0;
  transform: translateX(-50%) translateY(30px);
}

.hero-content-overlay.reveal.revealed {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.hero-subtitle-top {
  font-family: var(--font-text);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  color: var(--wood-caramel);
  margin-bottom: 15px;
}

.hero h1 {
  font-family: var(--font-title);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-dark);
  margin: 0 auto 25px auto;
  max-width: 850px;
  letter-spacing: -0.02em;
}

@media (max-width: 992px) {
  .hero-content-overlay {
    top: 15%; /* Proporcional para telas médias */
  }
  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .hero {
    display: block;
    position: relative;
    width: 100% !important;
  }
  .hero-content-overlay {
    position: absolute;
    top: 4%;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 100%;
    text-align: center;
    z-index: 5;
    padding: 0;
  }
  .hero-content-overlay.reveal {
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
  }
  .hero-content-overlay.reveal.revealed {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  .hero h1 {
    font-size: 1.05rem;
    margin: 0 auto 8px auto;
    line-height: 1.25;
  }
  .hero-subtitle-top {
    font-size: 0.55rem;
    margin-bottom: 4px;
    letter-spacing: 0.15em;
  }
  .hero-content-overlay .btn-pill {
    padding: 6px 14px;
    font-size: 0.68rem;
  }

  /* Redução responsiva dos títulos do restante do site */
  .section-header-left h2 {
    font-size: 1.5rem !important;
    line-height: 1.25;
    margin-bottom: 8px;
  }
  
  .section-header-left p {
    font-size: 0.85rem !important;
    line-height: 1.4;
  }
  
  .split-content h2 {
    font-size: 1.5rem !important;
    line-height: 1.2;
    margin-bottom: 12px;
  }
  
  .split-content p {
    font-size: 0.85rem !important;
    line-height: 1.45;
    margin-bottom: 20px;
  }
  
  .combo-right-card h2 {
    font-size: 1.5rem !important;
    line-height: 1.2;
    margin-bottom: 10px;
  }
  
  .combo-right-card p {
    font-size: 0.85rem !important;
    line-height: 1.4;
    margin-bottom: 18px;
  }

  .stat-number {
    font-size: 2rem !important;
  }
  
  .stat-label {
    font-size: 0.78rem !important;
    line-height: 1.3;
  }

  /* Oculta o balão absoluto clássico no mobile */
  .hotspot-tooltip {
    display: none !important;
  }
}

.hero-cta {
  margin-bottom: 0;
}


/* Hotspots de Preço (Estilo Estático da Referência) */
.hotspot {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 65px;
  transform: translate(-50%, -100%);
  z-index: 10;
  cursor: pointer;
}

.hotspot-dot {
  width: 10px;
  height: 10px;
  background-color: var(--bg-white);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(26,26,26,0.1);
  flex-shrink: 0;
  position: relative;
}

.hotspot-dot::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.9);
  animation: pulse-ring 2s infinite;
  pointer-events: none;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.hotspot-line {
  width: 1.5px;
  height: 16px;
  background-color: var(--bg-white);
  box-shadow: 0 0 2px rgba(0,0,0,0.15);
  opacity: 0.9;
  flex-shrink: 0;
}

.hotspot-tag {
  background-color: var(--bg-white);
  color: var(--text-dark);
  padding: 4px 12px;
  border-radius: 30px;
  font-family: var(--font-text);
  font-weight: 600;
  font-size: 0.72rem;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  border: 1.5px solid var(--bg-white);
  white-space: nowrap;
  transition: var(--transition-smooth);
}

.hotspot:hover .hotspot-tag {
  transform: scale(1.08);
  background-color: var(--text-dark);
  color: var(--bg-white);
  border-color: var(--text-dark);
}

/* Coordenadas precisas para herobg.png (Desktop) */
.hotspot-left-chest {
  top: 75%;
  left: 27%;
}

.hotspot-sofa {
  top: 73%;
  left: 45%;
}

.hotspot-coffee-table {
  top: 85%;
  left: 45%;
}

.hotspot-armchair {
  top: 77%;
  left: 77%;
}

.hotspot-tall-cabinet {
  top: 71%;
  left: 63%;
}

/* Ajustes de escala e posições dos hotspots no mobile para evitar sobreposições */
@media (max-width: 768px) {
  .hotspot {
    height: 48px;
  }
  .hotspot-line {
    height: 10px;
  }
  .hotspot-tag {
    font-size: 0.6rem;
    padding: 3px 8px;
    border-width: 1px;
  }
  .hotspot-dot {
    width: 8px;
    height: 8px;
  }
  
  .hotspot-left-chest {
    top: 75%;
    left: 24%;
  }
  .hotspot-sofa {
    top: 72%;
    left: 44%;
  }
  .hotspot-coffee-table {
    top: 87%;
    left: 45%;
  }
  .hotspot-tall-cabinet {
    top: 71%;
    left: 63%;
  }
  .hotspot-armchair {
    top: 77%;
    left: 81%;
  }
}

/* Hotspot Tooltips Premium Escuro */
.hotspot-tooltip {
  position: absolute;
  bottom: 75px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: var(--text-dark);
  color: var(--bg-white);
  padding: 14px 18px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  width: 230px;
  text-align: left;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hotspot-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: var(--text-dark) transparent transparent transparent;
}

.hotspot:hover .hotspot-tooltip,
.hotspot.active .hotspot-tooltip {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.tooltip-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

.tooltip-desc {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.35;
  margin-bottom: 6px;
}

.tooltip-price {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--bg-secondary);
}

/* Cabeçalhos de Seções */
.section-header {
  margin-bottom: 50px;
}

.section-header.centered {
  text-align: center;
}

.section-header-left h2 {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.section-header-left p {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 600px;
}

.section-header.centered .section-header-left p {
  margin: 0 auto;
}

/* Carrossel de Ambientes Recentes */
.carousel-wrapper {
  overflow: hidden;
  margin: 0 -20px;
  padding: 10px 20px;
}

.carousel-track {
  display: flex;
  gap: 30px;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.carousel-slide {
  flex: 0 0 calc(33.333% - 20px);
  min-width: 300px;
}

@media (max-width: 992px) {
  .carousel-slide {
    flex: 0 0 calc(50% - 15px);
  }
}

@media (max-width: 600px) {
  .carousel-slide {
    flex: 0 0 100%;
  }
}

/* Navegação inferior do Carrossel */
.carousel-navigation-bottom {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 45px;
}

.nav-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background-color: var(--bg-white);
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.nav-arrow:hover {
  background-color: var(--text-dark);
  color: var(--bg-white);
  border-color: var(--text-dark);
}

.nav-arrow svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

/* Cards de Produto (Alinhamento Idêntico ao Mockup) */
.product-card {
  background-color: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(26, 26, 26, 0.04);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.product-image-container {
  width: 100%;
  height: 280px;
  background-color: #f1ede4;
  position: relative;
  overflow: hidden;
}

.product-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.product-card:hover .product-image-container img {
  transform: scale(1.06);
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--wood-caramel);
  color: var(--bg-white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  border-radius: 4px;
}

/* Botão de "+" no canto inferior direito da imagem */
.add-to-cart-quick {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--text-dark);
  color: var(--bg-white);
  opacity: 0.95;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  z-index: 5;
}

.add-to-cart-quick:hover {
  transform: scale(1.1) rotate(90deg);
  background-color: var(--wood-caramel);
}

.add-to-cart-quick svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.5;
}

/* Detalhes do Card em duas linhas */
.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 6px;
}

.product-title-row h3 {
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
  text-align: left;
}

.product-title-row .product-price {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
  white-space: nowrap;
}

.product-rating-row {
  display: flex;
  align-items: center;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--wood-caramel);
}

.product-rating svg {
  width: 12px;
  height: 12px;
  fill: var(--wood-caramel);
  stroke: var(--wood-caramel);
}

.product-reviews {
  color: var(--text-muted);
  font-weight: 400;
}

/* Filtros por Categoria (Chips) */
.filter-chips-wrapper {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 10px;
  max-width: 100%;
}

.filter-chips-wrapper::-webkit-scrollbar {
  height: 4px;
}
.filter-chips-wrapper::-webkit-scrollbar-thumb {
  background: var(--bg-accent);
  border-radius: 10px;
}

.filter-chip {
  padding: 8px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.8rem;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  white-space: nowrap;
  transition: var(--transition-fast);
}

.filter-chip:hover {
  border-color: var(--text-dark);
  color: var(--text-dark);
}

.filter-chip.active {
  background-color: var(--text-dark);
  color: var(--bg-white);
  border-color: var(--text-dark);
}

/* Seção de Catálogo Completo */
.all-products-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 45px;
}

@media (max-width: 992px) {
  .all-products-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

@media (max-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

.products-grid .product-card {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.products-grid .product-card.hidden {
  opacity: 0;
  transform: scale(0.9);
  pointer-events: none;
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: none;
}

.see-all-container {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

/* Seção Institucional (Style Meets Comfort) */
.style-comfort {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, #DFD6C8 100%);
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 992px) {
  .split-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.split-content h2 {
  font-family: var(--font-title);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 25px;
  letter-spacing: -0.01em;
}

@media (max-width: 768px) {
  .split-content h2 {
    font-size: 2rem;
  }
}

.split-content p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.stat-item {
  border-left: 3px solid var(--wood-caramel);
  padding-left: 20px;
  transition: var(--transition-smooth);
}

.stat-item:hover {
  transform: translateX(5px);
  border-left-color: var(--text-dark);
}

.stat-number {
  font-family: var(--font-title);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.split-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.split-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 5s ease;
}

.split-image:hover img {
  transform: scale(1.03);
}

/* Seção de Combos Curados (Ambientes Planejados) */
.curated-combos {
  background-color: var(--bg-primary);
  padding: 80px 0;
}

.combos-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: stretch;
}

@media (max-width: 992px) {
  .combos-layout {
    grid-template-columns: 1fr;
  }
}

.combo-left-card {
  position: relative;
  background-color: var(--bg-secondary);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.03);
  height: 100%;
  min-height: 550px;
}

.combo-track {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.combo-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
}

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

.combo-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0) 65%, rgba(0, 0, 0, 0.55) 100%);
  z-index: 1;
}

.combo-overlay-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
  z-index: 2;
}

.combo-overlay-container .combo-pagination,
.combo-overlay-container .combo-left-actions {
  pointer-events: auto;
}

.combo-pagination {
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--bg-white);
  letter-spacing: 0.15em;
  display: flex;
  align-items: center;
  gap: 15px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.combo-pagination span {
  user-select: none;
}

.combo-left-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--bg-white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.combo-right-card {
  background-color: var(--bg-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--border-color);
  padding: 40px;
}

.combo-header {
  max-width: 450px;
}

.combo-badge {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--wood-caramel);
  letter-spacing: 0.2em;
  margin-bottom: 12px;
}

.combo-right-card h2 {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
}

.combo-right-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 25px;
}

.combo-showcase-image {
  border-radius: 12px;
  overflow: hidden;
  margin-top: 30px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.04);
}

.combo-showcase-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 5s ease;
}

.combo-right-card:hover .combo-showcase-image img {
  transform: scale(1.03);
}

/* Rodapé (Footer) */
footer {
  background-color: var(--text-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 40px 0;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 60px;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.footer-col h4 {
  font-family: var(--font-title);
  color: var(--bg-white);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.footer-col-logo img {
  height: 45px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-col-logo p {
  line-height: 1.6;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--bg-white);
  padding-left: 5px;
}

.footer-contact p {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: var(--wood-caramel);
}

.newsletter-form {
  display: flex;
  margin-top: 15px;
  position: relative;
}

.newsletter-form input {
  flex-grow: 1;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 12px 50px 12px 20px;
  color: var(--bg-white);
  font-size: 0.85rem;
  outline: none;
  transition: var(--transition-smooth);
}

.newsletter-form input:focus {
  border-color: var(--wood-caramel);
  background-color: rgba(255, 255, 255, 0.08);
}

.newsletter-submit {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--bg-white);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.newsletter-submit:hover {
  background-color: var(--wood-caramel);
  color: var(--bg-white);
  transform: translateY(-50%) scale(1.05);
}

.newsletter-submit svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-smooth);
}

.social-icon:hover {
  border-color: var(--bg-white);
  color: var(--bg-white);
  background-color: rgba(255, 255, 255, 0.05);
}

.social-icon svg {
  width: 16px;
  height: 16px;
}

/* Modal de Hotspots no Mobile */
.hotspot-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.hotspot-modal.active {
  opacity: 1;
  pointer-events: all;
}

.hotspot-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.hotspot-modal-content {
  position: relative;
  background-color: var(--text-dark);
  color: var(--bg-white);
  padding: 35px 25px 30px 25px;
  border-radius: 16px;
  width: 88%;
  max-width: 330px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  z-index: 10;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hotspot-modal.active .hotspot-modal-content {
  transform: scale(1);
}

.hotspot-modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  border: none;
  background: none;
  line-height: 1;
  transition: var(--transition-fast);
}

.hotspot-modal-close:hover {
  color: var(--bg-white);
}

.hotspot-modal-body h4 {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
  line-height: 1.35;
}

.hotspot-modal-body p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.45;
  margin-bottom: 18px;
}

.hotspot-modal-body span {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--bg-secondary);
}

/* ---------------------------------------------------- */
/* Botão Flutuante do WhatsApp (Lottie) */
/* ---------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 80px;
  height: 80px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  filter: drop-shadow(0 8px 20px rgba(37, 211, 102, 0.25));
}

.whatsapp-float:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 12px 28px rgba(37, 211, 102, 0.45));
}

.whatsapp-float lottie-player {
  width: 80px !important;
  height: 80px !important;
  display: block;
}

@media (max-width: 768px) {
  /* WhatsApp Float Mobile */
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 70px;
    height: 70px;
  }

  .whatsapp-float lottie-player {
    width: 70px !important;
    height: 70px !important;
  }
}

