/* ==========================================================================
   ALINE SANTIAGO NAIL DESIGNER — SISTEMA DE DESIGN MOBILE-FIRST iOS 18
   Baseado na receita de arquitetura de landing pages e mobile-first
   ========================================================================== */

:root {
  /* Tokens de Superfície e Squircles iOS 18 */
  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 18px;    /* Cards de conteúdo e botões */
  --r-lg: 24px;    /* Cards de destaque, menus e seções */
  --r-xl: 32px;    /* Hero containers e modais */
  --r-pill: 9999px; /* Dynamic Island, badges e pílulas */

  /* Transição física elástica Apple (Spring Easing) */
  --ease-spring: cubic-bezier(0.32, 0.72, 0, 1);
  --trans-spring: 0.35s cubic-bezier(0.32, 0.72, 0, 1);
  --trans-fast: 0.2s ease;

  /* Paleta Derivada da Identidade Rose Gold & Warm Ivory */
  --cor-marca: #C59B7F;           /* Rose Gold Ouro Rosé */
  --cor-marca-hover: #B48869;
  --cor-marca-dark: #8F5E41;      /* Acento sobre claro p/ contraste */
  --cor-marca-soft: rgba(197, 155, 127, 0.12);
  --cor-ambient: rgba(197, 155, 127, 0.045);
  
  --cor-whats: #25D366;
  --cor-whats-dark: #1EBE5D;
  --cor-whats-glow: rgba(37, 211, 102, 0.25);

  --fundo-base: #FAF8F5;          /* Marfim suave, quente e acolhedor */
  --fundo-card: #FFFFFF;
  --fundo-card-subtle: #F4EFEB;
  --fundo-dark: #1F1B19;          /* Fundo escuro para contrastes nobres */
  
  --texto-titulo: #241E1B;
  --texto-corpo: #59524E;
  --texto-muted: #8E8580;
  --texto-invertido: #FFFFFF;

  --borda-suave: rgba(0, 0, 0, 0.06);
  --borda-marca: rgba(197, 155, 127, 0.3);

  --sombra-card: 0 10px 30px -10px rgba(78, 51, 37, 0.08), 0 4px 12px -2px rgba(0, 0, 0, 0.03);
  --sombra-flutuante: 0 16px 40px -10px rgba(45, 27, 18, 0.18), 0 0 1px 1px rgba(0, 0, 0, 0.04);
  --sombra-botao: 0 8px 24px -6px rgba(197, 155, 127, 0.45);

  --max-width: 480px; /* Alinhamento mobile-first de precisão */
}

/* ==========================================================================
   ÍCONES VETORIAIS PROFISSIONAIS E ANIMADOS (LORDICON & SVG LUXO)
   ========================================================================== */
.icon-box-animated {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s var(--ease-spring);
}

.icon-box-animated:hover {
  transform: scale(1.1);
}

.trust-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: var(--cor-marca-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease;
  border: 1px solid rgba(197, 155, 127, 0.2);
}

.trust-item:hover .trust-icon-box {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(197, 155, 127, 0.25);
}

.star-icon {
  width: 14px;
  height: 14px;
  filter: drop-shadow(0 1px 2px rgba(212, 175, 55, 0.3));
}

.rating-stars-wrap {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.rating-stars-wrap .star-icon {
  animation: star-glow 3s ease-in-out infinite;
}

.rating-stars-wrap .star-icon:nth-child(2) { animation-delay: 0.2s; }
.rating-stars-wrap .star-icon:nth-child(3) { animation-delay: 0.4s; }
.rating-stars-wrap .star-icon:nth-child(4) { animation-delay: 0.6s; }
.rating-stars-wrap .star-icon:nth-child(5) { animation-delay: 0.8s; }

@keyframes star-glow {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 1px 2px rgba(212, 175, 55, 0.3)); }
  50% { transform: scale(1.12); filter: drop-shadow(0 2px 6px rgba(212, 175, 55, 0.6)); }
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cor-marca-soft);
  color: var(--cor-marca-dark);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  border: 1px solid rgba(197, 155, 127, 0.25);
}

.salon-box-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: var(--r-md);
  background: var(--cor-marca-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(197, 155, 127, 0.25);
}

.gallery-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #E0A96D;
  display: inline-block;
  margin-right: 6px;
  box-shadow: 0 0 6px rgba(224, 169, 109, 0.8);
  flex-shrink: 0;
}

.faq-chevron {
  transition: transform 0.35s var(--ease-spring);
  color: var(--cor-marca-dark);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

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

html {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: #EDE8E3;
}

body {
  background-color: var(--fundo-base);
  color: var(--texto-corpo);
  line-height: 1.5;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Malha de Iluminação Ambiente (Ambient Mesh) */
.ambient-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: 
    radial-gradient(ellipse 90% 50% at 50% -10%, var(--cor-ambient), transparent 70%),
    radial-gradient(ellipse 70% 40% at 100% 45%, var(--cor-ambient), transparent 60%),
    radial-gradient(ellipse 80% 50% at 0% 85%, var(--cor-ambient), transparent 65%);
  background-attachment: scroll;
}

/* Moldura Mobile-First Centrada */
.app-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  background-color: var(--fundo-base);
  min-height: 100vh;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.08);
  padding-bottom: 96px; /* Espaço para a barra flutuante inferior */
}

/* ==========================================================================
   1. DYNAMIC ISLAND & CABEÇALHO ANTI-ESMAGAMENTO
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--borda-suave);
  padding: 12px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Dynamic Island */
