/* =========================================================
   SALÃO DA ANDREIA — FOLHA DE ESTILOS
   Estrutura deste arquivo:
   1. Reset & variáveis (design tokens)
   2. Tipografia utilitária
   3. Componentes globais (botões, contêiner, títulos)
   4. Cabeçalho / navegação
   5. Hero
   6. Divisor decorativo (elemento assinatura)
   7. Sobre
   8. Serviços / preços
   9. Localização
   10. CTA final
   11. Rodapé + botão flutuante
   12. Animações de rolagem
   13. Responsividade
========================================================= */

/* ---------- 1. RESET & VARIÁVEIS ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Paleta — roxo profundo como base + dourado como destaque */
  --purple-950: #1E0134;
  --purple-900: #2E0249;
  --purple-800: #3B1443;
  --purple-700: #4E1F5C;
  --purple-100: #F1E9F5;

  --gold: #D4AF37;       /* dourado metálico — usado em textos e ícones */
  --gold-bright: #F4CE14;/* amarelo dourado vibrante — usado nos CTAs */
  --gold-soft: #F7E7B4;

  --cream: #FBF7F1;      /* fundo claro das seções alternadas */
  --ink: #241226;        /* texto escuro sobre fundo claro */
  --ink-soft: #6B5B71;   /* texto secundário sobre fundo claro */

  --white: #FFFFFF;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Jost', 'Segoe UI', sans-serif;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 32px;

  --shadow-soft: 0 20px 45px -20px rgba(46, 2, 73, 0.35);
  --shadow-gold: 0 12px 30px -10px rgba(212, 175, 55, 0.55);

  --transition: 0.35s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

::selection { background: var(--gold); color: var(--purple-950); }

/* Foco visível para acessibilidade de teclado */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 24px;
}

/* ---------- 2. TIPOGRAFIA UTILITÁRIA ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
  position: relative;
  padding-left: 34px;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 24px; height: 1px;
  background: var(--gold);
  transform: translateY(-50%);
}
.eyebrow--light { color: var(--gold-bright); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--purple-900);
  line-height: 1.15;
  margin-bottom: 18px;
}
.section-title--light { color: var(--cream); }

.section-subtitle {
  max-width: 620px;
  margin: 0 auto 56px;
  text-align: center;
  color: rgba(251, 247, 241, 0.75);
  font-weight: 300;
  font-size: 1.02rem;
}
/* Variante para uso sobre fundos claros (ex: seção Galeria) */
.section-subtitle--dark { color: var(--ink-soft); }

.script {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-bright);
  font-weight: 500;
}

/* ---------- 3. COMPONENTES GLOBAIS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 14px 30px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

.btn--gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--purple-950);
  box-shadow: var(--shadow-gold);
  font-weight: 600;
}
.btn--gold:hover { box-shadow: 0 16px 34px -8px rgba(212, 175, 55, 0.65); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn--ghost:hover { background: rgba(255,255,255,0.08); border-color: var(--gold-bright); }

.btn--outline-gold {
  background: transparent;
  color: var(--purple-900);
  border-color: var(--gold);
  margin-top: 8px;
}
.btn--outline-gold:hover { background: var(--gold); color: var(--purple-950); }

.btn--sm { padding: 10px 22px; font-size: 0.85rem; }
.btn--lg { padding: 17px 36px; font-size: 1rem; }

/* ---------- 4. CABEÇALHO / NAVEGAÇÃO ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding-block: 18px;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.header.is-scrolled {
  background: rgba(30, 1, 52, 0.92);
  backdrop-filter: blur(10px);
  padding-block: 12px;
  box-shadow: 0 10px 30px -15px rgba(0,0,0,0.5);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo { display: flex; align-items: center; gap: 12px; }
.logo__mark {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--purple-950);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.logo__text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  font-weight: 600;
}
.logo__text em { color: var(--gold-bright); font-style: italic; }
.logo--footer .logo__text { color: var(--white); }

.nav__list { display: flex; gap: 40px; }
.nav__link {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 400;
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold-bright);
  transition: width var(--transition);
}
.nav__link:hover { color: var(--gold-bright); }
.nav__link:hover::after { width: 100%; }

.header__actions { display: flex; align-items: center; gap: 18px; }
.header-cta { display: inline-flex; }

/* Hambúrguer */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px; height: 34px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.hamburger span {
  width: 100%; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), background var(--transition);
}
.hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--gold-bright); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--gold-bright); }

