/* ===================================================================
   Fernanda Bianchi — Depilação a Laser
   NOVA IDENTIDADE VISUAL: Rosé Terroso, Elegância Premium
   CSS estático puro (sem framework), fiel à identidade visual atualizada
   =================================================================== */

:root {
  /* Paleta de cores - Identidade Premium */
  --primary-rose: #A96B66;        /* Cor principal: rosé terroso/malva */
  --dark-rose: #8F5652;           /* Tom escuro: rodapé, hover */
  --blush-light: #F5D9D4;         /* Rosa blush claro: cards, caixas */
  --white: #ffffff;               /* Branco para títulos sobre fundos rosé */
  --text-brown: #5C4A47;          /* Cinza-marrom suave para corpo de texto */
  --whatsapp-green: #25D366;      /* Verde WhatsApp - mantido */
  
  /* Tipografia Premium */
  --font-serif-elegant: 'Playfair Display', 'Cormorant Garamond', serif;
  --font-serif: 'Cormorant Garamond', serif;
  --font-script: 'Great Vibes', 'Allura', cursive;
  --font-sans: 'Montserrat', 'Poppins', sans-serif;
  
  /* Easing */
  --ease: cubic-bezier(0.17, 0.55, 0.55, 1);
  
  /* Cores derivadas para compatibilidade */
  --gold: var(--primary-rose);
  --gold-hover: var(--dark-rose);
  --gold-soft: rgba(169, 107, 102, 0.15);
  --dark: #1B0E2E;
  --dark-text: #1A1A2E;
  --rose: var(--primary-rose);
  --bg-soft: #FAF8FC;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text-brown);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Botões ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 28px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background-color 0.3s var(--ease);
}
.btn-gold {
  background: var(--primary-rose);
  color: var(--white);
}
.btn-gold:hover {
  background: var(--dark-rose);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(169, 107, 102, 0.25);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}
.btn-block { width: 100%; }

/* ---------- Faixa de urgência (topo fixo) ---------- */
.fb-urgency-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--dark-rose);
  color: var(--white);
  padding: 8px 16px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 40;
}
.fb-urgency-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.fb-urgency-bar a:hover { text-decoration: underline; }
.fb-urgency-bolt {
  animation: fbBoltBlink 1s infinite;
}
@keyframes fbBoltBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ---------- Cabeçalho / navegação ---------- */
header.fb-header {
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 30;
  background: rgba(143, 86, 82, 0.95);
  backdrop-filter: blur(10px);
  transition: background 0.3s var(--ease);
}
.fb-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.fb-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo {
  width: 0;
  height: 40px;
  opacity: 0;
  object-fit: contain;
  transform: scale(0.6);
  pointer-events: none;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), width 0.4s var(--ease);
}
.nav-logo.nav-logo-visible {
  width: 40px;
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.fb-brand-name {
  color: var(--white);
  font-family: var(--font-serif-elegant);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
nav.fb-nav-desktop {
  display: none;
  align-items: center;
  gap: 32px;
}
nav.fb-nav-desktop a {
  color: var(--white);
  font-weight: 500;
  transition: color 0.3s ease;
}
nav.fb-nav-desktop a:hover { color: var(--blush-light); }
.fb-header-cta { display: none; }
.fb-menu-toggle {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 4px 8px;
}
.fb-nav-mobile {
  display: none;
  background: rgba(143, 86, 82, 0.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.fb-nav-mobile.open { display: block; }
.fb-nav-mobile-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px 24px;
}
.fb-nav-mobile a {
  color: var(--white);
  font-weight: 500;
}
.fb-nav-mobile a:hover { color: var(--blush-light); }

@media (min-width: 768px) {
  nav.fb-nav-desktop { display: flex; }
  .fb-header-cta { display: block; }
  .fb-menu-toggle { display: none; }
}

/* ---------- Hero ---------- */
.fb-hero-wrapper { position: relative; }
.fb-hero-bg {
  position: sticky;
  top: 0;
  height: 100vh;
  margin-bottom: -100vh;
  background-image: url('hero-image.jpg');
  background-size: cover;
  background-position: center right;
  pointer-events: none;
}
.fb-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 128px 0 64px;
  background-color: transparent;
}
.fb-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.5) 55%, transparent);
  z-index: 0;
}
.fb-hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}
.fb-hero-logo-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.fb-hero-logo-row img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
}
.fb-hero-logo-row p {
  color: var(--blush-light);
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin: 0;
}
.fb-hero h1 {
  font-family: var(--font-serif-elegant);
  font-weight: 700;
  color: var(--white);
  font-size: 2.6rem;
  line-height: 1.2;
  margin: 0 0 24px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  letter-spacing: -0.02em;
}
.fb-hero-eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--blush-light);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.fb-hero h1 span.gold { color: var(--blush-light); }
.fb-hero p.lead {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  max-width: 560px;
  margin: 0 0 32px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.fb-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.fb-hero-pills span {
  padding: 8px 16px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
}
.fb-hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 640px) {
  .fb-hero-ctas { flex-direction: row; }
  .fb-hero-ctas .btn { flex: 0 0 auto; }
}
@media (min-width: 768px) {
  .fb-hero h1 { font-size: 4rem; }
}
@media (min-width: 1024px) {
  .fb-hero h1 { font-size: 4.5rem; }
}