.dynamic-island-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.dynamic-island {
  background: #181514;
  color: #FFFFFF;
  padding: 4px 14px;
  border-radius: var(--r-pill);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  transition: var(--trans-spring);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--cor-whats);
  display: inline-block;
  box-shadow: 0 0 8px var(--cor-whats);
  animation: pulse-dot 2s infinite ease-in-out;
}

.status-dot.closed {
  background-color: #E5A338;
  box-shadow: 0 0 8px rgba(229, 163, 56, 0.5);
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.dynamic-island .status-text {
  color: #EDE8E3;
}

/* Barra Principal do Cabeçalho - Organização Centralizada */
.header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.header-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform var(--trans-spring);
}

.header-brand:active {
  transform: scale(0.95);
}

.header-logo-img {
  height: 48px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: transform var(--trans-spring), filter var(--trans-spring);
  filter: drop-shadow(0 2px 6px rgba(197, 155, 127, 0.22));
}

.header-brand:hover .header-logo-img {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 12px rgba(197, 155, 127, 0.38));
}

.btn-header-insta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--fundo-card);
  color: var(--texto-titulo);
  text-decoration: none;
  border: 1px solid var(--borda-suave);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: var(--trans-spring);
  flex-shrink: 0;
}

.btn-header-insta:hover {
  background: #FFFFFF;
  color: #E1306C;
  transform: scale(1.06);
  border-color: rgba(225, 48, 108, 0.25);
  box-shadow: 0 4px 12px rgba(225, 48, 108, 0.15);
}

.btn-header-insta:active {
  transform: scale(0.92);
}

.btn-header-agendar {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #25D366, #1EBE5D);
  color: #FFFFFF;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 12px var(--cor-whats-glow);
  transition: var(--trans-spring);
  border: 1px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.btn-header-agendar:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.btn-header-agendar:active {
  transform: scale(0.94);
}

.header-wa-icon {
  flex-shrink: 0;
}

/* ==========================================================================
   2. STORIES & DESTAQUES DO INSTAGRAM (ANIMADO & INTERATIVO)
   ========================================================================== */
.stories-section {
  padding: 12px 16px 4px;
  overflow: hidden;
}

.stories-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 4px 10px;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
}

.stories-carousel.dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

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

.story-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  flex-shrink: 0;
  scroll-snap-align: start;
  cursor: pointer;
  background: transparent;
  border: none;
  outline: none;
}

/* Anel Animado com Conic Gradient Rotativo */
.story-ring-animated {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  padding: 2.5px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s ease;
}

.story-ring-animated::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    #D4AF37 0deg,
    #F4E2C7 70deg,
    #C59B7F 140deg,
    #9C6D50 210deg,
    #E0A96D 280deg,
    #D4AF37 360deg
  );
  animation: spin-story-ring 5s linear infinite;
  box-shadow: 0 4px 14px rgba(197, 155, 127, 0.35);
}

.story-item:hover .story-ring-animated,
.story-item:focus-visible .story-ring-animated {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 24px rgba(197, 155, 127, 0.45);
}

.story-item:active .story-ring-animated {
  transform: scale(0.94);
}

.story-ring-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #FFFFFF;
  padding: 2px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.story-item:hover .story-img {
  transform: scale(1.1);
}

.story-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--texto-titulo);
  white-space: nowrap;
  letter-spacing: 0.2px;
  transition: color 0.2s ease;
}

.story-item:hover .story-label {
  color: var(--cor-marca-dark);
}

@keyframes spin-story-ring {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ==========================================================================
   MODAL PLAYER DE STORIES INSTAGRAM NATIVO (DESIGN LUXURY MINIMALISTA)
   Baseado no conceito estético de alta conversão & luxo editorial
   ========================================================================== */
.story-player-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(10, 8, 7, 0.94);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.story-player-modal.active {
  display: flex;
  opacity: 1;
}

.story-player-backdrop {
  position: absolute;
  inset: 0;
  cursor: pointer;
}

/* Setas de navegação Desktop */
.story-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  transition: all 0.25s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

@media (min-width: 768px) {
  .story-nav-arrow {
    display: flex;
  }
}

.story-nav-prev {
  left: calc(50% - 250px);
}

.story-nav-next {
  right: calc(50% - 250px);
}

.story-nav-arrow:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: #E5C396;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.story-nav-arrow:active {
  transform: translateY(-50%) scale(0.94);
}

/* Container do Story */
.story-player-container {
  width: 100%;
  max-width: 410px;
  height: 92vh;
  max-height: 820px;
  background: #141110;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.85), 0 0 1px 1px rgba(255, 255, 255, 0.1) inset;
  transform: scale(0.95);
  transition: transform 0.35s var(--ease-spring);
  z-index: 10;
}

.story-player-modal.active .story-player-container {
  transform: scale(1);
}

/* Degradê Suave de Topo (Sem cortes nem sombras duras) */
.story-top-scrim {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(180deg, rgba(14, 11, 10, 0.6) 0%, rgba(14, 11, 10, 0.2) 65%, transparent 100%);
  pointer-events: none;
  z-index: 20;
  border-radius: 28px 28px 0 0;
}

/* Barras de Progresso no Topo */
.story-progress-bars {
  position: absolute;
  top: 14px;
  left: 12px;
  right: 12px;
  display: flex;
  gap: 4px;
  z-index: 50;
}

.story-progress-bar-bg {
  flex: 1;
  height: 2.5px;
  background: rgba(255, 255, 255, 0.28);
  border-radius: var(--r-pill);
  overflow: hidden;
  position: relative;
}

.story-progress-bar-fill {
  height: 100%;
  width: 0%;
  background: #FFFFFF;
  border-radius: var(--r-pill);
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.85);
  transition: width 0.1s linear;
}

