/* =========================================================
   DR. MÁRCIO PANATO — SITE PESSOAL
   Design Premium · Elegante · Humano
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Instrument+Serif:ital@0;1&display=swap');

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

:root {
  /* Paleta principal */
  --c-cream:       #F5F2EE;    /* off-white quente */
  --c-greige:      #EAE5DE;    /* greige elegante */
  --c-greige-mid:  #D9D2C8;    /* greige médio */
  --c-stone:       #C8BFB3;    /* pedra fria */
  --c-graphite-lt: #8E8880;    /* grafite suave */
  --c-graphite:    #5A554F;    /* grafite médio */
  --c-ink:         #2A2723;    /* tinta escura */
  --c-dark:        #1C1A18;    /* fundo escuro */
  --c-section-alt: #252320;    /* seção alternada escura */
  --c-gold:        #B8955A;    /* dourado fosco */
  --c-gold-lt:     #D4AE78;    /* dourado claro */
  --c-gold-dk:     #8F6F3A;    /* dourado escuro */
  --c-teal:        #2C4A52;    /* azul-petróleo profundo */
  --c-teal-lt:     #3D6470;    /* azul-petróleo claro */
  --c-white:       #FFFFFF;
  --c-whatsapp:    #25D366;

  /* Tipografia */
  --font-display:  'Instrument Serif', Georgia, serif;
  --font-body:     'Plus Jakarta Sans', -apple-system, sans-serif;

  /* Espaçamentos */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;

  /* Raios */
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  32px;
  --r-pill: 999px;

  /* Transições */
  --t-fast:   0.18s ease;
  --t-mid:    0.32s ease;
  --t-slow:   0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Sombras */
  --shadow-sm:  0 2px 8px rgba(26,22,18,0.06);
  --shadow-md:  0 6px 24px rgba(26,22,18,0.10);
  --shadow-lg:  0 16px 48px rgba(26,22,18,0.14);
  --shadow-xl:  0 32px 80px rgba(26,22,18,0.20);
}

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

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

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── TIPOGRAFIA ────────────────────────────────────────── */
.display-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  line-height: 1.10;
  letter-spacing: -0.02em;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-gold);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.2;
}

p {
  font-size: 1.0rem;
  line-height: 1.75;
  color: var(--c-graphite);
}

/* ─── LAYOUT ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section-pad {
  padding: var(--space-3xl) 0;
}

.section-pad--sm {
  padding: var(--space-2xl) 0;
}

/* ─── BOTÕES ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.85rem 1.8rem;
  border-radius: var(--r-pill);
  transition: all var(--t-mid);
  white-space: nowrap;
}

.btn--primary {
  background: var(--c-gold);
  color: var(--c-white);
  box-shadow: 0 4px 20px rgba(184,149,90,0.3);
}

.btn--primary:hover {
  background: var(--c-gold-lt);
  box-shadow: 0 8px 32px rgba(184,149,90,0.45);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--c-ink);
  border: 1.5px solid var(--c-greige-mid);
}

.btn--outline:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
  transform: translateY(-2px);
}

.btn--outline-light {
  background: transparent;
  color: var(--c-cream);
  border: 1.5px solid rgba(245,242,238,0.35);
}

.btn--outline-light:hover {
  border-color: var(--c-gold-lt);
  color: var(--c-gold-lt);
  transform: translateY(-2px);
}

.btn--whatsapp {
  background: var(--c-whatsapp);
  color: var(--c-white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}

.btn--whatsapp:hover {
  background: #1fba59;
  box-shadow: 0 8px 32px rgba(37,211,102,0.45);
  transform: translateY(-2px);
}

.btn--instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: var(--c-white);
  box-shadow: 0 4px 20px rgba(220, 39, 67, 0.3);
}

.btn--instagram:hover {
  background: linear-gradient(45deg, #f09433 -10%, #e6683c 15%, #dc2743 40%, #cc2366 65%, #bc1888 90%);
  color: var(--c-white);
  box-shadow: 0 8px 32px rgba(220, 39, 67, 0.45);
  transform: translateY(-2px);
}

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

/* ─── HEADER ────────────────────────────────────────────── */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: all var(--t-mid);
}

