/* ═══════════════════════════════════════════════
   Estética Maiara Santos – CSS LIGHT THEME v2
   Cream / White + Rose Gold + Blush Pink
   ═══════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  /* Brand colors – light airy palette */
  --gold:        #c9a050;
  --gold-light:  #dbb96a;
  --gold-dark:   #a07c30;
  --rose:        #d4667a;
  --rose-light:  #e8909f;
  --blush:       #f5e6e9;
  --blush-mid:   #ede0df;

  /* Backgrounds */
  --bg:          #faf8f5;
  --bg-alt:      #fff9f7;
  --bg-section:  #f6f0ed;

  /* Text */
  --text-dark:   #2c1a22;
  --text-mid:    #5a3f48;
  --text-muted:  #9a7e86;

  /* Cards */
  --card-bg:     #ffffff;
  --card-border: #ecddd8;

  /* Fonts */
  --ff-serif:    'Cormorant Garamond', Georgia, serif;
  --ff-display:  'Playfair Display', Georgia, serif;
  --ff-sans:     'Jost', system-ui, sans-serif;

  /* Radius */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-xl: 42px;

  /* Shadows */
  --shadow-sm:   0 2px 12px rgba(180, 100, 80, 0.08);
  --shadow-md:   0 6px 30px rgba(160, 80, 60, 0.12);
  --shadow-gold: 0 4px 20px rgba(201, 160, 80, 0.28);

  /* Easing */
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

  --nav-h: 72px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scrollbar-color: var(--gold-light) var(--blush);
  scrollbar-width: thin;
  interpolate-size: allow-keywords;
  overflow-x: hidden;
}

body {
  font-family: var(--ff-sans);
  background: var(--bg);
  color: var(--text-dark);
  min-height: 100dvh;
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul[role="list"] { list-style: none; }
cite { font-style: normal; }
address { font-style: normal; }

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

/* ── SECTION BASE ── */
.section { padding-block: clamp(4rem, 10vw, 7rem); }

.section__header {
  text-align: center;
  margin-block-end: clamp(2.5rem, 6vw, 4rem);
}

.section__eyebrow {
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-block-end: 0.75rem;
}

.section__title {
  font-family: var(--ff-serif);
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--text-dark);
  margin-block-end: 0.85rem;
}

.section__desc {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 52ch;
  margin-inline: auto;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 100vw;
  padding: 0.85rem 1.9rem;
  cursor: pointer;
  border: none;
  transition:
    transform 0.22s var(--ease-spring),
    box-shadow 0.22s var(--ease-smooth),
    background 0.2s;
  white-space: nowrap;
  text-align: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
  color: #fff;
  box-shadow: var(--shadow-gold);
}

.btn--gold:hover, .btn--gold:focus-visible {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 28px rgba(201, 160, 80, 0.45);
}

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

.btn--outline {
  background: transparent;
  color: var(--gold-dark);
  border: 1.5px solid var(--gold);
}

.btn--outline:hover, .btn--outline:focus-visible {
  background: rgba(201, 160, 80, 0.08);
  transform: translateY(-2px);
}

.btn--lg { font-size: 1rem; padding: 1rem 2.5rem; }

.btn--full { width: 100%; }

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s var(--ease-smooth),
    transform 0.6s var(--ease-smooth);
}

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

/* ── NAV ── */
.nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.3s, box-shadow 0.3s;
  background: rgba(250, 248, 245, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav.is-scrolled {
  background: rgba(250, 248, 245, 0.96);
  box-shadow: 0 1px 0 var(--card-border), var(--shadow-sm);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
  gap: 1rem;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.nav__logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-mid);
  transition: color 0.2s;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s var(--ease-smooth);
}

.nav__link:hover { color: var(--gold-dark); }
.nav__link:hover::after { width: 100%; }

.nav__cta { padding: 0.6rem 1.5rem; font-size: 0.85rem; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block-start: var(--nav-h);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.85) saturate(0.9);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(250, 245, 240, 0.82) 0%,
    rgba(240, 225, 220, 0.68) 50%,
    rgba(245, 230, 233, 0.85) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-inline: clamp(1.5rem, 5vw, 3rem);
  padding-block: 4rem 6rem;
  max-width: 780px;
}

.hero__tagline {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose);
  margin-block-end: 1.25rem;
  animation: fadeDown 0.8s var(--ease-smooth) 0.15s both;
}

