/* ==========================================================================
   BECA NAIL DESIGN — HIGH LUXURY EDITORIAL DESIGN SYSTEM
   Paleta Oficial do Briefing:
   - #630100 (Vinho Profundo / Bordô)
   - #890000 (Vermelho Vibrante)
   - #E7D6C2 (Bege Nude / Areia)
   - #F8F2E9 (Creme / Off-White)
   
   Tipografia Oficial do Briefing:
   - Bodoni Moda / Cormorant Garamond (Editorial Serif Clássica)
   - Pinyon Script / Alex Brush (Cursiva Expressiva - Conectada)
   - Zen Maru Gothic (Corpo e Subtítulos em Bold)
   - Anonymous Pro (Números Técnicos, Metadados e Etiquetas)
   
   Diretriz de Design:
   - ZERO Gradientes
   - ZERO Emojis
   - Estética Editorial / Scrapbook High-Fashion
   ========================================================================== */

/* --- GOOGLE FONTS IMPORT --- */
@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&family=Anonymous+Pro:wght@400;700&family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..700;1,6..96,400..700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Pinyon+Script&family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap');

:root {
  /* Cores Oficiais do Briefing */
  --color-wine: #630100;
  --color-wine-rgb: 99, 1, 0;
  --color-red: #890000;
  --color-red-rgb: 137, 0, 0;
  --color-beige: #E7D6C2;
  --color-beige-rgb: 231, 214, 194;
  --color-cream: #F8F2E9;
  --color-cream-rgb: 248, 242, 233;
  --color-white: #FFFFFF;
  --color-dark-surface: #460100;

  /* Tipografia Rigorosa */
  --font-serif: 'Bodoni Moda', 'Cormorant Garamond', Georgia, serif;
  --font-script: 'Pinyon Script', 'Alex Brush', cursive;
  --font-body: 'Zen Maru Gothic', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'Anonymous Pro', monospace, sans-serif;

  /* Transições & Sombras Nobres */
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  
  --shadow-subtle: 0 4px 20px rgba(99, 1, 0, 0.08);
  --shadow-card: 0 12px 32px rgba(99, 1, 0, 0.12);
  --shadow-scrap: 0 15px 35px rgba(0, 0, 0, 0.18);
  --shadow-deep: 0 20px 45px rgba(45, 0, 0, 0.28);

  /* Dimensões */
  --container-max: 1200px;
  --container-narrow: 920px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-pill: 9999px;
}

/* --- RESET & CONFIGURAÇÃO BASE --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  background-color: var(--color-cream);
  color: var(--color-wine);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Imagens com proporção travada e sem distorção */
img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  transition: var(--transition-fast);
}

/* --- DIVISORES OFICIAIS DE TRANSIÇÃO ENTRE SEÇÕES (FAIXAS OFICIAIS DO BRIEFING) --- */
.section-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 65px;
  background-repeat: repeat-x;
  background-size: auto 65px;
  pointer-events: none;
  z-index: 10;
}

@media (min-width: 768px) {
  .section-divider {
    height: 85px;
    background-size: auto 85px;
  }
}

@media (min-width: 1200px) {
  .section-divider {
    height: 105px;
    background-size: auto 105px;
  }
}

/* FAIXA BORDÔ 1 (Hero Vinho -> O Ateliê Creme) */
.section-divider-faixa-bordo-1,
.section-divider-wine-cream {
  background-image: url('../assets/images/faixa_bordo_1.webp');
  background-position: center bottom;
}

/* FAIXA BORDÔ 2 (Serviços Bege -> Diferenciais Vinho) */
.section-divider-faixa-bordo-2,
.section-divider-beige-wine {
  background-image: url('../assets/images/faixa_bordo_2.webp');
  background-position: center bottom;
}

/* FAIXA BORDÔ 2 (Diretrizes Creme -> Localização Vinho) */
.section-divider-faixa-bordo-2-cream,
.section-divider-cream-wine {
  background-image: url('../assets/images/faixa_bordo_2_cream.webp');
  background-position: center bottom;
}

/* FAIXA BEGE (Diferenciais Vinho -> Diretrizes Creme/Bege) */
.section-divider-faixa-bege {
  background-image: url('../assets/images/faixa_bege_1.webp');
  background-position: center top;
}

/* Watermarks de Colagem Tipográfica e Rendas Sutis */
.bg-narrative-watermark {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  user-select: none;
}