#header.scrolled {
  background: rgba(28, 26, 24, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 0.85rem 0;
  box-shadow: 0 2px 32px rgba(0,0,0,0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

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

.header-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(184,149,90,0.4));
  opacity: 0.95;
  transition: opacity var(--t-fast), filter var(--t-fast);
}

#header.scrolled .header-logo img {
  opacity: 1;
  filter: drop-shadow(0 0 8px rgba(184,149,90,0.5));
}

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

.header-logo-name {
  font-family: var(--font-body);
  font-size: 1.0rem;
  font-weight: 600;
  color: var(--c-cream);
  letter-spacing: 0.01em;
}

.header-logo-title {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--c-gold-lt);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.header-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(245,242,238,0.75);
  padding: 0.5rem 0.85rem;
  border-radius: var(--r-sm);
  transition: all var(--t-fast);
  letter-spacing: 0.01em;
}

.header-nav a:hover {
  color: var(--c-cream);
  background: rgba(255,255,255,0.06);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-cream);
  border-radius: 2px;
  transition: all var(--t-mid);
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(28, 26, 24, 0.98);
  backdrop-filter: blur(32px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-mid);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--c-cream);
  letter-spacing: 0.01em;
  transition: color var(--t-fast);
  text-align: center;
}

.mobile-menu a:hover { color: var(--c-gold-lt); }

.mobile-menu-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* ─── HERO ──────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  background-color: var(--c-dark);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/img/hero-bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 70% 80% at 110% 50%, rgba(44,74,82,0.30) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at -10% 80%, rgba(184,149,90,0.12) 0%, transparent 55%),
    linear-gradient(160deg, rgba(28,26,24,0.6) 0%, rgba(28,26,24,0.2) 50%, rgba(28,26,24,0.8) 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(245,242,238,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,242,238,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-xl);
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: var(--space-xl);
}

.hero-content {
  max-width: 580px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
}

.hero-label-line {
  width: 32px;
  height: 1px;
  background: var(--c-gold);
}

.hero-label span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold-lt);
}

.hero-name {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 400;
  color: rgba(245,242,238,0.6);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 400;
  font-style: italic;
  color: var(--c-cream);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: normal;
  color: var(--c-gold-lt);
}

.hero-subtitle {
  font-size: clamp(0.9rem, 1.6vw, 1.0rem);
  font-weight: 400;
  color: rgba(245,242,238,0.60);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-badges {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(245,242,238,0.08);
}

.hero-badge {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero-badge-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--c-gold-lt);
  line-height: 1;
}

.hero-badge-label {
  font-size: 0.72rem;
  color: rgba(245,242,238,0.45);
  letter-spacing: 0.05em;
  font-weight: 400;
}

.hero-badge-divider {
  width: 1px;
  height: 40px;
  background: rgba(245,242,238,0.10);
}

/* Hero foto */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.hero-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.hero-photo-frame {
  position: relative;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--c-teal) 0%, var(--c-teal-lt) 40%, var(--c-graphite) 100%);
}

.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.8s ease;
}

.hero-photo-frame img:hover {
  transform: scale(1.03);
}

.hero-photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(28,26,24,0.70), transparent);
  pointer-events: none;
}

.hero-photo-badge {
  position: absolute;
  top: 1.5rem;
  left: -1.5rem;
  background: rgba(28,26,24,0.90);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(184,149,90,0.25);
  border-radius: var(--r-md);
  padding: 0.85rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  box-shadow: var(--shadow-lg);
}

.hero-photo-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-gold-dk), var(--c-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.hero-photo-badge-text {
  display: flex;
  flex-direction: column;
}

.hero-photo-badge-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--c-cream);
  line-height: 1.2;
}

.hero-photo-badge-sub {
  font-size: 0.68rem;
  color: var(--c-gold-lt);
  font-weight: 400;
}

.hero-deco-line {
  position: absolute;
  bottom: -2px;
  left: -2px;
  right: -2px;
  height: 4px;
  background: linear-gradient(90deg, var(--c-gold-dk), var(--c-gold), transparent);
  border-radius: 0 0 4px 4px;
}