.story-progress-bar-fill.completed {
  width: 100% !important;
}

/* Cabeçalho do Story */
.story-player-header {
  position: absolute;
  top: 24px;
  left: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 50;
  background: none;
  padding: 0;
}

.story-author-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.story-author-avatar-ring {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  padding: 1.5px;
  background: linear-gradient(135deg, #E5C396, #C59B7F, #9C6D50);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-author-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid #141110;
}

.story-author-meta {
  display: flex;
  flex-direction: column;
}

.story-author-name-row {
  display: flex;
  align-items: center;
  gap: 5px;
}

.story-author-name {
  color: #FFFFFF;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.2px;
}

.story-verified-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.story-time {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.7rem;
  margin-top: 1px;
  font-weight: 500;
}

.story-player-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.story-control-btn {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #FFFFFF;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.story-control-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #E5C396;
  transform: scale(1.08);
}

.story-control-btn:active {
  transform: scale(0.92);
}

/* Área de Mídia */
.story-media-wrapper {
  flex: 1;
  position: relative;
  width: 100%;
  height: 100%;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  user-select: none;
}

.story-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  display: block;
  transition: opacity 0.25s ease;
}

/* Indicador de Pausado ao Segurar */
.story-holding-indicator {
  position: absolute;
  top: 76px;
  left: 50%;
  transform: translateX(-50%) scale(0.9);
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 4px 14px;
  border-radius: var(--r-pill);
  pointer-events: none;
  opacity: 0;
  transition: all 0.2s ease;
  z-index: 40;
}

.story-holding-indicator.visible {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

/* Zonas de Toque */
.story-tap-zone {
  position: absolute;
  top: 70px;
  bottom: 130px;
  z-index: 25;
  cursor: pointer;
}

.story-tap-left {
  left: 0;
  width: 35%;
}

.story-tap-right {
  right: 0;
  width: 65%;
}

/* Card Flutuante de Vidro Minimalista (Conceito Banana Estético) */
.story-glass-card {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  z-index: 40;
  background: rgba(18, 14, 13, 0.74);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 1px solid rgba(229, 195, 150, 0.35);
  padding: 16px 18px 15px;
  border-radius: 22px;
  color: #FFFFFF;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.65);
}

.story-slide-badge {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: #E5C396;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  margin-bottom: 4px;
}

.story-slide-text {
  font-size: 0.82rem;
  line-height: 1.45;
  color: #EFE9E4;
  margin: 0 0 14px 0;
  font-weight: 400;
}

/* Barra de Ação (WhatsApp Luxury Pill + Botão de Curtir) */
.story-action-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-story-whatsapp-luxury {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(229, 195, 150, 0.45);
  border-radius: var(--r-pill);
  color: #FFFFFF;
  text-decoration: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.25s ease;
}

.story-wa-icon-glow {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.4);
  flex-shrink: 0;
  color: #FFFFFF;
}

.story-cta-text {
  font-size: 0.84rem;
  font-weight: 600;
  color: #FFFFFF;
  white-space: nowrap;
  letter-spacing: 0.2px;
}

.btn-story-whatsapp-luxury:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #E5C396;
  box-shadow: 0 6px 20px rgba(229, 195, 150, 0.28);
  transform: translateY(-1px);
}

.btn-story-whatsapp-luxury:active {
  transform: scale(0.98);
}

/* Botão de Curtir com Contador */
.story-like-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}

.btn-story-like-luxury {
  width: 44px;
  height: 38px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-story-like-luxury:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: #E5C396;
  transform: scale(1.06);
}

.btn-story-like-luxury:active,
.btn-story-like-luxury.liked {
  transform: scale(1.1);
  color: #FF3B30;
  border-color: rgba(255, 59, 48, 0.55);
  background: rgba(255, 59, 48, 0.15);
}

.btn-story-like-luxury.liked svg {
  fill: #FF3B30;
  stroke: #FF3B30;
}

.story-like-count {
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  font-variant-numeric: tabular-nums;
  transition: color 0.2s ease;
}

.story-like-wrapper.liked .story-like-count {
  color: #FF6B6B;
}

/* Corações Flutuantes & Partículas */
.story-floating-hearts {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 32;
  overflow: hidden;
}

.floating-heart {
  position: absolute;
  font-size: 24px;
  animation: float-up-heart 1.35s ease-out forwards;
}

@keyframes float-up-heart {
  0% {
    opacity: 1;
    transform: translateY(0) scale(0.6) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translateY(-260px) scale(1.5) rotate(25deg);
  }
}

.center-heart-pop {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
  z-index: 33;
  animation: heart-pop-anim 0.85s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes heart-pop-anim {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0.8;
  }
  40% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 1;
  }
  70% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0;
  }
}

/* ==========================================================================
   3. HERO SECTION (ALTA CONVERSÃO & HUMANIZAÇÃO)
   ========================================================================== */
.hero-section {
  padding: 12px 16px 24px;
}

.hero-card {
  background: var(--fundo-card);
  border-radius: var(--r-xl);
  padding: 22px 18px 24px;
  border: 1px solid var(--borda-suave);
  box-shadow: var(--sombra-card);
  position: relative;
  overflow: hidden;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--cor-marca-soft);
  color: var(--cor-marca-dark);
  padding: 5px 12px;
  border-radius: var(--r-pill);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.78rem;
  font-weight: 700;
  color: var(--texto-titulo);
  line-height: 1.22;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

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

.hero-subtitle {
  font-size: 0.88rem;
  color: var(--texto-corpo);
  line-height: 1.55;
  margin-bottom: 18px;
}

