/* ════════════════════════════════════════════════════════
   NICOLE BENATO · NATURAL BEAUTY — Design System
   Paleta: Nude Rosado #A08973 | Taupe #494038 | Off-white #F2E4D9
           Marsala #5C2327 | Pêssego #F5F0EB
   Fontes: Cormorant Garamond (serif elegante) + Lato Thin + Jost
   ════════════════════════════════════════════════════════ */

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

:root {
  --nude:        #A08973;
  --nude-light:  #C4AFA0;
  --nude-dark:   #8a7362;
  --taupe:       #494038;
  --taupe-light: #6b5e52;
  --offwhite:    #F5F0EB;
  --cream:       #F2E4D9;
  --cream-dark:  #E8D5C6;
  --marsala:     #5C2327;
  --marsala-light: #7a3338;
  --white:       #FDFAF7;
  --text:        #3a3028;
  --text-mid:    #7a6e65;
  --text-light:  #b0a49b;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Lato', 'Jost', system-ui, sans-serif;
  --font-alt:   'Jost', 'Lato', system-ui, sans-serif;

  --radius:     12px;
  --radius-sm:  6px;
  --radius-lg:  24px;
  --shadow-soft: 0 8px 40px rgba(74,64,56,0.08);
  --shadow-md:   0 16px 60px rgba(74,64,56,0.12);
  --shadow-card: 0 4px 24px rgba(74,64,56,0.07);

  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.2s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

body.loading { overflow: hidden; }

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

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

ul { list-style: none; }

/* ── 1. TYPOGRAPHY ────────────────────────────────────── */
.section-eyebrow {
  font-family: var(--font-alt);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--nude);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--taupe);
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: italic;
  color: var(--nude);
}

.section-desc {
  font-family: var(--font-alt);
  font-weight: 300;
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.8;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .section-desc { margin: 0 auto; }

/* ── 2. LAYOUT ────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── 3. BUTTONS ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-alt);
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--nude);
  color: var(--white);
  border-color: var(--nude);
}
.btn-primary:hover {
  background: var(--nude-dark);
  border-color: var(--nude-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(160,137,115,0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--taupe);
  border-color: rgba(73,64,56,0.25);
}
.btn-ghost:hover {
  background: rgba(73,64,56,0.06);
  border-color: var(--taupe);
}

.btn-outline {
  background: transparent;
  color: var(--nude);
  border-color: var(--nude);
}
.btn-outline:hover {
  background: var(--nude);
  color: var(--white);
  transform: translateY(-2px);
}

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

/* ── 4. LOADER ────────────────────────────────────────── */
#loader {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.loader-monogram svg {
  width: 80px;
  height: 80px;
  animation: loaderPulse 2s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 0.4; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1); }
}

.loader-name {
  font-family: var(--font-alt);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.4em;
  color: var(--nude);
  animation: loaderPulse 2s ease-in-out infinite;
}

/* ── 5. HEADER / NAV ──────────────────────────────────── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 0;
}

#header.scrolled {
  background: rgba(253,250,247,0.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(160,137,115,0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 2.5rem;
  max-width: 1240px;
  margin: 0 auto;
  transition: padding var(--transition);
}

#header.scrolled .header-inner { padding-top: 1rem; padding-bottom: 1rem; }

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-mark svg {
  width: 40px;
  height: 40px;
  color: var(--nude);
  transition: color var(--transition-fast);
}
.logo:hover .logo-mark svg { color: var(--taupe); }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: var(--font-alt);
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  color: var(--taupe);
}

.logo-desc {
  font-family: var(--font-alt);
  font-size: 0.55rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--nude);
  margin-top: 0.2rem;
}

/* Nav links */
.nav-desktop ul {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-desktop a {
  font-family: var(--font-alt);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--taupe);
  position: relative;
  padding-bottom: 2px;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 0.5px;
  background: var(--nude);
  transition: width var(--transition);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after { width: 100%; }

.nav-desktop a.nav-cta {
  background: var(--nude);
  color: var(--white);
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  letter-spacing: 0.18em;
}
.nav-desktop a.nav-cta:hover {
  background: var(--nude-dark);
}
.nav-desktop a.nav-cta::after { display: none; }

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--taupe);
  transition: all var(--transition);
  transform-origin: center;
}

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