/* Hero scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 3;
  opacity: 0.4;
  transition: opacity var(--t-fast);
  cursor: pointer;
}

.hero-scroll:hover { opacity: 0.8; }

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-cream);
}

.hero-scroll-mouse {
  width: 20px;
  height: 32px;
  border: 1px solid rgba(245,242,238,0.4);
  border-radius: var(--r-pill);
  position: relative;
}

.hero-scroll-mouse::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 6px;
  background: var(--c-cream);
  border-radius: var(--r-pill);
  animation: scroll-hint 2s ease infinite;
}

@keyframes scroll-hint {
  0%   { opacity: 1; top: 6px; }
  100% { opacity: 0; top: 16px; }
}

/* ─── SOBRE MIM ─────────────────────────────────────────── */
#sobre {
  background-color: var(--c-cream);
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

#sobre::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 60%; height: 100%;
  background: linear-gradient(90deg, var(--c-greige) 0%, transparent 100%);
  z-index: 0;
  pointer-events: none;
  opacity: 0.8;
}

.sobre-inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.sobre-visual {
  position: relative;
  padding-right: 1.5rem;
  padding-bottom: 2rem;
}

.sobre-visual-bg {
  position: absolute;
  bottom: 0; 
  left: -2rem; 
  width: 90%; 
  height: 85%;
  background-color: var(--c-stone);
  opacity: 0.15;
  border-radius: var(--r-xl);
  z-index: 0;
}

.sobre-photo-main {
  position: relative;
  z-index: 1;
  border-radius: var(--r-md);
  overflow: hidden;
  width: 100%;
  background: var(--c-white);
  box-shadow: 0 32px 80px rgba(28,26,24,0.06);
  border: 1px solid rgba(184,149,90,0.12);
}

.sobre-photo-main img {
  width: 100%;
  height: auto;
  display: block;
}

.sobre-content {
  padding-left: 0;
}

.sobre-section-label {
  display: inline-block;
  color: var(--c-gold-dk);
  margin-bottom: 1.5rem;
}

.sobre-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 400;
  font-style: italic;
  color: var(--c-ink);
  line-height: 1.05;
  margin-bottom: 1.85rem;
  letter-spacing: -0.01em;
}

.sobre-text {
  margin-bottom: 1.4rem;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--c-graphite);
}

.sobre-text:first-of-type {
  font-size: 1.25rem;
  color: var(--c-ink);
  font-weight: 500;
  line-height: 1.6;
}

.sobre-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(184,149,90,0.25);
}

.sobre-pillar {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.sobre-pillar-dot {
  width: 14px;
  height: 14px;
  border: 1px solid var(--c-gold);
  border-radius: 3px;
  background: transparent;
  flex-shrink: 0;
  margin-top: 0.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sobre-pillar-dot::after {
  content: '';
  width: 6px; height: 6px;
  background: var(--c-gold);
  border-radius: 1px;
}

.sobre-pillar span {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--c-ink);
  font-weight: 500;
}

/* ─── FRENTES DE ATENDIMENTO ────────────────────────────── */
#frentes {
  background-color: var(--c-section-alt);
  position: relative;
}

.frentes-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-xl);
}

.frentes-header .section-label {
  display: block;
  margin-bottom: 1rem;
}

.frentes-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  font-style: italic;
  color: var(--c-cream);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.frentes-subtitle {
  font-size: 0.95rem;
  color: rgba(245,242,238,0.5);
  line-height: 1.7;
}

.frentes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.frente-card {
  background: rgba(245, 242, 238, 0.04);
  border: 1px solid rgba(245, 242, 238, 0.07);
  border-radius: var(--r-xl);
  padding: 2rem 1.75rem;
  transition: all var(--t-mid);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.frente-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
  opacity: 0;
  transition: opacity var(--t-mid);
}