.hero__title {
  font-family: var(--ff-serif);
  font-size: clamp(3rem, 9vw, 6rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--text-dark);
  margin-block-end: 1.25rem;
  animation: fadeDown 0.8s var(--ease-smooth) 0.3s both;
}

.hero__title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold), var(--rose), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  color: var(--text-mid);
  max-width: 50ch;
  margin-inline: auto;
  margin-block-end: 2rem;
  animation: fadeDown 0.8s var(--ease-smooth) 0.45s both;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-block-end: 3rem;
  animation: fadeDown 0.8s var(--ease-smooth) 0.6s both;
}

.hero__stats {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  border: 1px solid rgba(201, 160, 80, 0.25);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  padding: 1rem 2rem;
  animation: fadeDown 0.8s var(--ease-smooth) 0.75s both;
  box-shadow: var(--shadow-sm);
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.hero__stat strong {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-dark);
  line-height: 1;
}

.hero__stat span {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero__stat-divider {
  width: 1px;
  height: 34px;
  background: rgba(201, 160, 80, 0.3);
  flex-shrink: 0;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  translate: -50% 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 1;
  animation: fadeIn 1s var(--ease-smooth) 1.1s both;
}

.hero__scroll-hint span {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero__scroll-line {
  width: 1px;
  height: 38px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ── SOBRE ── */
.sobre { background: var(--bg-alt); }

.sobre__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.sobre__image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.sobre__image-frame {
  position: relative;
  width: min(320px, 85vw);
  aspect-ratio: 3/4;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(201, 160, 80, 0.25);
  box-shadow: var(--shadow-md), var(--shadow-gold);
}

.sobre__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 20% top;
}

.sobre__photo-fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--blush) 0%, var(--blush-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sobre__photo-fallback span {
  font-family: var(--ff-serif);
  font-size: 5rem;
  font-weight: 500;
  background: linear-gradient(135deg, var(--gold-light), var(--rose));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.05em;
}

.sobre__badge {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  translate: -50% 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 160, 80, 0.3);
  border-radius: 100vw;
  padding: 0.5rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold-dark);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

.sobre__badge svg { color: var(--gold-dark); }

.sobre__accent-circle {
  position: absolute;
  inset-block-start: -1.5rem;
  inset-inline-end: -0.75rem;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 1.5px dashed rgba(201, 160, 80, 0.3);
  animation: spin 20s linear infinite;
  pointer-events: none;
}

.sobre__accent-circle--2 {
  width: 70px;
  height: 70px;
  inset-block-start: auto;
  inset-block-end: 3rem;
  inset-inline-end: auto;
  inset-inline-start: -1rem;
  animation-direction: reverse;
  animation-duration: 14s;
  border-color: rgba(212, 102, 122, 0.25);
}

.sobre__lead {
  font-family: var(--ff-serif);
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  color: var(--text-dark);
  line-height: 1.5;
  margin-block-end: 1rem;
}

.sobre__body {
  color: var(--text-mid);
  margin-block-end: 1.75rem;
  line-height: 1.7;
}

.sobre__features {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-block-end: 2rem;
}

.sobre__features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-mid);
}

.sobre__feature-icon {
  color: var(--rose);
  font-size: 0.6rem;
  flex-shrink: 0;
}

/* ── SERVIÇOS ── */
.servicos { background: var(--bg-section); }

.servicos__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

/* ── CARD ── */
.card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
  container-type: inline-size;
}

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

.card--featured {
  border-color: rgba(201, 160, 80, 0.4);
  box-shadow: var(--shadow-gold);
}

.card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100vw;
  padding: 0.3rem 0.9rem;
}

.card__media {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

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

.card:hover .card__img { transform: scale(1.04); }

.card__media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(245, 230, 233, 0.4));
}

.card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.card__cat {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
}

.card__title {
  font-family: var(--ff-serif);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--text-dark);
}

.card__desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold-dark);
  margin-block-start: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: var(--ff-sans);
  transition: gap 0.2s, color 0.2s;
}

.card__link:hover { gap: 0.75rem; color: var(--rose); }

/* ── DIFERENCIAIS ── */
.diferenciais { background: var(--blush); }

.diferenciais__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.diferencial {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: clamp(1.25rem, 4vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.3s, transform 0.3s var(--ease-spring), box-shadow 0.3s;
}

.diferencial:hover {
  border-color: rgba(201, 160, 80, 0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.diferencial__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--blush);
  border: 1px solid rgba(212, 102, 122, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose);
}

.diferencial__title {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-dark);
}