.watermark-hero-left {
  top: 15%;
  left: -4%;
  width: 460px;
  max-width: 35vw;
  opacity: 0.09;
  mix-blend-mode: screen;
}

.watermark-atelie-right {
  top: 5%;
  right: -6%;
  width: 480px;
  max-width: 35vw;
  opacity: 0.12;
  mix-blend-mode: multiply;
}

.watermark-services-left {
  top: 12%;
  left: -5%;
  width: 500px;
  max-width: 35vw;
  opacity: 0.08;
  mix-blend-mode: multiply;
}

.watermark-diff-right {
  bottom: 8%;
  right: -4%;
  width: 460px;
  max-width: 35vw;
  opacity: 0.10;
  mix-blend-mode: screen;
}

.watermark-location-left {
  top: 10%;
  left: -5%;
  width: 440px;
  max-width: 30vw;
  opacity: 0.09;
  mix-blend-mode: screen;
}
.font-serif { font-family: var(--font-serif); }
.font-body { font-family: var(--font-body); }
.font-mono { font-family: var(--font-mono); }

/* Cursiva com espaçamento natural (sem letras soltas) */
.font-script,
.script-accent,
.script-inline {
  font-family: var(--font-script);
  letter-spacing: 0 !important;
  word-spacing: normal;
  text-transform: none !important;
  font-style: normal;
  display: inline-block;
  line-height: 1;
}

/* Subtítulos em Zen Maru Gothic Bold (sem serifas pesadas) */
.section-subtitle,
.service-subtitle,
.editorial-tag,
.diff-subtitle {
  font-family: var(--font-body) !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

/* Header de Seções */
.section-headline {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 2;
}

.section-headline .serif-tag {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  line-height: 1.15;
}

.section-headline .script-accent {
  display: block;
  font-family: var(--font-script);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 400;
  margin-top: 0.2rem;
  margin-bottom: 0.8rem;
  letter-spacing: 0 !important;
}

.section-headline .section-subcopy {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  max-width: 680px;
  margin: 0 auto;
  font-weight: 400;
  line-height: 1.65;
}

/* Variações de Cor para Títulos */
.section-headline.dark .serif-tag { color: var(--color-wine); }
.section-headline.dark .script-accent { color: var(--color-red); }
.section-headline.dark .section-subcopy { color: rgba(99, 1, 0, 0.85); }

.section-headline.light .serif-tag { color: var(--color-cream); }
.section-headline.light .script-accent { color: var(--color-beige); }
.section-headline.light .section-subcopy { color: rgba(248, 242, 233, 0.9); }

/* --- CONTAINERS & SEÇÕES --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

.container-narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
}

/* Transições de cores sólidas no fundo (Sem gradientes!) */
.bg-cream { background-color: var(--color-cream); color: var(--color-wine); }
.bg-beige { background-color: var(--color-beige); color: var(--color-wine); }
.bg-wine { background-color: var(--color-wine); color: var(--color-cream); }
.bg-red { background-color: var(--color-red); color: var(--color-cream); }

/* --- BOTÕES SÓLIDOS & ELEGANTES (SEM GRADIENTES) --- */
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 0.95rem 2.2rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  cursor: pointer;
  box-shadow: var(--shadow-subtle);
  border: 1.5px solid transparent;
  transition: var(--transition-smooth);
}

/* Botão Creme Sólido */
.btn-cream {
  background-color: var(--color-cream);
  color: var(--color-wine);
  border-color: var(--color-cream);
}
.btn-cream:hover {
  background-color: #FFFFFF;
  color: var(--color-red);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

/* Botão Vinho Sólido */
.btn-wine {
  background-color: var(--color-wine);
  color: var(--color-cream);
  border-color: var(--color-wine);
}
.btn-wine:hover {
  background-color: var(--color-red);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(99, 1, 0, 0.25);
}

/* Botão Bege Sólido */
.btn-beige {
  background-color: var(--color-beige);
  color: var(--color-wine);
  border-color: var(--color-beige);
}
.btn-beige:hover {
  background-color: var(--color-cream);
  color: var(--color-wine);
  transform: translateY(-2px);
}

/* Botão Outline */
.btn-outline-cream {
  background-color: transparent;
  color: var(--color-cream);
  border: 1.5px solid var(--color-cream);
}
.btn-outline-cream:hover {
  background-color: var(--color-cream);
  color: var(--color-wine);
}

/* --- HEADER & BARRA DE NAVEGAÇÃO --- */
.header-main {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--color-wine);
  padding: 0.85rem 0;
  transition: var(--transition-smooth);
  border-bottom: 1px solid rgba(231, 214, 194, 0.15);
}

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

