/* ─── FONT IMPORT ─── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Jost:wght@300;400;500;600;700&family=Great+Vibes&display=swap');

/* ─── VARIAVEIS PREMIUM ─── */
:root {
  --bg-primary: #F9F8F6;
  --bg-secondary: #EBE7E0;
  --bg-dark: #0A0A0A;
  --text-main: #222222;
  --text-light: #6E6862;
  --accent: #C49A8A;
  --accent-light: #E8D5CC;
  --white: #FFFFFF;
  --border-delicate: rgba(196, 154, 138, 0.25);
  --shadow-premium: 0 20px 50px rgba(87, 65, 58, 0.05);
  --shadow-premium-hover: 0 30px 70px rgba(87, 65, 58, 0.09);
  --transition-bezier: cubic-bezier(.22, 1, .36, 1);
}

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

html { 
  scroll-behavior: smooth; 
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--bg-primary);
  color: var(--text-main);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.loading {
  overflow: hidden;
  height: 100vh;
}

a { 
  text-decoration: none; 
  color: inherit; 
  transition: color 0.3s ease;
}

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

/* ─── UTILITÁRIOS ─── */
.container { 
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 0 5%; 
}

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

.section-padding { 
  padding: 140px 0; 
}

.reveal { 
  opacity: 0; 
  transform: translateY(30px); 
}

/* ─── TIPOGRAFIA PREMIUM ─── */
.eyebrow { 
  font-size: 0.7rem; 
  letter-spacing: 0.35em; 
  text-transform: uppercase; 
  color: var(--accent); 
  margin-bottom: 24px; 
  display: block; 
  font-weight: 500; 
}

.title-primary { 
  font-family: 'Cormorant Garamond', serif; 
  font-size: clamp(3rem, 7vw, 6.2rem); 
  font-weight: 300; 
  line-height: 1.05; 
  color: var(--white); 
  margin-bottom: 24px;
}

.title-secondary { 
  font-family: 'Cormorant Garamond', serif; 
  font-size: clamp(2.2rem, 5vw, 3.8rem); 
  font-weight: 300; 
  line-height: 1.15; 
  color: var(--text-main); 
  margin-bottom: 24px; 
}

.title-primary em, 
.title-secondary em { 
  font-style: italic; 
  color: var(--accent); 
  font-weight: 300;
}

.paragraph-premium { 
  font-size: 0.95rem; 
  font-weight: 300; 
  line-height: 1.8; 
  color: var(--text-light); 
}

/* ─── BUTTONS ─── */
.btn-premium { 
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
  gap: 16px; 
  background: var(--bg-dark); 
  color: var(--white); 
  font-size: 0.75rem; 
  letter-spacing: 0.25em; 
  text-transform: uppercase; 
  padding: 20px 48px; 
  transition: all 0.4s var(--transition-bezier); 
  border: 1px solid var(--bg-dark); 
  position: relative; 
  overflow: hidden; 
  z-index: 1; 
  cursor: pointer;
}

.btn-premium::after { 
  content: ''; 
  position: absolute; 
  bottom: 0; 
  left: 0; 
  width: 100%; 
  height: 0%; 
  background: var(--accent); 
  transition: all 0.4s var(--transition-bezier); 
  z-index: -1; 
}

.btn-premium:hover::after { 
  height: 100%; 
}

.btn-premium:hover { 
  border-color: var(--accent); 
  gap: 24px; 
}

.btn-premium svg { 
  width: 16px; 
  height: 16px; 
  fill: none; 
  stroke: currentColor; 
  stroke-width: 1.5; 
  transition: transform 0.3s; 
}

.btn-premium:hover svg { 
  transform: translateX(4px); 
}

/* ─── CINEMATIC PRELOADER ─── */
#loader {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 999999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.loader-backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, #181513 0%, #050505 100%);
  z-index: 1;
}

.loader-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.loader-logo-wrapper {
  width: 150px;
  height: 150px;
  margin-bottom: 28px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.85);
}

.loader-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 0 20px rgba(196, 154, 138, 0.2));
}

.loader-line-container {
  width: 140px;
  height: 1px;
  background: rgba(196, 154, 138, 0.15);
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.loader-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
}

.loader-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 300;
  opacity: 0;
  margin-bottom: 6px;
  transform: translateY(15px);
}

.loader-subtext {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
  opacity: 0;
  transform: translateY(10px);
}

/* ─── HEADER & MENU ─── */
header { 
  position: fixed; 
  top: 0; 
  left: 0; 
  right: 0; 
  z-index: 9999; 
  padding: 24px 5%; 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  transition: all 0.4s var(--transition-bezier); 
}

header.scrolled { 
  background: rgba(249, 248, 246, 0.95); 
  backdrop-filter: blur(15px); 
  box-shadow: 0 1px 0 rgba(0,0,0,0.03); 
  padding: 16px 5%; 
}

header .logo img { 
  height: 44px; 
  object-fit: contain; 
  transition: filter 0.4s ease, height 0.4s ease; 
}

