/* ==========================================
   VARIÁVEIS DE DESIGN & CURVAS SUAVES
========================================== */
:root {
  /* Palette Vinho & Dourado Premium */
  --bg-wine: #581825;
  --bg-wine-dark: #3D101A;
  --bg-wine-light: #6E2030;
  --color-gold: #C5A059;
  --color-gold-hover: #D4B16A;
  --color-ivory: #FDFBF7;
  --color-ivory-muted: #E2D9CC;
  --color-dark: #221D1E;
  --color-gray-bg: #FAF7F4;
  --color-card-bg: #FFFFFF;

  /* Raios de Curvatura (Soft & Rounded Design) */
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-pill: 999px;

  /* Sombras Suaves */
  --shadow-soft: 0 12px 32px rgba(88, 24, 37, 0.08);
  --shadow-hover: 0 20px 40px rgba(88, 24, 37, 0.15);
  --shadow-gold: 0 10px 25px rgba(197, 160, 89, 0.3);
}

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--color-ivory);
  color: var(--color-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, .font-serif {
  font-family: 'Playfair Display', serif;
}

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

/* ==========================================
   NAVBAR
========================================== */
.navbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1200px;
  z-index: 1000;
  background: rgba(88, 24, 37, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(197, 160, 89, 0.25);
  border-radius: var(--radius-pill);
  padding: 14px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-ivory);
  text-decoration: none;
  letter-spacing: 1px;
}

.logo span {
  color: var(--color-gold);
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: var(--color-ivory-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s;
}

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

.btn-nav {
  background: var(--color-gold);
  color: var(--bg-wine-dark);
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-gold);
}

.btn-nav:hover {
  background: var(--color-gold-hover);
  transform: translateY(-2px);
}

/* ==========================================
   HERO SECTION
========================================== */
.hero {
  background: radial-gradient(circle at top right, var(--bg-wine-light), var(--bg-wine));
  color: var(--color-ivory);
  padding: 160px 0 100px;
  border-bottom-left-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.badge-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(197, 160, 89, 0.15);
  border: 1px solid rgba(197, 160, 89, 0.3);
  color: var(--color-gold);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--color-ivory);
}

.hero-title span {
  color: var(--color-gold);
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--color-ivory-muted);
  margin-bottom: 36px;
  max-width: 500px;
  font-weight: 300;
}

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

.btn-primary {
  background: var(--color-gold);
  color: var(--bg-wine-dark);
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-gold);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--color-gold-hover);
  transform: translateY(-3px);
}

.btn-secondary {
  border: 1.5px solid var(--color-ivory-muted);
  color: var(--color-ivory);
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(253, 251, 247, 0.1);
  border-color: var(--color-ivory);
}

.hero-image-wrapper {
  position: relative;
}

.hero-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
  border: 4px solid rgba(197, 160, 89, 0.2);
}

.hero-floating-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: rgba(61, 16, 26, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--color-gold);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  color: var(--color-ivory);
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-hover);
}

.hero-floating-card i {
  font-size: 2rem;
  color: var(--color-gold);
}

/* ==========================================
   MARQUEE TEXT (ABAIXO DO HERO)
   ========================================== */