/* Mobile nav */
.nav-mobile {
  max-height: 0;
  overflow: hidden;
  background: rgba(253,250,247,0.98);
  backdrop-filter: blur(20px);
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-mobile.open { max-height: 400px; }

.nav-mobile ul {
  display: flex;
  flex-direction: column;
  padding: 1rem 2.5rem 2rem;
  gap: 1.2rem;
  border-top: 1px solid rgba(160,137,115,0.15);
}

.nav-mobile a {
  font-family: var(--font-alt);
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--taupe);
  display: block;
  padding: 0.3rem 0;
}
.nav-mobile a:hover { color: var(--nude); }

/* ── 6. HERO ──────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem 6rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
}

.hero-shape-1 {
  width: 600px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(242,228,217,0.7) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation: floatShape 12s ease-in-out infinite;
}

.hero-shape-2 {
  width: 400px; height: 400px;
  background: radial-gradient(ellipse at center, rgba(160,137,115,0.12) 0%, transparent 70%);
  bottom: 0; left: 5%;
  animation: floatShape 16s ease-in-out infinite reverse;
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
}

@keyframes floatShape {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -15px) scale(1.02); }
  66% { transform: translate(-10px, 10px) scale(0.98); }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
}

.hero-eyebrow {
  font-family: var(--font-alt);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--nude);
  display: block;
  margin-bottom: 2rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--taupe);
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.1em;
}

.hero-title em {
  font-style: italic;
  color: var(--nude);
  font-weight: 300;
}

.hero-subtitle {
  font-family: var(--font-alt);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 3rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  z-index: 1;
}

.hero-scroll span {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--nude));
  animation: scrollLine 2s ease-in-out infinite;
}

.hero-scroll p {
  font-family: var(--font-alt);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--nude-light);
}

@keyframes scrollLine {
  0%, 100% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

/* ── 7. BADGES BAR ────────────────────────────────────── */
.badges-bar {
  background: var(--cream);
  padding: 2.5rem 0;
  border-top: 1px solid rgba(160,137,115,0.15);
  border-bottom: 1px solid rgba(160,137,115,0.15);
}

.badges-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.5rem 2rem;
}

.badge-item i {
  color: var(--nude);
  font-size: 0.9rem;
}

.badge-item span {
  font-family: var(--font-alt);
  font-size: 0.73rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--taupe);
}

.badge-divider {
  width: 1px;
  height: 24px;
  background: rgba(160,137,115,0.3);
}

/* ── 8. SOBRE ─────────────────────────────────────────── */
.sobre {
  padding: 8rem 0;
  background: var(--white);
}

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

.sobre-visual {
  position: relative;
  width: 100%;
}

/* Altura por proporção via padding: filhos absolutos não geram altura no fluxo;
   sem isso o bloco pode colapsar no mobile e o .reveal nunca “entra” na viewport. */
.sobre-img-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
  height: 0;
  padding-bottom: 133.3333%; /* 4/3 da largura → proporção 3:4 (retrato) */
}

.sobre-img-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--cream) 0%, var(--offwhite) 100%);
  border-radius: var(--radius-lg);
  transform: translate(16px, 16px);
  z-index: 0;
}

.sobre-img-frame {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: var(--cream);
  overflow: hidden;
  z-index: 1;
  border: 1px solid rgba(160,137,115,0.2);
}

.sobre-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.sobre-tag {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--marsala);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.2rem 1.6rem;
  z-index: 2;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.tag-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
}