header.scrolled .logo img {
  height: 38px;
}

/* No topo da página a logo é branca devido ao fundo escuro da imagem */
header:not(.scrolled) .logo img { 
  filter: brightness(0) invert(1); 
}

.hamburger { 
  display: flex; 
  flex-direction: column; 
  justify-content: center;
  gap: 7px; 
  cursor: pointer; 
  padding: 10px; 
  z-index: 10000; 
  width: 44px;
  height: 44px;
}

.hamburger span { 
  display: block; 
  width: 26px; 
  height: 1.5px; 
  background: var(--bg-dark); 
  transition: all 0.3s var(--transition-bezier); 
}

header:not(.scrolled) .hamburger span { 
  background: var(--white); 
}

header.menu-open { 
  background: transparent; 
  box-shadow: none; 
  backdrop-filter: none; 
}

header.menu-open .logo img { 
  filter: brightness(0) invert(1); 
}

header.menu-open .hamburger span { 
  background: var(--white); 
}

.hamburger.open span:nth-child(1) { 
  transform: translateY(4.25px) rotate(45deg); 
}

.hamburger.open span:nth-child(2) { 
  opacity: 0; 
}

.hamburger.open span:nth-child(3) { 
  transform: translateY(-4.25px) rotate(-45deg); 
}

#nav-overlay { 
  position: fixed; 
  inset: 0; 
  background: var(--bg-dark); 
  z-index: 9998; 
  flex-direction: column; 
  opacity: 0; 
  pointer-events: none; 
  transition: opacity 0.5s var(--transition-bezier); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
}

#nav-overlay.open { 
  opacity: 1; 
  pointer-events: all; 
}

#nav-overlay a { 
  font-family: 'Cormorant Garamond', serif; 
  font-size: clamp(2.5rem, 6vw, 4rem); 
  font-weight: 300; 
  color: var(--bg-primary); 
  padding: 12px 0; 
  opacity: 0; 
  transform: translateY(20px); 
  transition: all 0.4s var(--transition-bezier); 
  letter-spacing: 0.05em;
}

#nav-overlay.open a { 
  transform: translateY(0); 
  opacity: 1; 
}

#nav-overlay.open a:nth-child(1) { transition-delay: 0.1s; }
#nav-overlay.open a:nth-child(2) { transition-delay: 0.15s; }
#nav-overlay.open a:nth-child(3) { transition-delay: 0.2s; }
#nav-overlay.open a:nth-child(4) { transition-delay: 0.25s; }
#nav-overlay.open a:nth-child(5) { transition-delay: 0.3s; }
#nav-overlay.open a:nth-child(6) { transition-delay: 0.35s; }

#nav-overlay a:hover { 
  color: var(--accent); 
  padding-left: 10px;
}

.nav-bottom {
  position: absolute;
  bottom: 40px;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}

/* ─── HERO PREMIUM ─── */
#hero { 
  position: relative; 
  min-height: 100vh; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  overflow: hidden; 
  background: var(--bg-dark); 
  padding-top: 100px; /* space for fixed header */
}

.hero-container { 
  position: relative; 
  z-index: 3; 
  width: 100%; 
  max-width: 1350px; 
  margin: 0 auto; 
  padding: 40px 5%; 
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 80px;
  align-items: center;
}

.hero-content { 
  max-width: 620px; 
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-title {
  opacity: 0;
  transform: translateY(40px);
}

.hero-eyebrow, .hero-desc, .hero-cta, .hero-stat {
  opacity: 0;
  transform: translateY(30px);
}

.hero-desc { 
  color: rgba(255,255,255,0.8); 
  margin-bottom: 48px; 
  max-width: 480px; 
  line-height: 1.6;
}

.hero-cta { 
  background: var(--accent); 
  border-color: var(--accent); 
  color: var(--white); 
}

.hero-cta::after { 
  background: var(--white); 
}

.hero-cta:hover { 
  color: var(--bg-dark); 
}

/* New Separated Image Wrap in Hero */
.hero-image-wrap {
  position: relative;
  width: 100%;
  height: 580px;
  overflow: hidden;
  z-index: 3;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.hero-image-fade-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, var(--bg-dark) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-image-fade-bottom {
  display: none;
}

.hero-stat-overlay {
  position: absolute;
  bottom: 32px;
  right: 32px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  opacity: 0;
  transform: translateY(30px);
}

.hero-stat-overlay .number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 0.9;
  margin-bottom: 2px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero-stat-overlay .label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--white);
  text-transform: uppercase;
  font-weight: 400;
  opacity: 0.9;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.65);
}

/* ─── SOBRE A PROFISSIONAL ─── */
#sobre { 
  background: var(--bg-primary); 
}

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

.sobre-images { 
  position: relative; 
  width: 100%; 
  aspect-ratio: 4/5; 
}

