/* ═══════════════════════════════════════════════════════════════
   CURA DO AMOR — Carinna Cartomante
   style.css
═══════════════════════════════════════════════════════════════ */

/* ─── CUSTOM PROPERTIES ─────────────────────────────────────── */
:root {
  /* Colors */
  --bg:          #07050e;
  --bg-2:        #0e0920;
  --bg-3:        #160d2e;
  --bg-card:     #110c22;
  --bg-card-2:   #1a1235;

  --gold:        #c9a84c;
  --gold-light:  #e8cb7a;
  --gold-dark:   #9b7930;
  --gold-glow:   rgba(201,168,76,.18);
  --gold-glow-2: rgba(201,168,76,.08);

  --purple:      #6b3fa0;
  --purple-light:#9b6fd4;
  --rose:        #b8567a;

  --text:        #f0e6d3;
  --text-muted:  #9b8fa8;
  --text-dim:    #6a5f78;
  --border:      rgba(201,168,76,.15);
  --border-2:    rgba(255,255,255,.07);

  /* Typography */
  --font-display: 'Cinzel Decorative', serif;
  --font-heading: 'Cinzel', serif;
  --font-body:    'Crimson Pro', Georgia, serif;

  /* Spacing */
  --space-xs:  .5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  6rem;
  --space-2xl: 9rem;

  /* Layout */
  --container: 1200px;
  --radius:    4px;
  --radius-lg: 12px;

  /* Transitions */
  --ease:      cubic-bezier(.4,0,.2,1);
  --ease-out:  cubic-bezier(0,0,.2,1);
  --dur:       .3s;
  --dur-slow:  .6s;

  /* Header */
  --header-h: 80px;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }
input, select, textarea { font: inherit; }
blockquote { margin: 0; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius);
}

/* ─── GRAIN TEXTURE ─────────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: .025;
  pointer-events: none;
  z-index: 9999;
}

/* ─── STARS CANVAS ───────────────────────────────────────────── */
#starsCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: .6;
}

.section-stars {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: .55;
}

/* ─── CONTAINER ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  position: relative;
  z-index: 1;
}

/* ─── SHARED SECTION STYLES ─────────────────────────────────── */
.section {
  padding: var(--space-2xl) 0;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-lg);
}

.section-eyebrow {
  font-family: var(--font-heading);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: var(--space-sm);
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.15rem;
  line-height: 1.8;
  margin-top: var(--space-md);
}

/* ─── GOLD DIVIDER ───────────────────────────────────────────── */
.divider-gold {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: var(--space-md) 0;
  position: relative;
}
.divider-gold--center { margin-left: auto; margin-right: auto; }
.divider-gold::before,
.divider-gold::after {
  content: '✦';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: .55rem;
  color: var(--gold);
}
.divider-gold::before { left: -1rem; }
.divider-gold::after  { right: -1rem; }

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  font-family: var(--font-heading);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.08);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.btn:hover::after { opacity: 1; }

.btn--gold {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  color: #0a0710;
  border: 1px solid var(--gold);
  box-shadow: 0 0 24px var(--gold-glow);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 32px rgba(201,168,76,.35);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,.25);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn--lg  { padding: 1rem 2.5rem; font-size: .9rem; }
.btn--full { width: 100%; justify-content: center; }

/* ─── HEADER ─────────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  transition: background var(--dur-slow) var(--ease),
              box-shadow var(--dur-slow) var(--ease),
              height var(--dur) var(--ease);
}

.header.scrolled {
    background: rgb(16 11 34);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 0px 0 var(--border);
    height: 68px;
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

/* Logo */
.header__logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-symbol {
  font-size: 1.4rem;
  color: var(--gold);
  animation: spin-slow 20s linear infinite;
  display: inline-block;
}

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

