/* ============================================================
   MÁRCIO RIOS CELEBRANTE — Design System Premium
   Versão 2.0 — UI/UX Sofisticado
   ============================================================

   PALETA OFICIAL
   --blue:    #5B6C7B  (identidade / destaques)
   --offwhite:#F6F4F1  (fundo principal)
   --sand:    #E7DED4  (áreas suaves)
   --graphite:#2E3135  (texto / seções escuras)
   --white:   #FFFFFF  (branco puro)

   TIPOGRAFIA
   Títulos : Cormorant Garamond (serif elegante)
   Corpo   : Montserrat (sans-serif moderno)
   ============================================================ */

/* ── Custom Properties ──────────────────────────────────────── */
:root {
  --blue:        #5B6C7B;
  --blue-dark:   #3F4F5C;
  --blue-light:  #8EA5B4;
  --blue-mist:   rgba(91,108,123,0.08);
  --offwhite:    #F6F4F1;
  --sand:        #E7DED4;
  --sand-dark:   #D4C8BB;
  --graphite:    #2E3135;
  --graphite-mid:#4A5058;
  --white:       #FFFFFF;
  --text:        #2E3135;
  --text-mid:    #5A5F66;
  --text-light:  #8A9097;
  --border:      #DDD8D1;
  --border-light:#EEEBE6;

  --font-serif:  'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans:   'Montserrat', Arial, sans-serif;

  --nav-h:       80px;
  --radius-sm:   6px;
  --radius:      12px;
  --radius-lg:   20px;

  --shadow-xs:   0 1px 4px rgba(46,49,53,0.06);
  --shadow-sm:   0 4px 16px rgba(46,49,53,0.08);
  --shadow-md:   0 12px 40px rgba(46,49,53,0.12);
  --shadow-lg:   0 24px 70px rgba(46,49,53,0.16);

  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:    cubic-bezier(0.0, 0.0, 0.2, 1);
  --duration:    0.4s;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  background: var(--offwhite);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--blue);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}
a:hover { color: var(--blue-dark); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: 0.01em;
}

p { color: var(--text-mid); line-height: 1.8; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--offwhite); }
::-webkit-scrollbar-thumb { background: var(--sand-dark); border-radius: 3px; }

::selection { background: rgba(91,108,123,0.15); color: var(--text); }

/* ── Utilitários ────────────────────────────────────────────── */
.u-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

.u-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.12;
  margin-bottom: 24px;
}

.u-title em {
  font-style: italic;
  color: var(--blue);
}

.u-title--white { color: var(--white); }
.u-title--white em { color: var(--sand); }

.u-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 560px;
}

.u-subtitle--white { color: rgba(255,255,255,0.72); }

.u-divider {
  width: 40px;
  height: 1px;
  background: var(--blue);
  border: none;
  margin: 0 auto 48px;
  opacity: 0.5;
}

.u-divider--left { margin-left: 0; }

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; display: block; }

/* ── Botões ─────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--blue);
  color: var(--white) !important;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1.5px solid var(--blue);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--duration);
}

.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(91,108,123,0.35);
}

/* Alias para compatibilidade com código existente */
.btn-gold { 
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--blue);
  color: var(--white) !important;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1.5px solid var(--blue);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--duration) var(--ease);
}
.btn-gold:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(91,108,123,0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  background: transparent;
  color: var(--blue) !important;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1.5px solid var(--blue);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--duration) var(--ease);
}
.btn-outline:hover {
  background: var(--blue);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(91,108,123,0.25);
}

.btn-outline--white {
  color: var(--white) !important;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline--white:hover {
  background: var(--white);
  color: var(--blue) !important;
  border-color: var(--white);
}

/* Alias */
.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  background: transparent;
  color: var(--blue) !important;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1.5px solid var(--blue);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--duration) var(--ease);
}
.btn-outline-gold:hover {
  background: var(--blue);
  color: var(--white) !important;
  transform: translateY(-2px);
}