.brand-logo-link {
  display: flex;
  align-items: center;
}

.header-logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-fast);
}

.brand-logo-link:hover .header-logo-img {
  opacity: 0.9;
  transform: scale(1.03);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-cream);
  letter-spacing: 0.03em;
  position: relative;
  padding: 0.25rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-beige);
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--color-beige);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta-btn {
  padding: 0.65rem 1.6rem;
  font-size: 0.88rem;
}

/* Menu Mobile */
.menu-toggle-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
}

.menu-toggle-btn span {
  width: 100%;
  height: 2px;
  background-color: var(--color-cream);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.menu-toggle-btn.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.menu-toggle-btn.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle-btn.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.mobile-drawer {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  width: 100%;
  background-color: var(--color-wine);
  padding: 2rem 1.5rem;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
  border-bottom: 2px solid var(--color-beige);
  box-shadow: var(--shadow-deep);
  z-index: 999;
}

.mobile-drawer.open {
  display: flex;
}

/* ==========================================================================
   SEÇÃO 1 — HERO EDITORIAL
   ========================================================================== */
.section-hero {
  padding-top: 8rem;
  padding-bottom: 7.5rem;
  background-color: var(--color-wine);
  color: var(--color-cream);
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-logo-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.hero-logo-img {
  height: 62px;
  width: auto;
  object-fit: contain;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.4vw, 3.8rem);
  line-height: 1.12;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.hero-headline .script-text {
  display: block;
  font-family: var(--font-script);
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  text-transform: none;
  font-weight: 400;
  color: var(--color-beige);
  letter-spacing: 0 !important;
  margin-top: 0.2rem;
}

.hero-subheadline {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-weight: 400;
  color: rgba(248, 242, 233, 0.92);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 2rem;
}

.hero-badges-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background-color: rgba(231, 214, 194, 0.12);
  border: 1px solid rgba(231, 214, 194, 0.3);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color-beige);
  text-transform: uppercase;
}

.hero-badge-sun {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

/* Animação de Flutuação Suave para a Arte do Hero */
@keyframes floatHero {
  0% {
    transform: translateY(0px) rotate(-1.5deg);
  }
  50% {
    transform: translateY(-12px) rotate(-0.5deg);
  }
  100% {
    transform: translateY(0px) rotate(-1.5deg);
  }
}

/* Composição Visual Hero */
.hero-visual-card {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-composite-img {
  width: 100%;
  max-width: 460px;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.4));
  animation: floatHero 6s ease-in-out infinite;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
  will-change: transform, filter;
}

.hero-composite-img:hover {
  animation-play-state: paused;
  transform: translateY(-14px) scale(1.03) rotate(0deg);
  filter: drop-shadow(0 26px 48px rgba(0, 0, 0, 0.55));
}

/* ==========================================================================
   SEÇÃO 2 — O ATELIÊ & O RITUAL ("VENHA ME CONHECER")
   ========================================================================== */
.section-ritual {
  background-color: var(--color-cream);
  color: var(--color-wine);
}

.ritual-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}

/* Animação de Flutuação Suave para a Foto do Ateliê */
@keyframes floatAtelie {
  0% {
    transform: translateY(0px) rotate(1deg);
  }
  50% {
    transform: translateY(-10px) rotate(-0.5deg);
  }
  100% {
    transform: translateY(0px) rotate(1deg);
  }
}

.ritual-visual-box {
  display: flex;
  justify-content: center;
  position: relative;
}

.ritual-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 30px rgba(99, 1, 0, 0.16));
  animation: floatAtelie 5s ease-in-out infinite;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
  will-change: transform, filter;
}

.ritual-img:hover {
  animation-play-state: paused;
  transform: translateY(-14px) scale(1.03) rotate(0deg);
  filter: drop-shadow(0 24px 42px rgba(99, 1, 0, 0.26));
}

.ritual-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ritual-tag {
  color: var(--color-red);
}

.ritual-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.15;
  font-weight: 600;
  text-transform: uppercase;
}