.tag-label {
  display: block;
  font-family: var(--font-alt);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  font-weight: 300;
  margin-top: 0.3rem;
  opacity: 0.85;
}

.sobre-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sobre-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.sobre-body p {
  font-weight: 300;
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.85;
}

.sobre-body strong { color: var(--taupe); font-weight: 400; }
.sobre-body em { color: var(--nude); font-style: normal; }

/* ── 9. SERVIÇOS ──────────────────────────────────────── */
.servicos {
  padding: 8rem 0;
  background: var(--offwhite);
}

/* Tabs */
.services-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 3.5rem;
  border: 1px solid rgba(160,137,115,0.2);
  border-radius: 50px;
  padding: 4px;
  background: rgba(255,255,255,0.6);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
}

.tab-btn {
  font-family: var(--font-alt);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.65rem 1.6rem;
  border-radius: 50px;
  border: none;
  background: transparent;
  color: var(--text-mid);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.tab-btn.active, .tab-btn:hover {
  background: var(--nude);
  color: var(--white);
}

/* Tab content */
.tab-content { display: none; }
.tab-content.active { display: block; }

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.services-grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* Service card */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(160,137,115,0.1);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.service-icon {
  background: var(--cream);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon--photo {
  padding: 0;
  min-height: 12rem;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
}


.service-icon--photo2 {
  padding: 0;
  min-height: 6rem;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
}

.service-icon svg {
  width: 52px;
  height: 52px;
  color: var(--nude);
}

.service-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.service-tag {
  font-family: var(--font-alt);
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--nude);
  background: rgba(160,137,115,0.1);
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  width: fit-content;
}

.service-body h3 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--taupe);
  line-height: 1.2;
}

.service-body p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.8;
}

.service-list {
  margin-top: 0.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.service-list li {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-list li i { color: var(--nude); font-size: 0.7rem; }

.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(160,137,115,0.12);
}

.service-duration {
  font-family: var(--font-alt);
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--text-light);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.service-price-link {
  font-family: var(--font-alt);
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--nude);
  letter-spacing: 0.05em;
  transition: color var(--transition-fast);
}
.service-price-link:hover { color: var(--marsala); }

.service-price-tag {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--marsala);
}

.service-card-sm .service-icon { padding: 1.5rem; }
.service-card-sm .service-icon svg { width: 40px; height: 40px; }
.service-card-sm .service-body { padding: 1.4rem; gap: 0.6rem; }
.service-card-sm .service-body h3 { font-size: 1.2rem; }

/* ── 10. QUOTE ────────────────────────────────────────── */
.quote-section {
  background: var(--taupe);
  padding: 7rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(160,137,115,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(160,137,115,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.brand-quote {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}

.quote-mark {
  font-family: var(--font-serif);
  font-size: 8rem;
  line-height: 0.5;
  color: var(--nude);
  opacity: 0.3;
  display: block;
  margin-bottom: 1rem;
}

.brand-quote p {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.brand-quote cite {
  font-family: var(--font-alt);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--nude);
  font-style: normal;
}

/* ── 11. DIFERENCIAIS ─────────────────────────────────── */
.diferenciais {
  padding: 8rem 0;
  background: var(--white);
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.diff-card {
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(160,137,115,0.12);
  background: var(--white);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.diff-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--nude), var(--cream-dark));
  opacity: 0;
  transition: opacity var(--transition);
}

.diff-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(160,137,115,0.25);
}

.diff-card:hover::before { opacity: 1; }

.diff-icon {
  width: 52px;
  height: 52px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.diff-icon i {
  color: var(--nude);
  font-size: 1rem;
}

.diff-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--taupe);
  margin-bottom: 0.8rem;
}

.diff-card p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.8;
}

/* ── 12. PREÇOS ───────────────────────────────────────── */
.precos {
  padding: 8rem 0;
  background: var(--offwhite);
}

.precos-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.preco-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(160,137,115,0.12);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

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