/* ── NAVBAR ─────────────────────────────────────────────────── */
#mainNav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(246,244,241,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 1px 24px rgba(46,49,53,0.07);
  transition:
    box-shadow var(--duration) var(--ease),
    height var(--duration) var(--ease);
}

#mainNav.scrolled {
  box-shadow: 0 2px 32px rgba(46,49,53,0.11);
  height: 68px;
}

#mainNav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 32px;
  max-width: 1280px;
  margin: 0 auto;
}

/* Brand / Logo */
.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: opacity var(--duration) var(--ease);
}
.navbar-brand:hover .brand-logo { opacity: 0.82; }

/* Fallback: mantém os elementos de texto ocultos se houver logo */
.brand-name,
.brand-sub { display: none; }

/* Nav links */
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid) !important;
  padding: 8px 16px !important;
  border-radius: var(--radius-sm);
  position: relative;
  transition: color var(--duration) var(--ease) !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 16px; right: 16px;
  height: 1px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration) var(--ease);
}

.nav-link:hover,
.nav-link.active {
  color: var(--blue) !important;
}
.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

/* CTA Nav */
.nav-cta {
  margin-left: 12px;
}

/* Hamburguer */
.navbar-toggler {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  background: var(--white);
  transition: all var(--duration);
}
.navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(91,108,123,0.15); outline: none; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%235B6C7B' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── HERO — CAROUSEL ────────────────────────────────────────── */
.hero-carousel {
  margin-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}

.hero-carousel .carousel-item {
  height: calc(100svh - var(--nav-h));
  min-height: 560px;
  max-height: 940px;
}

.hero-carousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45);
  transform: scale(1.03);
  transition: transform 8s var(--ease);
}
.hero-carousel .carousel-item.active img {
  transform: scale(1.0);
}

.hero-carousel .carousel-caption {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 760px;
  padding: 0;
}

.hero-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 20px;
  opacity: 0.9;
}

.hero-carousel .carousel-caption h1 {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero-carousel .carousel-caption h1 em {
  font-style: italic;
  color: var(--sand);
}

.hero-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}
.hero-ornament-line {
  width: 48px;
  height: 1px;
  background: rgba(231,222,212,0.5);
}
.hero-ornament-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sand);
  opacity: 0.7;
}

.hero-carousel .carousel-caption p {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.8;
  letter-spacing: 0.01em;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Carousel controls */
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(246,244,241,0.1);
  border: 1px solid rgba(246,244,241,0.2);
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: all var(--duration);
}
.hero-carousel:hover .carousel-control-prev,
.hero-carousel:hover .carousel-control-next { opacity: 1; }
.hero-carousel .carousel-control-prev { left: 32px; }
.hero-carousel .carousel-control-next { right: 32px; }
.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover {
  background: rgba(91,108,123,0.5);
  border-color: rgba(91,108,123,0.5);
}
.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
  width: 18px;
  height: 18px;
}
.hero-carousel .carousel-indicators {
  bottom: 32px;
}
.hero-carousel .carousel-indicators button {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  margin: 0 5px;
  transition: all var(--duration);
}
.hero-carousel .carousel-indicators .active {
  background: var(--white);
  width: 28px;
  border-radius: 3px;
}

/* ── HERO ESTÁTICO (sem imagens) ────────────────────────────── */
.hero-static {
  margin-top: var(--nav-h);
  height: calc(100svh - var(--nav-h));
  min-height: 560px;
  background: var(--graphite);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-static::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(91,108,123,0.25) 0%, transparent 70%);
}
.hero-static .hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 0 24px;
}
.hero-static h1 {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
}
.hero-static h1 em { font-style: italic; color: var(--sand); }
.hero-static p {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  margin-bottom: 40px;
  line-height: 1.8;
}

