/* =========================================
   FABIANE G. FOTOGRAFIA — styles.css
   ========================================= */

/* ---- CSS Variables ---- */
:root {
  --bg:              #fafaf8;
  --text:            #1a1a1a;
  --accent:          #c8a882;
  --accent-dark:     #6b4c2a;
  --accent-light:    #f0e6d8;
  --secondary-bg:    #f0ece6;
  --border:          rgba(26, 26, 26, 0.12);
  --border-accent:   rgba(200, 168, 130, 0.5);
  --white:           #ffffff;
  --dark:            #141412;
  --muted:           rgba(26, 26, 26, 0.5);

  --font-display:    'Cormorant Garamond', Georgia, serif;
  --font-body:       'Inter', sans-serif;

  --ease-smooth:     cubic-bezier(0.4, 0, 0.2, 1);
  --transition:      0.6s var(--ease-smooth);
  --header-h:        76px;

  --ring:            rgba(26, 26, 26, 0.12) 0px 0px 0px 1px;
  --ring-accent:     rgba(200, 168, 130, 0.6) 0px 0px 0px 1.5px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: auto;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Match footer dark so overscroll bounce shows dark, not white */
  background-color: #0e0d0b;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  font-feature-settings: "calt";
  line-height: 1.6;
}

img { display: block; max-width: 100%; height: auto; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; font-feature-settings: "calt"; }

/* ---- Page wrapper — clips horizontal overflow without breaking position:fixed ---- */
.page-wrapper {
  overflow-x: hidden;
}

/* ---- Container ---- */
.container {
  width: 90%;
  max-width: 1240px;
  margin-inline: auto;
}

/* ---- Section base ---- */
.section { padding: 120px 0; }

.section__header {
  text-align: center;
  margin-bottom: 64px;
}

.section__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  font-feature-settings: "calt";
}

.section__title {
  font-family: var(--font-body);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 0.92;
  color: var(--text);
  letter-spacing: -0.03em;
  font-feature-settings: "calt";
  margin-bottom: 16px;
}

.section__subheading {
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted);
  max-width: 480px;
  margin-inline: auto;
  line-height: 1.65;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  border-radius: 9999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: -0.01em;
  font-feature-settings: "calt";
  transition: transform 0.25s var(--ease-smooth), background 0.3s, color 0.3s, box-shadow 0.3s;
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover  { transform: scale(1.05); }
.btn:active { transform: scale(0.95); }