.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: min(78%, 320px);
  height: 100vh;
  background: var(--purple-950);
  box-shadow: -20px 0 50px rgba(0,0,0,0.4);
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(.4,0,.2,1);
  z-index: 1100;
  padding: 100px 32px 32px;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu__list { display: flex; flex-direction: column; gap: 28px; }
.mobile-menu__link {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
}
.mobile-menu__cta { margin-top: 12px; width: fit-content; }

/* ---------- 5. HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 80px;
  background: radial-gradient(ellipse 120% 90% at 75% 15%, var(--purple-700), var(--purple-900) 55%, var(--purple-950) 100%);
  overflow: hidden;
}

.hero__blob {
  position: absolute;
  top: -10%; right: -10%;
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(244, 206, 20, 0.25), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}

/* Fios de cabelo estilizados em SVG — reforça a identidade "capilar" no hero */
.hero__strands {
  position: absolute;
  right: 4%;
  top: 0;
  width: 45%;
  height: 100%;
  opacity: 0.55;
  pointer-events: none;
}
.hero__strands svg { width: 100%; height: 100%; }
.strand {
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}
.strand--1 { stroke: var(--gold-bright); opacity: 0.55; }
.strand--2 { stroke: var(--gold); opacity: 0.4; }
.strand--3 { stroke: var(--gold-soft); opacity: 0.3; }

.hero__inner { position: relative; z-index: 2; max-width: 680px; }

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 22px;
}

.hero__subtitle {
  color: rgba(251, 247, 241, 0.78);
  font-size: 1.08rem;
  font-weight: 300;
  max-width: 520px;
  margin-bottom: 36px;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 18px; margin-bottom: 56px; }

.hero__stats { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat__number {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold-bright);
  font-weight: 600;
}
.stat__label {
  font-size: 0.8rem;
  color: rgba(251, 247, 241, 0.65);
  letter-spacing: 0.03em;
}
.stat__divider { width: 1px; height: 34px; background: rgba(255,255,255,0.2); }

.scroll-cue {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 20px;
  z-index: 2;
}
.scroll-cue span {
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 8px;
  background: var(--gold-bright);
  border-radius: 3px;
  transform: translateX(-50%);
  animation: scrollCue 1.8s ease-in-out infinite;
}
@keyframes scrollCue {
  0% { opacity: 1; top: 8px; }
  70% { opacity: 0; top: 22px; }
  100% { opacity: 0; top: 22px; }
}

/* ---------- 6. DIVISOR DECORATIVO (elemento assinatura) ---------- */
.divider { line-height: 0; background: var(--purple-950); }
.divider svg {
  width: 100%; height: 40px;
  display: block;
}
.divider path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  opacity: 0.8;
}

/* ---------- 7. SOBRE ---------- */
.about { padding: 110px 0; background: var(--cream); }

.about__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}

.portrait-frame {
  position: relative;
  width: 100%;
  max-width: 380px;
}
.portrait-frame__photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--purple-800), var(--purple-950));
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.portrait-frame__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(244,206,20,0.25), transparent 60%);
}
.portrait-frame__photo i {
  font-size: 4rem;
  color: var(--gold-bright);
  opacity: 0.85;
  z-index: 1;
}
.portrait-frame__badge {
  position: absolute;
  bottom: -18px; left: -18px;
  background: var(--gold-bright);
  color: var(--purple-950);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-gold);
}

/* Remove o espaçamento duplo quando há duas seções "Sobre" juntas */
.about + .about {
  padding-top: 0;
}

.about__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--purple-800);
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin: 20px 0 24px;
}
.about__quote i { color: var(--gold); margin-right: 8px; font-size: 0.9rem; }

.about__text { color: var(--ink-soft); margin-bottom: 24px; max-width: 540px; }

.about__list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }
.about__list li { display: flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 400; }
.about__list i { color: var(--gold); }

/* ---------- 7B. GALERIA (ABAS + FOTOS DO ESPAÇO) ---------- */
.gallery {
  padding: 110px 0;
  background: var(--purple-100);
  text-align: center;
}

/* Abas */
.gallery__tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 44px;
}
.gallery__tab {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--purple-800);
  background: var(--white);
  border: 1px solid rgba(59, 20, 67, 0.15);
  padding: 11px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.gallery__tab:hover { transform: translateY(-2px); border-color: var(--gold); }