/* ── PAGE HERO (Páginas internas) ───────────────────────────── */
.page-hero {
  margin-top: var(--nav-h);
  padding: 32px 0 28px;       /* comprimido */
  background: var(--graphite);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Botão WhatsApp dentro do hero */
.page-hero .hero-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 28px;
  padding: 13px 28px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  transition: all 0.3s var(--ease);
}
.page-hero .hero-wa-btn:hover {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
}
.page-hero .hero-wa-btn i { font-size: 1rem; }
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(91,108,123,0.2) 0%, transparent 70%);
}
.page-hero .inner {
  position: relative;
  z-index: 2;
  max-width: 660px;
  margin: 0 auto;
  padding: 0 24px;
}
.page-hero .u-label { color: var(--sand); opacity: 0.8; }
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.page-hero p {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
}

/* ── SEÇÕES — Espaçamento base ──────────────────────────────── */
.section { padding: 120px 0; }
.section--sm { padding: 80px 0; }
.section--lg { padding: 160px 0; }

.section--white { background: var(--white); }
.section--offwhite { background: var(--offwhite); }
.section--sand { background: var(--sand); }
.section--dark { background: var(--graphite); }

/* Alias para compatibilidade */
.section-padded { padding: 120px 0; }
.bg-cream { background: var(--offwhite); }
.bg-white { background: var(--white); }

/* Cabeçalho de seção */
.section-header {
  margin-bottom: 72px;
}
.section-header.text-center .u-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* Alias legacy */
.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.12;
  margin-bottom: 24px;
}
.section-title em { font-style: italic; color: var(--blue); }
.divider-gold { width: 40px; height: 1px; background: var(--blue); border: none; margin: 0 auto 48px; opacity: 0.5; }
.divider-gold-left { width: 40px; height: 1px; background: var(--blue); border: none; margin: 0 0 48px; opacity: 0.5; }