/* Foto do Hero com Moldura de Luxo */
.hero-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 4.8;
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 18px;
  box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.15);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(20, 16, 14, 0.75) 100%);
}

.hero-badge-floating {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 14px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.hero-badge-author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cor-marca);
}

.hero-badge-text {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--texto-titulo);
  line-height: 1.2;
}

.hero-badge-sub {
  font-size: 0.65rem;
  color: var(--texto-muted);
}

.hero-badge-stars {
  font-size: 0.72rem;
  color: #D89828;
  letter-spacing: 1px;
}

/* Botões do Hero - Hierarquia & Alta Conversão */
.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-primary-whats {
  background: linear-gradient(135deg, #25D366 0%, #1EBE5D 100%);
  color: #FFFFFF;
  padding: 13px 18px;
  border-radius: var(--r-pill);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 10px 26px -4px var(--cor-whats-glow);
  transition: var(--trans-spring);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.btn-primary-whats::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: rotate(25deg);
  pointer-events: none;
  animation: btn-sweep 4.5s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes btn-sweep {
  0%, 65% { left: -60%; }
  100% { left: 140%; }
}

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

.btn-primary-whats:active {
  transform: scale(0.97);
}

.btn-wa-icon-bubble {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  backdrop-filter: blur(4px);
  transition: var(--trans-spring);
}

.btn-primary-whats:hover .btn-wa-icon-bubble {
  background: rgba(255, 255, 255, 0.32);
  transform: scale(1.08);
}

.btn-text-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  flex: 1;
  min-width: 0;
}

.btn-text-content .btn-title {
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.2px;
}

.btn-text-content .btn-subtitle {
  font-size: 0.72rem;
  font-weight: 500;
  opacity: 0.92;
  line-height: 1.2;
  margin-top: 2px;
}

.btn-chevron-right {
  flex-shrink: 0;
  opacity: 0.85;
  transition: transform var(--trans-spring);
}

.btn-primary-whats:hover .btn-chevron-right {
  transform: translateX(3px);
  opacity: 1;
}

.btn-secondary {
  background: #FFFFFF;
  color: var(--texto-titulo);
  padding: 13px 20px;
  border-radius: var(--r-pill);
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: 1px solid var(--borda-marca);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  transition: var(--trans-spring);
}

.btn-secondary:hover {
  background: #FFFFFF;
  border-color: var(--cor-marca);
  color: var(--cor-marca-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(197, 155, 127, 0.2);
}

.btn-secondary:active {
  transform: scale(0.97);
  background: #EBE5E0;
}

/* Indicador Pulsante de Status */
.status-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  animation: pulse-ring 2s infinite ease-out;
  display: inline-block;
  flex-shrink: 0;
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Indicadores de Confiança (Trust Badges) */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--borda-suave);
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}

.trust-icon {
  font-size: 1.1rem;
}

.trust-title {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--texto-titulo);
}

.trust-desc {
  font-size: 0.6rem;
  color: var(--texto-muted);
  line-height: 1.2;
}

/* ==========================================================================
   4. SEÇÃO DE SERVIÇOS COM SEGMENTED CONTROL (iOS 18)
   ========================================================================== */
.services-section {
  padding: 16px 16px 28px;
}

.section-header {
  text-align: center;
  margin-bottom: 18px;
}

.section-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--cor-marca-dark);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  display: block;
  margin-bottom: 4px;
}

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

.section-desc {
  font-size: 0.82rem;
  color: var(--texto-muted);
  margin-top: 6px;
}

/* Segmented Control iOS 18 */
.segmented-control {
  display: flex;
  background: #EBE5E0;
  padding: 4px;
  border-radius: var(--r-pill);
  gap: 4px;
  margin-bottom: 20px;
  position: sticky;
  top: 76px;
  z-index: 80;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.08);
  overflow-x: auto;
  scrollbar-width: none;
}

.segmented-control::-webkit-scrollbar {
  display: none;
}

.segment-btn {
  flex: 1;
  background: transparent;
  border: none;
  padding: 8px 12px;
  border-radius: var(--r-pill);
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--texto-corpo);
  cursor: pointer;
  transition: var(--trans-spring);
  white-space: nowrap;
}

.segment-btn.active {
  background: #FFFFFF;
  color: var(--texto-titulo);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  font-weight: 700;
}

/* Cards de Serviços */
.services-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  background: var(--fundo-card);
  border-radius: var(--r-lg);
  border: 1px solid var(--borda-suave);
  box-shadow: var(--sombra-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--trans-spring);
}

.service-img-wrap {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}

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

/* Enquadramento calibrado para cada serviço focar o trabalho de manicure/pedicure */
.service-card[data-category*="pes"] .service-img {
  object-position: center 70%;
}

.service-card:nth-child(1) .service-img {
  object-position: center 35%;
}

.service-card:nth-child(2) .service-img {
  object-position: center 42%;
}

.service-card:nth-child(3) .service-img {
  object-position: center 38%;
}

.service-card:nth-child(5) .service-img {
  object-position: center 36%;
}

.service-card:nth-child(6) .service-img {
  object-position: center 38%;
}

.service-card:hover .service-img {
  transform: scale(1.03);
}

.service-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--cor-marca-dark);
}

.service-content {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}

.service-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--texto-titulo);
  line-height: 1.25;
}

.service-duration {
  font-size: 0.72rem;
  background: var(--fundo-card-subtle);
  color: var(--texto-muted);
  padding: 3px 8px;
  border-radius: var(--r-sm);
  font-weight: 600;
  white-space: nowrap;
}

.service-description {
  font-size: 0.82rem;
  color: var(--texto-corpo);
  line-height: 1.5;
}

.service-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 4px 0 8px;
}

