/* ==========================================================================
   DESIGN SYSTEM - ÓTICAS BIALLI
   ========================================================================== */

/* Importação de fontes sofisticadas */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;700&display=swap');

:root {
  /* Paleta de Cores */
  --bg-black: #060606;
  --bg-dark: #0d0d0d;
  --bg-card: #151515;
  --bg-card-hover: #1c1c1c;
  --gold-primary: #d4af37;
  --gold-light: #f3e5ab;
  --gold-dark: #aa7c11;
  --gold-gradient: linear-gradient(135deg, #aa7c11 0%, #f5e298 35%, #d4af37 70%, #8a660f 100%);
  --gold-gradient-hover: linear-gradient(135deg, #8a660f 0%, #d4af37 35%, #f5e298 70%, #aa7c11 100%);
  
  --text-white: #ffffff;
  --text-gray-light: #e0e0e0;
  --text-gray-muted: #a0a0a0;
  --text-gray-dark: #666666;
  
  /* Tipografia */
  --font-serif: 'Playfair Display', 'Georgia', serif;
  --font-sans: 'Inter', 'Segoe UI', sans-serif;
  --font-display: 'Montserrat', sans-serif;
  
  /* Transições & Efeitos */
  --transition-fast: all 0.2s ease;
  --transition-normal: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --box-shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.15);
  --box-shadow-gold-hover: 0 8px 30px rgba(212, 175, 55, 0.3);
  --box-shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Resets & Configurações Globais */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-black);
  color: var(--text-white);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

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

button, input, textarea {
  font-family: inherit;
}

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

ul {
  list-style: none;
}

span.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

/* ==========================================================================
   COMPONENTES UTILITÁRIOS (BOTÕES E TÍTULOS)
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #000000;
  border: none;
  box-shadow: var(--box-shadow-gold);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: var(--gold-gradient-hover);
  box-shadow: var(--box-shadow-gold-hover);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-white);
  border: 1px solid var(--gold-primary);
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.1);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--gold-gradient);
  color: #ffffff;
  border: none;
  font-weight: 700;
  text-shadow: 1px 1px 0px #000, -1px -1px 0px #000, 1px -1px 0px #000, -1px 1px 0px #000;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.45);
}

.btn-whatsapp:hover {
  background: var(--gold-gradient-hover);
  color: #000000;
  text-shadow: none;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.85);
  transform: translateY(-2px);
}

.btn-whatsapp i {
  margin-right: 8px;
  font-size: 1.1rem;
}

/* Títulos de Seção */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.section-title strong {
  font-weight: 700;
}

.section-subtitle {
  color: var(--text-gray-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ==========================================================================
   HEADER / MENU FLUTUANTE
   ========================================================================== */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition-normal);
}

header.scrolled {
  background: rgba(6, 6, 6, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  width: 200px;
  height: 50px;
}

.logo-link svg {
  width: 100%;
  height: 100%;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-gray-light);
  font-weight: 500;
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold-gradient);
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--text-white);
}

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

.header-cta {
  display: flex;
  align-items: center;
}

.header-cta .btn {
  padding: 10px 20px;
  font-size: 0.75rem;
}

/* Menu Mobile Hamburguer */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-white);
  transition: var(--transition-fast);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 160px 0 140px 0; /* Aumentado para garantir espaçamento e evitar sobreposições */
  background-color: var(--bg-black);
  overflow: hidden;
}

/* Imagem de Fundo em Parallax Suave com Overlay Escuro */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(6, 6, 6, 0.8), rgba(6, 6, 6, 0.95)), url('assets/loja_painel.jpeg');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  z-index: 1;
  filter: brightness(0.6) contrast(1.1);
}

.hero-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  max-width: 650px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 24px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.hero-badge i {
  margin-right: 8px;
  font-size: 0.9rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 3.8rem;
  line-height: 1.15;
  font-weight: 400;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.hero-title strong {
  font-weight: 700;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-gray-light);
  margin-bottom: 40px;
  font-weight: 300;
  max-width: 550px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Card Testemunhal Premium na Hero (Depoimento Fernanda) */
.hero-testimonial-card {
  background: rgba(15, 15, 15, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--border-radius-lg);
  padding: 55px 28px 28px 28px; /* Mais espaço no topo para compensar a foto flutuante */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--box-shadow-dark), 0 0 35px rgba(0, 0, 0, 0.8);
  text-align: center;
  position: relative;
  overflow: visible; /* Mantém a imagem estourando para fora */
  transform: translateY(0);
  transition: var(--transition-slow);
  margin-top: 40px; /* Garante distância no mobile */
}

.hero-testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: var(--box-shadow-dark), 0 10px 30px rgba(212, 175, 55, 0.15);
}

.hero-testimonial-img-wrapper {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 2px solid var(--gold-primary);
  overflow: hidden;
  margin: -100px auto 10px auto; /* Puxa a foto para fora do topo do card */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
  background-color: var(--bg-card);
}

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