.preco-card-featured {
  background: var(--taupe);
  border-color: var(--taupe);
}

.preco-badge {
  position: absolute;
  top: -0.7rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--nude);
  color: var(--white);
  font-family: var(--font-alt);
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  white-space: nowrap;
}

.preco-header {
  border-bottom: 1px solid rgba(160,137,115,0.12);
  padding-bottom: 1.5rem;
}
.preco-card-featured .preco-header { border-color: rgba(255,255,255,0.1); }

.preco-category {
  font-family: var(--font-alt);
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--nude);
  display: block;
  margin-bottom: 0.5rem;
}
.preco-card-featured .preco-category { color: var(--nude-light); }

.preco-header h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--taupe);
  line-height: 1.3;
}
.preco-card-featured .preco-header h3 { color: var(--cream); }

.preco-header small {
  font-family: var(--font-alt);
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-mid);
}
.preco-card-featured .preco-header small { color: rgba(242,228,217,0.6); }

.preco-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.preco-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-mid);
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(160,137,115,0.08);
}

.preco-list li:last-child { border-bottom: none; padding-bottom: 0; }

.preco-card-featured .preco-list li { color: rgba(242,228,217,0.7); border-color: rgba(255,255,255,0.06); }

.preco-list strong {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--marsala);
}
.preco-card-featured .preco-list strong { color: var(--nude-light); }

.preco-highlight strong {
  color: var(--marsala);
  font-size: 1.2rem;
}
.preco-card-featured .preco-highlight strong { color: #d4b8a0; }

.precos-note {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-light);
}
.precos-note a { color: var(--nude); text-decoration: underline; }

/* ── 13. CONTATO ──────────────────────────────────────── */
.contato {
  padding: 8rem 0;
  background: var(--cream);
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  align-items: stretch;
}

.contato-desc {
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
}

.contato-canais {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.canal-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(160,137,115,0.15);
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
}

.canal-card:hover {
  border-color: var(--nude);
  transform: translateX(4px);
  box-shadow: var(--shadow-card);
}

.canal-card-static { cursor: default; }
.canal-card-static:hover { transform: none; }

.canal-card i {
  font-size: 1.3rem;
  color: var(--nude);
  width: 28px;
  text-align: center;
}

.canal-card div span {
  display: block;
  font-family: var(--font-alt);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--taupe);
}

.canal-card div p {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--text-mid);
  margin-top: 0.1rem;
}

.contato-photo-wrap {
  position: relative;
  min-height: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(160,137,115,0.1);
}

.contato-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* ── 14. FOOTER ───────────────────────────────────────── */
.footer {
  background: var(--taupe);
  padding: 5rem 0 0;
  color: var(--cream);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.logo-mark-light svg {
  width: 36px;
  height: 36px;
  color: var(--nude-light);
}

.footer-name {
  font-family: var(--font-alt);
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  color: var(--cream);
}

.footer-tagline {
  font-family: var(--font-alt);
  font-size: 0.55rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--nude-light);
}

.footer-bio {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(242,228,217,0.65);
  line-height: 1.7;
  margin-top: 0.5rem;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(160,137,115,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nude-light);
  font-size: 0.85rem;
  transition: all var(--transition-fast);
}
.footer-social a:hover {
  border-color: var(--nude);
  color: var(--white);
  background: rgba(160,137,115,0.15);
}

.footer-links h4 {
  font-family: var(--font-alt);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--nude);
  margin-bottom: 1.5rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(242,228,217,0.6);
  transition: color var(--transition-fast);
}
.footer-links a:hover { color: var(--cream); }

.footer-bottom {
  padding: 1.8rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 1180px;
  margin: 0 auto;
}

.footer-bottom p {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(242,228,217,0.4);
}

