/* ==========================================================================
   GABRIELLY LEÃO • NAIL DESIGNER — LINK NA BIO DE ALTO PADRÃO (BIO PRIME)
   Paleta: Obsidian Luxury, Rose Gold, Champagne Velvet & Soft Glow
   Tipografia: Playfair Display + Plus Jakarta Sans
   ========================================================================== */

:root {
  /* Cores Base */
  --bg-deep: #090A0D;
  --bg-card: rgba(18, 20, 28, 0.72);
  --bg-card-hover: rgba(26, 29, 40, 0.85);
  --bg-card-solid: #13151D;
  
  /* Acentos Rose Gold & Champagne */
  --rose-gold: #E8A598;
  --rose-gold-light: #F7D0C8;
  --rose-gold-dark: #C47F72;
  --rose-glow: rgba(232, 165, 152, 0.28);
  --rose-border: rgba(232, 165, 152, 0.22);
  --rose-border-hover: rgba(232, 165, 152, 0.5);

  /* Dourado / Champagne Suave */
  --champagne: #F3E5D8;
  --gold-accent: #E5C07B;

  /* WhatsApp Oficial */
  --wa-green: #25D366;
  --wa-green-dark: #128C7E;
  --wa-glow: rgba(37, 211, 102, 0.35);

  /* Texto */
  --text-white: #FFFFFF;
  --text-cream: #F3F1F4;
  --text-muted: #9E9AA7;
  --text-dim: #6E6B78;

  /* Sombras & Efeitos */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 25px var(--rose-glow);

  /* Geometria */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Transições */
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --trans-fast: 0.2s ease;
  --trans-smooth: 0.35s var(--ease-spring);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--bg-deep);
  color: var(--text-cream);
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  background: var(--bg-deep);
  position: relative;
  overflow-x: hidden;
  padding-bottom: 90px; /* Espaço para o Floating Dock */
}

/* ==========================================================================
   LUZES AMBIENTAIS DE FUNDO (AMBIENT GLOW)
   ========================================================================== */
.ambient-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.32;
}

.glow-top {
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 480px;
  height: 380px;
  background: radial-gradient(circle, rgba(232, 165, 152, 0.45) 0%, rgba(196, 127, 114, 0.15) 50%, transparent 75%);
}

.glow-middle {
  top: 55%;
  left: 20%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(229, 192, 123, 0.2) 0%, rgba(232, 165, 152, 0.1) 60%, transparent 80%);
}

/* ==========================================================================
   CONTAINER PRINCIPAL (MOBILE FIRST - MAX 540px)
   ========================================================================== */
.page-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  padding: 32px 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ==========================================================================
   HERO SECTION: IDENTIDADE & PERFIL
   ========================================================================== */
.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding-top: 8px;
}

/* Halo com efeito neon vivo em volta do avatar */
.profile-halo-wrap {
  position: relative;
  width: 136px;
  height: 136px;
  margin-bottom: 6px;
}

.profile-halo-glow {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 165, 152, 0.6) 0%, transparent 70%);
  filter: blur(14px);
  animation: pulseGlow 3.5s ease-in-out infinite alternate;
}

.profile-halo-track {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed rgba(232, 165, 152, 0.35);
  animation: rotateTrack 24s linear infinite;
}

.profile-halo-ring {
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  border: 2px solid var(--rose-gold);
  box-shadow: 0 0 15px var(--rose-glow), inset 0 0 15px var(--rose-glow);
}

.profile-img {
  position: absolute;
  inset: 4px;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border-radius: 50%;
  object-fit: cover;
  background-color: var(--bg-card-solid);
}

.verified-badge-wrap {
  position: absolute;
  bottom: 4px;
  right: 6px;
  width: 26px;
  height: 26px;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.6));
}

.verified-badge-wrap svg {
  width: 100%;
  height: 100%;
  display: block;
}

@keyframes pulseGlow {
  0% { transform: scale(0.92); opacity: 0.4; }
  100% { transform: scale(1.12); opacity: 0.75; }
}

@keyframes rotateTrack {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-white);
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-handle a {
  color: var(--rose-gold);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color var(--trans-fast);
}

.hero-handle a:hover {
  color: var(--rose-gold-light);
  text-decoration: underline;
}

/* Status Pill */
.hero-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 165, 152, 0.1);
  border: 1px solid var(--rose-border);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--rose-gold-light);
  letter-spacing: 0.02em;
}

.status-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--wa-green);
  box-shadow: 0 0 8px var(--wa-green);
  animation: livePulse 2s infinite;
}

@keyframes livePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

/* Especialidades Tags */
.hero-specialties {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-top: 2px;
}