.hero-testimonial-quote {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-gray-light);
  margin-bottom: 20px;
  font-weight: 300;
}

.hero-testimonial-author {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.hero-testimonial-sub {
  font-size: 0.75rem;
  color: var(--text-gray-muted);
  font-family: var(--font-sans);
}

/* ==========================================================================
   DIFERENCIAIS / EXPERIÊNCIA BIALLI
   ========================================================================== */

.features {
  padding: 130px 0;
  background-color: var(--bg-dark);
  position: relative;
}

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

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

.feature-card {
  background-color: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: var(--border-radius-md);
  padding: 40px;
  transition: var(--transition-normal);
  position: relative;
  z-index: 1;
}

.feature-card:hover {
  background-color: var(--bg-card-hover);
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.2);
  box-shadow: var(--box-shadow-dark);
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gold-gradient);
  transition: var(--transition-normal);
  z-index: 2;
}

.feature-card:hover::after {
  width: 100%;
}

.feature-icon-wrapper {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: var(--transition-normal);
  background: rgba(212, 175, 55, 0.02);
}

.feature-card:hover .feature-icon-wrapper {
  background: var(--gold-gradient);
  border-color: transparent;
}

.feature-icon-wrapper svg {
  width: 28px;
  height: 28px;
  fill: var(--gold-primary);
  transition: var(--transition-normal);
}

.feature-card:hover .feature-icon-wrapper svg {
  fill: #000000;
}

.feature-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 16px;
}

.feature-text {
  color: var(--text-gray-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   SOBRE A LOJA / SEÇÃO FOTOS E COPY
   ========================================================================== */

.store-info {
  padding: 130px 0;
  background-color: var(--bg-black);
}

.store-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.store-gallery-wrapper {
  position: relative;
}

.store-main-img {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: var(--box-shadow-dark);
}

.store-main-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.store-main-img:hover img {
  transform: scale(1.03);
}

/* Detalhe estético dourado */
.store-gallery-wrapper::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100px;
  height: 100px;
  border-top: 3px solid var(--gold-primary);
  border-left: 3px solid var(--gold-primary);
  z-index: 0;
}

.store-gallery-wrapper::after {
  content: '';
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 100px;
  height: 100px;
  border-bottom: 3px solid var(--gold-primary);
  border-right: 3px solid var(--gold-primary);
  z-index: 0;
}

.store-copy-content {
  padding-left: 10px;
}

.store-highlight {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 24px;
  color: var(--text-gray-light);
  border-left: 3px solid var(--gold-primary);
  padding-left: 20px;
}

.store-text-block {
  margin-bottom: 32px;
}

.store-text-block p {
  color: var(--text-gray-muted);
  font-size: 1rem;
  margin-bottom: 16px;
  font-weight: 300;
}

.store-metrics {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
}

.metric-item {
  text-align: left;
}

.metric-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.metric-label {
  font-size: 0.75rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-gray-muted);
}

/* ==========================================================================
   CARROSSEL DE FOTOS / GALERIA CONCEITUAL
   ========================================================================== */

.gallery {
  padding: 130px 0;
  background-color: var(--bg-dark);
}

.gallery-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.gallery-carousel-wrapper {
  position: relative;
  margin-top: 40px;
}

.gallery-carousel {
  display: flex;
  overflow: hidden;
  scroll-behavior: smooth;
  gap: 20px;
}

.gallery-item {
  flex: 0 0 calc(33.333% - 13.33px);
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  height: 380px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(6, 6, 6, 0.95) 0%, rgba(6, 6, 6, 0.4) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  opacity: 0;
  transition: var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

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

.gallery-item-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--text-white);
}

.gallery-item-desc {
  font-size: 0.85rem;
  color: var(--gold-primary);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Controles do Carrossel */
.carousel-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.carousel-btn {
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold-primary);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.carousel-btn:hover {
  background: var(--gold-gradient);
  color: #000000;
  border-color: transparent;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.carousel-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.carousel-dot.active {
  background-color: var(--gold-primary);
  width: 24px;
  border-radius: 4px;
}

/* ==========================================================================
   PROVA SOCIAL / DEPOIMENTOS
   ========================================================================== */

.testimonials {
  padding: 130px 0;
  background-color: var(--bg-black);
  position: relative;
}

.testimonials-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.testimonials-wrapper {
  position: relative;
  overflow: hidden;
  margin-top: 50px;
  min-height: 280px;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  z-index: 1;
}

.testimonial-slide.active {
  position: relative;
  opacity: 1;
  transform: translateX(0);
  z-index: 2;
}

.testimonial-quote-icon {
  font-size: 4rem;
  color: rgba(212, 175, 55, 0.15);
  line-height: 1;
  margin-bottom: -15px;
  font-family: var(--font-serif);
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--gold-primary);
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-gray-light);
  margin-bottom: 30px;
  font-weight: 300;
}

.testimonial-client {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-primary);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold-primary);
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}

.testimonial-info {
  text-align: left;
}