.diferencial__desc {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ── DEPOIMENTOS ── */
.depoimentos { background: var(--bg-alt); }

.depoimentos__track {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.depoimento {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
}

.depoimento:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.depoimento__stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.depoimento__text {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.65;
}

.depoimento__author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-block-start: 0.25rem;
}

.depoimento__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--rose));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
}

.depoimento__name {
  display: block;
  font-weight: 500;
  color: var(--text-dark);
  font-size: 0.9rem;
}

.depoimento__role {
  font-size: 0.77rem;
  color: var(--text-muted);
  margin-block-start: 0.1rem;
}

/* ── AGENDAR-CTA (removido, substutuido por form-section) ── */

/* ── CONTATO / MAPA ── */
.contato { background: var(--bg); }

.contato__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contato__info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-block-end: 2rem;
}

.contato__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: var(--text-mid);
}

.contato__item svg {
  flex-shrink: 0;
  color: var(--gold-dark);
  margin-block-start: 2px;
}

.contato__item strong {
  display: block;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-block-end: 0.2rem;
}

.contato__item span {
  font-size: 0.9rem;
  line-height: 1.5;
}

.contato__item--link {
  transition: color 0.2s;
}

.contato__item--link:hover { color: var(--gold-dark); }
.contato__item--link:hover svg { color: var(--rose); }

.map-frame {
  width: 100%;
  height: 340px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-md);
}

.map-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-block-start: 0.85rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold-dark);
  transition: color 0.2s;
}

.map-cta:hover { color: var(--rose); }

/* ── FORMULÁRIO INLINE (seção visível) ── */
.form-section { background: var(--blush-mid); }

.form-section__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

.form-section__header { text-align: center; }

.booking-form {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 5vw, 3rem);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
  max-width: 680px;
  margin-inline: auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

.form-input {
  font-family: var(--ff-sans);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--bg);
  border: 1.5px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder { color: var(--text-muted); }

.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 160, 80, 0.15);
}

.form-input:user-invalid {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(212, 102, 122, 0.12);
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239a7e86' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
  field-sizing: content;
}

.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}

/* ── FOOTER ── */
.footer {
  background: var(--text-dark);
  padding-block: 3rem 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-block-end: 2.5rem;
  padding-block-end: 2.5rem;
  border-block-end: 1px solid rgba(255,255,255,0.08);
}

.footer__brand {}

.footer__logo {
  display: inline-block;
  margin-block-end: 1rem;
  background: white;
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.75rem;
}

.footer__logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer__tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  max-width: 32ch;
  line-height: 1.6;
  margin-block-start: 0.75rem;
}

.footer__col-title {
  font-family: var(--ff-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--gold-light);
  margin-block-end: 1rem;
  letter-spacing: 0.02em;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  list-style: none;
}

.footer__links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer__links a:hover { color: var(--gold-light); }

.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-block-start: 1rem;
}

.footer__social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.footer__social-link:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(201,160,80,0.1);
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
}

.footer__copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

.footer__address {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
}

@media (min-width: 640px) {
  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

/* ── ANIMATIONS ── */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-18px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1; transform: scaleY(1.15); }
}

@keyframes spin {
  to { rotate: 360deg; }
}

/* ── MOBILE NAV (no burger – only logo + CTA) ── */
@media (max-width: 640px) {
  .nav__menu {
    display: none;
  }

  .nav__cta {
    padding: 0.55rem 1.2rem;
    font-size: 0.82rem;
    flex-shrink: 0;
    white-space: nowrap;
  }
}

/* ── TABLET ── */
@media (min-width: 640px) {
  .servicos__grid { grid-template-columns: 1fr 1fr; }
  .card--featured { grid-column: 1 / -1; }
  .card--featured .card__media { aspect-ratio: 16/7; }
  .depoimentos__track { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr 1fr; }
}

/* ── DESKTOP ── */
@media (min-width: 768px) {
  .sobre__grid { grid-template-columns: 1fr 1.2fr; gap: 5rem; }
  .contato__grid { grid-template-columns: 1fr 1.3fr; gap: 4rem; }
  .depoimentos__track { grid-template-columns: 1fr 1fr 1fr; }
  .agendar-cta__inner { flex-direction: row; text-align: left; justify-content: space-between; }
  .agendar-cta__desc { margin-inline: 0; }
  .map-frame { height: 400px; }
}

/* ── WIDE ── */
@media (min-width: 1024px) {
  .servicos__grid { grid-template-columns: 1fr 1fr 1fr; }
  .card--featured { grid-column: auto; }
  .card--featured .card__media { aspect-ratio: 16/9; }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