.service-tag-item {
  font-size: 0.68rem;
  background: var(--cor-marca-soft);
  color: var(--cor-marca-dark);
  padding: 3px 8px;
  border-radius: var(--r-pill);
  font-weight: 600;
}

.btn-service-schedule {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: linear-gradient(135deg, #C59B7F 0%, #A9795A 100%);
  color: #FFFFFF;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: var(--r-pill);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1px;
  box-shadow: 0 4px 14px -2px rgba(169, 121, 90, 0.38);
  transition: var(--trans-spring);
  margin-top: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-service-schedule:hover {
  background: linear-gradient(135deg, #B58B6F 0%, #99694A 100%);
  box-shadow: 0 6px 18px -2px rgba(169, 121, 90, 0.48);
  transform: translateY(-1px);
}

.btn-service-schedule:active {
  transform: scale(0.97);
}

.btn-service-icon-wa {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(37, 211, 102, 0.4);
  transition: transform var(--trans-spring);
}

.btn-service-schedule:hover .btn-service-icon-wa {
  transform: scale(1.1) rotate(5deg);
}

.btn-service-label {
  flex: 1;
  text-align: left;
  font-weight: 700;
}

.btn-service-arrow {
  flex-shrink: 0;
  opacity: 0.85;
  transition: transform var(--trans-spring);
}

.btn-service-schedule:hover .btn-service-arrow {
  transform: translateX(3px);
  opacity: 1;
}

/* ==========================================================================
   5. GALERIA & FEED DO INSTAGRAM COM FOTOS REAIS
   ========================================================================== */
.gallery-section {
  padding: 16px 16px 28px;
  background: #F4EFEB;
  border-radius: var(--r-xl);
  margin: 0 12px 24px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: #E8E2DD;
}

.gallery-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  transition: transform 0.4s ease;
  display: block;
}

/* Enquadramento calibrado para destacar as unhas sem cortes */
.gallery-thumb[src*="feed_25"] {
  object-position: center 26% !important;
}

.gallery-thumb[src*="feed_4"],
.gallery-thumb[src*="feed_3"] {
  object-position: center 58% !important;
}

.gallery-thumb[src*="feed_9"] {
  object-position: center 35% !important;
}

.gallery-thumb[src*="feed_10"] {
  object-position: center 36% !important;
}

.gallery-item:hover .gallery-thumb {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(20, 16, 14, 0.8) 100%);
  display: flex;
  align-items: flex-end;
  padding: 8px 10px;
  opacity: 0.95;
}

.gallery-caption-preview {
  color: #FFFFFF;
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

.gallery-cta-wrap {
  margin-top: 18px;
  text-align: center;
}

.btn-insta-full {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #FFFFFF;
  color: var(--texto-titulo);
  padding: 13px 22px;
  border-radius: var(--r-pill);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid var(--borda-suave);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  transition: var(--trans-spring);
}

.btn-insta-full:hover {
  border-color: rgba(225, 48, 108, 0.35);
  color: #E1306C;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(225, 48, 108, 0.12);
}

.btn-insta-full:hover .btn-insta-icon {
  transform: scale(1.1) rotate(-5deg);
}

.btn-insta-full:hover .btn-arrow {
  transform: translateX(3px);
}

.btn-insta-full:active {
  transform: scale(0.96);
  background: #FAF8F5;
}

.btn-insta-icon {
  flex-shrink: 0;
  transition: transform var(--trans-spring);
}

/* ==========================================================================
   6. SOBRE ALINE SANTIAGO & O ESPAÇO RENOVA
   ========================================================================== */
.about-section {
  padding: 16px 16px 28px;
}

.about-card {
  background: var(--fundo-card);
  border-radius: var(--r-xl);
  border: 1px solid var(--borda-suave);
  box-shadow: var(--sombra-card);
  padding: 22px 18px;
}

.about-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.about-avatar-wrap {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, var(--cor-marca), #E0A96D);
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(197, 155, 127, 0.3);
}

.about-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #FFFFFF;
}

.about-titles {
  display: flex;
  flex-direction: column;
}

.about-author-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--texto-titulo);
}

.about-author-role {
  font-size: 0.76rem;
  color: var(--cor-marca-dark);
  font-weight: 700;
}

.about-author-loc {
  font-size: 0.72rem;
  color: var(--texto-muted);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}

.about-text {
  font-size: 0.86rem;
  color: var(--texto-corpo);
  line-height: 1.6;
  margin-bottom: 16px;
}

.about-quote {
  background: var(--fundo-card-subtle);
  border-left: 3px solid var(--cor-marca);
  padding: 12px 14px;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-style: italic;
  font-size: 0.84rem;
  color: var(--texto-titulo);
  margin-bottom: 18px;
}

/* Espaço Renova Salon Beauty Box */
.salon-box {
  background: #FAF8F5;
  border-radius: var(--r-lg);
  padding: 14px;
  border: 1px dashed var(--borda-marca);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.salon-box-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.salon-box-title {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--texto-titulo);
}

.salon-box-desc {
  font-size: 0.76rem;
  color: var(--texto-corpo);
  line-height: 1.4;
  margin-top: 2px;
}

/* ==========================================================================
   7. DEPOIMENTOS & AVALIAÇÕES (CARDS SQUIRCLE)
   ========================================================================== */
.reviews-section {
  padding: 16px 16px 28px;
}