/* ── SERVIÇOS ────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 991px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 575px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 56px 40px 48px;
  position: relative;
  overflow: hidden;
  transition: all var(--duration) var(--ease);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration) var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--border);
}
.service-card:hover::before { transform: scaleX(1); }

.service-number {
  font-family: var(--font-serif);
  font-size: 4.5rem;
  font-weight: 300;
  color: var(--sand-dark);
  line-height: 1;
  margin-bottom: 24px;
  display: block;
  letter-spacing: -0.03em;
  transition: color var(--duration);
}
.service-card:hover .service-number { color: var(--blue-light); }

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--blue-mist);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  font-size: 1.3rem;
  color: var(--blue);
  transition: all var(--duration);
}
.service-card:hover .service-icon {
  background: var(--blue);
  color: var(--white);
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.2;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.85;
  flex: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-top: 32px;
  transition: gap var(--duration) var(--ease);
}
.service-link:hover { gap: 14px; color: var(--blue-dark); }
.service-link i { font-size: 0.65rem; }

/* ── PROCESSO ────────────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(50% / 3);
  right: calc(50% / 3);
  height: 1px;
  background: var(--border);
  z-index: 0;
}
@media (max-width: 767px) {
  .process-grid { grid-template-columns: 1fr; gap: 48px; }
  .process-grid::before { display: none; }
}

.process-step {
  text-align: center;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.process-step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--blue);
  transition: all var(--duration);
  position: relative;
  z-index: 2;
}
.process-step:hover .process-step-number {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  box-shadow: 0 8px 28px rgba(91,108,123,0.3);
}

.process-step h4 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}

.process-step p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ── DEPOIMENTOS ─────────────────────────────────────────────── */
/* ── DEPOIMENTOS — Carrossel 2 por vez ───────────────────────── */
.section-testimonials {
  background: var(--graphite);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.section-testimonials::before {
  content: '\201C';
  position: absolute;
  font-family: var(--font-serif);
  font-size: 520px;
  color: rgba(91,108,123,0.06);
  top: -80px;
  left: -40px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* Wrapper do carrossel */
.testi-carousel {
  overflow: hidden;
  margin: 0 -12px;
  padding: 0 12px;
}

.testi-track {
  display: flex;
  flex-wrap: nowrap;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* Cada slide ocupa metade (2 por tela no desktop) */
.testi-slide {
  flex: 0 0 50%;
  padding: 0 12px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .testi-slide { flex: 0 0 100%; }
}

/* Card */
.testimonial-card {
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: border-color var(--duration) var(--ease);
}
.testimonial-card:hover {
  border-color: rgba(91,108,123,0.35);
}

/* Foto horizontal do evento */
.testi-photo {
  width: 100%;
  aspect-ratio: 16 / 6;       /* panorâmica e compacta */
  overflow: hidden;
  flex-shrink: 0;
}
.testi-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s var(--ease);
}
.testimonial-card:hover .testi-photo img { transform: scale(1.04); }

/* Corpo do card */
.testimonial-body {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
}
.testimonial-body::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--blue);
  opacity: 0.45;
  line-height: 0.9;
  display: block;
  margin-bottom: 10px;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: 0.88rem;
  font-style: italic;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: auto;
}
.testimonial-author-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(91,108,123,0.22);
  border: 1px solid rgba(91,108,123,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  font-size: 0.75rem;
  flex-shrink: 0;
}
.testimonial-author-name {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.testimonial-author-role {
  font-size: 0.64rem;
  color: var(--blue-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Ícone de verificação */
.testi-verify-link {
  color: #4ade80;
  font-size: 0.82rem;
  transition: opacity 0.2s;
  line-height: 1;
}
.testi-verify-link:hover { opacity: 0.75; color: #4ade80; }

/* Controles do carrossel */
.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}
.testi-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s;
}
.testi-btn:hover {
  border-color: var(--blue-light);
  background: rgba(91,108,123,0.2);
  color: var(--white);
}
.testi-dots { display: flex; gap: 8px; }
.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.testi-dot.active {
  background: var(--blue-light);
  width: 24px;
  border-radius: 4px;
}

/* Aliases legacy */
.testimonial-quote { display: none; }
.testimonial-author-icon { display: none; }

/* ── CTA SECTION ─────────────────────────────────────────────── */
.section-cta {
  padding: 140px 0;
  background: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.section-cta::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: var(--blue-mist);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.section-cta .inner { position: relative; z-index: 2; }
.section-cta .u-title { max-width: 640px; margin-left: auto; margin-right: auto; }
.section-cta .u-subtitle { margin: 0 auto 48px; }

/* ── GALERIA ─────────────────────────────────────────────────── */
.section-gallery { padding: 120px 0; }

/* ── GALERIA DE FOTOS — Grid horizontal uniforme ─────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 991px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px)  { .gallery-grid { grid-template-columns: 1fr; } }

.gallery-item {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--sand);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s var(--ease);
}
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(46,49,53,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--duration) var(--ease);
}
.gallery-item-overlay i {
  color: var(--white);
  font-size: 1.4rem;
  opacity: 0;
  transform: scale(0.8);
  transition: all var(--duration) var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover .gallery-item-overlay { background: rgba(46,49,53,0.4); }
.gallery-item:hover .gallery-item-overlay i { opacity: 1; transform: scale(1); }

.gallery-item::after { display: none; }

/* ── VÍDEOS ──────────────────────────────────────────────────── */
.section-videos { padding: 120px 0; }

.video-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--duration) var(--ease);
  background: var(--white);
  border: 1px solid var(--border-light);
}
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.video-title {
  padding: 16px 20px;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--text);
  border-top: 1px solid var(--border-light);
  background: var(--white);
}

/* ── CASAMENTOS.COM ──────────────────────────────────────────── */
.section-casamentos-com {
  padding: 80px 0;
  background: var(--sand);
  text-align: center;
}

/* ── SOBRE MIM ───────────────────────────────────────────────── */
.section-about { padding: 120px 0; }