.logo-main {
  font-family: var(--font-display);
  font-size: clamp(.9rem, 2vw, 1.1rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: .05em;
}

.logo-sub {
  font-family: var(--font-heading);
  font-size: .65rem;
  letter-spacing: .18em;
  color: var(--gold);
  text-transform: uppercase;
}

/* Nav */
.header__nav { margin-left: auto; }

.nav-list {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: .5rem .75rem;
  border-radius: var(--radius);
  transition: color var(--dur) var(--ease);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--dur) var(--ease);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
}

/* WhatsApp header btn */
.btn-whatsapp-header {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem 1.1rem;
  background: linear-gradient(135deg, #128c3a, #25d366);
  color: #fff;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  flex-shrink: 0;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.btn-whatsapp-header:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37,211,102,.3);
}
.btn-whatsapp-header i { font-size: 1rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  border-radius: var(--radius);
  transition: gap var(--dur) var(--ease);
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease),
              opacity var(--dur) var(--ease),
              background var(--dur) var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.hamburger.open span { background: var(--gold); }

/* ─── NAV OVERLAY ────────────────────────────────────────────── */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(4px);
  z-index: 149;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-slow) var(--ease);
}
.nav-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

/* ─── DRAWER ─────────────────────────────────────────────────── */
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 90vw);
  height: 100%;
  background: var(--bg-3);
  border-left: 1px solid var(--border);
  z-index: 150;
  display: flex;
  flex-direction: column;
  padding: var(--space-lg) var(--space-md) var(--space-md);
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease);
  overflow-y: auto;
}
.drawer.open { transform: translateX(0); }

.drawer__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.2rem;
  border-radius: 50%;
  border: 1px solid var(--border-2);
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.drawer__close:hover { color: var(--gold); border-color: var(--gold); }

.drawer__logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border);
}
.drawer__logo .logo-symbol { color: var(--gold); font-size: 1.2rem; }

.drawer__nav {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  flex: 1;
}

.drawer-link {
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: .85rem 1rem;
  border-radius: var(--radius);
  border-left: 2px solid transparent;
  transition: all var(--dur) var(--ease);
}
.drawer-link:hover {
  color: var(--gold);
  border-left-color: var(--gold);
  background: var(--gold-glow-2);
  padding-left: 1.5rem;
}

.drawer__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-top: var(--space-md);
  padding: 1rem;
  background: linear-gradient(135deg, #128c3a, #25d366);
  color: #fff;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.drawer__cta:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(37,211,102,.3); }
.drawer__cta i { font-size: 1.2rem; }

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100dvh;
  min-height: 600px;
}

.hero-swiper { width: 100%; height: 100%; }

.hero-slide {
  position: relative;
  overflow: hidden;
}

.hero-slide__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s var(--ease);
}
.swiper-slide-active .hero-slide__bg { transform: scale(1); }

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7,5,14,.85) 0%,
    rgba(14,9,32,.7) 50%,
    rgba(7,5,14,.5) 100%
  );
}

.hero-slide__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--header-h);
  z-index: 2;
}

.hero-eyebrow {
  font-family: var(--font-heading);
  font-size: .8rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease) .2s, transform .8s var(--ease) .2s;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: var(--space-md);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s var(--ease) .35s, transform .8s var(--ease) .35s;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 300;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: rgba(240,230,211,.8);
  max-width: 480px;
  margin-bottom: var(--space-lg);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease) .5s, transform .8s var(--ease) .5s;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease) .65s, transform .8s var(--ease) .65s;
}

.swiper-slide-active .hero-eyebrow,
.swiper-slide-active .hero-title,
.swiper-slide-active .hero-subtitle,
.swiper-slide-active .hero-actions {
  opacity: 1;
  transform: none;
}

/* Hero navigation */
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--text);
  font-size: 1rem;
  border-radius: 50%;
  transition: all var(--dur) var(--ease);
  backdrop-filter: blur(8px);
}
.hero-nav:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #0a0710;
  transform: translateY(-50%) scale(1.08);
}
.hero-nav--prev { left: clamp(1rem, 3vw, 2.5rem); }
.hero-nav--next { right: clamp(1rem, 3vw, 2.5rem); }