.reviews-carousel {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.review-card {
  background: var(--fundo-card);
  border-radius: var(--r-lg);
  border: 1px solid var(--borda-suave);
  padding: 16px;
  box-shadow: var(--sombra-card);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.review-client {
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-avatar-char {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cor-marca-soft);
  color: var(--cor-marca-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.78rem;
}

.review-client-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--texto-titulo);
}

.review-stars {
  font-size: 0.75rem;
  color: #D89828;
}

.review-comment {
  font-size: 0.82rem;
  color: var(--texto-corpo);
  line-height: 1.45;
  font-style: italic;
}

/* ==========================================================================
   8. FAQ (PERGUNTAS FREQUENTES — ACORDEÃO)
   ========================================================================== */
.faq-section {
  padding: 16px 16px 28px;
}

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

.faq-item {
  background: var(--fundo-card);
  border-radius: var(--r-md);
  border: 1px solid var(--borda-suave);
  overflow: hidden;
  transition: var(--trans-spring);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--texto-titulo);
  cursor: pointer;
  gap: 10px;
}

.faq-icon {
  font-size: 0.82rem;
  transition: transform 0.3s ease;
  color: var(--cor-marca-dark);
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 16px;
  font-size: 0.82rem;
  color: var(--texto-corpo);
  line-height: 1.5;
}

.faq-item.open .faq-answer {
  max-height: 250px;
  padding: 0 16px 14px;
}

/* ==========================================================================
   9. CTA FINAL & CARD DE FECHAMENTO
   ========================================================================== */
.final-cta-section {
  padding: 16px 16px 28px;
}

.final-cta-card {
  background: linear-gradient(145deg, #241E1B, #171312);
  color: #FFFFFF;
  border-radius: var(--r-xl);
  padding: 28px 20px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(197, 155, 127, 0.18);
}

.final-cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(197, 155, 127, 0.15), transparent 70%);
  pointer-events: none;
}

.final-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.72rem;
  color: #EBE5E0;
  font-weight: 600;
  margin-bottom: 12px;
  backdrop-filter: blur(8px);
}

.final-cta-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 8px;
}

.final-cta-desc {
  font-size: 0.84rem;
  color: #D3CCC7;
  line-height: 1.5;
  margin-bottom: 20px;
}

.final-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  width: 100%;
}

.btn-final-cta {
  width: 100%;
  padding: 14px 18px;
}

.final-cta-aux-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.78rem;
  color: #BBB2AC;
  margin-top: 2px;
}

.final-cta-aux-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #DDD4CE;
  text-decoration: none;
  transition: color 0.2s ease;
}

.final-cta-aux-item:hover {
  color: #FFFFFF;
}

.final-cta-aux-divider {
  color: #6D6763;
}

/* ==========================================================================
   10. RODAPÉ INSTITUCIONAL
   ========================================================================== */
.site-footer {
  padding: 24px 20px 40px;
  text-align: center;
  border-top: 1px solid var(--borda-suave);
  background: var(--fundo-card-subtle);
  font-size: 0.76rem;
  color: var(--texto-muted);
}

.footer-logo {
  height: 52px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin: 0 auto 10px;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(197, 155, 127, 0.22));
}

.footer-brand-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--texto-titulo);
}

.footer-contact-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 14px 0 16px;
}

.footer-contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  font-size: 0.76rem;
  font-weight: 600;
  text-decoration: none;
  background: #FFFFFF;
  color: var(--texto-titulo);
  border: 1px solid var(--borda-suave);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: var(--trans-spring);
}

.footer-pill-wa:hover {
  border-color: #25D366;
  color: #1EBE5D;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.footer-pill-insta:hover {
  border-color: #E1306C;
  color: #E1306C;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(225, 48, 108, 0.2);
}

.footer-copy {
  margin-top: 8px;
  line-height: 1.5;
}

/* ==========================================================================
   11. BOTTOM NAVIGATION BAR / FLOATING CTA (MOBILE THUMB ZONE)
   ========================================================================== */
.floating-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(250, 248, 245, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--borda-suave);
  padding: 10px 16px max(10px, env(safe-area-inset-bottom));
  display: flex;
  justify-content: center;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.06);
}