.frente-card:hover {
  background: rgba(245, 242, 238, 0.07);
  border-color: rgba(184, 149, 90, 0.20);
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

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

.frente-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: rgba(184, 149, 90, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.3rem;
  transition: all var(--t-mid);
}

.frente-card:hover .frente-icon {
  background: rgba(184, 149, 90, 0.18);
}

.frente-title {
  font-size: 1.0rem;
  font-weight: 600;
  color: var(--c-cream);
  margin-bottom: 0.65rem;
  line-height: 1.3;
}

.frente-text {
  font-size: 0.875rem;
  color: rgba(245, 242, 238, 0.50);
  line-height: 1.7;
}

.frente-card--feature {
  grid-column: span 1;
  background: linear-gradient(145deg, rgba(44,74,82,0.35) 0%, rgba(44,74,82,0.15) 100%);
  border-color: rgba(61,100,112,0.25);
}

/* ─── ONDE ATENDO ───────────────────────────────────────── */
#onde {
  background-color: var(--c-cream);
  position: relative;
}

.onde-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto var(--space-xl);
}

.onde-header .section-label {
  display: block;
  margin-bottom: 1rem;
}

.onde-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 400;
  font-style: italic;
  color: var(--c-ink);
  line-height: 1.15;
}

.onde-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: var(--space-xl);
}

.onde-card {
  background: var(--c-white);
  border-radius: var(--r-xl);
  padding: 2.25rem 2rem;
  border: 1px solid var(--c-greige);
  transition: all var(--t-mid);
  box-shadow: var(--shadow-sm);
}

.onde-card:hover {
  border-color: var(--c-gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.onde-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--c-greige), var(--c-stone));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.onde-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--c-ink);
  margin-bottom: 0.65rem;
}

.onde-card p {
  font-size: 0.88rem;
  color: var(--c-graphite-lt);
  line-height: 1.65;
}

.onde-card .onde-detail {
  font-size: 0.82rem;
  color: var(--c-gold-dk);
  font-weight: 500;
  margin-top: 0.85rem;
}

.onde-map-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.onde-map-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--c-greige);
  box-shadow: var(--shadow-md);
}

.onde-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.onde-address-card {
  background: var(--c-dark);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.onde-address-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
  color: var(--c-cream);
  margin-bottom: 1.5rem;
}

.onde-address-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.onde-address-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.onde-address-item-icon {
  font-size: 1rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
  opacity: 0.7;
}

.onde-address-item-text {
  font-size: 0.88rem;
  color: rgba(245,242,238,0.65);
  line-height: 1.6;
}

.onde-address-item-text strong {
  display: block;
  color: var(--c-cream);
  font-weight: 500;
  margin-bottom: 0.15rem;
}

/* ─── AGENDAMENTO ───────────────────────────────────────── */
#como {
  background: linear-gradient(160deg, var(--c-section-alt) 0%, var(--c-teal) 100%);
  position: relative;
  overflow: hidden;
}

#como::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(245,242,238,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,242,238,0.02) 1px, transparent 1px);
  background-size: 48px 48px;
}

.como-inner {
  position: relative;
  z-index: 1;
}

.como-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto var(--space-xl);
}

.como-header .section-label { display: block; margin-bottom: 1rem; }

.como-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 400;
  font-style: italic;
  color: var(--c-cream);
  line-height: 1.15;
}

.como-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: var(--space-xl);
}

.como-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.como-step::after {
  content: '';
  position: absolute;
  top: 28px;
  right: -40%;
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, rgba(184,149,90,0.4), transparent);
  pointer-events: none;
}

.como-step:last-child::after { display: none; }

.como-step-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 400;
  color: rgba(184,149,90,0.20);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.como-step-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-lg);
  background: rgba(245,242,238,0.06);
  border: 1px solid rgba(245,242,238,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.como-step h3 {
  font-size: 1.0rem;
  font-weight: 600;
  color: var(--c-cream);
  margin-bottom: 0.6rem;
}

.como-step p {
  font-size: 0.855rem;
  color: rgba(245,242,238,0.50);
  line-height: 1.65;
}

.como-cta-center {
  display: flex;
  justify-content: center;
}

/* ─── FAQ ───────────────────────────────────────────────── */
#faq {
  background-color: var(--c-cream);
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-xl);
  align-items: start;
}

.faq-sidebar {
  position: sticky;
  top: 120px;
}