/* Hero pagination */
.hero-pagination {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: .5rem;
}
.hero-pagination .swiper-pagination-bullet {
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,.3);
  opacity: 1;
  transition: background var(--dur) var(--ease), width var(--dur) var(--ease);
}
.hero-pagination .swiper-pagination-bullet-active {
  background: var(--gold);
  width: 48px;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  right: clamp(1.5rem, 4vw, 3rem);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  writing-mode: vertical-rl;
}
.hero-scroll-hint span {
  font-family: var(--font-heading);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: .5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.3); }
}

/* ─── NÚMEROS ────────────────────────────────────────────────── */
.numeros {
  background: var(--bg-3);
  border-top: none;
  border-bottom: none;
  padding: 3rem 0;
  position: relative;
  z-index: 1;
}
.numeros__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}
.numeros__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .4rem;
}
.numeros__num {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.numeros__label {
  font-family: var(--font-heading);
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.numeros__sep {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

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

.sobre__ornament {
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: none;
  opacity: .4;
}

.sobre__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}

/* Visual */
.sobre__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.sobre__frame {
  position: relative;
  width: min(380px, 100%);
}

.sobre__frame-ring {
  position: absolute;
  inset: -16px;
  border: 1px solid var(--border);
  border-radius: 50% 40% 60% 40% / 40% 60% 40% 60%;
  animation: morph-ring 12s ease-in-out infinite;
}
.sobre__frame-ring::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(201,168,76,.12);
  border-radius: 60% 40% 50% 50% / 50% 40% 60% 50%;
  animation: morph-ring 8s ease-in-out infinite reverse;
}

@keyframes morph-ring {
  0%, 100% { border-radius: 50% 40% 60% 40% / 40% 60% 40% 60%; }
  33% { border-radius: 60% 40% 40% 60% / 60% 40% 60% 40%; }
  66% { border-radius: 40% 60% 60% 40% / 40% 60% 40% 60%; }
}

.sobre__photo {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 1;
  filter: brightness(.95) contrast(1.05);
  display: block;
}

/* Content */
.sobre__text {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.50;
  margin-bottom: 1.2rem;
}

/* ─── SERVIÇOS ───────────────────────────────────────────────── */
.servicos { background: var(--bg); position: relative; }
.servicos > .container { position: relative; z-index: 1; }

.servicos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.servico-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  position: relative;
}
.servico-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-dark);
  box-shadow: 0 8px 40px rgba(0,0,0,.4), 0 0 20px var(--gold-glow-2);
}

.servico-card--featured {
  border-color: var(--gold-dark);
  box-shadow: 0 0 30px var(--gold-glow);
}

.servico-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  padding: .3rem .8rem;
  background: var(--gold);
  color: #0a0710;
  font-family: var(--font-heading);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 999px;
}

.servico-card__img-wrap {
  position: relative;
  height: 260px;
  overflow: hidden;
}
.servico-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.servico-card:hover .servico-card__img { transform: scale(1.06); }

.servico-card__glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg-card) 0%, transparent 50%);
  pointer-events: none;
}

.servico-card__body {
  padding: var(--space-md);
}

.servico-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-glow);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.servico-card__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .75rem;
}

.servico-card__desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.45;
  margin-bottom: 1.5rem;
}

.servico-card__link {
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: gap var(--dur) var(--ease);
}
.servico-card__link:hover { gap: .75rem; }

/* ─── GALERIA ────────────────────────────────────────────────── */
.galeria { background: var(--bg-2); overflow: hidden; }

.galeria__track-wrap {
  position: relative;
  margin-top: var(--space-md);
  padding: 0 clamp(1rem, 3vw, 4rem);
}

.galeria-swiper {
  overflow: visible;
}

.galeria-slide {
  width: 340px;
}