.about-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-photo img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.8s var(--ease);
}
.about-photo:hover img { transform: scale(1.02); }

.about-photo-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 72%;
  height: 72%;
  border: 1.5px solid rgba(91,108,123,0.2);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-text { padding-left: 48px; }
@media (max-width: 991px) { .about-text { padding-left: 0; padding-top: 48px; } }

.about-quote {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--blue);
  border-left: 2px solid var(--blue-light);
  padding-left: 24px;
  margin: 32px 0;
  line-height: 1.7;
}

/* ── STATS ───────────────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.stats-box {
  background: var(--offwhite);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  transition: all var(--duration) var(--ease);
}
.stats-box:hover {
  border-color: var(--blue-light);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}
.stats-number {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--blue);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.stats-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ── BLOG — LISTAGEM ─────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 991px) { .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (max-width: 575px)  { .blog-grid { grid-template-columns: 1fr; gap: 20px; } }

/* Card */
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xs);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

/* Imagem — ocupa ~58% do card, altura fixa para grade uniforme */
.blog-card-img-wrap {
  display: block;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 3;          /* mais quadrada = mais visual */
  background: var(--sand);
  flex-shrink: 0;
  position: relative;
}
.blog-card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.55s var(--ease);
}
.blog-card:hover .blog-card-img-wrap img { transform: scale(1.06); }

/* Placeholder quando não há foto */
.blog-card-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--sand) 0%, var(--border) 100%);
}
.blog-card-img-placeholder i {
  font-size: 2.4rem;
  color: var(--blue-light);
  opacity: 0.5;
}

/* Overlay de categoria na imagem */
.blog-card-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(46,49,53,0.35) 0%, transparent 55%);
  pointer-events: none;
}

/* Corpo do card — compacto */
.blog-card-body {
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  border-top: none;
}

.blog-card-date {
  font-family: var(--font-sans);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
  display: block;
}

.blog-card-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-title a { color: var(--text); }
.blog-card-title a:hover { color: var(--blue); }

.blog-card-excerpt {
  font-size: 0.83rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 18px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-link {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: gap 0.25s var(--ease), color 0.25s;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
}
.blog-card-link:hover { gap: 13px; color: var(--blue-dark); }
.blog-card-link i { font-size: 0.6rem; }

/* Empty state */
.blog-empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-light);
}
.blog-empty i {
  font-size: 3rem;
  opacity: 0.25;
  display: block;
  margin-bottom: 16px;
}

/* Paginação */
.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 56px;
}
.blog-page-btn {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  border: 1.5px solid var(--blue);
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--duration);
}
.blog-page-btn:hover { background: var(--blue); color: var(--white); }
.blog-page-info { font-size: 0.82rem; color: var(--text-light); }

/* ── BLOG — POST INDIVIDUAL ──────────────────────────────────── */
.post-hero { padding: 100px 0 80px; }

.post-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 16px;
  border-radius: 50px;
  transition: all var(--duration);
  margin-bottom: 8px;
}
.post-back:hover { color: var(--white); border-color: rgba(255,255,255,0.4); }

.post-article { padding: 80px 0 100px; background: var(--white); }

.post-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: start;
}
@media (max-width: 991px) {
  .post-layout { grid-template-columns: 1fr; }
}

/* Corpo */
.post-cover {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 48px;
}
.post-cover img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
}

.post-content {
  font-family: var(--font-sans);
  font-size: 1.02rem;
  line-height: 1.9;
  color: var(--text-mid);
}
.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin: 32px auto;
  display: block;
  box-shadow: var(--shadow-sm);
}
.post-content figure {
  margin: 32px 0;
  text-align: center;
}
.post-content figure figcaption {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 8px;
  font-style: italic;
}
.post-content h2 {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--text);
  margin: 48px 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}