.gallery__tab.is-active {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--purple-950);
  border-color: transparent;
  font-weight: 600;
  box-shadow: var(--shadow-gold);
}

/* Painéis */
.gallery__panel {
  display: none;
  text-align: left;
}
.gallery__panel.is-active {
  display: block;
  animation: fadeInPanel 0.5s ease;
}
@keyframes fadeInPanel {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--white);
}
.gallery-item__img {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  font-size: 2rem;
  color: var(--gold-bright);
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.gallery-item:hover .gallery-item__img { transform: scale(1.05); }

/* Gradientes de placeholder — trocar por foto real definindo background-image
   inline (ex: style="background-image:url('images/recepcao-1.jpg')") ou
   substituindo a div por uma tag <img>. */
.gallery-item__img--1 { background-image: linear-gradient(160deg, var(--purple-800), var(--purple-950)); }
.gallery-item__img--2 { background-image: linear-gradient(160deg, var(--purple-700), var(--purple-900)); }
.gallery-item__img--3 { background-image: linear-gradient(160deg, #4A1758, var(--purple-950)); }
.gallery-item__img--4 { background-image: linear-gradient(160deg, var(--purple-900), #170027); }

.gallery-item figcaption {
  padding: 16px 18px;
  font-size: 0.92rem;
  color: var(--ink);
  font-weight: 500;
  border-top: 3px solid var(--gold);
}

/* ---------- 8. SERVIÇOS / PREÇOS ---------- */
.pricing {
  padding: 110px 0;
  background: linear-gradient(180deg, var(--purple-950), var(--purple-900));
  text-align: center;
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  text-align: left;
}

.price-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}
.price-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  background: rgba(255,255,255,0.06);
}

.price-card--featured {
  background: linear-gradient(160deg, rgba(244,206,20,0.12), rgba(255,255,255,0.04));
  border-color: var(--gold);
}
.price-card__tag {
  position: absolute;
  top: -13px; right: 20px;
  background: var(--gold-bright);
  color: var(--purple-950);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: 999px;
  text-transform: uppercase;
}

.price-card__icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(244,206,20,0.12);
  color: var(--gold-bright);
  font-size: 1.2rem;
  margin-bottom: 18px;
}
.price-card__title {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.price-card__desc {
  color: rgba(251,247,241,0.62);
  font-size: 0.88rem;
  font-weight: 300;
  margin-bottom: 22px;
  min-height: 42px;
}
.price-card__value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold-bright);
  margin-bottom: 18px;
}
.price-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 16px;
  width: 100%;
  transition: color var(--transition), gap var(--transition);
}
.price-card__cta i { font-size: 0.75rem; transition: transform var(--transition); }
.price-card__cta:hover { color: var(--gold-bright); }
.price-card__cta:hover i { transform: translateX(4px); }

/* ---------- 9. LOCALIZAÇÃO ---------- */
.location { padding: 110px 0; background: var(--cream); }
.location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.location__text { color: var(--ink-soft); margin-bottom: 30px; max-width: 460px; }

.info-list { display: flex; flex-direction: column; gap: 24px; margin-bottom: 34px; }
.info-list li { display: flex; gap: 16px; align-items: flex-start; }
.info-list i {
  width: 42px; height: 42px;
  flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--purple-100);
  color: var(--purple-800);
  font-size: 1rem;
}
.info-list strong { display: block; color: var(--purple-900); margin-bottom: 4px; font-family: var(--font-display); font-weight: 600;}

/* Transforma as linhas de texto em flexbox para alinhar ícone e texto perfeitamente */
.info-list span {
  display: flex;
  align-items: center;
  gap: 8px; /* Espaço entre o ícone e o texto */
  margin-bottom: 6px; /* Dá um leve respiro entre as linhas de telefone */
}

/* Remove o formato de "bola grande" apenas dos ícones pequenos que estão junto ao texto */
.info-list span i {
  width: auto;
  height: auto;
  background: transparent;
  display: inline-flex;
}

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 6px solid var(--white);
  aspect-ratio: 4 / 3.4;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* ---------- 10. CTA FINAL ---------- */