.sobre-img-main { 
  position: absolute; 
  top: 0; 
  left: 0; 
  width: 85%; 
  height: 90%; 
  object-fit: cover; 
  border-radius: 4px; 
  box-shadow: var(--shadow-premium);
}

.sobre-img-accent { 
  position: absolute; 
  bottom: 0; 
  right: 0; 
  width: 50%; 
  height: 50%; 
  object-fit: cover; 
  border: 10px solid var(--bg-primary); 
  border-radius: 4px; 
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.sobre-badge {
  position: absolute; 
  top: 45%; 
  left: 45%;
  transform: translate(-50%, -50%);
  width: 130px; 
  height: 130px; 
  background: var(--accent); 
  border-radius: 50%;
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  justify-content: center; 
  text-align: center;
  box-shadow: 0 15px 40px rgba(196,154,138,0.35); 
  z-index: 5;
}

.sobre-badge .num { 
  font-family: 'Cormorant Garamond', serif; 
  font-size: 2.2rem; 
  font-weight: 400; 
  color: var(--white); 
  line-height: 1; 
  margin-bottom: 4px;
}

.sobre-badge .text { 
  font-size: 0.55rem; 
  letter-spacing: 0.15em; 
  color: rgba(255,255,255,0.9); 
  text-transform: uppercase; 
  line-height: 1.4; 
}

.sobre-content { 
  max-width: 540px; 
}

.sobre-content p { 
  margin-bottom: 24px; 
  text-align: justify; 
  text-justify: inter-word; 
}

.sobre-cards { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 16px; 
  margin-top: 48px; 
}

.s-card { 
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px 16px; 
  border: 1px solid var(--border-delicate); 
  text-align: center; 
  font-size: 0.75rem; 
  letter-spacing: 0.08em; 
  text-transform: uppercase; 
  color: var(--text-main); 
  background: rgba(255, 255, 255, 0.4); 
  backdrop-filter: blur(10px);
  border-radius: 12px; 
  transition: all 0.4s var(--transition-bezier); 
}

.s-card svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
  transition: transform 0.4s var(--transition-bezier), color 0.4s;
}

.s-card span {
  font-weight: 500;
  line-height: 1.4;
}

.s-card:hover { 
  background: var(--accent); 
  color: var(--white); 
  border-color: var(--accent); 
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(196,154,138,0.18);
}

.s-card:hover svg {
  color: var(--white);
  transform: scale(1.1) rotate(5deg);
}

/* ─── DIFERENCIAL ─── */
#diferencial { 
  background: var(--bg-dark); 
}

.dif-header-wrap { 
  display: flex; 
  justify-content: space-between; 
  align-items: flex-end; 
  margin-bottom: 80px; 
  gap: 40px; 
}

.dif-header-wrap h2 { 
  color: var(--bg-primary); 
  margin-bottom: 0; 
  max-width: 550px; 
}

.dif-header-wrap p { 
  color: rgba(255,255,255,0.6); 
  max-width: 380px; 
  margin-bottom: 10px; 
}

.dif-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 1px; 
  background: rgba(255,255,255,0.06); 
}

.dif-item { 
  padding: 60px 40px; 
  background: var(--bg-dark); 
  position: relative; 
  transition: background 0.4s, transform 0.4s var(--transition-bezier); 
}

.dif-item::before { 
  content: ''; 
  position: absolute; 
  bottom: 0; 
  left: 0; 
  width: 0; 
  height: 1px; 
  background: var(--accent); 
  transition: width 0.5s ease; 
}

.dif-item:hover::before { 
  width: 100%; 
}

.dif-item:hover { 
  background: rgba(196, 154, 138, 0.02); 
  transform: translateY(-4px);
}

.dif-icon { 
  color: var(--accent); 
  margin-bottom: 28px; 
}

.dif-icon svg { 
  width: 38px; 
  height: 38px; 
  fill: none; 
  stroke: currentColor; 
  stroke-width: 1.25; 
  stroke-linecap: round; 
  stroke-linejoin: round;
}

.dif-item h3 { 
  font-family: 'Cormorant Garamond', serif; 
  font-size: 1.5rem; 
  font-weight: 400; 
  color: var(--white); 
  margin-bottom: 16px; 
  letter-spacing: 0.02em;
}

.dif-item p { 
  font-size: 0.85rem; 
  font-weight: 300; 
  line-height: 1.8; 
  color: rgba(255,255,255,0.6); 
}

/* ─── ESPECIALIDADES PREMIUM ─── */
.especialidades-premium {
  background: radial-gradient(circle at 50% 0%, rgba(196, 154, 138, 0.08), transparent 34rem), #F5F2EC;
}

.especialidades-head { 
  text-align: center; 
  margin-bottom: clamp(48px, 6vw, 84px); 
}

.especialidades-grid { 
  display: grid; 
  grid-template-columns: repeat(4, 1fr); 
  gap: clamp(18px, 2vw, 32px); 
  align-items: stretch; 
}