/* ---------- Ticker (faixas rolantes) ---------- */
.fb-ticker-section {
  background: var(--dark-rose);
  padding: 32px 0;
  overflow: hidden;
}
.fb-ticker-rows { display: flex; flex-direction: column; gap: 16px; }
.fb-ticker-wrap { position: relative; overflow: hidden; }
.fb-ticker-fade {
  position: absolute;
  top: 0; bottom: 0;
  width: 48px;
  z-index: 2;
  pointer-events: none;
}
.fb-ticker-fade-left { left: 0; }
.fb-ticker-fade-right { right: 0; }
@media (min-width: 768px) { .fb-ticker-fade { width: 90px; } }

.fb-ticker-row {
  display: flex;
  gap: 32px;
  white-space: nowrap;
}
.fb-ticker-row span {
  font-size: 1.1rem;
  font-weight: 500;
}
.fb-ticker-dark span { color: var(--blush-light); }
.fb-ticker-gold {
  background: var(--primary-rose);
  padding: 12px 16px;
}
.fb-ticker-gold span { color: var(--white); }

.animate-marquee { animation: fbMarquee 42s linear infinite; }
.animate-marquee-reverse { animation: fbMarqueeReverse 42s linear infinite; }
.animate-marquee:hover, .animate-marquee-reverse:hover { animation-play-state: paused; }
@keyframes fbMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes fbMarqueeReverse { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

/* ---------- Seções genéricas ---------- */
section { padding: 80px 0; }
.bg-soft { background: var(--blush-light); }
.bg-white { background: var(--white); }
.bg-dark { background: var(--dark-rose); color: var(--white); }

h2.section-title {
  font-family: var(--font-serif-elegant);
  font-weight: 700;
  color: var(--primary-rose);
  font-size: 2.25rem;
  text-align: center;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
.bg-dark h2.section-title { color: var(--white); }
.bg-soft h2.section-title { color: var(--primary-rose); }
p.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-brown);
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.6;
}
@media (min-width: 768px) {
  h2.section-title { font-size: 3rem; }
}

/* ---------- Missão ---------- */
.fb-mission p {
  text-align: center;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---------- Estatísticas ---------- */
.fb-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (min-width: 768px) {
  .fb-stats-grid { grid-template-columns: repeat(4, 1fr); }
}
.fb-stat { text-align: center; }
.fb-stat .number {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--primary-rose);
  margin-bottom: 8px;
  font-family: var(--font-serif-elegant);
}
@media (min-width: 768px) {
  .fb-stat .number { font-size: 3.5rem; }
}
.fb-stat .label {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-brown);
}