.faq-sidebar .section-label { display: block; margin-bottom: 1.25rem; }

.faq-sidebar h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  font-style: italic;
  color: var(--c-ink);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.faq-sidebar p {
  font-size: 0.9rem;
  color: var(--c-graphite-lt);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-item {
  border-radius: var(--r-lg);
  border: 1px solid var(--c-greige);
  overflow: hidden;
  transition: border-color var(--t-fast);
}

.faq-item.open {
  border-color: var(--c-gold);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--c-white);
  text-align: left;
  cursor: pointer;
  transition: background var(--t-fast);
}

.faq-question:hover { background: var(--c-greige); }
.faq-item.open .faq-question { background: var(--c-white); }

.faq-question span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--c-ink);
  line-height: 1.4;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--c-greige);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--t-fast);
  font-size: 1rem;
  color: var(--c-graphite);
}

.faq-item.open .faq-icon {
  background: var(--c-gold);
  color: var(--c-white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  background: var(--c-white);
}

.faq-answer-inner p {
  font-size: 0.9rem;
  color: var(--c-graphite);
  line-height: 1.75;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

/* ─── CONTEÚDOS ─────────────────────────────────────────── */
#conteudos {
  background-color: var(--c-greige);
}

.conteudos-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-xl);
  gap: var(--space-md);
}

.conteudos-header-text .section-label { display: block; margin-bottom: 0.85rem; }

.conteudos-header-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--c-ink);
  line-height: 1.15;
}

.conteudos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.conteudo-card {
  background: var(--c-white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--t-mid);
  border: 1px solid transparent;
}

.conteudo-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--c-greige-mid);
}

.conteudo-img {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--c-teal) 0%, var(--c-teal-lt) 50%, var(--c-graphite) 100%);
  position: relative;
  overflow: hidden;
}

.conteudo-img-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(245,242,238,0.45);
  text-align: center;
  padding: 1.5rem;
}

.conteudo-card-1 .conteudo-img {
  background: linear-gradient(135deg, var(--c-teal) 0%, #1A3A42 100%);
}

.conteudo-card-2 .conteudo-img {
  background: linear-gradient(135deg, #3A3228 0%, #5C4A38 100%);
}

.conteudo-card-3 .conteudo-img {
  background: linear-gradient(135deg, #2A3228 0%, #3A4A3A 100%);
}

.conteudo-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-gold-lt);
  background: rgba(28,26,24,0.7);
  backdrop-filter: blur(8px);
  padding: 0.3rem 0.7rem;
  border-radius: var(--r-pill);
}

.conteudo-body {
  padding: 1.5rem;
}

.conteudo-body h3 {
  font-size: 1.0rem;
  font-weight: 600;
  color: var(--c-ink);
  line-height: 1.35;
  margin-bottom: 0.65rem;
}

.conteudo-body p {
  font-size: 0.855rem;
  color: var(--c-graphite-lt);
  line-height: 1.65;
}

/* ─── CONTATO ───────────────────────────────────────────── */
#contato {
  background-color: var(--c-dark);
  position: relative;
  overflow: hidden;
}

#contato::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(44,74,82,0.25) 0%, transparent 70%);
  pointer-events: none;
}

#contato::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,149,90,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.contato-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.contato-content .section-label { display: block; margin-bottom: 1.25rem; }

.contato-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  font-style: italic;
  color: var(--c-cream);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.contato-text {
  font-size: 0.95rem;
  color: rgba(245,242,238,0.55);
  line-height: 1.75;
  margin-bottom: 2.25rem;
  max-width: 440px;
}

.contato-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.contato-ctas .btn {
  min-width: 240px;
  justify-content: center;
}

.contato-info {
  background: rgba(245,242,238,0.04);
  border: 1px solid rgba(245,242,238,0.08);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contato-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(245,242,238,0.06);
}

.contato-info-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.contato-info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: rgba(184,149,90,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contato-info-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contato-info-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-gold-lt);
}

.contato-info-value {
  font-size: 0.9rem;
  color: rgba(245,242,238,0.75);
  line-height: 1.5;
}