.especialidade-card {
  min-height: 520px;
  padding: clamp(44px, 5vw, 72px) clamp(24px, 2.8vw, 44px);
  border: 1px solid rgba(196, 154, 138, 0.22);
  border-radius: 32px;
  background: radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.88), transparent 44%), linear-gradient(180deg, rgba(255,255,255,0.58), rgba(248,245,241,0.88));
  box-shadow: var(--shadow-premium), inset 0 1px 0 rgba(255,255,255,0.68);
  text-align: center;
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  justify-content: flex-start;
  transition: transform .45s var(--transition-bezier), box-shadow .45s var(--transition-bezier), border-color .45s ease, background .45s ease;
}

.especialidade-card:hover {
  transform: translateY(-8px);
  border-color: rgba(196, 154, 138, 0.52);
  box-shadow: var(--shadow-premium-hover), inset 0 1px 0 rgba(255,255,255,0.8);
  background: radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.95), transparent 46%), linear-gradient(180deg, rgba(255,255,255,0.74), rgba(248,245,241,0.95));
}

.especialidade-icon {
  width: 104px; 
  height: 104px; 
  margin: 0 auto clamp(48px, 5vw, 72px); 
  border-radius: 50%;
  border: 1px solid rgba(196, 154, 138, 0.34); 
  color: #c99887;
  background: radial-gradient(circle at 50% 38%, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.48) 42%, rgba(232,213,204,0.22) 100%);
  box-shadow: 0 22px 54px rgba(196, 154, 138, 0.14), 0 0 0 18px rgba(255,255,255,0.24), inset 0 1px 0 rgba(255,255,255,0.95);
  display: flex; 
  align-items: center; 
  justify-content: center; 
  position: relative;
  transition: transform .45s var(--transition-bezier), color .35s ease, border-color .35s ease, box-shadow .45s ease;
}

.especialidade-icon::before { 
  content: ""; 
  position: absolute; 
  inset: -18px; 
  border-radius: 50%; 
  background: radial-gradient(circle, rgba(196,154,138,0.08), transparent 68%); 
  z-index: -1; 
}

.especialidade-card:hover .especialidade-icon {
  transform: translateY(-4px) scale(1.035); 
  color: #a8796a; 
  border-color: rgba(196, 154, 138, 0.56);
  box-shadow: 0 26px 66px rgba(196, 154, 138, 0.2), 0 0 0 20px rgba(255,255,255,0.30), inset 0 1px 0 rgba(255,255,255,0.98);
}

.especialidade-icon svg { 
  width: 42px; 
  height: 42px; 
  fill: none; 
  stroke: currentColor; 
  stroke-width: 1.35; 
  stroke-linecap: round; 
  stroke-linejoin: round; 
}

.especialidade-card h3 { 
  font-family: 'Cormorant Garamond', serif; 
  font-size: clamp(2rem, 2.2vw, 2.65rem); 
  font-weight: 400; 
  line-height: 1.06; 
  letter-spacing: -0.025em; 
  color: #24211f; 
  margin: 0 0 28px; 
  text-wrap: balance; 
}

.especialidade-card p { 
  max-width: 310px; 
  margin: 0 auto; 
  font-family: 'Jost', sans-serif; 
  font-size: clamp(1.02rem, 1.06vw, 1.2rem); 
  font-weight: 300; 
  line-height: 1.9; 
  color: #7a716b; 
  text-wrap: pretty; 
}

.especialidade-card:nth-child(3) h3 { 
  max-width: 330px; 
}

/* ─── CARROSSÉIS DE PORTFÓLIO ─── */
.carousel-section { 
  padding: 140px 0 0; 
  background: var(--bg-primary); 
  overflow: hidden; 
}

.swiper-portfolio { 
  width: 100%; 
  overflow: visible; 
  padding: 24px 0 72px; 
}

.swiper-portfolio .swiper-wrapper { 
  align-items: center; 
}

.swiper-portfolio .swiper-slide {
  width: clamp(260px, 28vw, 360px);
  height: clamp(380px, 48vw, 520px);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: #111;
  opacity: .42;
  transform: scale(.88);
  transition: transform .65s var(--transition-bezier), opacity .65s ease, filter .65s ease, border-color .4s ease;
  filter: saturate(.85) contrast(.95);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  
  /* Luxury Frame Styling */
  border: 2px solid rgba(255, 255, 255, 0.08);
  padding: 8px;
}

.swiper-portfolio .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  filter: saturate(1) contrast(1.04);
  z-index: 5;
  box-shadow: 0 28px 80px rgba(0,0,0,.5);
  border-color: var(--accent); /* Elegant gold border on active slide */
}

.swiper-portfolio .swiper-slide-prev,
.swiper-portfolio .swiper-slide-next {
  opacity: .68;
  transform: scale(.93);
  border-color: rgba(255, 255, 255, 0.15);
}

.swiper-portfolio .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 12px; /* Perfect inner frame rounding */
}

.slide-overlay { 
  position: absolute; 
  inset: 0; 
  background: linear-gradient(to top, rgba(10,10,10,0.92) 0%, transparent 60%); 
  pointer-events: none; 
}