/* ---------- Benefícios / Pilares ---------- */
.fb-pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .fb-pillars-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .fb-pillars-grid { grid-template-columns: repeat(4, 1fr); } }
.fb-pillar-card {
  background: var(--white);
  border: 2px solid var(--blush-light);
  border-radius: 28px;
  padding: 32px 24px;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s var(--ease);
  box-shadow: 0 4px 12px rgba(169, 107, 102, 0.08);
}
.fb-pillar-card:hover {
  box-shadow: 0 12px 28px rgba(169, 107, 102, 0.15);
  transform: translateY(-4px);
  border-color: var(--primary-rose);
}
.fb-pillar-card .icon { font-size: 2.25rem; margin-bottom: 12px; }
.fb-pillar-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-rose);
  margin: 0 0 8px;
  font-family: var(--font-serif);
}
.fb-pillar-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-brown);
  margin: 0;
}

/* ---------- Resultados / Depoimentos ---------- */
.fb-testimonials-box {
  background: var(--white);
  border-radius: 28px;
  padding: 48px;
  box-shadow: 0 8px 24px rgba(169, 107, 102, 0.1);
  border: 2px solid var(--blush-light);
}
.fb-testimonials-box > h3 {
  font-family: var(--font-serif-elegant);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--primary-rose);
  text-align: center;
  margin: 0 0 32px;
  letter-spacing: -0.01em;
}
.fb-testimonial {
  background: var(--blush-light);
  border-left: none;
  border-radius: 20px;
  padding: 20px 24px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(169, 107, 102, 0.08);
}
.fb-testimonial:last-child { margin-bottom: 0; }
.fb-testimonial .stars { margin-bottom: 8px; color: #facc15; font-size: 1.1rem; }
.fb-testimonial p.quote {
  font-style: italic;
  color: var(--text-brown);
  margin: 0 0 12px;
  line-height: 1.6;
  font-size: 0.95rem;
}
.fb-testimonial p.author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-rose);
  margin: 0;
}

/* ---------- Galeria Antes/Depois (inserida via JS) ---------- */
.fb-gallery-section {
  padding: 64px 0;
  background: var(--blush-light);
}
.fb-gallery-heading {
  text-align: center;
  margin-bottom: 40px;
}
.fb-gallery-heading h2 {
  font-family: var(--font-serif-elegant);
  font-weight: 700;
  font-size: 2.25rem;
  color: var(--primary-rose);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.fb-gallery-heading p {
  font-size: 1.05rem;
  color: var(--text-brown);
  max-width: 640px;
  margin: 0 auto;
}
.fb-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.fb-gallery-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(169, 107, 102, 0.12);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.fb-gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(169, 107, 102, 0.18);
}
.fb-gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.fb-gallery-card figcaption {
  padding: 16px 18px 20px;
  font-size: 0.95rem;
  color: var(--primary-rose);
  text-align: center;
  font-weight: 500;
}
@media (max-width: 640px) {
  .fb-gallery-heading h2 { font-size: 1.85rem; }
}

/* ---------- Sobre Fernanda ---------- */
.fb-about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 768px) { .fb-about-grid { grid-template-columns: repeat(2, 1fr); } }
.fb-about-photo {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(169, 107, 102, 0.15);
}
.fb-about-photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.fb-about-photo-caption {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 24px;
  text-align: center;
  color: var(--white);
}
.fb-about-photo-caption strong {
  display: block;
  font-family: var(--font-serif-elegant);
  font-size: 1.1rem;
}
.fb-about-photo-caption span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
}
.fb-about-text h2 {
  font-family: var(--font-serif-elegant);
  font-weight: 700;
  color: var(--primary-rose);
  font-size: 2.25rem;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}
.fb-about-text p {
  font-size: 1.05rem;
  color: var(--text-brown);
  line-height: 1.7;
  margin: 0 0 20px;
}
.fb-about-checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 8px;
}
.fb-about-checklist div {
  font-weight: 600;
  color: var(--primary-rose);
}
@media (min-width: 768px) {
  .fb-about-text h2 { font-size: 2.75rem; }
}