.ritual-title .script-accent {
  display: block;
  font-family: var(--font-script);
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  color: var(--color-red);
  text-transform: none;
}

.ritual-text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(99, 1, 0, 0.9);
}

.ritual-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.ritual-highlight-item {
  background-color: var(--color-white);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-red);
  box-shadow: var(--shadow-subtle);
}

.ritual-highlight-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--color-wine);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ritual-highlight-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(99, 1, 0, 0.8);
}

/* ==========================================================================
   SEÇÃO 3 — SERVIÇOS & VALORES (OS 3 CARDS OFICIAIS)
   ========================================================================== */
.section-services {
  background-color: var(--color-beige);
  color: var(--color-wine);
  padding-bottom: 7.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.service-card-scrap {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  border: 1px solid rgba(99, 1, 0, 0.08);
  position: relative;
}

.service-card-scrap:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-scrap);
}

.service-card-image-box {
  width: 100%;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 1.25rem;
  background-color: var(--color-white);
}

.service-composite-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.service-card-scrap:hover .service-composite-img {
  transform: scale(1.02);
}

.service-info-block {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-header-title {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--color-wine);
  margin-bottom: 0.2rem;
}

.service-subtitle {
  color: var(--color-red);
  margin-bottom: 0.75rem;
}

.service-desc-text {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(99, 1, 0, 0.88);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

/* Bloco de Preços Limpo */
.service-price-container {
  background-color: var(--color-cream);
  border-radius: var(--radius-sm);
  padding: 1rem;
  margin-bottom: 1.25rem;
  border-left: 3px solid var(--color-red);
}

.price-row-main {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-wine);
  letter-spacing: -0.01em;
}

.price-row-secondary {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-red);
  margin-top: 0.2rem;
}

.service-card-btn {
  width: 100%;
  padding: 0.85rem 1.25rem;
  font-size: 0.92rem;
}

.services-footer-note {
  max-width: 820px;
  margin: 0 auto 2.5rem;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-wine);
  line-height: 1.7;
  padding: 1rem 1.5rem;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-md);
  border: 1px solid rgba(99, 1, 0, 0.1);
}

.services-global-cta-box {
  text-align: center;
}

/* ==========================================================================
   SEÇÃO 4 — DIFERENCIAIS & FILOSOFIA ARTÍSTICA
   ========================================================================== */
.section-differentials {
  background-color: var(--color-wine);
  color: var(--color-cream);
  padding-bottom: 7.5rem;
}

.differentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.diff-card-editorial {
  background-color: rgba(248, 242, 233, 0.06);
  border: 1px solid rgba(231, 214, 194, 0.18);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: var(--transition-smooth);
}

.diff-card-editorial:hover {
  background-color: rgba(248, 242, 233, 0.1);
  border-color: var(--color-beige);
  transform: translateY(-4px);
}

.diff-card-editorial.featured {
  grid-column: span 2;
  background-color: rgba(137, 0, 0, 0.4);
  border-color: var(--color-beige);
}

.diff-card-number {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-beige);
  margin-bottom: 0.5rem;
  display: block;
}

.diff-card-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-cream);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.diff-card-text {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(248, 242, 233, 0.9);
}

/* ==========================================================================
   SEÇÃO 5 — DIRETRIZES & POLÍTICAS (SOBRE PAPEL RASGADO)
   ========================================================================== */
.section-policy {
  background-color: var(--color-cream);
  color: var(--color-wine);
  padding-bottom: 9rem;
}

.policy-scrap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.policy-scrap-card {
  position: relative;
  background-color: var(--color-white);
  padding: 2.2rem 1.75rem 1.75rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(99, 1, 0, 0.08);
  transition: var(--transition-smooth);
}

/* Efeito de Washi Tape / Fita Adesiva no Topo */
.policy-scrap-card::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 24px;
  background-color: rgba(231, 214, 194, 0.75);
  border-left: 2px dashed rgba(99, 1, 0, 0.15);
  border-right: 2px dashed rgba(99, 1, 0, 0.15);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.policy-scrap-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-scrap);
}

.policy-card-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-wine);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.policy-card-text {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(99, 1, 0, 0.88);
}

.policy-quote-banner {
  max-width: 860px;
  margin: 2rem auto 1.5rem;
  background: transparent;
  padding: 1rem 1rem 0;
  text-align: center;
  border: none;
}