.slide-info { 
  position: absolute; 
  bottom: 0; 
  left: 0; 
  right: 0; 
  padding: 32px; 
  pointer-events: none; 
  text-align: center; 
}

.slide-name { 
  font-family: 'Cormorant Garamond', serif; 
  font-size: 1.55rem; 
  font-weight: 400; 
  color: var(--white); 
  margin-bottom: 8px; 
  letter-spacing: 0.02em; 
}

.slide-desc { 
  font-size: 0.8rem; 
  font-weight: 300; 
  color: rgba(255,255,255,0.8); 
  line-height: 1.5; 
  margin: 0 auto; 
  max-width: 240px; 
}

/* ─── BANNER ─── */
#banner { 
  background: var(--bg-dark); 
  display: flex; 
  flex-direction: column; 
}

.carousel-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.45);
  font-size: clamp(0.68rem, 2vw, 0.78rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 18px;
  margin-bottom: -10px;
  pointer-events: none;
}

.carousel-hint .hint-arrow {
  color: var(--accent);
  font-weight: 500;
  display: inline-block;
  animation: hintSwipe 1.6s infinite ease-in-out;
}

#depoimentos .carousel-hint {
  color: rgba(10, 10, 10, 0.45);
  margin-top: 24px;
  margin-bottom: 20px;
}

#depoimentos .carousel-hint .hint-arrow {
  color: #c5a07e;
}

@keyframes hintSwipe {
  0%, 100% { transform: translateX(0); opacity: 0.4; }
  50% { transform: translateX(4px); opacity: 1; }
}

.banner-img-wrap { 
  width: 100%; 
  height: auto; 
  overflow: hidden; 
}

.banner-img-wrap img { 
  width: 100%; 
  height: auto; 
  object-fit: contain; 
  filter: grayscale(0%) contrast(1.02); 
  display: block;
}

.banner-content { 
  text-align: center; 
  padding: 110px 5%; 
  background: var(--bg-dark); 
}

.banner-content h2 { 
  color: var(--bg-primary); 
  margin-bottom: 20px; 
}

.banner-content p { 
  color: rgba(255,255,255,0.7); 
  max-width: 600px; 
  margin: 0 auto 40px; 
}

/* ─── DEPOIMENTOS / PROVA SOCIAL ─── */
#depoimentos { 
  background: var(--bg-secondary); 
  padding: 140px 0; 
  text-align: center; 
  overflow: hidden; 
}

.dep-rating-summary { 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  justify-content: center; 
  margin-bottom: 60px; 
}

.dep-rating-score { 
  font-family: 'Cormorant Garamond', serif; 
  font-size: 4.2rem; 
  font-weight: 300; 
  color: var(--text-main); 
  line-height: 1; 
}

.dep-stars { 
  display: flex; 
  gap: 5px; 
  margin: 8px 0; 
}

.dep-stars svg { 
  color: var(--accent); 
  width: 18px; 
  height: 18px; 
  fill: currentColor; 
}

.dep-rating-label { 
  font-size: 0.75rem; 
  letter-spacing: 0.2em; 
  color: var(--text-light); 
  text-transform: uppercase; 
}

.swiper-depoimentos {
  width: 100%;
  overflow: visible;
  padding: 24px 0 72px;
}

.swiper-depoimentos .swiper-wrapper {
  align-items: stretch;
}

.swiper-depoimentos .swiper-slide {
  width: clamp(300px, 32vw, 440px);
  min-height: 320px;
  background: #fff;
  border: 1px solid rgba(196,154,138,.24);
  border-radius: 24px;
  padding: 44px 36px;
  opacity: .45;
  transform: scale(.9);
  transition: transform .65s var(--transition-bezier), opacity .65s ease, box-shadow .65s ease;
  display: flex; 
  flex-direction: column; 
  text-align: left;
}

.swiper-depoimentos .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 28px 75px rgba(87,65,58,.08);
  z-index: 4;
}

.swiper-depoimentos .swiper-slide-prev,
.swiper-depoimentos .swiper-slide-next {
  opacity: .72;
  transform: scale(.94);
}

.dep-card-header { 
  display: flex; 
  align-items: center; 
  gap: 16px; 
  margin-bottom: 24px; 
  position: relative;
}

.dep-avatar { 
  width: 56px; 
  height: 56px; 
  border-radius: 50%; 
  background: var(--accent-light); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-family: 'Cormorant Garamond', serif; 
  font-size: 1.45rem; 
  font-weight: 500; 
  color: var(--bg-dark); 
  flex-shrink: 0; 
}

.dep-name { 
  font-size: 1.1rem; 
  font-weight: 500; 
  color: var(--text-main); 
}

.dep-date { 
  font-size: 0.82rem; 
  color: var(--text-light); 
  font-weight: 300; 
  margin-top: 2px; 
}

.dep-card-stars { 
  display: flex; 
  gap: 4px; 
  margin-bottom: 20px; 
}