.btn--dark {
  background: var(--text);
  color: var(--white);
  box-shadow: var(--ring);
}
.btn--dark:hover { background: #333; }

.btn--ghost {
  background: transparent;
  color: var(--text);
  box-shadow: var(--ring);
}
.btn--ghost:hover { background: var(--secondary-bg); }

.btn--accent {
  background: var(--accent);
  color: var(--accent-dark);
  font-weight: 700;
}
.btn--accent:hover { background: #d4b894; }

.btn--outline {
  background: transparent;
  color: var(--text);
  box-shadow: var(--ring);
}
.btn--outline:hover {
  box-shadow: var(--ring-accent);
  color: var(--accent-dark);
}

/* Contato social buttons — dourado */
.btn--contato-wa {
  background: var(--accent);
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 1rem;
  padding: 18px 40px;
}
.btn--contato-wa:hover { background: #d4b894; }

.btn--contato-ig {
  background: transparent;
  color: var(--white);
  box-shadow: rgba(200,168,130,0.4) 0px 0px 0px 1.5px;
  font-size: 1rem;
  padding: 18px 40px;
}
.btn--contato-ig:hover {
  background: rgba(200,168,130,0.1);
  box-shadow: rgba(200,168,130,0.7) 0px 0px 0px 1.5px;
  color: var(--accent);
}

.btn-social-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* =========================================
   FLOATING CTA BAR (desktop) — bottom-right horizontal
   ========================================= */
.cta-bar {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 800;
  display: flex;
  align-items: center;
}

.cta-bar__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--accent-dark);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  padding: 14px 24px;
  border-radius: 9999px;
  transition: transform 0.25s var(--ease-smooth), background 0.3s;
  box-shadow: rgba(200,168,130,0.4) 0 8px 28px, rgba(0,0,0,0.12) 0 4px 12px;
  white-space: nowrap;
}

.cta-bar__btn:hover  { transform: scale(1.05); background: #d4b894; }
.cta-bar__btn:active { transform: scale(0.95); }

.cta-bar__icon-wa {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

@media (max-width: 1100px) {
  .cta-bar { display: none; }
}

/* =========================================
   MOBILE STICKY CTA
   ========================================= */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  opacity: 0;
  pointer-events: none;
  z-index: 800;
  background: var(--accent);
  color: var(--accent-dark);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: -0.01em;
  padding: 16px 32px;
  border-radius: 9999px;
  align-items: center;
  gap: 10px;
  box-shadow: rgba(200,168,130,0.4) 0 8px 32px, rgba(0,0,0,0.15) 0 4px 16px;
  transition: transform 0.4s var(--ease-smooth), opacity 0.4s var(--ease-smooth), background 0.3s;
  white-space: nowrap;
}

.mobile-cta.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-cta:hover  { transform: translateX(-50%) scale(1.04); }
.mobile-cta:active { transform: translateX(-50%) scale(0.97); }

.mobile-cta__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

@media (max-width: 1100px) {
  .mobile-cta { display: inline-flex; }
}

/* =========================================
   PHOTO LABELS
   ========================================= */
.sobre__photo-label,
.servico-card__photo-label,
.portfolio__photo-label {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(200, 168, 130, 0.92);
  color: var(--accent-dark);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 9999px;
  z-index: 10;
  pointer-events: none;
  backdrop-filter: blur(4px);
}

/* Hero photo label — centered */
.hero__photo-label {
  position: absolute;
  top: 28%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(200, 168, 130, 0.92);
  color: var(--accent-dark);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 9999px;
  z-index: 10;
  pointer-events: none;
  backdrop-filter: blur(4px);
  white-space: nowrap;
}

.sobre__image-wrap { position: relative; }
.sobre__photo-label { z-index: 2; }

.servico-card__photo-label { top: 16px; left: 16px; }

.portfolio__photo-label {
  top: 8px;
  left: 8px;
  font-size: 0.6rem;
  padding: 4px 10px;
}

/* =========================================
   HEADER
   ========================================= */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--header-h);
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.header.scrolled {
  background: rgba(250, 250, 248, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: rgba(26,26,26,0.08) 0 1px 0;
}

/* ---- Inner ---- */
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 5%;
  max-width: 1240px;
  margin: 0 auto;
}

/* ---- Logo ---- */
.header__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.01em;
}
.header__logo em {
  font-style: italic;
  color: var(--accent);
  margin-left: 2px;
}

/* ---- Desktop nav ---- */
.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__nav-link {
  font-weight: 500;
  font-size: 0.825rem;
  color: var(--text);
  position: relative;
  transition: color 0.3s;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width 0.3s ease;
  border-radius: 9999px;
}
.header__nav-link:hover::after { width: 100%; }

.header__nav-link--cta {
  background: var(--accent);
  color: var(--accent-dark) !important;
  padding: 9px 20px;
  border-radius: 9999px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}