.cta-final {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--purple-900), var(--purple-950));
  position: relative;
}
.cta-final__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  color: var(--white);
  margin-bottom: 16px;
}
.cta-final__text {
  color: rgba(251,247,241,0.72);
  max-width: 480px;
  margin: 0 auto 34px;
  font-weight: 300;
}

/* ---------- 11. RODAPÉ + BOTÃO FLUTUANTE ---------- */
.footer { background: var(--purple-950); padding-top: 80px; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand p { color: rgba(251,247,241,0.55); margin-top: 14px; font-size: 0.9rem; max-width: 220px; }

.footer__col h4 {
  font-family: var(--font-display);
  color: var(--gold-bright);
  font-size: 1rem;
  margin-bottom: 18px;
  font-weight: 600;
}
.footer__col a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(251,247,241,0.65);
  font-size: 0.9rem;
  margin-bottom: 12px;
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--gold-bright); }

.footer__socials { display: flex; gap: 12px; }
.footer__socials a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: var(--white);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.footer__socials a:hover {
  background: var(--gold-bright);
  color: var(--purple-950);
  transform: translateY(-3px);
}

.footer__bottom {
  text-align: center;
  padding: 26px 0;
  color: rgba(251,247,241,0.45);
  font-size: 0.82rem;
}

.float-whatsapp {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #1ebe57);
  color: var(--white);
  display: grid; place-items: center;
  font-size: 1.6rem;
  box-shadow: 0 12px 28px -8px rgba(37, 211, 102, 0.6);
  z-index: 900;
  animation: floatPulse 2.6s ease-in-out infinite;
}

/* Estilo do Subtítulo 2 transformado em botão fantasma */
.section-subtitle2 {
  display: block;
  margin-top: 64px; 
  margin-bottom: 0;
  text-align: center; 
  color: rgba(251, 247, 241, 0.9);
  font-size: 1rem;
  font-weight: 400;
  max-width: max-content;
  margin-inline: auto; 
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
}

.section-subtitle2:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold);
  color: var(--gold-bright);
  transform: translateY(-4px);
}

/* Alinhamento dos botões na seção final */
.cta-final__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* Responsividade extra */
@media (max-width: 720px) {
  .section-subtitle2 {
    margin-top: 48px;
    font-size: 0.9rem;
    padding: 12px 24px;
  }
  
  .cta-final__actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta-final__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@keyframes floatPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

/* ---------- 12. ANIMAÇÕES DE ROLAGEM ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Respeita usuários que preferem menos movimento */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .float-whatsapp, .scroll-cue span { animation: none; }
}

/* ---------- 13. RESPONSIVIDADE ---------- */

/* Tablets */
@media (max-width: 960px) {
  .pricing__grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid { grid-template-columns: 1fr; gap: 50px; }
  .portrait-frame { margin-inline: auto; }
  .location__grid { grid-template-columns: 1fr; gap: 44px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .hero__strands { width: 60%; opacity: 0.35; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
}

/* Celulares */
@media (max-width: 720px) {
  .nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }

  .hero { padding-top: 110px; text-align: left; }
  .hero__title { font-size: clamp(2rem, 9vw, 2.6rem); }
  .hero__stats { gap: 20px; }
  .hero__strands { display: none; }

  .about, .pricing, .location, .gallery { padding: 80px 0; }
  .pricing__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__tabs { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 6px; }
  .gallery__tab { flex-shrink: 0; }

  .footer__grid { grid-template-columns: 1fr; text-align: left;}
  .footer__brand p { max-width: 100%; }

  .float-whatsapp { width: 52px; height: 52px; font-size: 1.4rem; bottom: 18px; right: 18px; }

  .section-subtitle { margin-bottom: 40px; }

  .about + .about {
    padding-top: 0;
  }
}

@media (max-width: 420px) {
  .container { padding-inline: 18px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
}


/* =========================================================
   ESTILOS DA IMAGEM DO LOGO
========================================================= */
.logo__img {
  max-width: 100%; /* Garante que a imagem nunca ultrapasse o limite da tela */
  height: auto;    /* Mantém a proporção da imagem */
  max-height: 60px; /* Define uma altura máxima para não desalinhar o menu (ajuste este valor conforme preferir) */
  object-fit: contain;
  display: block;
}

/* Caso queira o logo um pouco maior no rodapé (Opcional) */
.logo--footer .logo__img {
  max-height: 80px; 
}

.avaliation-container{
  padding-top: 2rem;
  padding-bottom: 2rem;
}