.testimonial-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.testimonial-city {
  font-size: 0.8rem;
  color: var(--text-gray-muted);
}

.testimonials .carousel-nav {
  margin-top: 30px;
}

/* ==========================================================================
   FAQ / ACORDEÃO
   ========================================================================== */

.faq {
  padding: 130px 0;
  background-color: var(--bg-dark);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-item:hover {
  border-color: rgba(212, 175, 55, 0.2);
}

.faq-item.active {
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: var(--box-shadow-dark);
}

.faq-header {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-question {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-white);
  padding-right: 15px;
}

.faq-toggle-icon {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
  transition: var(--transition-normal);
}

.faq-toggle-icon::before,
.faq-toggle-icon::after {
  content: '';
  position: absolute;
  background-color: var(--gold-primary);
  transition: var(--transition-normal);
}

/* Linha horizontal */
.faq-toggle-icon::before {
  top: 9px;
  left: 0;
  width: 20px;
  height: 2px;
}

/* Linha vertical (gira/desaparece no active) */
.faq-toggle-icon::after {
  top: 0;
  left: 9px;
  width: 2px;
  height: 20px;
}

.faq-item.active .faq-toggle-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-item.active .faq-toggle-icon::before {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
}

.faq-answer {
  padding: 0 24px 24px 24px;
  color: var(--text-gray-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   LOCALIZAÇÃO E CONTATO (MAPA E INFORMAÇÕES)
   ========================================================================== */

.location {
  padding: 130px 0;
  background-color: var(--bg-black);
}

.location-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
}

.location-details-card {
  background-color: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--border-radius-lg);
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--box-shadow-dark);
}

.location-info-section h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin-bottom: 24px;
  font-weight: 400;
}

.location-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.location-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.location-info-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-primary);
}

.location-info-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.location-info-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 6px;
}

.location-info-text p {
  color: var(--text-gray-light);
  font-size: 0.95rem;
  line-height: 1.5;
}

.map-wrapper {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--box-shadow-dark);
  min-height: 450px;
  position: relative;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(90%) hue-rotate(180deg) brightness(0.9) contrast(1.2); /* Efeito Mapa Dark */
}

/* ==========================================================================
   FOOTER (RODAPÉ)
   ========================================================================== */

footer {
  background-color: #040404;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0 40px 0;
}

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

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 50px;
}

.footer-logo {
  width: 280px;
  height: 80px;
  margin-bottom: 30px;
}

.footer-logo svg {
  width: 100%;
  height: 100%;
}

.footer-nav {
  display: flex;
  gap: 32px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav-link {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-gray-muted);
}

.footer-nav-link:hover {
  color: var(--gold-primary);
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray-muted);
  transition: var(--transition-fast);
}

.social-link:hover {
  color: var(--gold-primary);
  border-color: var(--gold-primary);
  background-color: rgba(212, 175, 55, 0.05);
  transform: translateY(-2px);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

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

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-gray-dark);
}

.footer-policy {
  display: flex;
  gap: 20px;
  font-size: 0.8rem;
  color: var(--text-gray-dark);
}

.footer-policy a:hover {
  color: var(--text-gray-muted);
}

/* ==========================================================================
   BOTÃO FLUTUANTE WHATSAPP (CONVERSÃO)
   ========================================================================== */

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--gold-gradient);
  color: #000000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 0px rgba(212, 175, 55, 0.4);
  z-index: 999;
  transition: var(--transition-normal);
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(5deg);
  background: var(--gold-gradient-hover);
  color: #000000;
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.7);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 0px rgba(212, 175, 55, 0.5);
  }
  70% {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 15px rgba(212, 175, 55, 0);
  }
  100% {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 0px rgba(212, 175, 55, 0);
  }
}

/* ==========================================================================
   ANIMAÇÃO DE SCROLL (REVEAL ON SCROLL)
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ==========================================================================
   RESPONSIVIDADE (MEDIA QUERIES)
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
    padding-top: 40px;
  }
  
  .hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-description {
    max-width: 600px;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .hero-card {
    max-width: 450px;
    margin: 0 auto;
    width: 100%;
  }

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

  .store-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .store-main-img img {
    height: 380px;
  }

  .location-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  
  .section-title {
    font-size: 2.1rem;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: #0b0b0b;
    border-left: 1px solid rgba(212, 175, 55, 0.2);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    z-index: 998;
    transition: var(--transition-slow);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.7);
  }
  
  .nav-menu.open {
    right: 0;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
  }

  .header-cta {
    display: none; /* Oculta CTA menor do header no mobile */
  }

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

  .gallery-item {
    flex: 0 0 100%; /* Mostra 1 item por vez no carrossel mobile */
    height: 320px;
  }

  .testimonial-text {
    font-size: 1.2rem;
  }
  
  .location-details-card {
    padding: 30px;
  }

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

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.3rem;
  }
  
  .hero-badge {
    font-size: 0.65rem;
    padding: 6px 12px;
  }
  
  .btn {
    width: 100%;
    padding: 12px 20px;
  }
  
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }
}