.header__nav-link--cta::after  { display: none; }
.header__nav-link--cta:hover   { transform: scale(1.05); background: #d4b894; }
.header__nav-link--cta:active  { transform: scale(0.95); }

/* ---- Hamburger — hidden on desktop ---- */
.header__hamburger {
  display: none;
}

/* =========================================
   HEADER — MOBILE  (≤860px)
   ========================================= */
@media (max-width: 860px) {

  /* Header always has solid bg on mobile (hero is light) */
  .header {
    background: rgba(250, 250, 248, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: rgba(26,26,26,0.07) 0 1px 0;
  }

  .header__inner {
    padding: 0 20px;
  }

  /* Nav: hidden drawer */
  .header__nav {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    background: rgba(250, 250, 248, 0.99);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    border-bottom: 1px solid var(--border);
    z-index: 899;
  }
  .header__nav.open { max-height: 460px; }

  .header__nav-link {
    display: block;
    color: var(--text) !important;
    padding: 15px 24px;
    font-size: 1rem;
    width: 100%;
    border-bottom: 1px solid var(--border);
  }
  .header__nav-link:last-child { border-bottom: none; }
  .header__nav-link::after { display: none; }

  .header__nav-link--cta {
    background: none;
    border-radius: 0;
    padding: 15px 24px;
    font-weight: 700;
    color: var(--accent-dark) !important;
  }

  /* Hamburger button */
  .header__hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--text);
    flex-shrink: 0;
    position: relative;
    z-index: 901;
    /* no background, no border — just the icon */
  }

  /* Icon toggle — use SVG size directly */
  .header__hamburger svg {
    width: 22px;
    height: 22px;
    display: block;
    pointer-events: none;
  }

  .header__hamburger .icon-x    { display: none; }
  .header__hamburger .icon-menu { display: block; }

  .header__hamburger.open .icon-menu { display: none; }
  .header__hamburger.open .icon-x    { display: block; }
}

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  min-height: 100dvh;
  background: var(--bg);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  width: 90%;
  max-width: 1240px;
  margin-inline: auto;
  padding: calc(var(--header-h) + 48px) 0 80px;
}

.hero__left {
  display: flex;
  flex-direction: column;
}

.hero__eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-feature-settings: "calt";
}

.hero__headline {
  font-family: var(--font-body);
  font-size: clamp(3rem, 6.5vw, 6rem);
  font-weight: 900;
  line-height: 0.88;
  color: var(--text);
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  font-feature-settings: "calt";
}

.hero__headline em {
  font-style: italic;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.06em;
  color: var(--accent-dark);
  letter-spacing: -0.02em;
}

.hero__subline {
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.hero__stat { display: flex; flex-direction: column; gap: 2px; }

.hero__stat-num {
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.03em;
  font-feature-settings: "calt";
}

.hero__stat-label {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.hero__stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
  flex-shrink: 0;
}

.hero__right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__image-pill {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3/4;
  border-radius: 9999px;
  overflow: hidden;
  box-shadow: var(--ring);
  position: relative;
}

.hero__bg {
  position: absolute;
  inset: -15%;
  background-image: url('https://images.unsplash.com/photo-1606216794074-735e91aa2c92?w=1200');
  background-size: cover;
  background-position: center center;
  will-change: transform;
}

.hero__image-tag {
  position: absolute;
  bottom: 28px;
  left: -12px;
  background: var(--white);
  border-radius: 9999px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: rgba(26,26,26,0.14) 0 8px 24px, var(--ring);
  white-space: nowrap;
}

.hero__image-tag svg { width: 14px; height: 14px; color: var(--accent); flex-shrink: 0; }

.hero__scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-size: 0.63rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.45; }
  50%       { transform: translateX(-50%) translateY(7px); opacity: 1; }
}

/* Hero mobile */
@media (max-width: 860px) {
  .hero {
    min-height: 100dvh;
    align-items: flex-start;
  }

  .hero__layout {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: calc(var(--header-h) + 28px);
    padding-bottom: 100px;
    gap: 32px;
  }

  .hero__right {
    order: -1;
  }

  .hero__image-pill {
    max-width: min(340px, 82vw);
    aspect-ratio: 1/1;
    margin-inline: auto;
  }

  .hero__image-tag {
    left: 50%;
    transform: translateX(20px);
    bottom: -12px;
  }

  .hero__subline { margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .hero__stats   { justify-content: center; gap: 16px; }
  .hero__scroll-hint { display: none; }
}

@media (max-width: 480px) {
  .hero__headline { font-size: 2.8rem; }
  .hero__image-pill { max-width: min(300px, 88vw); }
  .hero__stats { gap: 12px; }
  .hero__stat-num { font-size: 1.2rem; }
  .hero__stat-divider { height: 24px; }
}

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

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

.sobre__image-wrap { position: relative; }

.sobre__photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 30px;
  position: relative;
  z-index: 1;
  box-shadow: var(--ring);
}