/* ---------- Jornada ---------- */
.fb-journey-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  position: relative;
}
@media (min-width: 768px) { .fb-journey-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .fb-journey-grid { grid-template-columns: repeat(4, 1fr); } }
.fb-journey-step { position: relative; text-align: center; }
.fb-journey-step .icon { font-size: 2.5rem; margin-bottom: 12px; }
.fb-journey-step h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--primary-rose);
  margin: 0 0 8px;
}
.fb-journey-step p {
  font-size: 0.9rem;
  color: var(--text-brown);
  line-height: 1.5;
  margin: 0;
}
.fb-journey-arrow {
  display: none;
  position: absolute;
  right: -20px;
  top: 24px;
  font-size: 1.5rem;
  color: var(--primary-rose);
}
@media (min-width: 768px) {
  .fb-journey-step:not(:last-child) .fb-journey-arrow { display: block; }
}

/* ---------- Agenda / Cidades ---------- */
.fb-agenda-progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-rose);
}
.fb-agenda-progress-bar {
  width: 100%;
  background: var(--blush-light);
  border-radius: 999px;
  height: 12px;
  overflow: hidden;
  margin-bottom: 32px;
}
.fb-agenda-progress-fill {
  background: var(--primary-rose);
  height: 100%;
  border-radius: 999px;
  width: 73%;
  transition: width 1s;
}
#urgency-banner {
  background: var(--primary-rose);
  color: var(--white);
  padding: 12px 16px;
  text-align: center;
  font-weight: 700;
  border-radius: 12px;
  margin-bottom: 32px;
}
.fb-cities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .fb-cities-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .fb-cities-grid { grid-template-columns: repeat(3, 1fr); } }
.fb-city-card {
  background: var(--blush-light);
  border: 2px solid rgba(169, 107, 102, 0.2);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 4px 12px rgba(169, 107, 102, 0.08);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.fb-city-card:hover { 
  box-shadow: 0 12px 28px rgba(169, 107, 102, 0.15);
  transform: translateY(-4px);
  border-color: var(--primary-rose);
}
.fb-city-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-rose);
  margin: 0 0 4px;
  font-family: var(--font-serif);
}
.fb-city-card .state {
  font-size: 0.85rem;
  color: var(--text-brown);
  margin: 0 0 16px;
}
.fb-city-card .date-info {
  font-size: 0.85rem;
  color: var(--text-brown);
  margin: 0 0 12px;
}
.fb-city-card .vacancy-tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--primary-rose);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 999px;
  margin-bottom: 16px;
}

/* ---------- FAQ ---------- */
.fb-faq-list { display: flex; flex-direction: column; gap: 16px; max-width: 760px; margin: 0 auto; }
.fb-faq-item {
  border: 2px solid var(--blush-light);
  border-radius: 20px;
  overflow: hidden;
}
.fb-faq-question {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  transition: background 0.3s var(--ease);
}
.fb-faq-question:hover { background: var(--blush-light); }
.fb-faq-question h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-rose);
  margin: 0;
}
.fb-faq-question .chevron {
  color: var(--primary-rose);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
  margin-left: 16px;
}
.fb-faq-item.open .fb-faq-question .chevron { transform: rotate(180deg); }
.fb-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease);
  background: var(--blush-light);
  border-top: 0px solid var(--blush-light);
}
.fb-faq-item.open .fb-faq-answer {
  border-top: 1px solid rgba(169, 107, 102, 0.2);
}
.fb-faq-answer p {
  padding: 18px 24px;
  margin: 0;
  color: var(--text-brown);
  line-height: 1.6;
}
.fb-faq-answer a.faq-cta {
  display: inline-block;
  margin: 0 24px 20px;
  background: var(--primary-rose);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: background 0.3s var(--ease);
}
.fb-faq-answer a.faq-cta:hover { background: var(--dark-rose); }