.spec-tag {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-cream);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.hero-bio {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 440px;
  margin: 4px auto 0;
}

/* ==========================================================================
   CTA PRINCIPAL WHATSAPP (DESIGN DE ALTA CONVERSÃO)
   ========================================================================== */
.main-cta-section {
  width: 100%;
}

.btn-primary-whatsapp {
  position: relative;
  display: block;
  width: 100%;
  text-decoration: none;
  background: linear-gradient(135deg, #1fa851 0%, #17833f 100%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  box-shadow: 0 10px 25px var(--wa-glow), 0 2px 6px rgba(0,0,0,0.3);
  overflow: hidden;
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s ease;
}

.btn-primary-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.45);
}

.btn-primary-whatsapp:active {
  transform: translateY(1px) scale(0.99);
}

.btn-shine {
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(
    60deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(25deg);
  animation: shineLoop 4.5s infinite;
  pointer-events: none;
}

@keyframes shineLoop {
  0% { left: -70%; }
  25% { left: 140%; }
  100% { left: 140%; }
}

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

.btn-icon-box {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  flex-shrink: 0;
}

.btn-text-group {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: left;
}

.btn-title {
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #FFFFFF;
}

.btn-subtitle {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 1px;
}

.btn-arrow {
  color: #FFFFFF;
  display: flex;
  align-items: center;
  transition: transform var(--trans-fast);
}

.btn-primary-whatsapp:hover .btn-arrow {
  transform: translateX(3px);
}

/* ==========================================================================
   STORIES / DESTAQUES ESTILO INSTAGRAM
   ========================================================================== */
.stories-section {
  width: 100%;
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--rose-border);
  border-radius: var(--radius-lg);
  padding: 16px 14px;
  box-shadow: var(--shadow-sm);
}

.section-badge-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding: 0 4px;
}

.section-kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--rose-gold);
}

.stories-tip {
  font-size: 0.7rem;
  color: var(--text-dim);
}

.stories-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 4px 2px 8px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.stories-scroll::-webkit-scrollbar {
  display: none;
}

.story-circle-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  outline: none;
}

.story-ring {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  padding: 2.5px;
  background: linear-gradient(135deg, #E8A598 0%, #D48C80 40%, #E5C07B 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.4);
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s ease;
}

.story-circle-btn:hover .story-ring {
  transform: scale(1.06);
  box-shadow: 0 0 16px var(--rose-glow);
}

.story-circle-btn:active .story-ring {
  transform: scale(0.96);
}

.story-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--bg-deep);
}

.story-caption {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-cream);
  max-width: 66px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ==========================================================================
   LETREIRO MARQUEE INFINITO
   ========================================================================== */
.marquee-strip {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: linear-gradient(90deg, #101218 0%, #181B24 50%, #101218 100%);
  border-top: 1px solid rgba(232, 165, 152, 0.12);
  border-bottom: 1px solid rgba(232, 165, 152, 0.12);
  padding: 10px 0;
  overflow: hidden;
  user-select: none;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 28px;
  animation: marqueeMove 32s linear infinite;
  white-space: nowrap;
}

.marquee-strip:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-track span {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--rose-gold);
  text-transform: uppercase;
}

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

/* ==========================================================================
   CARROSSEL ANIMADO DO PORTFÓLIO (DESTAQUE MESTRE)
   ========================================================================== */
.carousel-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.carousel-header {
  text-align: left;
}

.header-tag-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.gold-badge {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--gold-accent);
}

.swipe-hint {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  color: var(--rose-gold);
  font-weight: 600;
}

.swipe-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose-gold);
  box-shadow: 0 0 6px var(--rose-gold);
}

.carousel-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.25;
}

.carousel-title em {
  font-style: italic;
  color: var(--rose-gold);
  font-weight: 400;
}

.carousel-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Filtros de Categoria */
.portfolio-filters {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 2px 0 4px;
}

.portfolio-filters::-webkit-scrollbar {
  display: none;
}

.filter-tab {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: var(--text-muted);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--trans-fast);
}

.filter-tab:hover {
  color: var(--text-white);
  border-color: var(--rose-border);
}

.filter-tab.active {
  background: var(--rose-gold);
  border-color: var(--rose-gold);
  color: #120D10;
  font-weight: 700;
  box-shadow: 0 0 12px var(--rose-glow);
}

/* Outer Carousel */
.carousel-outer {
  position: relative;
  width: 100%;
}

/* Botões Nav Desktop */
.carousel-nav-btn {
  display: none;
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(18, 20, 28, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--rose-border);
  color: var(--rose-gold);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: var(--shadow-md);
  transition: all var(--trans-fast);
}