.sobre__image-deco {
  position: absolute;
  bottom: -18px;
  right: -18px;
  width: 65%;
  height: 65%;
  border: 2px solid var(--accent);
  border-radius: 30px;
  z-index: 0;
  opacity: 0.45;
}

.sobre__text .section__eyebrow { text-align: left; }
.sobre__text .section__title   { text-align: left; }
.sobre__text .section__subheading {
  text-align: left;
  margin-inline: 0;
  margin-bottom: 20px;
  font-weight: 500;
  color: var(--accent-dark);
}

.sobre__body {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 16px;
  color: rgba(26,26,26,0.72);
}

.sobre__badges {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.sobre__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--secondary-bg);
  border: 1px solid var(--border);
  border-radius: 9999px;
  padding: 7px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: var(--ring);
}

.sobre__badge svg { width: 13px; height: 13px; color: var(--accent); flex-shrink: 0; }

@media (max-width: 900px) {
  .sobre__grid { grid-template-columns: 1fr; gap: 56px; }
  .sobre__image-deco { right: -10px; bottom: -10px; }
}

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

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

.servico-card {
  position: relative;
  height: 540px;
  border-radius: 30px;
  overflow: hidden;
  cursor: default;
  transition: transform 0.6s var(--ease-smooth), box-shadow 0.6s var(--ease-smooth);
  box-shadow: var(--ring);
}

.servico-card:hover {
  transform: scale(1.02) translateY(-6px);
  box-shadow: rgba(26,26,26,0.18) 0 24px 56px, var(--ring);
}

.servico-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--ease-smooth);
}

.servico-card:hover .servico-card__bg { transform: scale(1.07); }

.servico-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,14,8,0.85) 0%, rgba(20,14,8,0.2) 55%, transparent 100%);
}

.servico-card__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 36px 32px;
  color: var(--white);
  z-index: 1;
}

.servico-card__icon {
  width: 42px; height: 42px;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  transition: background 0.35s, border-color 0.35s;
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.06);
}

.servico-card:hover .servico-card__icon {
  background: var(--accent);
  border-color: var(--accent);
}

.servico-card__icon svg { width: 18px; height: 18px; }

.servico-card__title {
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  font-feature-settings: "calt";
}

.servico-card__desc {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  margin-bottom: 18px;
}

.servico-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: gap 0.25s var(--ease-smooth), opacity 0.3s;
  opacity: 0.85;
}

.servico-card__cta svg { width: 14px; height: 14px; }

.servico-card:hover .servico-card__cta {
  gap: 10px;
  opacity: 1;
}

@media (max-width: 900px) {
  .servicos__grid { grid-template-columns: 1fr; }
  .servico-card   { height: 420px; }
}

/* =========================================
   PACOTES
   ========================================= */
.pacotes { background: var(--bg); }

.pacotes__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 840px;
  margin-inline: auto;
}

.pacote-card {
  background: var(--white);
  border-radius: 30px;
  padding: 44px 40px;
  position: relative;
  box-shadow: var(--ring);
  transition: box-shadow 0.5s var(--ease-smooth), transform 0.5s var(--ease-smooth);
  display: flex;
  flex-direction: column;
}

.pacote-card:hover {
  box-shadow: rgba(26,26,26,0.1) 0 20px 52px, var(--ring);
  transform: translateY(-5px);
}

.pacote-card--featured {
  box-shadow: var(--ring-accent), rgba(200,168,130,0.12) 0 20px 52px;
  background: linear-gradient(160deg, #fffdf9 0%, #fdf6ed 100%);
}

.pacote-card--featured:hover {
  box-shadow: var(--ring-accent), rgba(200,168,130,0.2) 0 28px 64px;
}

.pacote-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--accent-dark);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 9999px;
  white-space: nowrap;
}

.pacote-card__header { margin-bottom: 32px; text-align: center; }

.pacote-card__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-feature-settings: "calt";
}

.pacote-card__price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 3px;
  line-height: 1;
}

.pacote-card__currency {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-dark);
  margin-top: 10px;
}

.pacote-card__amount {
  font-size: 4rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1;
  font-feature-settings: "calt";
}

.pacote-card__cents {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--muted);
  margin-top: 10px;
}