.galeria-slide__inner {
  position: relative;
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: border-color var(--dur) var(--ease);
}
.galeria-slide__inner:hover { border-color: var(--gold-dark); }

.galeria-slide__inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.galeria-slide__inner:hover img { transform: scale(1.06); }

.galeria-slide__hover {
  position: absolute;
  inset: 0;
  background: rgba(7,5,14,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.galeria-slide__inner:hover .galeria-slide__hover { opacity: 1; }
.galeria-slide__hover i { color: var(--gold); font-size: 1.8rem; }

/* Gallery navigation */
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--text-muted);
  border-radius: 50%;
  font-size: .9rem;
  transition: all var(--dur) var(--ease);
}
.gallery-nav:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #0a0710;
}
.gallery-nav--prev { left: 0; }
.gallery-nav--next { right: 0; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox[hidden] { display: none; }

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.92);
  cursor: pointer;
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--text);
  font-size: 1.2rem;
  border-radius: 50%;
  transition: all var(--dur) var(--ease);
}
.lightbox__close:hover { background: var(--rose); border-color: var(--rose); }

.lightbox__stage {
  position: relative;
  z-index: 5;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--text);
  border-radius: 50%;
  font-size: 1rem;
  transition: all var(--dur) var(--ease);
}
.lightbox__nav:hover { background: var(--gold); border-color: var(--gold); color: #0a0710; }
.lightbox__nav--prev { left: 2rem; }
.lightbox__nav--next { right: 2rem; }

/* ─── DEPOIMENTOS ────────────────────────────────────────────── */
.depoimentos {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.depoimentos > .container { position: relative; z-index: 1; }

.depoimentos__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(107,63,160,.08) 0%, transparent 70%);
  pointer-events: none;
}

.depoimentos__track-wrap {
  position: relative;
}

.depo-slide { height: auto; }

/* Depo image card */
.depo-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color var(--dur) var(--ease);
}
.depo-img-wrap:hover { border-color: var(--gold-dark); }
.depo-img-wrap:hover .depo-img__overlay { opacity: 1; }

.depo-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.depo-img__overlay {
  position: absolute;
  inset: 0;
  background: rgba(7,5,14,.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
  color: var(--gold-light);
  font-size: 2rem;
}

/* Depo navigation */
.depo-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--text-muted);
  border-radius: 50%;
  font-size: .9rem;
  transition: all var(--dur) var(--ease);
}
.depo-nav:hover { background: var(--gold); border-color: var(--gold); color: #0a0710; }
.depo-nav--prev { left: -1.5rem; }
.depo-nav--next { right: -1.5rem; }

.depo-pagination {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: var(--space-md);
}
.depo-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-dim);
  opacity: 1;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.depo-pagination .swiper-pagination-bullet-active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ─── CTA BANNER ─────────────────────────────────────────────── */
.cta-banner {
  position: relative;
  padding: var(--space-xl) 0;
  overflow: hidden;
  z-index: 1;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(107,63,160,.2) 0%, rgba(184,86,122,.15) 50%, rgba(201,168,76,.1) 100%),
    var(--bg-3);
  z-index: -1;
}
.cta-banner__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(107,63,160,.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(184,86,122,.12) 0%, transparent 60%);
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.cta-banner__text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: .75rem;
}
.cta-banner__text p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.cta-banner__actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

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

.contato__cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.contato__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

/* Contact info */
.contato__info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item__icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-glow);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.1rem;
}

.contact-item__text h4 {
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .25rem;
}
.contact-item__text a,
.contact-item__text p {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.5;
  transition: color var(--dur) var(--ease);
}
.contact-item__text a:hover { color: var(--gold); }

/* Social buttons */
.contato__social {
  display: flex;
  gap: .75rem;
  margin-top: .5rem;
}

.social-btn {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-muted);
  font-size: .9rem;
  transition: all var(--dur) var(--ease);
}
.social-btn:hover {
  background: var(--gold-glow);
  border-color: var(--gold-dark);
  color: var(--gold);
  transform: translateY(-2px);
}
.social-btn--sm { width: 36px; height: 36px; font-size: .8rem; }