.post-content h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--text);
  margin: 36px 0 12px;
}
.post-content p { margin-bottom: 20px; }
.post-content ul, .post-content ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
.post-content li { margin-bottom: 8px; }
.post-content strong { color: var(--text); font-weight: 600; }
.post-content a { color: var(--blue); text-decoration: underline; }
.post-content blockquote {
  border-left: 3px solid var(--blue-light);
  padding: 16px 24px;
  margin: 32px 0;
  background: var(--blue-mist);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--blue-dark);
}

/* Assinatura */
.post-signature {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  margin: 48px 0 32px;
}
.post-signature-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem; font-weight: 600;
  flex-shrink: 0;
}
.post-signature strong { display: block; font-size: 0.95rem; color: var(--text); }
.post-signature span { font-size: 0.8rem; color: var(--text-light); }

/* Compartilhar */
.post-share {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.post-share-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
}
.post-share-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  color: var(--white);
  transition: all var(--duration);
}
.post-share-btn:hover { transform: translateY(-2px); color: var(--white); }
.post-share-btn.whatsapp  { background: #25D366; }
.post-share-btn.facebook  { background: #1877F2; }
.post-share-btn.instagram { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }

/* Sidebar */
.post-sidebar { position: sticky; top: calc(var(--nav-h) + 24px); }

.post-sidebar-card {
  background: var(--offwhite);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 20px;
}

.post-sidebar-cta { background: var(--graphite); border-color: var(--graphite); text-align: center; }
.post-sidebar-cta-icon {
  font-size: 2rem;
  color: #25D366;
  display: block;
  margin-bottom: 12px;
}
.post-sidebar-cta h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 12px;
}
.post-sidebar-cta p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 20px;
}

.post-sidebar-heading {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 16px;
}

.post-related-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  color: var(--text);
  font-size: 0.85rem;
  line-height: 1.4;
  transition: color var(--duration);
}
.post-related-item:last-child { border-bottom: none; }
.post-related-item:hover { color: var(--blue); }
.post-related-item img {
  width: 56px; height: 42px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
.post-related-placeholder {
  width: 56px; height: 42px;
  background: var(--sand);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-light);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ── PRÊMIOS / AWARDS ────────────────────────────────────────── */
.section-awards {
  padding: 80px 0;
  background: var(--offwhite);
  border-top: 1px solid var(--border-light);
}

.awards-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.award-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  transition: transform var(--duration) var(--ease);
}

.award-item:hover {
  transform: translateY(-6px);
}

.award-item img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(46,49,53,0.12));
  transition: filter var(--duration) var(--ease);
}

.award-item:hover img {
  filter: drop-shadow(0 8px 24px rgba(46,49,53,0.2));
}

@media (max-width: 767px) {
  .awards-grid { gap: 24px; }
  .award-item img { width: 80px; height: 80px; }
}

@media (max-width: 480px) {
  .awards-grid { gap: 16px; }
  .award-item img { width: 68px; height: 68px; }
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer {
  background: var(--graphite);
  padding: 96px 0 48px;
  color: rgba(255,255,255,0.6);
}

.footer-brand-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-brand-sub {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--blue-light);
  font-weight: 500;
}
.footer-desc {
  font-size: 0.88rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.45);
  margin-top: 20px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  font-size: 0.9rem;
  transition: all var(--duration) var(--ease);
}
.footer-social a:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-heading {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: all var(--duration);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover {
  color: var(--white);
  gap: 10px;
}

.footer-divider {
  border-color: rgba(255,255,255,0.06);
  margin: 64px 0 32px;
}
.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}
.footer-copy a { color: var(--blue-light); }
.footer-copy a:hover { color: var(--white); }