.dep-card-stars svg { 
  color: var(--accent); 
  width: 14px; 
  height: 14px; 
  fill: currentColor; 
}

.swiper-depoimentos .swiper-slide p { 
  font-size: 0.95rem; 
  font-weight: 300; 
  line-height: 1.8; 
  color: var(--text-light); 
  pointer-events: none; 
  margin: 0;
}

.dep-google-badge { 
  margin-left: auto; 
  display: flex; 
  align-items: center; 
}

.dep-google-badge svg { 
  width: 24px; 
  height: 24px; 
}

/* ─── ESPAÇO E LOCALIZAÇÃO ─── */
#ambiente { 
  background: var(--bg-primary); 
}

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

.espaco-img { 
  width: 100%; 
  aspect-ratio: 4/5; 
  object-fit: cover; 
  border-radius: 6px; 
  box-shadow: var(--shadow-premium);
}

.espaco-list { 
  margin-top: 40px; 
  display: flex; 
  flex-direction: column; 
  gap: 0; 
}

.espaco-item { 
  display: flex; 
  align-items: center; 
  gap: 20px; 
  padding: 24px 0; 
  border-bottom: 1px solid var(--border-delicate); 
}

.espaco-item svg { 
  width: 24px; 
  height: 24px; 
  color: var(--accent); 
  fill: none; 
  stroke: currentColor; 
  stroke-width: 1.5; 
  flex-shrink: 0; 
}

.espaco-item span { 
  font-size: 0.95rem; 
  font-weight: 300; 
  color: var(--text-main); 
}

#localizacao { 
  background: var(--bg-dark); 
}

.loc-wrapper { 
  background: var(--bg-primary); 
  border-radius: 16px; 
  overflow: hidden; 
  border: 1px solid rgba(196,154,138,0.18); 
  display: flex; 
  flex-direction: column; 
  box-shadow: 0 30px 70px rgba(0,0,0,0.3);
}

.loc-info { 
  padding: 48px; 
  display: flex; 
  align-items: center; 
  gap: 28px; 
  border-bottom: 1px solid rgba(196,154,138,0.15); 
}

.loc-info svg { 
  width: 44px; 
  height: 44px; 
  color: var(--accent); 
  fill: none; 
  stroke: currentColor; 
  stroke-width: 1.2; 
  flex-shrink: 0; 
}

.loc-info h3 { 
  font-family: 'Cormorant Garamond', serif; 
  font-size: 2.1rem; 
  color: var(--text-main); 
  margin-bottom: 8px; 
  font-weight: 400;
}

.loc-info p { 
  font-size: 0.95rem; 
  color: var(--text-light); 
  line-height: 1.7; 
  font-weight: 300;
}

.loc-map { 
  width: 100%; 
  height: 450px; 
}

.loc-map iframe { 
  width: 100%; 
  height: 100%; 
  border: none; 
  filter: grayscale(100%) contrast(1.15) invert(5%); 
  display: block; 
}

/* ─── FAQ ACCORDION ─── */
#faq { 
  background: var(--bg-secondary); 
}

.faq-inner { 
  max-width: 800px; 
  margin: 0 auto; 
}

.faq-item { 
  border-bottom: 1px solid var(--border-delicate); 
}

.faq-btn { 
  width: 100%; 
  text-align: left; 
  background: none; 
  border: none; 
  padding: 32px 0; 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  cursor: pointer; 
}

.faq-btn span { 
  font-family: 'Cormorant Garamond', serif; 
  font-size: 1.45rem; 
  color: var(--text-main); 
  font-weight: 400;
  letter-spacing: 0.01em;
}

.faq-icon-svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  transition: transform 0.4s var(--transition-bezier), color 0.4s ease;
  flex-shrink: 0;
  margin-left: 20px;
}

.faq-item.open .faq-icon-svg {
  transform: rotate(180deg);
  color: var(--text-main);
}

.faq-answer { 
  max-height: 0; 
  overflow: hidden; 
  transition: max-height 0.45s var(--transition-bezier); 
}

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

.faq-answer p { 
  font-size: 0.95rem; 
  font-weight: 300; 
  line-height: 1.9; 
  color: var(--text-light); 
  padding-bottom: 32px; 
}

/* ─── CTA FINAL ─── */
#cta-final { 
  padding: 180px 5%; 
  background: var(--accent-light); 
  text-align: center; 
  position: relative;
  overflow: hidden;
}

.cta-assinatura { 
  font-family: 'Great Vibes', cursive; 
  font-size: clamp(3.2rem, 6vw, 4.8rem); 
  color: var(--bg-dark); 
  margin-bottom: 24px; 
  display: block; 
}

.cta-divisor { 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  gap: 24px; 
  margin-bottom: 40px; 
}

.cta-line { 
  width: 80px; 
  height: 1px; 
  background: rgba(0,0,0,0.08); 
}