/* ---------- CTA final ---------- */
.fb-final-cta { text-align: center; }
.fb-final-cta p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.fb-final-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  align-items: center;
}
@media (min-width: 640px) {
  .fb-final-cta-buttons { flex-direction: row; }
}

/* ---------- Rodapé ---------- */
footer.fb-footer {
  background: var(--dark-rose);
  color: var(--white);
  padding: 64px 0 40px;
}
.fb-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
@media (min-width: 768px) { .fb-footer-grid { grid-template-columns: repeat(3, 1fr); } }
.fb-footer-grid h4 {
  color: var(--blush-light);
  font-weight: 600;
  margin: 0 0 16px;
}
.fb-footer-grid p, .fb-footer-grid li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}
.fb-footer-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.fb-footer-grid ul a:hover { color: var(--blush-light); }
.fb-footer-social { display: flex; gap: 16px; }
.fb-footer-social a {
  color: rgba(255,255,255,0.7);
  transition: color 0.3s ease;
}
.fb-footer-social a:hover { color: var(--blush-light); }
.fb-footer-social svg { width: 22px; height: 22px; }
.fb-footer-legal {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 32px;
  margin-bottom: 32px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}
.fb-footer-copy {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-script);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.fb-footer-credits {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
}
.fb-footer-credits span {
  font-family: var(--font-sans);
  font-weight: 500;
}
.fb-footer-credits a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s ease, transform 0.3s ease;
}
.fb-footer-credits a:hover {
  color: var(--blush-light);
  transform: scale(1.15);
}
.fb-footer-credits svg {
  width: 100%;
  height: 100%;
  stroke-width: 2.5;
}

/* ---------- Botão flutuante do WhatsApp ---------- */
#whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
  background: var(--whatsapp-green);
  color: var(--white);
  padding: 16px;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
  display: flex;
  transition: transform 0.3s var(--ease);
  animation: fbWhatsappPulse 2s infinite;
}
#whatsapp-float:hover { transform: scale(1.1); }
#whatsapp-float svg { width: 32px; height: 32px; }

#instagram-float {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 50;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: var(--white);
  padding: 16px;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(220, 39, 67, 0.25);
  display: flex;
  transition: transform 0.3s var(--ease);
}
#instagram-float:hover { transform: scale(1.1); }
#instagram-float svg { width: 32px; height: 32px; }

@keyframes fbWhatsappPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---------- Barra de progresso de leitura ---------- */
.fb-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--primary-rose), var(--dark-rose));
  z-index: 60;
  transition: width 0.1s linear;
}

/* ---------- Animação de revelação ao rolar ---------- */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.reveal-on-scroll.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll { opacity: 1; transform: none; transition: none; }
  #whatsapp-float { animation: none; }
  .fb-urgency-bolt { animation: none; }
}

/* ---------- Refinamentos de sombras e espaçamento ---------- */
.fb-pillar-card,
.fb-city-card,
.fb-gallery-card {
  box-shadow: 0 4px 16px rgba(169, 107, 102, 0.1);
}

.fb-pillar-card:hover,
.fb-city-card:hover,
.fb-gallery-card:hover {
  box-shadow: 0 12px 32px rgba(169, 107, 102, 0.15);
}

.fb-testimonials-box {
  box-shadow: 0 8px 24px rgba(169, 107, 102, 0.1);
}

/* Refinamento de espaçamento em seções */
section {
  position: relative;
}

/* Splash de abertura ---------- */
.fb-splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--primary-rose);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.5s var(--ease);
}
.fb-splash.fb-splash-fading { opacity: 0; }
.fb-splash-logo {
  width: 140px;
  height: 140px;
  object-fit: contain;
  animation: fbSplashPulse 1.6s ease-in-out infinite;
}
@keyframes fbSplashPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.85; }
}
@media (prefers-reduced-motion: reduce) {
  .fb-splash-logo { animation: none; }
  .fb-splash { transition: none; }
}