.policy-quote-text {
  font-family: var(--font-script);
  font-size: clamp(2.4rem, 4.8vw, 3.6rem);
  font-weight: 400;
  color: var(--color-wine);
  margin-bottom: 0.35rem;
  letter-spacing: 0 !important;
  line-height: 1.2;
}

.policy-quote-sub {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  color: rgba(99, 1, 0, 0.85);
  line-height: 1.6;
}

/* ==========================================================================
   SEÇÃO 6 — LOCALIZAÇÃO & CONVITE OFICIAL
   ========================================================================== */
.section-location {
  background-color: var(--color-wine);
  color: var(--color-cream);
}

.location-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}

/* Animação de Flutuação Suave para o Convite Oficial */
@keyframes floatConvite {
  0% {
    transform: translateY(0px) rotate(-1deg);
  }
  50% {
    transform: translateY(-10px) rotate(0.5deg);
  }
  100% {
    transform: translateY(0px) rotate(-1deg);
  }
}

.convite-visual-card {
  display: flex;
  justify-content: center;
  position: relative;
}

.convite-img {
  width: 100%;
  max-width: 460px;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.4));
  animation: floatConvite 6s ease-in-out infinite;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
  will-change: transform, filter;
}

.convite-img:hover {
  animation-play-state: paused;
  transform: translateY(-14px) scale(1.03) rotate(0deg);
  filter: drop-shadow(0 26px 48px rgba(0, 0, 0, 0.55));
}

.location-details-box {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.location-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.location-item > div {
  flex: 1;
}

.location-bullet-sun {
  width: 20px;
  height: 20px;
  object-fit: contain;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.location-item-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-beige);
  margin-bottom: 0.2rem;
}

.location-item-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(248, 242, 233, 0.92);
  line-height: 1.6;
}

.location-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

/* ==========================================================================
   FOOTER OFICIAL
   ========================================================================== */
.footer-main {
  background-color: var(--color-dark-surface);
  color: var(--color-cream);
  padding: 3.5rem 0 2rem;
  border-top: 1px solid rgba(231, 214, 194, 0.15);
  text-align: center;
}

.footer-logo-img {
  height: 72px;
  width: auto;
  object-fit: contain;
  margin: 0 auto 1.5rem;
}

.footer-links-row {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.footer-link {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-beige);
}
.footer-link:hover {
  color: var(--color-cream);
}

.footer-copy-text {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(248, 242, 233, 0.6);
  line-height: 1.6;
}

/* ==========================================================================
   BOTÃO FLUTUANTE WHATSAPP (SÓLIDO & DISCRETO)
   ========================================================================== */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #25D366;
  color: #FFFFFF;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  z-index: 990;
  transition: var(--transition-smooth);
}

.floating-whatsapp-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

.floating-whatsapp-btn svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

/* ==========================================================================
   ANIMAÇÕES DE SCROLL (REVEAL)
   ========================================================================== */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ==========================================================================
   RESPONSIVIDADE (MOBILE & TABLET)
   ========================================================================== */
@media (max-width: 992px) {
  .hero-grid,
  .ritual-grid,
  .location-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .hero-subheadline,
  .hero-badges-list,
  .hero-cta-group {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }

  .services-grid,
  .policy-scrap-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .differentials-grid {
    grid-template-columns: 1fr;
  }

  .diff-card-editorial.featured {
    grid-column: span 1;
  }

  .ritual-highlights {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .location-info-list {
    align-items: center;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }

  .location-item {
    width: 100%;
    justify-content: center;
  }

  .location-item > div {
    flex: 1;
    width: 100%;
    text-align: center;
  }

  .location-item-title,
  .location-item-text {
    text-align: center;
  }

  .location-item-text a {
    display: inline-block;
    text-align: center;
  }

  .location-actions-row {
    justify-content: center;
  }

  .nav-desktop {
    display: none;
  }

  .menu-toggle-btn {
    display: flex;
  }
}

@media (max-width: 576px) {
  .section {
    padding: 4rem 0;
  }

  .section-hero {
    padding-top: 6.5rem;
    padding-bottom: 6rem;
  }

  .section-services,
  .section-differentials {
    padding-bottom: 6rem;
  }

  .section-policy {
    padding-bottom: 7.5rem;
  }

  .btn-pill {
    width: 100%;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .floating-whatsapp-btn {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 52px;
    height: 52px;
  }
}