.cta-divisor svg { 
  width: 16px; 
  height: 16px; 
  color: var(--bg-dark); 
  fill: none; 
  stroke: currentColor; 
  stroke-width: 1.5; 
  stroke-linecap: round; 
  stroke-linejoin: round; 
}

#cta-final .title-primary { 
  max-width: 800px; 
  margin: 0 auto 24px; 
  color: var(--text-main);
}

#cta-final p { 
  max-width: 500px; 
  margin: 0 auto 48px; 
  color: var(--text-main); 
}

/* ─── FOOTER ─── */
footer { 
  background: var(--bg-dark); 
  padding: 100px 5% 40px; 
}

.footer-grid { 
  display: grid; 
  grid-template-columns: 1.5fr 1fr 1fr; 
  gap: 80px; 
  padding-bottom: 80px; 
  border-bottom: 1px solid rgba(255,255,255,0.05); 
  margin-bottom: 40px; 
}

.f-logo { 
  height: 56px; 
  filter: brightness(0) invert(1); 
  margin-bottom: 24px; 
  object-fit: contain;
}

.f-desc { 
  font-size: 0.9rem; 
  font-weight: 300; 
  line-height: 1.8; 
  color: rgba(255,255,255,0.55); 
  max-width: 340px; 
}

.f-title { 
  font-size: 0.72rem; 
  letter-spacing: 0.35em; 
  text-transform: uppercase; 
  color: var(--accent); 
  margin-bottom: 32px; 
  font-weight: 600;
}

.f-links { 
  display: flex; 
  flex-direction: column; 
  gap: 16px; 
}

.f-links a { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
  font-size: 0.9rem; 
  font-weight: 300; 
  color: rgba(255,255,255,0.6) !important; 
  transition: all 0.3s; 
}

.f-links a:hover { 
  color: var(--white) !important; 
  transform: translateX(4px);
}

.f-links a svg { 
  width: 18px; 
  height: 18px; 
  color: var(--accent); 
  fill: none; 
  stroke: currentColor; 
  stroke-width: 1.5; 
  flex-shrink: 0;
}

.f-socials { 
  display: flex; 
  gap: 12px; 
  margin-top: 32px; 
}

.f-socials a { 
  width: 44px; 
  height: 44px; 
  border: 1px solid rgba(255,255,255,0.08); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  color: rgba(255,255,255,0.6) !important; 
  transition: all 0.3s var(--transition-bezier); 
  border-radius: 50%; 
}

.f-socials a:hover { 
  border-color: var(--accent); 
  color: var(--white) !important; 
  background: var(--accent); 
  transform: translateY(-3px);
}

.f-socials svg { 
  width: 18px; 
  height: 18px; 
  stroke: currentColor; 
  fill: none; 
  stroke-width: 1.5; 
}

.f-socials .fill-icon svg { 
  stroke: none; 
  fill: currentColor; 
}

.f-bottom { 
  display: flex; 
  justify-content: space-between; 
  flex-wrap: wrap; 
  gap: 20px; 
}

.f-bottom p { 
  font-size: 0.8rem; 
  font-weight: 300; 
  color: rgba(255,255,255,0.35); 
}

.f-bottom a { 
  color: var(--accent) !important; 
  font-weight: 400;
}

/* ─── WHATSAPP PULSATING FLOATING BUTTON ─── */
#wpp-btn { 
  position: fixed; 
  bottom: 32px; 
  right: 32px; 
  z-index: 9900; 
  width: 64px; 
  height: 64px; 
  background: #25D366; 
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  box-shadow: 0 8px 30px rgba(37,211,102,0.3); 
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
  animation: wppPulse 2s infinite;
}

#wpp-btn:hover { 
  transform: scale(1.1) rotate(5deg); 
}

#wpp-btn svg { 
  width: 32px; 
  height: 32px; 
  fill: var(--white); 
}

@keyframes wppPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ─── RESPONSIVIDADE BLINDADA PARA MOBILE ─── */
@media (max-width: 1180px) {
  .especialidades-grid { 
    grid-template-columns: repeat(2, 1fr); 
  }
  .especialidade-card { 
    min-height: 480px; 
  }
}