.floating-bottom-inner {
  width: 100%;
  max-width: var(--max-width);
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-bottom-whats {
  flex: 1;
  background: linear-gradient(135deg, #25D366, #1EBE5D);
  color: #FFFFFF;
  text-decoration: none;
  padding: 11px 16px;
  border-radius: var(--r-pill);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  box-shadow: 0 8px 20px -2px var(--cor-whats-glow);
  transition: var(--trans-spring);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-bottom-whats::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: rotate(25deg);
  pointer-events: none;
  animation: btn-sweep 4.5s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-bottom-whats:active {
  transform: scale(0.97);
}

.btn-bottom-icon-bubble {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-bottom-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  flex: 1;
  min-width: 0;
}

.btn-bottom-title {
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.2;
}

.btn-bottom-sub {
  font-size: 0.68rem;
  font-weight: 500;
  opacity: 0.92;
  line-height: 1.2;
}

.btn-bottom-chevron {
  flex-shrink: 0;
  opacity: 0.85;
}

.btn-bottom-call {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--fundo-card);
  color: var(--texto-titulo);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid var(--borda-suave);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
  transition: var(--trans-spring);
}

.btn-bottom-call:hover {
  background: #FFFFFF;
  color: var(--cor-marca-dark);
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.btn-bottom-call:active {
  transform: scale(0.92);
}

/* ==========================================================================
   12. LIGHTBOX / MODAL DE FOTO DO INSTAGRAM
   ========================================================================== */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(14, 12, 11, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-modal.active {
  display: flex;
  opacity: 1;
}

.lightbox-box {
  background: #FFFFFF;
  border-radius: var(--r-xl);
  max-width: 420px;
  width: 100%;
  overflow: hidden;
  box-shadow: var(--sombra-flutuante);
  display: flex;
  flex-direction: column;
  transform: scale(0.92);
  transition: var(--trans-spring);
}

.lightbox-modal.active .lightbox-box {
  transform: scale(1);
}

.lightbox-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #12100E;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.lightbox-close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.6);
  color: #FFFFFF;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.lightbox-details {
  padding: 16px 18px 20px;
}

.lightbox-caption {
  font-size: 0.84rem;
  color: var(--texto-corpo);
  line-height: 1.5;
  margin-bottom: 16px;
}

.btn-lightbox-whats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: linear-gradient(135deg, #25D366, #1EBE5D);
  color: #FFFFFF;
  text-decoration: none;
  padding: 13px 18px;
  border-radius: var(--r-pill);
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 8px 22px -3px var(--cor-whats-glow);
  transition: var(--trans-spring);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-lightbox-whats:hover {
  box-shadow: 0 12px 28px -3px rgba(37, 211, 102, 0.4);
  transform: translateY(-2px);
}

.btn-lightbox-whats:active {
  transform: scale(0.97);
}

.btn-lightbox-label {
  flex: 1;
  text-align: left;
}

/* ==========================================================================
   SISTEMA DE DESIGN RESPONSIVO PARA TABLET & DESKTOP (ALINE SANTIAGO)
   Layout amplo, elegante, com tipografia refinada e espaçamento de luxo
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TABLET & DESKTOP GERAL (Min-width: 768px)
   -------------------------------------------------------------------------- */
@media (min-width: 768px) {
  html {
    background-color: var(--fundo-base);
  }

  body {
    background-color: var(--fundo-base);
  }

  .ambient-bg {
    background-image: 
      radial-gradient(ellipse 70% 35% at 50% -5%, rgba(197, 155, 127, 0.08), transparent 70%),
      radial-gradient(ellipse 60% 40% at 95% 35%, rgba(197, 155, 127, 0.06), transparent 60%),
      radial-gradient(ellipse 55% 45% at 5% 75%, rgba(197, 155, 127, 0.06), transparent 60%);
  }

  .app-container {
    max-width: 1200px;
    padding-left: 36px;
    padding-right: 36px;
    padding-bottom: 60px;
    box-shadow: none;
  }

  /* Cabeçalho Fixo Centrado */
  .site-header {
    padding: 18px 36px;
    background: rgba(250, 248, 245, 0.94);
    border-bottom: 1px solid rgba(197, 155, 127, 0.15);
  }

  .header-logo-img {
    height: 56px;
    filter: drop-shadow(0 3px 10px rgba(197, 155, 127, 0.28));
  }

  /* Stories Carousel */
  .stories-section {
    padding: 24px 0 16px;
    display: flex;
    justify-content: center;
  }

  .stories-carousel {
    justify-content: center;
    gap: 32px;
    padding: 6px 12px 14px;
    overflow-x: visible;
  }

  .story-item {
    transition: transform var(--trans-spring);
  }

  .story-item:hover {
    transform: translateY(-4px);
  }

  .story-ring-animated {
    width: 76px;
    height: 76px;
  }

  .story-label {
    font-size: 0.8rem;
    margin-top: 6px;
  }

  /* Seções Gerais */
  .services-section,
  .about-section,
  .reviews-section,
  .faq-section,
  .final-cta-section {
    padding: 36px 0 48px;
  }

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

  .section-tag {
    font-size: 0.8rem;
    padding: 6px 16px;
  }

  .section-title {
    font-size: 2.25rem;
    line-height: 1.25;
    margin-top: 10px;
  }

  .section-desc {
    font-size: 1rem;
    margin-top: 8px;
  }

  /* Segmented Control */
  .segmented-control {
    max-width: 680px;
    margin: 0 auto 36px;
    padding: 6px;
  }

  .segment-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  /* Grid de Serviços */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .service-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    transition: transform var(--trans-spring), box-shadow var(--trans-spring);
  }

  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px -10px rgba(78, 51, 37, 0.16);
  }

  .service-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 22px;
  }

  .service-name {
    font-size: 1.22rem;
  }

  .service-description {
    font-size: 0.86rem;
    line-height: 1.55;
    flex-grow: 1;
  }

  .btn-service-schedule {
    margin-top: 14px;
    padding: 12px 18px;
  }

  /* Galeria */
  .gallery-section {
    padding: 48px 36px 52px;
    border-radius: 36px;
    margin: 36px 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .gallery-item {
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--trans-spring), box-shadow var(--trans-spring);
  }

  .gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 32px rgba(78, 51, 37, 0.18);
  }

  .gallery-cta-wrap {
    margin-top: 32px;
  }

  .gallery-insta-btn {
    padding: 14px 28px;
    font-size: 0.92rem;
  }

  /* Depoimentos */
  .reviews-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
  }

  .review-card {
    padding: 24px;
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform var(--trans-spring), box-shadow var(--trans-spring);
  }

  .review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(78, 51, 37, 0.1);
  }

  .review-comment {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 8px;
  }

  /* FAQ */
  .faq-list {
    max-width: 860px;
    margin: 32px auto 0;
    gap: 14px;
  }

  .faq-item {
    border-radius: 18px;
  }

  .faq-question {
    padding: 18px 24px;
    font-size: 0.98rem;
  }

  .faq-answer {
    padding: 0 24px;
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .faq-item.open .faq-answer {
    padding: 0 24px 20px;
  }

  /* CTA Final */
  .final-cta-card {
    max-width: 980px;
    margin: 0 auto;
    padding: 56px 64px;
    border-radius: 36px;
  }

  .final-cta-badge {
    font-size: 0.8rem;
    padding: 6px 16px;
  }

  .final-cta-title {
    font-size: 2.45rem;
    margin-bottom: 12px;
  }

  .final-cta-desc {
    font-size: 1.05rem;
    max-width: 580px;
    margin: 0 auto 28px;
  }

  .btn-final-cta {
    max-width: 420px;
    padding: 18px 32px;
    font-size: 1rem;
  }

  .final-cta-aux-row {
    font-size: 0.88rem;
    gap: 12px;
    margin-top: 8px;
  }

  /* Rodapé */
  .site-footer {
    padding: 48px 32px 52px;
    border-radius: 32px 32px 0 0;
    margin-top: 36px;
  }

  .footer-logo {
    height: 64px;
    margin-bottom: 14px;
  }

  .footer-brand-name {
    font-size: 1.25rem;
  }

  .footer-contact-pills {
    gap: 14px;
    margin: 20px 0 24px;
  }

  .footer-contact-pill {
    padding: 10px 22px;
    font-size: 0.86rem;
  }

  .footer-copy {
    font-size: 0.84rem;
    line-height: 1.6;
  }

  /* WhatsApp Flutuante no Desktop (FAB Elegante no canto inferior direito) */
  .floating-bottom-bar {
    position: fixed;
    bottom: 28px;
    right: 28px;
    left: auto;
    width: auto;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
    padding: 0;
    z-index: 999;
  }

  .floating-bottom-inner {
    width: auto;
    gap: 12px;
  }

  .btn-bottom-whats {
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
    padding: 14px 22px;
    border-radius: 9999px;
  }

  .btn-bottom-whats:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 14px 36px rgba(37, 211, 102, 0.55);
  }

  .btn-bottom-call {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    width: 50px;
    height: 50px;
  }

  .btn-bottom-call:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
  }

  /* Lightbox ampliado no desktop */
  .lightbox-box {
    max-width: 560px;
  }
}

