/* ==========================================================================
   La Belle Boutique CWB - Link na Bio (Design System & Styles)
   ========================================================================== */

:root {
  --bg-main: #FFFFFF;
  --bg-card: #FFFFFF;
  --bg-subtle: #F9FAFB;
  --bg-badge: #F3F4F6;
  
  --text-primary: #1A1A1A;
  --text-secondary: #4B5563;
  --text-muted: #8E959D;
  
  --primary-accent: #B88E56; /* Elegante Dourado / Bronze Boutique */
  --primary-accent-hover: #9E7440;
  --primary-accent-light: #FDF9F4;
  
  --whatsapp-color: #25D366;
  --whatsapp-dark: #128C7E;
  --whatsapp-light: #EAFBF1;

  --border-light: rgba(0, 0, 0, 0.08);
  --border-card: rgba(0, 0, 0, 0.06);
  --border-focus: rgba(184, 142, 86, 0.4);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 16px 36px rgba(0, 0, 0, 0.09);
  --shadow-hover: 0 12px 28px rgba(184, 142, 86, 0.18);

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  padding: 0 0 48px 0;
}

/* ==========================================================================
   Hero Banner Superior com Vídeo Opaco (Foco no meio do vídeo)
   ========================================================================== */
.top-hero-banner {
  position: relative;
  width: 100%;
  max-width: 540px;
  height: 210px;
  margin: 0 auto;
  overflow: visible;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 64px;
}

.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0 0 32px 32px;
  background: #FFFFFF;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.hero-banner-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%; /* Centraliza exatamente no meio do vídeo */
  display: block;
  opacity: 0.45; /* Vídeo opaco sutil */
  filter: saturate(1.1) brightness(1.02);
}

.hero-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.3) 55%,
    rgba(255, 255, 255, 0.95) 100%
  );
  pointer-events: none;
}

/* Logo Aumentada centralizada no Hero */
.banner-logo-wrapper {
  position: relative;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: #FFFFFF;
  padding: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
  border: 4px solid #FFFFFF;
  margin-bottom: -56px; /* Flutua harmoniosamente no corte do hero */
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.banner-logo-wrapper:hover {
  transform: scale(1.04);
}

.banner-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

/* ==========================================================================
   Container Principal
   ========================================================================== */
.container {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 16px;
  margin: 0 auto;
}

/* Identificação da Marca (Somente Título) */
.brand-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0;
  margin-bottom: 2px;
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-primary);
}

/* Links & Cards Container */
.links-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Card Destaque: Compre pelo Site com Miniatura */
.site-feature-card {
  display: block;
  text-decoration: none;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
}

.site-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-accent);
}

.site-preview-img-container {
  position: relative;
  width: 100%;
  height: 165px;
  overflow: hidden;
  background: #f4f4f4;
}

.site-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}

.site-feature-card:hover .site-preview-img {
  transform: scale(1.04);
}

.site-badge-float {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  color: var(--primary-accent);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid rgba(184, 142, 86, 0.2);
}

.site-card-body {
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-card);
}

.site-card-info {
  display: flex;
  flex-direction: column;
}

.site-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-card-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.site-cta-btn {
  background: var(--primary-accent);
  color: #FFFFFF;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background-color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.site-feature-card:hover .site-cta-btn {
  background: var(--primary-accent-hover);
}

/* Botões Padrão de Ação */
.action-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.action-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(184, 142, 86, 0.4);
}

.action-button-content {
  display: flex;
  align-items: center;
  gap: 14px;
}

.icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.icon-whatsapp {
  background: var(--whatsapp-light);
  color: var(--whatsapp-color);
}

.icon-vip {
  background: var(--primary-accent-light);
  color: var(--primary-accent);
}

.action-text {
  display: flex;
  flex-direction: column;
}

.action-title {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-primary);
}

.action-subtitle {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.arrow-box {
  color: var(--text-muted);
  transition: transform 0.2s ease, color 0.2s ease;
}

.action-button:hover .arrow-box {
  transform: translateX(4px);
  color: var(--primary-accent);
}

/* Card Localização & Loja Física */
.location-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 4px;
}

.location-header {
  padding: 16px 18px 12px 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.icon-location {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #FEF3C7;
  color: #D97706;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.location-info {
  display: flex;
  flex-direction: column;
}

.location-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.location-address {
  font-size: 0.83rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-top: 2px;
}

.map-embed-container {
  width: 100%;
  height: 180px;
  position: relative;
  background: #EAEAEA;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

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

.location-footer {
  padding: 12px 18px;
  background: var(--bg-subtle);
  display: flex;
  justify-content: stretch;
}

.visit-store-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--text-primary);
  color: #FFFFFF;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.visit-store-btn:hover {
  background: #000000;
  transform: translateY(-1px);
}

/* Rodapé */
.footer {
  text-align: center;
  padding-top: 16px;
  padding-bottom: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-subtle);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.social-icon-btn:hover {
  background: var(--primary-accent);
  color: #FFFFFF;
  border-color: var(--primary-accent);
  transform: translateY(-2px);
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Responsividade */
@media (max-width: 380px) {
  .site-card-body {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .site-cta-btn {
    width: 100%;
    justify-content: center;
  }
}
