/* ============================================================
   DENISE DE PAULA — MICROPIGMENTAÇÃO
   Brand: Navy Deep + Gold/Bronze + White
   ============================================================ */

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

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

:root {
  --navy:       #0c1c2e;
  --navy-mid:   #132740;
  --navy-light: #1e3a5a;
  --gold:       #b8965a;
  --gold-light: #d4b07a;
  --gold-dark:  #9a7840;
  --white:      #ffffff;
  --cream:      #f9f6f1;
  --cream-dark: #f0ebe2;
  --text-muted: #8a9bb0;
  --border:     #d8cdbf;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Montserrat', sans-serif;

  --section-pad: 120px 0;
  --container:   1240px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--navy);
  background: var(--white);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}

/* ── Utilities ─────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 48px; }
.section    { padding: var(--section-pad); }
.section-cream { background: var(--cream); }
.section-navy  { background: var(--navy); }

.label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 20px;
}
.section-title.white { color: var(--white); }

.section-desc {
  font-size: 15px;
  font-weight: 300;
  color: #4a607a;
  line-height: 2;
  max-width: 560px;
}
.section-desc.white { color: var(--text-muted); }

.divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 28px 0 40px;
}
.divider.center { margin: 28px auto 40px; }

/* ── Buttons ───────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  border: none;
  cursor: pointer;
  transition: all .3s ease;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover { background: var(--gold-dark); }

.btn-outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--white); }

.btn-outline-navy {
  background: transparent;
  border: 1px solid var(--navy);
  color: var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

.btn-navy {
  background: var(--navy);
  color: var(--gold);
}
.btn-navy:hover { background: var(--navy-light); }

.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover { background: var(--cream); }

/* ── HEADER ────────────────────────────────────── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(12, 28, 46, .97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 150, 90, .35);
  transition: all .3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 1px;
  flex-shrink: 0;
}

.logo-text { line-height: 1.2; }
.logo-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 2px;
}
.logo-tagline {
  display: block;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

nav { display: flex; align-items: center; justify-content: center; gap: 28px; flex: 1; }
nav a {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  transition: color .2s;
  white-space: nowrap;
}
nav a:hover { color: var(--gold); }

.header-cta {
  flex-shrink: 0;
}
.header-cta .btn {
  padding: 12px 28px;
  font-size: 10px;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  padding: 10px;
  flex-shrink: 0;
  z-index: 10;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  transition: all .3s;
}

/* ── HERO ──────────────────────────────────────── */
#hero {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--navy);
  padding-top: 96px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, var(--navy) 50%, transparent 100%);
  z-index: 1;
}

.hero-photo {
  position: absolute;
  right: 0;
  top: 0;
  width: 55%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: .55;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 360px 260px;
  gap: 48px;
  align-items: center;
  padding: 60px 0 80px;
}

/* Foto da Denise no Hero */
.hero-photo-col { display: flex; flex-direction: column; }

.hero-photo-frame {
  width: 100%;
  aspect-ratio: 3/4;
  border: 1px solid rgba(184,150,90,.3);
  overflow: hidden;
  position: relative;
  background: rgba(255,255,255,.03);
}

.hero-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}

.hero-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 32px;
}
.hero-title em { color: var(--gold); font-style: italic; }

.hero-desc {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,.65);
  line-height: 2;
  max-width: 480px;
  margin-bottom: 48px;
}

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero Form */
.hero-form-wrap {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(184,150,90,.25);
  padding: 48px 40px;
  backdrop-filter: blur(8px);
}

.form-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
}
.form-subtitle {
  font-size: 11px;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-bottom: 32px;
}

.form-field {
  margin-bottom: 20px;
}
.form-field label {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(184,150,90,.3);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  padding: 14px 18px;
  outline: none;
  transition: border-color .2s;
  appearance: none;
}
.form-field input::placeholder,
.form-field select::placeholder,
.form-field textarea::placeholder { color: rgba(255,255,255,.3); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--gold); }
.form-field select { background-color: var(--navy-mid); }
.form-field select option { color: var(--navy); background: var(--white); }

.form-field .btn { width: 100%; text-align: center; }

/* ── AUTHORITY SECTION ─────────────────────────── */
.authority-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.authority-text .section-title { margin-bottom: 0; }

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 60px;
}

.stat-card {
  background: var(--navy);
  padding: 48px 40px;
  position: relative;
}
.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 40px;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}
.stat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
}

.authority-quote {
  border-left: 1px solid var(--gold);
  padding-left: 32px;
  margin-top: 48px;
}
.authority-quote blockquote {
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
  color: var(--navy-light);
  line-height: 1.6;
}
.authority-quote cite {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 16px;
  display: block;
}

/* ── SERVICES ──────────────────────────────────── */
.services-header { text-align: center; max-width: 680px; margin: 0 auto 80px; }
.services-header .section-desc { margin: 0 auto; text-align: center; }

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