/* ── 15. WHATSAPP FLOAT ────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
  z-index: 50;
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37,211,102,0.5);
}

/* ── 16. BACK TO TOP ──────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 6rem;
  right: 2rem;
  width: 40px;
  height: 40px;
  background: var(--white);
  border: 1px solid rgba(160,137,115,0.25);
  border-radius: 50%;
  color: var(--nude);
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
  box-shadow: var(--shadow-card);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--nude); color: white; border-color: var(--nude); }

/* ── 17. REVEAL ANIMATIONS ────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger for grids */
.services-grid .reveal:nth-child(1),
.diff-grid .reveal:nth-child(1),
.precos-grid .reveal:nth-child(1) { transition-delay: 0s; }

.services-grid .reveal:nth-child(2),
.diff-grid .reveal:nth-child(2),
.precos-grid .reveal:nth-child(2) { transition-delay: 0.1s; }

.services-grid .reveal:nth-child(3),
.diff-grid .reveal:nth-child(3),
.precos-grid .reveal:nth-child(3) { transition-delay: 0.2s; }

.services-grid .reveal:nth-child(4),
.diff-grid .reveal:nth-child(4),
.precos-grid .reveal:nth-child(4) { transition-delay: 0.3s; }

.diff-grid .reveal:nth-child(5) { transition-delay: 0.1s; }
.diff-grid .reveal:nth-child(6) { transition-delay: 0.2s; }

/* ── 18. UTILITIES ────────────────────────────────────── */
.br-desktop { display: none; }

/* ── 19. RESPONSIVE ───────────────────────────────────── */
@media (min-width: 900px) {
  .br-desktop { display: block; }
}

@media (max-width: 1024px) {
  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .sobre-visual {
    max-width: 380px;
    width: 100%;
    margin: 0 auto;
  }
  .contato-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .contato-photo-wrap {
    min-height: clamp(18rem, 52vw, 26rem);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .menu-toggle { display: flex; }

  .header-inner { padding: 1.2rem 1.5rem; }

  .hero { padding: 7rem 1.5rem 5rem; }
  .hero-title { font-size: clamp(2.5rem, 8vw, 4rem); }

  .badges-grid { gap: 0; }
  .badge-divider { display: none; }
  .badge-item { padding: 0.6rem 1rem; }
  .badges-grid { justify-content: flex-start; }

  .sobre { padding: 5rem 0; }
  .sobre-grid { gap: 3rem; }

  .servicos { padding: 5rem 0; }
  .services-tabs { gap: 0; padding: 3px; }
  .tab-btn { padding: 0.5rem 0.9rem; font-size: 0.65rem; }

  .services-grid { grid-template-columns: 1fr; }
  .services-grid-4 { grid-template-columns: repeat(2, 1fr); }

  .quote-section { padding: 5rem 1.5rem; }
  .quote-mark { font-size: 6rem; }

  .diferenciais { padding: 5rem 0; }
  .diff-grid { grid-template-columns: 1fr; gap: 1.2rem; }

  .precos { padding: 5rem 0; }
  .precos-grid { grid-template-columns: 1fr; }

  .contato { padding: 5rem 0; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-brand { grid-column: span 1; }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { padding: 0.8rem 1.8rem; }
  .services-grid-4 { grid-template-columns: 1fr; }
  .sobre-tag { right: 0; bottom: -1rem; }
}


/* ── FAQ ─────────────────────────────────────────────── */
.faq {
  padding: 6rem 0;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(92, 35, 39, 0.1);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-question {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  color: #2c2017;
  line-height: 1.4;
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  position: relative;
  transition: transform 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: #5C2327;
  border-radius: 1px;
  transition: transform 0.3s ease;
}

.faq-icon::before {
  width: 16px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 16px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item[open] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  padding: 0 0 1.5rem 0;
}

.faq-answer p {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: #4a3f37;
}

.faq-answer a {
  color: #5C2327;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-answer a:hover {
  opacity: 0.8;
}

/* Animação suave de abertura */
.faq-item .faq-answer {
  animation: faqFadeIn 0.3s ease;
}

@keyframes faqFadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