/* ─── FOOTER ────────────────────────────────────────────── */
#footer {
  background-color: var(--c-dark);
  border-top: 1px solid rgba(245,242,238,0.06);
  padding: 2.5rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.footer-logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 4px rgba(184,149,90,0.3));
  opacity: 0.7;
}

.footer-logo span {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(245,242,238,0.35);
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(245,242,238,0.25);
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.78rem;
  color: rgba(245,242,238,0.30);
  transition: color var(--t-fast);
}

.footer-links a:hover { color: var(--c-gold-lt); }

/* ─── FLOATING WHATSAPP ─────────────────────────────────── */
.float-whatsapp {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 900;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--c-whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  transition: all var(--t-mid);
  text-decoration: none;
}

.float-whatsapp:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.55);
}

.float-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.float-whatsapp-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--c-whatsapp);
  animation: wapulse 2.5s ease infinite;
  opacity: 0;
}

@keyframes wapulse {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ─── DIVISOR DOURADO ───────────────────────────────────── */
.gold-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--c-gold), transparent);
  border-radius: var(--r-pill);
  margin: 1.25rem 0;
}

/* ─── ANIMAÇÕES DE ENTRADA ──────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-delay="1"] { transition-delay: 0.10s; }
[data-reveal-delay="2"] { transition-delay: 0.20s; }
[data-reveal-delay="3"] { transition-delay: 0.32s; }
[data-reveal-delay="4"] { transition-delay: 0.44s; }
[data-reveal-delay="5"] { transition-delay: 0.56s; }
[data-reveal-delay="6"] { transition-delay: 0.68s; }
[data-reveal-delay="7"] { transition-delay: 0.80s; }

/* ─── RESPONSIVO ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .frentes-grid  { grid-template-columns: repeat(2, 1fr); }
  .como-grid     { grid-template-columns: repeat(2, 1fr); }
  .como-step::after { display: none; }
  .faq-inner     { grid-template-columns: 1fr; }
  .faq-sidebar   { position: static; }
  .conteudos-grid { grid-template-columns: repeat(2, 1fr); }
  .onde-map-row  { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root {
    --space-3xl: 5rem;
    --space-2xl: 3.5rem;
    --space-xl:  2.5rem;
  }

  /* Header mobile */
  .header-nav, .header-cta .btn--outline-light { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }

  /* Hero mobile */
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 90px;
    padding-bottom: 5rem;
    text-align: center;
  }

  .hero-content { max-width: 100%; }
  .hero-label { justify-content: center; }
  .hero-subtitle { max-width: 100%; }
  .hero-ctas { justify-content: center; }
  .hero-badges { justify-content: center; }

  .hero-visual {
    justify-content: center;
    order: -1;
  }

  .hero-photo-wrap { max-width: 320px; }
  .hero-photo-frame { aspect-ratio: 3/4; }
  .hero-photo-badge { left: -0.5rem; }

  /* Sobre mobile */
  .sobre-inner {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .sobre-visual {
    max-width: 460px;
    margin: 0 auto;
    padding-right: 0;
  }
  .sobre-visual-bg {
    left: -1rem; right: -1rem; width: auto;
  }
  .sobre-pillars {
    grid-template-columns: 1fr;
  }
  .sobre-content { padding-left: 0; }

  /* Grid layouts */
  .onde-grid { grid-template-columns: 1fr; }
  .frentes-grid { grid-template-columns: 1fr; }
  .frente-card[style*="grid-column"] { grid-column: span 1 !important; }
  .como-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .conteudos-grid { grid-template-columns: 1fr; }
  .contato-inner { grid-template-columns: 1fr; }
  .onde-map-row { grid-template-columns: 1fr; }

  .conteudos-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer-links { justify-content: center; }

  .float-whatsapp { width: 52px; height: 52px; bottom: 1.25rem; right: 1.25rem; }

  .header-cta .btn--primary {
    font-size: 0.82rem;
    padding: 0.7rem 1.2rem;
  }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .btn--lg { font-size: 0.88rem; padding: 0.9rem 1.6rem; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
  .hero-badges { flex-wrap: wrap; }
  .contato-ctas .btn { min-width: auto; width: 100%; }
}