.carousel-nav-btn:hover {
  background: var(--rose-gold);
  color: #120D10;
  border-color: var(--rose-gold);
  box-shadow: 0 0 15px var(--rose-glow);
}

.prev-btn { left: -12px; }
.next-btn { right: -12px; }

@media (min-width: 580px) {
  .carousel-nav-btn {
    display: flex;
  }
}

/* Janela e Trilho */
.carousel-window {
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  padding: 4px 0 12px;
}

.carousel-window::-webkit-scrollbar {
  display: none;
}

.carousel-window.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.carousel-window.is-dragging .portfolio-card {
  pointer-events: none;
}

.carousel-track {
  display: flex;
  gap: 16px;
  width: max-content;
}

/* Cards do Portfólio */
.portfolio-card {
  width: 270px;
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--rose-border);
  border-radius: var(--radius-lg);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-spring), border-color 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
}

.portfolio-card:hover {
  transform: translateY(-4px);
  border-color: var(--rose-border-hover);
  box-shadow: var(--shadow-md), 0 0 20px var(--rose-glow);
}

.portfolio-card.is-hidden {
  display: none;
}

.card-media-box {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background-color: var(--bg-card-solid);
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-spring);
}

.card-media-box:hover .card-img {
  transform: scale(1.08);
}

.card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(10, 11, 14, 0.85);
  backdrop-filter: blur(6px);
  border: 1px solid var(--rose-border);
  color: var(--rose-gold-light);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: var(--radius-full);
  letter-spacing: 0.02em;
}

.zoom-indicator {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  background: rgba(10, 11, 14, 0.75);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.85);
  transition: all var(--trans-fast);
}

.card-media-box:hover .zoom-indicator {
  opacity: 1;
  transform: scale(1);
}

.card-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.sub-pill {
  font-size: 0.66rem;
  color: var(--rose-gold);
  background: rgba(232, 165, 152, 0.08);
  padding: 2px 7px;
  border-radius: 4px;
  font-weight: 600;
}

.card-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.3;
}

.card-summary {
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--text-muted);
  flex: 1;
}

.btn-card-action {
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(232, 165, 152, 0.12);
  border: 1px solid var(--rose-border);
  border-radius: var(--radius-sm);
  color: var(--rose-gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--trans-fast);
}

.btn-card-action:hover {
  background: var(--rose-gold);
  color: #120D10;
  border-color: var(--rose-gold);
  box-shadow: 0 4px 15px var(--rose-glow);
}

.btn-card-action svg {
  transition: transform var(--trans-fast);
}

.btn-card-action:hover svg {
  transform: translateX(3px);
}

/* Card Final: Mais Posts */
.card-more-posts {
  background: linear-gradient(145deg, rgba(24, 28, 40, 0.9) 0%, rgba(14, 16, 24, 0.95) 100%);
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px 20px;
}

.more-content-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: auto 0;
}

.instagram-icon-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  box-shadow: 0 4px 18px rgba(253, 29, 29, 0.35);
}

.counter-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--rose-gold);
  line-height: 1;
}

.counter-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-white);
  max-width: 180px;
}

.more-desc {
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 8px;
}

.btn-instagram-profile {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FFFFFF;
  color: #120D10;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: transform var(--trans-fast), box-shadow var(--trans-fast);
}

.btn-instagram-profile:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.4);
}

/* Dots do Carrossel */
.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
}

.dot-btn {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.dot-btn.active {
  width: 22px;
  border-radius: var(--radius-full);
  background: var(--rose-gold);
  box-shadow: 0 0 8px var(--rose-gold);
}

/* ==========================================================================
   DIFERENCIAIS (GRID VISUAL)
   ========================================================================== */
.benefits-section {
  width: 100%;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-white);
  margin-top: 4px;
  margin-bottom: 14px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 460px) {
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.benefit-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--rose-border);
  border-radius: var(--radius-md);
  padding: 16px 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.benefit-card:hover {
  transform: translateY(-2px);
  border-color: var(--rose-border-hover);
}

.benefit-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(232, 165, 152, 0.12);
  color: var(--rose-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
}

.benefit-text {
  font-size: 0.74rem;
  line-height: 1.45;
  color: var(--text-muted);
}

/* ==========================================================================
   LOCALIZAÇÃO: UBERLÂNDIA - MG COM MAPA INTERATIVO
   ========================================================================== */
.location-section {
  width: 100%;
}

.location-card {
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--rose-border);
  border-radius: var(--radius-lg);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-sm);
}