.service-card {
  background: var(--cream);
  padding: 52px 40px;
  display: flex;
  flex-direction: column;
  transition: background .3s;
  text-decoration: none;
  color: inherit;
}
.service-card:hover { background: var(--navy); }
.service-card:hover .service-icon { color: var(--gold); border-color: rgba(184,150,90,.4); }
.service-card:hover .service-name { color: var(--white); }
.service-card:hover .service-desc { color: rgba(255,255,255,.6); }
.service-card:hover .service-cta { color: var(--gold); border-bottom-color: var(--gold); }
.service-card:hover .service-divider { background: var(--gold); }

.service-icon {
  width: 52px;
  height: 52px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-light);
  font-size: 20px;
  margin-bottom: 32px;
  transition: all .3s;
}

.service-num {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.service-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 16px;
  transition: color .3s;
}

.service-divider {
  width: 24px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 16px;
  transition: background .3s;
}

.service-desc {
  font-size: 13px;
  font-weight: 300;
  color: #5a7090;
  line-height: 1.8;
  flex: 1;
  margin-bottom: 32px;
  transition: color .3s;
}

.service-cta {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--navy);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: all .3s;
}

/* ── GALLERY ───────────────────────────────────── */
.gallery-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 60px;
  border-bottom: 1px solid var(--border);
}
.gallery-tab {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 16px 32px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all .2s;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
}
.gallery-tab.active { color: var(--navy); border-bottom-color: var(--gold); }

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

.gallery-item {
  position: relative;
  overflow: hidden;
  width: 390px;
  max-width: 100%;
  height: 488px;
  background: var(--cream-dark);
  display: flex;
  flex-direction: column;
}

.gallery-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex: 1;
}

.gallery-before,
.gallery-after {
  position: relative;
  overflow: hidden;
  flex: 1;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--border) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-ba-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(12,28,46,.7);
  padding: 4px 8px;
}

.gallery-caption {
  padding: 20px 24px;
  background: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
}

/* ── TESTIMONIALS ──────────────────────────────── */
.testimonials-wrap { position: relative; overflow: hidden; width: 100%; }


.testimonials-track {
  display: flex;
  transition: transform .5s ease;
}

.testimonial-card {
  width: 33.333%;
  min-width: 33.333%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(184,150,90,.15);
  padding: 52px 40px;
  flex-shrink: 0;
  overflow: hidden;
  box-sizing: border-box;
}

.stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 28px;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  color: var(--white);
  line-height: 1.8;
  margin-bottom: 32px;
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  text-align: justify;
  hyphens: auto;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.author-avatar {
  width: 48px;
  height: 48px;
  background: var(--navy-light);
  border: 1px solid rgba(184,150,90,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--gold);
  flex-shrink: 0;
}
.author-name {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--white);
}
.author-city {
  font-size: 11px;
  font-weight: 300;
  color: var(--text-muted);
}

.testimonials-nav {
  display: flex;
  gap: 12px;
  margin-top: 52px;
  justify-content: center;
}
.t-nav-btn {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(184,150,90,.3);
  background: none;
  color: var(--gold);
  font-size: 18px;
  cursor: pointer;
  transition: all .2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.t-nav-btn:hover { background: var(--gold); color: var(--white); }

/* ── LEAD FORM ─────────────────────────────────── */
.lead-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.lead-form-info {
  background: var(--navy);
  padding: 100px 80px;
}
.lead-form-info .section-title { color: var(--white); }

.lead-form-info .section-desc { color: rgba(255,255,255,.6); }

.lead-form-features {
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.lead-feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.lead-feature-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(184,150,90,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}
.lead-feature-text {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,.7);
  line-height: 1.8;
}
.lead-feature-text strong {
  display: block;
  font-weight: 600;
  color: var(--white);
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.lead-form-panel {
  background: var(--cream);
  padding: 100px 80px;
}
.lead-form-panel .form-field label { color: var(--navy); }
.lead-form-panel input,
.lead-form-panel select,
.lead-form-panel textarea {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--navy);
}
.lead-form-panel input::placeholder,
.lead-form-panel textarea::placeholder { color: #9aacbe; }
.lead-form-panel input:focus,
.lead-form-panel select:focus,
.lead-form-panel textarea:focus { border-color: var(--gold); }
.lead-form-panel select { background-color: var(--white); color: var(--navy); }

/* ── BLOG PREVIEW ──────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}

.blog-card {
  background: var(--cream);
  text-decoration: none;
  color: inherit;
  display: block;
  transition: background .3s;
}
.blog-card:hover { background: var(--cream-dark); }

.blog-card-img {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.blog-card-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(184,150,90,.4);
  font-size: 48px;
}

.blog-card-body { padding: 40px 36px; }

.blog-category {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.blog-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 16px;
}

.blog-excerpt {
  font-size: 13px;
  font-weight: 300;
  color: #5a7090;
  line-height: 1.9;
  margin-bottom: 28px;
}

.blog-read-more {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

/* ── FOOTER ────────────────────────────────────── */
#footer {
  background: var(--navy);
  border-top: 1px solid rgba(184,150,90,.2);
  padding: 100px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 280px 1fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-brand .logo { margin-bottom: 28px; }
.footer-brand p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,.5);
  line-height: 1.9;
  margin-bottom: 32px;
}