.pacote-card__features {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 36px;
  flex: 1;
}

.pacote-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}

.pacote-card__features svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }

.pacote-card .btn { width: 100%; justify-content: center; }

.pacotes__note {
  text-align: center;
  margin-top: 44px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.pacotes__note svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }

.pacotes__note-icon-top,
.pacotes__note-icon-bottom { display: none; }

.pacotes__note-line1,
.pacotes__note-line2 { display: block; }

@media (max-width: 640px) {
  .pacotes__note {
    flex-direction: column;
    gap: 4px;
  }
  .pacotes__note-icon-top,
  .pacotes__note-icon-bottom { display: block; }
}

@media (max-width: 640px) {
  .pacotes__grid {
    grid-template-columns: 1fr;
    max-width: 460px;
  }
  .pacote-card { padding: 36px 28px; }
  /* Fix badge clipping on mobile */
  .pacote-card--featured { margin-top: 14px; }
}

/* =========================================
   PORTFÓLIO
   ========================================= */
.portfolio { background: var(--secondary-bg); }

.portfolio__filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 52px;
  flex-wrap: nowrap;
}

.filter-btn {
  padding: 9px 20px;
  border-radius: 9999px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
  background: transparent;
  box-shadow: var(--ring);
  transition: transform 0.25s var(--ease-smooth), background 0.3s, color 0.3s, box-shadow 0.3s;
  cursor: pointer;
  font-feature-settings: "calt";
  white-space: nowrap;
  flex-shrink: 0;
}

.filter-btn:hover  { transform: scale(1.05); }
.filter-btn:active { transform: scale(0.95); }

.filter-btn.active {
  background: var(--text);
  color: var(--white);
  box-shadow: none;
}

/* Masonry grid */
.portfolio__grid {
  columns: 3;
  column-gap: 14px;
  transition: opacity 0.4s;
}

.portfolio__item {
  break-inside: avoid;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  box-shadow: var(--ring);
}

.portfolio__item img {
  width: 100%;
  display: block;
  transition: transform 0.7s var(--ease-smooth);
}

.portfolio__item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,14,8,0.42);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s;
  color: var(--white);
}

.portfolio__item-overlay svg { width: 26px; height: 26px; }

.portfolio__item:hover img                       { transform: scale(1.06); }
.portfolio__item:hover .portfolio__item-overlay  { opacity: 1; }

.portfolio__item.hidden { display: none; }

@media (max-width: 900px) { .portfolio__grid { columns: 2; } }
@media (max-width: 560px) {
  .portfolio__grid { columns: 1; }
  .portfolio__filters {
    gap: 6px;
    overflow-x: auto;
    justify-content: center;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex-wrap: nowrap;
  }
  .portfolio__filters::-webkit-scrollbar { display: none; }
  .filter-btn { font-size: 0.72rem; padding: 8px 14px; }
}

/* ---- Lightbox ---- */
.lightbox__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10,8,6,0.94);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.lightbox__backdrop.active { opacity: 1; pointer-events: all; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.lightbox.active { opacity: 1; pointer-events: all; }

.lightbox__inner {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: rgba(0,0,0,0.6) 0 32px 80px;
  transition: opacity 0.3s;
}

.lightbox__close {
  position: absolute;
  top: 20px; right: 24px;
  color: var(--white);
  background: rgba(255,255,255,0.08);
  border-radius: 9999px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, transform 0.25s;
}
.lightbox__close:hover { background: rgba(255,255,255,0.16); transform: scale(1.1); }
.lightbox__close svg   { width: 18px; height: 18px; }

.lightbox__nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  color: var(--white);
  background: rgba(255,255,255,0.08);
  border-radius: 9999px;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, transform 0.25s;
}
.lightbox__nav:hover { background: rgba(255,255,255,0.16); transform: translateY(-50%) scale(1.1); }
.lightbox__nav svg   { width: 22px; height: 22px; }
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }

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

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

.depoimento-card {
  background: var(--white);
  border-radius: 30px;
  padding: 36px 32px;
  box-shadow: var(--ring);
  transition: box-shadow 0.5s var(--ease-smooth), transform 0.5s var(--ease-smooth);
  display: flex;
  flex-direction: column;
}