.hero-marquee {
  background-color: var(--bg-wine-dark, #3D101A);
  color: var(--color-gold, #D4AF37);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.marquee-track-text {
  display: inline-flex;
  gap: 40px;
  animation: scrollText 20s linear infinite;
}

.marquee-track-text span {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

@keyframes scrollText {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================
   ATENDIMENTO VIP
========================================== */
.vip-section {
  padding: 100px 0;
  background-color: var(--color-ivory);
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px;
}

.section-subtitle {
  color: var(--color-gold);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.section-title {
  font-size: 2.5rem;
  color: var(--bg-wine);
}

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

.vip-card {
  background: var(--color-card-bg);
  padding: 40px 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(88, 24, 37, 0.05);
  position: relative;
  transition: all 0.3s ease;
}

.vip-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.step-number {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(197, 160, 89, 0.2);
  font-family: 'Playfair Display', serif;
}

.vip-icon {
  width: 60px;
  height: 60px;
  background: rgba(88, 24, 37, 0.05);
  color: var(--bg-wine);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.vip-card h3 {
  font-size: 1.3rem;
  color: var(--bg-wine-dark);
  margin-bottom: 12px;
}

.vip-card p {
  color: #666;
  font-size: 0.95rem;
}

/* ==========================================
   GRADE DE 4 COLUNAS (COLEÇÃO & ESPAÇO)
   ========================================== */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

/* ==========================================
   FAQ - ANIMAÇÃO DA SETA
   ========================================== */
details summary {
  user-select: none;
}

details summary i {
  transition: transform 0.3s ease;
}

details[open] summary i {
  transform: rotate(180deg);
}

/* ==========================================
   INSTAGRAM MOSAIC (3 CARDS)
   ========================================== */
.insta-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: repeat(2, 220px);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.insta-card-featured {
  grid-row: span 2;
  position: relative;
  border-radius: var(--radius-lg, 16px);
  overflow: hidden;
  box-shadow: var(--shadow-soft, 0 10px 30px rgba(0,0,0,0.08));
}

.insta-card-side {
  position: relative;
  border-radius: var(--radius-lg, 16px);
  overflow: hidden;
  box-shadow: var(--shadow-soft, 0 10px 30px rgba(0,0,0,0.08));
}

.insta-card-featured img,
.insta-card-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.type-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  backdrop-filter: blur(4px);
  z-index: 2;
}

/* Efeito Hover nos Cards do Instagram */
.insta-card-featured:hover img,
.insta-card-side:hover img {
  transform: scale(1.05);
}

.insta-card-featured .insta-overlay,
.insta-card-side .insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(61, 16, 26, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
}

.insta-card-featured:hover .insta-overlay,
.insta-card-side:hover .insta-overlay {
  opacity: 1;
}

.insta-overlay i {
  font-size: 2rem;
  color: var(--color-gold, #D4AF37);
}

/* Responsivo para Celular */
@media (max-width: 768px) {
  .insta-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: 320px 200px 200px;
  }
  
  .insta-card-featured {
    grid-row: span 1;
  }
}

/* ==========================================
   LOCALIZAÇÃO & MAPA
========================================== */
.location-section {
  padding: 100px 0;
}

.location-wrapper {
  background: var(--color-card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
  padding: 24px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  border: 1px solid rgba(197, 160, 89, 0.2);
}

.location-info {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-info h2 {
  font-size: 2.2rem;
  color: var(--bg-wine);
  margin-bottom: 16px;
}

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

.info-icon {
  width: 44px;
  height: 44px;
  background: rgba(197, 160, 89, 0.15);
  color: var(--bg-wine);
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.info-text h4 {
  font-size: 1rem;
  color: var(--bg-wine-dark);
  margin-bottom: 4px;
}

.info-text p {
  color: #666;
  font-size: 0.9rem;
}

.map-container {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================
   FOOTER
========================================== */
footer {
  background: var(--bg-wine-dark);
  color: var(--color-ivory-muted);
  padding: 60px 0 30px;
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.9rem;
  max-width: 320px;
}

.footer-links h4 {
  color: var(--color-gold);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

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

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

.footer-links a {
  color: var(--color-ivory-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(253, 251, 247, 0.1);
  font-size: 0.85rem;
}

/* ==========================================
   RESPONSIVIDADE
========================================== */
@media (max-width: 992px) {
  .hero-grid, .location-wrapper {
    grid-template-columns: 1fr;
  }
  .vip-grid, .insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .nav-links {
    display: none;
  }
}

@media (max-width: 576px) {
  .vip-grid, .insta-grid {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .btn-primary, .btn-secondary {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* ==========================================
   MEDIA CARD (fotos com legenda — espaço & coleção)
   Extraído do estilo inline repetido 8x no HTML original,
   pra facilitar reuso/edição em outras lojas.
   ========================================== */
.media-card {
  background: var(--color-card-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(88, 24, 37, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.media-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.media-card__img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.media-card__img--tall {
  height: 260px;
}

.media-card__body {
  padding: 20px;
}

.media-card__body h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--bg-wine-dark);
}

.media-card__body p {
  font-size: 0.85rem;
  color: #666;
}

/* ==========================================
   TESTEMUNHO (depoimentos de clientes)
   ========================================== */
.testimonial-stars {
  color: var(--color-gold);
  margin-bottom: 12px;
}

.testimonial-quote {
  font-style: italic;
  color: #555;
  margin-bottom: 16px;
}

.testimonial-author {
  color: var(--bg-wine-dark);
  display: block;
}

.testimonial-role {
  color: #888;
}

/* ==========================================
   FAQ CARD (perguntas frequentes)
   ========================================== */
.faq-card {
  cursor: pointer;
  padding: 24px;
}

.faq-card__summary {
  font-weight: 700;
  color: var(--bg-wine-dark);
  font-size: 1.1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-card__icon {
  color: var(--color-gold);
}

.faq-card__answer {
  margin-top: 16px;
  color: #666;
  font-size: 0.95rem;
}

/* ==========================================
   BOTÃO FLUTUANTE DE WHATSAPP
   ========================================== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  z-index: 1200;
  transition: transform 0.25s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

/* ==========================================
   MENU HAMBÚRGUER MOBILE & RESPONSIVIDADE NAV
   ========================================== */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-gold);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 4px;
  transition: transform 0.2s ease;
}

.menu-toggle:active {
  transform: scale(0.9);
}

.mobile-cta {
  display: none;
}

/* Telas de Tablet e Celular (< 992px) */
@media (max-width: 992px) {
  .desktop-only {
    display: none !important;
  }

  .menu-toggle {
    display: block; /* Revela o botão hambúrguer */
  }

  .mobile-cta {
    display: block;
    margin-top: 10px;
  }

  .mobile-cta .btn-nav {
    display: inline-block;
    width: 100%;
    text-align: center;
  }

  /* Transforma a lista em uma gaveta flutuante */
  .nav-links {
    display: flex !important;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: 100%;
    background: rgba(61, 16, 26, 0.98);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: var(--radius-md);
    padding: 24px;
    flex-direction: column;
    gap: 18px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    
    /* Estado Inicial Escondido com Animação Smooth */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  /* Estado Quando o Menu Fica Ativo */
  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links a {
    font-size: 1.05rem;
    display: block;
    padding: 6px 0;
  }
}
/* ==========================================
   CORREÇÃO GLOBAL DE RESPONSIVIDADE MOBILE & TABLET
   ========================================== */

/* 1. Trava geral contra vazamento de tela (evita a faixa branca na direita) */
html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

/* 2. Garantia de largura responsiva nos containers */
.container, 
section, 
header, 
nav {
  max-width: 100vw;
  box-sizing: border-box;
}

/* 3. Garantia para imagens e faixas não estourarem a largura */
img {
  max-width: 100%;
  height: auto;
}

.marquee, 
.marquee-content {
  max-width: 100vw;
  overflow: hidden;
}

/* ==========================================
   AJUSTES ESPECÍFICOS PARA DISPOSITIVOS MOVIIS (< 768px)
   ========================================== */
@media (max-width: 768px) {

  /* --- HERO SECTION --- */
  .hero {
    padding: 110px 16px 50px 16px !important; /* Reduz espaçamentos exagerados do PC */
    text-align: center;
  }

  .hero .container,
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
  }

  /* Reduz os títulos para não quebrarem linhas feias no celular */
  .hero h1 {
    font-size: 2.1rem !important;
    line-height: 1.25 !important;
  }

  .hero p {
    font-size: 0.95rem !important;
    padding: 0 8px;
  }

  /* Botões empilhados em 100% da largura no celular */
  .hero-buttons,
  .cta-buttons {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-buttons .btn,
  .hero-buttons a {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }

  /* --- GRADES DE FOTOS E CARDS (1 Coluna no Mobile) --- */
  .insta-grid,
  .vip-grid,
  .features-grid,
  .ambientes-grid {
    grid-template-columns: 1fr !important; /* Transforma as 4 colunas em 1 */
    gap: 20px;
  }

  /* Card do Instagram do Topo */
  .insta-layout-featured {
    grid-template-columns: 1fr !important;
  }

  /* --- SEÇÃO LOCALIZAÇÃO & FOOTER --- */
  .location-wrapper,
  .footer-content {
    flex-direction: column !important;
    grid-template-columns: 1fr !important;
    gap: 24px;
  }
}

/* ==========================================
   AJUSTES PARA TABLETS / IPAD (769px a 1024px)
   ========================================== */
@media (min-width: 769px) and (max-width: 1024px) {
  .insta-grid {
    grid-template-columns: repeat(2, 1fr) !important; /* 2 colunas no iPad */
  }

  .hero h1 {
    font-size: 2.8rem !important;
  }
}

@media (max-width: 1367px) {

  /* Zera o arredondamento inferior do Hero no celular para eliminar as sobras brancas */
  .hero {
    border-bottom-left-radius: 16px !important;
    border-bottom-right-radius: 16px !important;
    padding: 110px 16px 40px 16px !important;
  }

  /* ... o restante do seu código media query continua aqui ... */
}