.footer-col h4 {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--white); }

.footer-contact p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,.55);
  line-height: 2;
  margin-bottom: 8px;
}
.footer-contact a {
  color: var(--gold);
  text-decoration: none;
}
.footer-contact a:hover { color: var(--gold-light); }

.footer-whatsapp-box {
  margin-top: 28px;
  border: 1px solid rgba(184,150,90,.25);
  padding: 24px 28px;
}
.footer-whatsapp-box h5 {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-whatsapp-box a {
  display: block;
  font-size: 14px;
  color: var(--white);
  text-decoration: none;
  margin-bottom: 8px;
  font-weight: 400;
}
.footer-whatsapp-box a:hover { color: var(--gold); }

.footer-bottom {
  padding: 32px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  font-size: 11px;
  font-weight: 300;
  color: rgba(255,255,255,.3);
}
.footer-bottom a { color: rgba(255,255,255,.3); text-decoration: none; }
.footer-cnpj {
  font-size: 10px;
  color: rgba(255,255,255,.25);
  letter-spacing: .5px;
}

/* ── VITRINE ───────────────────────────────────── */
.vitrine-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}

.vitrine-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  background: var(--navy-light);
}
.vitrine-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.vitrine-item:hover img { transform: scale(1.06); }

.vitrine-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,28,46,.85) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  align-items: flex-end;
  padding: 20px 18px;
}
.vitrine-item:hover .vitrine-overlay { opacity: 1; }
.vitrine-caption {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.4;
}

.vitrine-placeholder {
  grid-column: 1 / -1;
  border: 1px dashed rgba(184,150,90,.2);
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vitrine-ph-inner { text-align: center; }

.vitrine-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(8,18,32,.97);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.vitrine-lightbox.open { display: flex; }
.vitrine-lb-img { max-width: 90vw; max-height: 80vh; object-fit: contain; display: block; }
.vitrine-lb-cap {
  font-size: 10px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); margin-top: 20px; text-align: center;
}
.vitrine-lb-close {
  position: absolute; top: 24px; right: 28px;
  background: none; border: none; color: rgba(255,255,255,.7); font-size: 28px;
  cursor: pointer; line-height: 1; transition: color .2s;
}
.vitrine-lb-close:hover { color: var(--white); }
.vitrine-lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(12,28,46,.6); border: 1px solid rgba(184,150,90,.3);
  color: var(--gold); font-size: 20px; width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .2s;
}
.vitrine-lb-nav:hover { background: rgba(184,150,90,.2); }
.vitrine-lb-prev { left: 20px; }
.vitrine-lb-next { right: 20px; }

@media (max-width: 900px) { .vitrine-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .vitrine-grid { grid-template-columns: repeat(2, 1fr); gap: 2px; } }

/* ── FLOATING WHATSAPP ─────────────────────────── */
.float-wa {
  position: fixed;
  bottom: 36px;
  right: 36px;
  z-index: 999;
  background: #25d366;
  color: var(--white);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(37,211,102,.3);
  transition: transform .2s;
}
.float-wa:hover { transform: scale(1.08); }

/* ── SCROLL TO TOP ─────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 36px;
  right: 104px;
  z-index: 999;
  background: var(--gold);
  color: var(--white);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  border: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }

/* ── MOBILE NAV ────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 998;
  background: var(--navy);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-close {
  position: absolute;
  top: 28px;
  right: 28px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
}

/* ── ANIMATIONS ────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ────────────────────────────────── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

/* Foto mobile — oculta no desktop */
.hero-mobile-photo {
  display: none;
}

@media (max-width: 900px) {
  :root { --section-pad: 80px 0; }
  .container { padding: 0 20px; }
  nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex !important; }
  .logo-icon { width: 52px; height: 52px; }
  .logo-name { font-size: 13px; }
  .logo-tagline { font-size: 7px; }
  /* Hero mobile: foto → texto → form empilhados */
  #hero { padding-top: 80px; }
  .hero-content { display: flex; flex-direction: column; gap: 0; padding: 0; }
  .hero-left { text-align: left; padding: 40px 0 32px; order: 2; }
  .hero-eyebrow { justify-content: flex-start; }
  .hero-ctas { justify-content: flex-start; flex-direction: column; }
  .hero-ctas .btn { text-align: center; }
  .hero-desc { max-width: 100%; }
  .hero-form-wrap { padding: 32px 24px; order: 3; margin: 0 -20px; }
  .hero-photo { display: none; }
  .hero-photo-col { display: none; }
  .hero-mobile-photo {
    display: block;
    text-align: center;
    order: 1;
    padding: 32px 0 0;
  }
  .hero-mobile-photo img {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
  }
  .authority-grid { grid-template-columns: 1fr; gap: 52px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .lead-form-grid { grid-template-columns: 1fr; }
  .lead-form-info { padding: 72px 40px; }
  .lead-form-panel { padding: 72px 40px; }
}

@media (max-width: 640px) {
  .container { padding: 0 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .testimonials-track .testimonial-card { width: 100%; min-width: 100%; padding: 36px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 48px; }
}