/* --------------------------------------------------------------------------
   2. DESKTOP EXPANDIDO (Min-width: 992px)
   -------------------------------------------------------------------------- */
@media (min-width: 992px) {
  /* Hero Section em 2 Colunas */
  .hero-section {
    padding: 24px 0 44px;
  }

  .hero-card {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-areas:
      "badge image"
      "title image"
      "subtitle image"
      "cta image"
      "trust trust";
    column-gap: 52px;
    row-gap: 16px;
    padding: 48px 52px;
    align-items: center;
    border-radius: 36px;
  }

  .hero-pill-badge {
    grid-area: badge;
    justify-self: start;
    margin-bottom: 0;
    font-size: 0.8rem;
    padding: 8px 18px;
  }

  .hero-title {
    grid-area: title;
    font-size: 2.85rem;
    line-height: 1.16;
    letter-spacing: -0.5px;
    margin-bottom: 0;
  }

  .hero-subtitle {
    grid-area: subtitle;
    font-size: 1.08rem;
    line-height: 1.65;
    margin-bottom: 8px;
  }

  .hero-cta-group {
    grid-area: cta;
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    width: auto;
    margin-top: 8px;
  }

  .btn-primary-whats {
    width: auto;
    padding: 16px 26px;
    font-size: 0.95rem;
  }

  .btn-secondary {
    width: auto;
    padding: 16px 24px;
    font-size: 0.92rem;
  }

  .hero-image-wrapper {
    grid-area: image;
    width: 100%;
    height: 100%;
    min-height: 480px;
    max-height: 540px;
    aspect-ratio: unset;
    margin: 0;
    border-radius: 28px;
    box-shadow: 0 20px 48px -10px rgba(78, 51, 37, 0.22);
  }

  .hero-img {
    object-position: center 25%;
  }

  .trust-strip {
    grid-area: trust;
    margin-top: 36px;
    padding-top: 32px;
    border-top: 1px solid var(--borda-suave);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 24px;
    border-radius: var(--r-lg);
    background: var(--fundo-card-subtle);
    border: 1px solid rgba(197, 155, 127, 0.15);
    transition: transform var(--trans-spring), box-shadow var(--trans-spring);
  }

  .trust-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(78, 51, 37, 0.08);
  }

  .trust-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-top: 8px;
  }

  .trust-desc {
    font-size: 0.82rem;
    color: var(--texto-muted);
    margin-top: 2px;
  }

  /* Sobre Aline Santiago em 2 Colunas */
  .about-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    padding: 48px 52px;
    align-items: center;
    border-radius: 36px;
  }

  .about-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    margin-bottom: 0;
  }

  .about-avatar-wrap {
    width: 160px;
    height: 160px;
    box-shadow: 0 14px 32px rgba(197, 155, 127, 0.35);
  }

  .about-author-name {
    font-size: 1.65rem;
  }

  .about-author-role {
    font-size: 0.88rem;
  }

  .about-author-loc {
    font-size: 0.82rem;
    justify-content: center;
  }

  .about-body {
    display: flex;
    flex-direction: column;
  }

  .about-text {
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .about-quote {
    font-size: 0.95rem;
    padding: 16px 20px;
    margin-bottom: 22px;
  }

  .salon-box {
    padding: 20px 24px;
    border-radius: 20px;
  }

  .salon-box-title {
    font-size: 0.95rem;
  }

  .salon-box-desc {
    font-size: 0.85rem;
    line-height: 1.5;
  }
}

/* --------------------------------------------------------------------------
   3. DESKTOP WIDE (Min-width: 1200px)
   -------------------------------------------------------------------------- */
@media (min-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .hero-card {
    column-gap: 64px;
    padding: 56px 60px;
  }

  .hero-title {
    font-size: 3.1rem;
  }
}
