/* ==========================================================================
   ELOS MODA & ACESSÓRIOS | DESIGN SYSTEM
   Theme: Editorial Background with Opaque Luxury Overlay & Location Embed
   ========================================================================== */

/* --- Custom Properties / CSS Tokens --- */
:root {
  /* Luxury Gold & Warm Metals */
  --gold-primary: #C59B27;
  --gold-gradient: linear-gradient(135deg, #ECC878 0%, #C59B27 60%, #9A7B1C 100%);
  --gold-border: rgba(197, 155, 39, 0.35);
  
  /* WhatsApp Vibrant Green */
  --wa-color: #25D366;
  --wa-gradient: linear-gradient(135deg, #2fe674 0%, #20ba59 100%);
  --wa-glow: 0 10px 25px rgba(37, 211, 102, 0.28);

  /* Clean White & Warm Neutral Palette */
  --bg-card: rgba(255, 255, 255, 0.92);
  --text-primary: #1A1918;
  --text-secondary: #5C5852;
  --text-muted: #8F8A82;
  --border-subtle: rgba(0, 0, 0, 0.08);

  /* Typography */
  --font-brand: 'Cinzel', serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Transitions & Shadows */
  --tr-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --tr-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-card: 0 6px 20px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.03);
}

/* --- Global Reset & Base Styles --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

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

body {
  font-family: var(--font-sans);
  color: var(--text-primary);
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow-x: hidden;

  /* Background Image from Workspace */
  background: url('background.jpg') no-repeat center top / cover fixed;
  background-color: #F8F5F0;
}

/* Opaque Soft Layer over Background */
.bg-opaque-overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(
    180deg, 
    rgba(255, 255, 255, 0.88) 0%, 
    rgba(253, 250, 246, 0.85) 40%, 
    rgba(250, 246, 240, 0.92) 100%
  );
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 0;
  pointer-events: none;
}

/* Page Layout Wrapper */
.page-wrapper {
  width: 100%;
  max-width: 440px;
  padding: 1.5rem 1.25rem 2rem;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.15rem;
}

/* --- Top Section: Profile Hero --- */
.profile-hero {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0.5rem;
}

.logo-wrapper {
  width: 120px;
  max-width: 120px;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo {
  width: 100%;
  height: auto;
  max-height: 120px;
  object-fit: contain;
  background: transparent;
  display: block;
}

.brand-identity {
  margin-bottom: 0.6rem;
}

.brand-title {
  font-family: var(--font-brand);
  font-size: 2.15rem;
  font-weight: 900;
  letter-spacing: 4.5px;
  color: #1A1918;
  line-height: 1.1;
}

.brand-subtitle {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 3.5px;
  font-weight: 700;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-top: 3px;
}

.instagram-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 1rem;
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: var(--shadow-card);
  transition: all var(--tr-fast);
}

.instagram-pill i {
  color: #E1306C;
  font-size: 0.95rem;
}

.instagram-pill:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* --- Center Section: Action Call to Action --- */
.action-section {
  width: 100%;
}

.btn-whatsapp-main {
  position: relative;
  display: block;
  width: 100%;
  text-decoration: none;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(37, 211, 102, 0.45);
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.16), 0 2px 6px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: all var(--tr-smooth);
}

.btn-whatsapp-main:hover {
  transform: translateY(-3px) scale(1.01);
  border-color: var(--wa-color);
  box-shadow: var(--wa-glow);
}

.btn-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  position: relative;
  z-index: 2;
}

.whatsapp-icon-circle {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 14px;
  background: var(--wa-gradient);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  transition: transform var(--tr-fast);
}

.btn-whatsapp-main:hover .whatsapp-icon-circle {
  transform: scale(1.08) rotate(4deg);
}

.btn-text-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.btn-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #1A1918;
  line-height: 1.2;
}

.btn-subtitle {
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.btn-arrow {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: transform var(--tr-fast), color var(--tr-fast);
}

.btn-whatsapp-main:hover .btn-arrow {
  transform: translateX(3px);
  color: var(--wa-color);
}

/* Shimmer Sweep Animation */
.btn-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(37, 211, 102, 0.18), transparent);
  transform: skewX(-25deg);
  animation: shimmerSweep 4s infinite;
  pointer-events: none;
}

@keyframes shimmerSweep {
  0% { left: -100%; }
  30% { left: 160%; }
  100% { left: 160%; }
}

/* --- Location Section (Embed & Map Card) --- */
.location-section {
  width: 100%;
}

.location-card {
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 1rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: all var(--tr-smooth);
}

.location-card:hover {
  border-color: var(--gold-border);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

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

.location-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.location-icon {
  color: #E1306C;
  font-size: 1rem;
}

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

.location-badge {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gold-primary);
  background: rgba(197, 155, 39, 0.12);
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.map-embed-wrapper {
  width: 100%;
  height: 170px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background-color: #f0ede8;
}

.map-embed-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.btn-route-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  background: #F4F1EC;
  border: 1px solid var(--border-subtle);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-primary);
  transition: all var(--tr-fast);
}

.btn-route-action i {
  color: var(--gold-primary);
  font-size: 0.9rem;
}

.btn-route-action:hover {
  background: var(--gold-gradient);
  color: #FFFFFF;
  border-color: transparent;
  transform: translateY(-1px);
}

.btn-route-action:hover i {
  color: #FFFFFF;
}

/* --- Bottom Section: Footer --- */
.bio-footer {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding-top: 0.5rem;
}

.footer-brand-name {
  font-family: var(--font-brand);
  font-size: 0.8rem;
  letter-spacing: 2.5px;
  color: #1A1918;
  font-weight: 700;
}

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