/* ── WHATSAPP FLUTUANTE ──────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: var(--white) !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  z-index: 999;
  transition: all var(--duration) var(--ease);
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.25);
  animation: ripple 2.5s ease-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
  color: var(--white) !important;
}
@keyframes ripple {
  0%   { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.5); }
}

/* ── LIGHTBOX ────────────────────────────────────────────────── */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(46,49,53,0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s var(--ease);
  backdrop-filter: blur(4px);
}
.lightbox-overlay.open { opacity: 1; visibility: visible; }
.lightbox-content { position: relative; }
.lightbox-content img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 1.4rem;
  cursor: pointer;
  transition: color var(--duration);
  line-height: 1;
}
.lightbox-close:hover { color: var(--white); }

/* ── ORNAMENTO DECORATIVO ────────────────────────────────────── */
.ornament {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.ornament-line {
  flex: 1;
  height: 1px;
  background: var(--border-light);
}
.ornament-diamond {
  width: 7px;
  height: 7px;
  background: var(--blue);
  transform: rotate(45deg);
  opacity: 0.5;
  flex-shrink: 0;
}

/* ── CONTACT INFO ────────────────────────────────────────────── */
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 16px;
  height: 100%;
  background: var(--offwhite);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  transition: all var(--duration) var(--ease);
}
.contact-item:hover {
  border-color: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.contact-item-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--blue-mist);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 0.95rem;
}
.contact-item-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  display: block;
  margin-bottom: 3px;
  line-height: 1.4;
}
.contact-item > div { min-width: 0; }
.contact-item-value {
  font-size: 0.86rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.contact-item-value a { color: var(--text); }
.contact-item-value a:hover { color: var(--blue); }

/* ── RESPONSIVIDADE GERAL ────────────────────────────────────── */
@media (max-width: 1199px) {
  #mainNav .container { padding: 0 24px; }
}

@media (max-width: 991px) {
  /* Botão hamburguer FIXADO na viewport — imune a overflow horizontal.
     Fica sempre no canto superior direito da tela visível. */
  #mainNav .navbar-toggler {
    position: fixed !important;
    top: 16px !important;
    right: 16px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 3000 !important;
    background: var(--white) !important;
    border: 2px solid var(--blue) !important;
    border-radius: 8px !important;
    padding: 8px 11px !important;
  }
  @media (max-width: 767px) {
    #mainNav .navbar-toggler { top: 11px !important; }
  }

  /* Menu aberto: fundo e espaçamento */
  #mainNav .navbar-collapse {
    background: rgba(246,244,241,0.99);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 16px 8px 24px;
    box-shadow: 0 12px 32px rgba(46,49,53,0.1);
  }
  .navbar-nav { flex-direction: column; align-items: flex-start; gap: 2px; }
  .nav-cta { margin-left: 0; margin-top: 12px; width: 100%; }
  .nav-cta .btn-gold { width: 100%; justify-content: center; }

  .section { padding: 88px 0; }
  .section--lg { padding: 100px 0; }
  .section-cta { padding: 100px 0; }
  .section-testimonials { padding: 88px 0; }
}

@media (max-width: 767px) {
  :root { --nav-h: 70px; }
  .brand-logo { height: 42px; }

  .section { padding: 72px 0; }
  .section-cta { padding: 80px 0; }
  .section-testimonials { padding: 72px 0; }
  .page-hero { padding: 28px 0 24px; }

  .hero-carousel .carousel-item { height: 92svh; min-height: 520px; }
  .hero-static { height: 92svh; min-height: 520px; }

  .hero-carousel .carousel-caption h1,
  .hero-static h1 { font-size: clamp(2.4rem, 8vw, 3.5rem); }

  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 40px 28px; }

  .testimonial-body { padding: 16px 18px 20px; }
  .testimonial-text { font-size: 0.84rem; -webkit-line-clamp: 4; }

  .about-photo img { height: 340px; }

  .footer { padding: 72px 0 40px; }

  .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; font-size: 1.4rem; }

  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline,
  .hero-actions .btn-gold,
  .hero-actions .btn-outline-gold { justify-content: center; }
}

@media (max-width: 480px) {
  .section-header { margin-bottom: 48px; }
  .process-step { padding: 0 12px; }
}