/* Form */
.contato__form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group label span { color: var(--gold); }

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  color: var(--text);
  padding: .85rem 1rem;
  font-size: 1rem;
  width: 100%;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px var(--gold-glow-2);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
}
.form-group select option { background: var(--bg-3); }
.form-group textarea { resize: vertical; min-height: 130px; }

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

.form-success {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem;
  background: rgba(37,211,102,.08);
  border: 1px solid rgba(37,211,102,.25);
  border-radius: var(--radius);
  color: #4ade80;
  font-size: 1rem;
  margin-top: 1rem;
}
.form-success i { font-size: 1.25rem; }
.form-success[hidden] { display: none; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer { background: var(--bg); border-top: 1px solid var(--border); }

.footer__bottom { padding: 1.75rem 0; }

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

.footer__logo {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.footer__logo .logo-symbol { color: var(--gold); font-size: 1.4rem; }

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text);
  display: block;
}
.footer__brand-sub {
  font-family: var(--font-heading);
  font-size: .65rem;
  letter-spacing: .15em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-top: .15rem;
}

.footer__social {
  display: flex;
  gap: .5rem;
}

/* ─── FABs ───────────────────────────────────────────────────── */
.fab {
  position: fixed;
  z-index: 80;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.3rem;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

.fab--whatsapp {
  bottom: 2rem;
  right: 2rem;
  background: linear-gradient(135deg, #128c3a, #25d366);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
}
.fab--whatsapp:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,.5); }

.fab--top {
  bottom: 6.5rem;
  right: 2rem;
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 1rem;
}
.fab--top[hidden] { display: none; }
.fab--top:hover { background: var(--gold-glow); border-color: var(--gold-dark); color: var(--gold); transform: translateY(-2px); }

/* ─── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes spin-slow {
  to { transform: rotate(360deg); }
}

/* ─── SWIPER OVERRIDES ───────────────────────────────────────── */
.swiper-wrapper { transition-timing-function: var(--ease) !important; }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .servicos__grid { grid-template-columns: 1fr 1fr; }
  .servico-card:nth-child(3) { grid-column: span 2; }
}

@media (max-width: 900px) {
  :root { --header-h: 68px; }

  .header__nav,
  .btn-whatsapp-header { display: none; }
  .hamburger { display: flex; }

  .sobre__grid { grid-template-columns: 1fr; gap: 3rem; }
  .sobre__visual { order: -1; }
  .sobre__photo { height: 400px; }
  .numeros__inner { gap: 2.5rem; }

  .contato__grid { grid-template-columns: 1fr; }

  .cta-banner__inner {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  .cta-banner__actions { justify-content: center; }

  .depo-nav--prev { left: -.75rem; }
  .depo-nav--next { right: -.75rem; }
}

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

  .section-title { font-size: clamp(1.7rem, 6vw, 2.5rem); }

  .servicos__grid { grid-template-columns: 1fr; }
  .servico-card:nth-child(3) { grid-column: auto; }


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

  .hero-title { font-size: clamp(2rem, 9vw, 3.5rem); }
  .hero-actions { flex-direction: column; align-items: flex-start; }

  .numeros__inner { flex-direction: column; gap: 1.75rem; }
  .numeros__sep { width: 48px; height: 1px; }
  .sobre__photo { height: 320px; }

  .galeria__track-wrap { padding: 0 2.5rem; }

  .footer__bottom-inner { flex-direction: column; align-items: center; text-align: center; }
}

@media (max-width: 480px) {
  /* Disable AOS on very small screens — handled in JS too */
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .hero-scroll-hint { display: none; }
  .hero-nav { width: 40px; height: 40px; font-size: .85rem; }

  .depo-img { height: 320px; }

  .lightbox__nav { display: none; }
}