.depoimento-card:hover {
  box-shadow: rgba(26,26,26,0.1) 0 16px 44px, var(--ring);
  transform: translateY(-5px);
}

.depoimento-card__stars {
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.depoimento-card__text {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.72;
  color: rgba(26,26,26,0.78);
  margin-bottom: 24px;
  flex: 1;
}

.depoimento-card__footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.depoimento-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent-dark);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-feature-settings: "calt";
}

.depoimento-card__footer strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
}

.depoimento-card__footer span {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .depoimentos__grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin-inline: auto;
  }
}

/* =========================================
   CONTATO
   ========================================= */
.contato {
  background: var(--dark);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

.contato__bg-deco {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 0%, rgba(200,168,130,0.1) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 100%, rgba(200,168,130,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.contato__inner { text-align: center; position: relative; }

.contato__eyebrow { color: var(--accent) !important; display: block; margin-bottom: 20px; }

.contato__title {
  font-family: var(--font-body);
  font-size: clamp(2.8rem, 6.5vw, 6rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 0.9;
  letter-spacing: -0.04em;
  font-feature-settings: "calt";
}

.contato__title em {
  font-style: italic;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.06em;
  color: var(--accent);
}

.contato__subtitle {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.48);
  margin-bottom: 52px;
  max-width: 440px;
  margin-inline: auto;
  line-height: 1.7;
}

.contato__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.contato__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.contato__trust span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.01em;
}

.contato__trust svg { width: 14px; height: 14px; color: var(--accent); opacity: 0.7; }

@media (max-width: 600px) {
  .contato { padding: 96px 0; }
  .contato__title { font-size: 2.8rem; }
  .contato__trust { gap: 20px; }
  .contato__trust span { font-size: 0.72rem; }
  .btn--contato-wa,
  .btn--contato-ig { width: 100%; max-width: 320px; justify-content: center; }
  .contato__subtitle-line1 {
    display: block;
    font-weight: 600;
    color: rgba(255,255,255,0.65);
    margin-bottom: 4px;
  }
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: #0e0d0b;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  align-items: start;
}

.footer__brand {}

.footer__logo {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}

.footer__logo em {
  font-style: italic;
  color: var(--accent);
  margin-left: 2px;
}

.footer__tagline {
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
  letter-spacing: 0.01em;
}

.footer__nav a:hover { color: var(--accent); }

.footer__contact-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 14px;
}

.footer__contact-link {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
  transition: color 0.3s;
}

.footer__contact-link:hover { color: var(--accent); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__copy {
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.03em;
}

.footer__socials {
  display: flex;
  gap: 10px;
}

.footer__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 9999px;
  color: rgba(255,255,255,0.4);
  box-shadow: rgba(255,255,255,0.08) 0 0 0 1px;
  transition: transform 0.25s var(--ease-smooth), color 0.3s, box-shadow 0.3s;
}

.footer__socials a:hover {
  color: var(--accent);
  box-shadow: rgba(200,168,130,0.5) 0 0 0 1px;
  transform: scale(1.1);
}

@media (max-width: 860px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .footer__top {
    grid-template-columns: 1fr;
    padding: 48px 0 32px;
    gap: 32px;
  }
  .footer__brand { grid-column: auto; }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* =========================================
   UTILITY / ICON SIZES
   ========================================= */
[data-lucide] {
  width: 18px; height: 18px;
  display: inline-block;
  vertical-align: middle;
}

/* =========================================
   RESPONSIVE TWEAKS
   ========================================= */
@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .hero__scroll-hint { display: none; }
  .servicos__grid { grid-template-columns: 1fr; }
  .servico-card   { height: 400px; }
  .depoimentos__grid { grid-template-columns: 1fr; }
  .depoimento-card { max-width: 540px; margin-inline: auto; }
  /* Offset body for mobile CTA bar — use padding on footer instead */
  .footer { padding-bottom: 88px; }
}

@media (max-width: 480px) {
  .section__title { letter-spacing: -0.02em; }
  .contato__btns { flex-direction: column; align-items: center; }
}