.location-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pin-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(232, 165, 152, 0.15);
  color: var(--rose-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-header-text {
  flex: 1;
}

.location-kicker {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--rose-gold);
  display: block;
}

.location-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
}

.city-pill {
  font-size: 0.68rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 3px 8px;
  border-radius: var(--radius-full);
  color: var(--rose-gold-light);
  font-weight: 600;
}

.location-desc {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.map-wrapper {
  position: relative;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--rose-border);
  background: var(--bg-card-solid);
}

.map-frame {
  display: block;
  filter: contrast(1.05) brightness(0.95);
}

.map-overlay-hint {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(10, 11, 14, 0.82);
  backdrop-filter: blur(6px);
  padding: 4px 9px;
  border-radius: var(--radius-full);
  font-size: 0.68rem;
  color: var(--text-cream);
  pointer-events: none;
}

.location-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

@media (min-width: 420px) {
  .location-actions {
    flex-direction: row;
  }
}

.btn-loc {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--trans-fast);
}

.btn-loc-map {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-white);
}

.btn-loc-map:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-loc-whatsapp {
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: var(--wa-green);
}

.btn-loc-whatsapp:hover {
  background: var(--wa-green);
  color: #FFFFFF;
  border-color: var(--wa-green);
  box-shadow: 0 4px 15px var(--wa-glow);
}

/* ==========================================================================
   CANAIS DE CONTATO OFICIAIS
   ========================================================================== */
.channels-section {
  width: 100%;
}

.channels-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.channel-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--rose-border);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--trans-fast);
}

.channel-card:hover {
  transform: translateX(4px);
  border-color: var(--rose-border-hover);
  background: var(--bg-card-hover);
}

.channel-icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  flex-shrink: 0;
}

.ig-gradient {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.wa-gradient {
  background: #25D366;
}

.channel-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.channel-label {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.channel-user {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-white);
}

.channel-chevron {
  font-size: 1.1rem;
  color: var(--rose-gold);
  transition: transform var(--trans-fast);
}

.channel-card:hover .channel-chevron {
  transform: translateX(3px);
}

/* ==========================================================================
   RODAPÉ
   ========================================================================== */
.site-footer {
  text-align: center;
  padding: 20px 10px 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--rose-gold);
}

.footer-sub {
  font-size: 0.74rem;
  color: var(--text-dim);
}

.footer-rights {
  font-size: 0.7rem;
  color: var(--text-dim);
  margin-top: 4px;
}

/* ==========================================================================
   DOCK FLUTUANTE INFERIOR (AÇÃO RÁPIDA MOBILE)
   ========================================================================== */
.floating-dock {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 16px;
  background: rgba(10, 11, 15, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid var(--rose-border);
  z-index: 99;
}

.dock-container {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.dock-status {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--wa-green);
  box-shadow: 0 0 8px var(--wa-green);
  animation: livePulse 2s infinite;
}

.dock-labels {
  display: flex;
  flex-direction: column;
}

.dock-top-text {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--text-white);
}

.dock-sub-text {
  font-size: 0.68rem;
  color: var(--rose-gold);
}

.dock-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--wa-green);
  color: #FFFFFF;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: 0 4px 15px var(--wa-glow);
  transition: transform var(--trans-fast);
  flex-shrink: 0;
}

.dock-cta-btn:hover {
  transform: scale(1.04);
}

/* ==========================================================================
   MODAL LIGHTBOX (ZOOM E DETALHES)
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4, 5, 8, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  width: 100%;
  max-width: 440px;
  background: var(--bg-card-solid);
  border: 1px solid var(--rose-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 30px var(--rose-glow);
  display: flex;
  flex-direction: column;
  transform: scale(0.92) translateY(10px);
  transition: transform 0.3s var(--ease-spring);
}

.modal-backdrop.is-open .modal-card {
  transform: scale(1) translateY(0);
}

.modal-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.modal-author-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-mini-avatar {
  border-radius: 50%;
  border: 1px solid var(--rose-gold);
}

.modal-author-text {
  display: flex;
  flex-direction: column;
}

.modal-author-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-white);
}

.modal-author-loc {
  font-size: 0.68rem;
  color: var(--rose-gold);
}

.modal-close-btn {
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--trans-fast);
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.16);
  color: var(--text-white);
}

.modal-image-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #000;
  overflow: hidden;
}

.modal-large-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-body-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--text-white);
}

.modal-desc {
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.btn-modal-whatsapp {
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 18px;
  background: var(--wa-green);
  border-radius: var(--radius-md);
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 4px 16px var(--wa-glow);
  transition: transform var(--trans-fast);
}

.btn-modal-whatsapp:hover {
  transform: translateY(-2px);
}