@media (max-width: 1024px) {
  .section-padding { 
    padding: 120px 0; 
  }
  
  /* Entrada 100% Separada no Mobile */
  #hero { 
    padding-top: 90px;
    padding-bottom: 0;
    min-height: auto;
  }
  
  #hero::before {
    display: none;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 24px 5% 0 5%;
    text-align: center;
    justify-items: center;
  }
  
  .hero-content { 
    z-index: 3; 
    padding-top: 24px; 
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    max-width: 100%;
  }

  .hero-title {
    font-size: clamp(2.4rem, 6vw, 3.4rem);
    line-height: 1.2;
    margin-bottom: 16px;
  }
  
  .hero-desc { 
    margin-left: auto; 
    margin-right: auto; 
    text-align: center;
    margin-bottom: 32px;
  }

  .hero-cta {
    align-self: center;
  }

  .hero-image-wrap {
    height: 520px;
    border-radius: 0;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
    box-shadow: none;
  }

  .hero-image-fade-top {
    height: 140px;
    background: linear-gradient(to bottom, var(--bg-dark) 0%, transparent 100%);
  }

  .hero-image-fade-bottom {
    display: none;
  }

  .hero-stat-overlay {
    bottom: 24px;
    right: 24px;
    padding: 0;
    background: transparent;
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .hero-stat-overlay .number {
    font-size: 2.8rem;
  }

  .sobre-grid, 
  .catalogo-grid, 
  .espaco-grid { 
    grid-template-columns: 1fr; 
    gap: 60px; 
  }
  
  .sobre-images { 
    max-width: 500px; 
    margin: 0 auto; 
    height: auto; 
    aspect-ratio: 4/5; 
  }
  
  .sobre-content { 
    max-width: 100%; 
    text-align: center;
  }
  
  .sobre-content p {
    text-align: justify;
  }
  
  .sobre-content .eyebrow {
    text-align: center;
  }
  
  .dif-header-wrap { 
    flex-direction: column; 
    align-items: center; 
    text-align: center; 
    gap: 24px; 
  }
  
  .dif-header-wrap p { 
    margin: 0 auto; 
  }
  
  .dif-grid { 
    grid-template-columns: 1fr 1fr; 
  }
  
  .footer-grid { 
    grid-template-columns: 1fr; 
    gap: 60px; 
    text-align: center; 
  }
  
  .f-logo { 
    margin: 0 auto 24px; 
  }
  
  .f-desc { 
    margin: 0 auto; 
  }
  
  .f-links { 
    align-items: center; 
  }
  
  .f-socials { 
    justify-content: center; 
  }
}

@media (max-width: 768px) {
  /* Selo Sobre ajustado seguro */
  .sobre-badge { 
    width: 105px; 
    height: 105px; 
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); 
    padding: 10px; 
  }
  
  .sobre-badge .num { 
    font-size: 1.8rem; 
    margin-bottom: 2px;
  }
  
  .sobre-badge .text { 
    font-size: 0.5rem; 
  }
  
  .dif-grid { 
    grid-template-columns: 1fr; 
  }
  
  .especialidades-grid { 
    grid-template-columns: 1fr; 
    gap: 24px; 
  }
  
  .especialidade-card { 
    min-height: auto; 
    padding: 48px 26px 52px; 
    border-radius: 26px; 
  }
  
  .especialidade-icon { 
    width: 92px; 
    height: 92px; 
    margin-bottom: 46px; 
  }
  
  .especialidade-icon svg { 
    width: 38px; 
    height: 38px; 
  }
  
  .especialidade-card h3 { 
    font-size: 2.15rem; 
    margin-bottom: 22px; 
  }
  
  .especialidade-card p { 
    font-size: 1rem; 
    line-height: 1.8; 
  }
  
  /* Swiper Mobile Perfeito 100% Centro */
  .swiper-portfolio .swiper-slide { 
    width: min(82vw, 340px); 
    height: clamp(390px, 110vw, 460px); 
  }
  
  .swiper-depoimentos .swiper-slide { 
    width: min(86vw, 380px); 
    padding: 32px 24px; 
  }
  
  .loc-info { 
    flex-direction: column; 
    text-align: center; 
    padding: 32px 20px; 
  }
  
  .loc-map { 
    height: 350px; 
  }
  
  .f-bottom { 
    flex-direction: column; 
    align-items: center; 
    text-align: center; 
  }
}

@media (max-width: 480px) {
  .section-padding { 
    padding: 100px 0; 
  }
  
  .sobre-cards { 
    grid-template-columns: 1fr; 
  }
  
  .dif-item { 
    padding: 48px 32px; 
  }
  
  .banner-content { 
    padding: 80px 5%; 
  }
  
  #cta-final { 
    padding: 140px 5%; 
  }
}

/* ─── SEÇÃO DO CATÁLOGO DE SERVIÇOS ─── */
.catalog-teaser-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 20px;
  text-align: left;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.catalog-teaser-card:hover {
  transform: translateY(-10px);
  background: rgba(196, 154, 138, 0.04) !important;
  border-color: rgba(196, 154, 138, 0.3) !important;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
}

.catalog-teaser-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 20px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.catalog-teaser-card:hover .catalog-teaser-img-wrap {
  border-color: var(--accent);
  box-shadow: 0 8px 25px rgba(196, 154, 138, 0.15);
}

.catalog-teaser-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.catalog-teaser-card:hover .catalog-teaser-img-wrap img {
  transform: scale(1.08);
}

.catalog-teaser-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.catalog-teaser-card:hover .catalog-teaser-title {
  color: var(--accent);
}

.catalog-teaser-desc {
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

#catalogo-teaser .btn-premium {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

#catalogo-teaser .btn-premium:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(196, 154, 138, 0.5);
  background: linear-gradient(135deg, #a47666 0%, var(--accent) 100%) !important;
}
