:root {
  --rosa: #B0737E;
  --rosa-suave: #c98d97;
  --rosa-claro: #E3B6BE;
  --branco: #FFFFFF;
  --off-white: #FCFAF9;
  --dourado: #C8A66A;
  --dourado-suave: #D4B87A;
  --texto: #241F21;
  --texto-suave: #4E474A;
  --borda: rgba(176, 115, 126, 0.15);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--texto);
  background: var(--branco);
  overflow-x: hidden;
  line-height: 1.7;
  padding-top: 114px;
}

/* Thicker lines for stroked SVG icons */
svg[stroke],
svg [stroke] {
  stroke-width: 2.2;
}

/* Exception for logo SVGs: keep their original stroke thickness */
.nav-logo svg,
.footer-logo svg {
  stroke-width: 1 !important;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--rosa-claro); border-radius: 2px; }

/* ─── UTILS ─── */
.serif { font-family: 'Cormorant Garamond', serif; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.section-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rosa);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--rosa);
  flex-shrink: 0;
}

/* ─── BOTÕES ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--rosa);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 17px 38px;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--dourado);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  z-index: 0;
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span { position: relative; z-index: 1; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--rosa);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 37px;
  border: 1px solid var(--rosa);
  cursor: pointer;
  transition: all 0.4s ease;
}
.btn-outline:hover {
  background: var(--rosa);
  color: #fff;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: all 0.4s ease;
  background: rgba(252, 250, 249, 0.95);
  backdrop-filter: blur(6px);
  box-shadow: 0 1px 0 var(--borda);
}
nav.scrolled {
  background: rgba(252, 250, 249, 0.95);
  backdrop-filter: blur(20px);
  padding: 16px 0;
  box-shadow: 0 1px 0 var(--borda);
}
nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--texto);
  text-decoration: none;
}
.nav-logo span { color: var(--rosa); }
.nav-logo img {
  display: block;
  height: 70px;
  width: auto;
  transition: height 0.3s ease;
}
nav.scrolled .nav-logo img {
  height: 56px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--texto);
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--rosa); }
.nav-cta {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--rosa);
  border-bottom: 1px solid var(--rosa-claro);
  padding-bottom: 2px;
  transition: border-color 0.3s;
}
.nav-cta:hover { border-color: var(--rosa); }

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--texto);
  transition: all 0.3s;
}

/* When nav should show light (white) links over dark/hero background */
nav.light .nav-links a,
nav.light .nav-logo,
nav.light .nav-cta {
  color: #fff;
}
nav.light .nav-logo span { color: rgba(255,255,255,0.9); }
nav.light .hamburger span { background: #fff; }

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  background: var(--off-white);
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 60px 80px 80px;
  position: relative;
  z-index: 2;
}
.hero-seal {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--branco);
  border: 1px solid var(--borda);
  padding: 10px 20px;
  margin-bottom: 48px;
  width: fit-content;
}
.hero-seal-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rosa);
  flex-shrink: 0;
}
.hero-seal span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--texto-suave);
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--texto);
  margin-bottom: 28px;
}
.hero-title em {
  font-style: italic;
  color: var(--rosa);
}
.hero-sub {
  font-size: 14px;
  font-weight: 300;
  color: var(--texto-suave);
  line-height: 1.9;
  max-width: 400px;
  margin-bottom: 48px;
}
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-instagram {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--texto-suave);
  text-decoration: none;
  transition: color 0.3s;
}
.hero-instagram:hover { color: var(--rosa); }
.hero-instagram svg { color: var(--rosa); }

.hero-numbers {
  position: absolute;   
  bottom: 48px; left: 80px;
  display: flex;
  gap: 48px;
}
.hero-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 300;
  color: var(--texto);
  line-height: 1;
}
.hero-number sup {
  font-size: 20px;
  color: var(--rosa);
  vertical-align: super;
}
.hero-number-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--texto-suave);
  margin-top: 4px;
}

.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-img-main {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-img-main.loaded { transform: scale(1); }
.hero-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--off-white) 0%, transparent 20%);
}
.hero-img-badge {
  position: absolute;
  bottom: 48px; right: 48px;
  width: 110px; height: 110px;
  border-radius: 50%;
  border: 1px solid rgba(200, 166, 106, 0.5);
  background: rgba(252,250,249,0.9);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2px;
}
.hero-img-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--dourado);
  line-height: 1;
}
.hero-img-badge-txt {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--texto-suave);
  max-width: 60px;
  line-height: 1.4;
}

/* ─── HISTORIA ─── */
#historia {
  padding: 130px 0;
  background: var(--branco);
}
.historia-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.historia-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 3.5vw, 50px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 28px;
}
.historia-title em { font-style: italic; color: var(--rosa); }
.historia-body {
  font-size: 14px;
  font-weight: 300;
  color: var(--texto-suave);
  line-height: 2;
  margin-bottom: 24px;
}
.historia-divider {
  width: 48px; height: 1px;
  background: var(--rosa-claro);
  margin: 36px 0;
}

/* timeline */
.timeline { position: relative; padding-left: 24px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 1px;
  background: linear-gradient(to bottom, var(--rosa-claro), transparent);
}
.timeline-item {
  position: relative;
  padding-bottom: 36px;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.6s ease;
}
.timeline-item.visible {
  opacity: 1;
  transform: translateX(0);
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -28px; top: 8px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--rosa);
  border: 2px solid var(--branco);
  box-shadow: 0 0 0 2px var(--rosa-claro);
}
.timeline-year {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rosa);
  margin-bottom: 4px;
}
.timeline-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--texto);
  line-height: 1.4;
}

.historia-right {
  position: relative;
}
.historia-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  height: 560px;
}
.historia-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.historia-img:hover { transform: scale(1.02); }
.historia-img-tall { grid-row: span 2; }
.historia-tag {
  position: absolute;
  bottom: -24px; left: -24px;
  background: var(--branco);
  border: 1px solid var(--borda);
  padding: 20px 28px;
}
.historia-tag-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--dourado);
  margin-bottom: 2px;
}
.historia-tag-sub {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--texto-suave);
}

/* ─── SERVIÇOS / DIFERENCIAIS ─── */
#diferenciais {
  padding: 130px 0;
  background: var(--off-white);
}
.diferenciais-header {
  max-width: 600px;
  margin: 0 auto 80px;
  text-align: center;
}
.diferenciais-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
}
.diferenciais-title em { font-style: italic; color: var(--rosa); }
.diferenciais-sub {
  font-size: 13px;
  font-weight: 300;
  color: var(--texto-suave);
  line-height: 2;
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.diferencial-card {
  background: var(--branco);
  padding: 52px 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
}
.diferencial-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.diferencial-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 2px; width: 0;
  background: var(--rosa);
  transition: width 0.4s ease;
}
.diferencial-card:hover::after { width: 100%; }
.diferencial-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(176,115,126,0.08); }

.diferencial-icon {
  width: 48px; height: 48px;
  margin-bottom: 28px;
  color: var(--rosa-claro);
  transition: color 0.3s;
}
.diferencial-card:hover .diferencial-icon { color: var(--rosa); }
.diferencial-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--rosa-claro);
  margin-bottom: 16px;
}
.diferencial-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--texto);
  margin-bottom: 14px;
  line-height: 1.2;
}
.diferencial-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--texto-suave);
  line-height: 1.9;
}

/* ─── GALERIA ─── */
#galeria {
  padding: 130px 0;
  background: var(--branco);
}
.galeria-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
}
.galeria-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 3.5vw, 48px);
  font-weight: 400;
  line-height: 1.2;
  max-width: 400px;
}
.galeria-title em { font-style: italic; color: var(--rosa); }
.galeria-insta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--texto-suave);
  text-decoration: none;
  transition: color 0.3s;
}
.galeria-insta:hover { color: var(--rosa); }

.masonry {
  columns: 3;
  column-gap: 16px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.masonry-item.visible { opacity: 1; transform: translateY(0); }
.masonry-item img {
  width: 100%; display: block;
  transition: transform 0.6s ease;
}
.masonry-item:hover img { transform: scale(1.05); }
.masonry-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(46,43,43,0.5) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.masonry-item:hover .masonry-overlay { opacity: 1; }
.masonry-overlay-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-style: italic;
  color: rgba(255,255,255,0.9);
}

/* placeholder images (gradient) */
.img-placeholder {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, var(--rosa-claro) 0%, var(--off-white) 100%);
}

/* ─── AUTORIDADE ─── */
#autoridade {
  padding: 130px 0;
  background: var(--off-white);
}
.autoridade-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.autoridade-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: var(--texto);
  border-left: 2px solid var(--rosa);
  padding-left: 32px;
  margin: 36px 0;
}
.autoridade-body {
  font-size: 14px;
  font-weight: 300;
  color: var(--texto-suave);
  line-height: 2;
  margin-bottom: 40px;
}
.autoridade-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.autoridade-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--branco);
  border: 1px solid var(--borda);
  padding: 14px 20px;
}
.autoridade-badge-icon {
  width: 16px; height: 16px;
  color: var(--rosa);
  flex-shrink: 0;
}
.autoridade-badge-text {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--texto);
}

.autoridade-right {
  display: grid;
  grid-template-rows: auto auto;
  gap: 16px;
}
.autoridade-img-main {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.autoridade-img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.autoridade-img-small {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

/* ─── DESTAQUE REVISTA ─── */
#destaque {
  padding: 130px 0;
  background: var(--texto);
  position: relative;
  overflow: hidden;
}
#destaque::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23B0737E' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.destaque-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.destaque-left {
  position: relative;
}
.destaque-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  aspect-ratio: 3/4;
}
.destaque-right { position: relative; z-index: 1; }
.destaque-tag {
  display: inline-block;
  background: var(--rosa);
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 14px;
  margin-bottom: 40px;
}
.destaque-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 300;
  font-style: italic;
  color: var(--branco);
  line-height: 1.2;
  max-width: 700px;
  margin-bottom: 24px;
}
.destaque-sub {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 2;
  max-width: 500px;
  margin-bottom: 48px;
}
.destaque-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 80px;
}
.destaque-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 40px 36px;
  backdrop-filter: blur(10px);
  transition: background 0.4s;
}
.destaque-card:hover { background: rgba(176,115,126,0.1); }
.destaque-card-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: rgba(176,115,126,0.3);
  line-height: 1;
  margin-bottom: 16px;
}
.destaque-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--branco);
  margin-bottom: 10px;
  line-height: 1.3;
}
.destaque-card-desc {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
  margin-bottom: 24px;
}
.destaque-card-link {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rosa-claro);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
}
.destaque-card-link:hover { color: var(--dourado); }
.destaque-card-link svg { transition: transform 0.3s; }
.destaque-card-link:hover svg { transform: translateX(4px); }

/* ─── PROCESSO ─── */
#processo {
  padding: 130px 0;
  background: var(--branco);
}
.processo-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 80px;
}
.processo-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 3.5vw, 48px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 16px;
}
.processo-title em { font-style: italic; color: var(--rosa); }
.processo-sub {
  font-size: 13px;
  font-weight: 300;
  color: var(--texto-suave);
  line-height: 2;
}

.processo-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
}
.processo-steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 10%; right: 10%;
  height: 1px;
  background: var(--borda);
  z-index: 0;
}
.processo-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}
.processo-step.visible { opacity: 1; transform: translateY(0); }
.processo-step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid var(--borda);
  background: var(--branco);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--rosa);
  margin-bottom: 20px;
  transition: all 0.4s;
  flex-shrink: 0;
}
.processo-step:hover .processo-step-num {
  background: var(--rosa);
  color: #fff;
  border-color: var(--rosa);
}
.processo-step-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--texto);
  margin-bottom: 6px;
}
.processo-step-desc {
  font-size: 11px;
  font-weight: 300;
  color: var(--texto-suave);
  line-height: 1.7;
}

/* ─── DEPOIMENTOS ─── */
#depoimentos {
  padding: 130px 0;
  background: var(--branco);
}
.depoimentos-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 80px;
}
.depoimentos-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
}
.depoimentos-title em { font-style: italic; color: var(--rosa); }
.depoimentos-sub {
  font-size: 13px;
  font-weight: 300;
  color: var(--texto-suave);
  line-height: 2;
}
.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.depoimento-card {
  background: var(--off-white);
  padding: 40px 32px;
  border: 1px solid var(--borda);
  border-radius: 8px;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}
.depoimento-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.depoimento-card:hover {
  border-color: var(--rosa);
  box-shadow: 0 12px 40px rgba(176,115,126,0.08);
}
.depoimento-stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 24px;
}
.depoimento-star {
  color: var(--dourado);
  font-size: 16px;
}
.depoimento-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--texto);
  line-height: 1.6;
  margin-bottom: 20px;
}
.depoimento-author {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--rosa);
}

@media (max-width: 1024px) {
  .depoimentos-grid { grid-template-columns: 1fr; }
}

/* ─── DEPOIMENTOS ─── */
#depoimentos {
  padding: 130px 0;
  background: var(--branco);
}
.depoimentos-header {
  max-width: 600px;
  margin: 0 auto 80px;
  text-align: center;
}
.depoimentos-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
}
.depoimentos-title em { font-style: italic; color: var(--rosa); }
.depoimentos-sub {
  font-size: 13px;
  font-weight: 300;
  color: var(--texto-suave);
  line-height: 2;
}

.depoimentos-authority {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-bottom: 80px;
  padding: 40px;
  background: var(--off-white);
  border-radius: 8px;
  flex-wrap: wrap;
}
.authority-rating {
  text-align: center;
}
.authority-stars {
  font-size: 32px;
  color: var(--dourado);
  letter-spacing: 4px;
  margin-bottom: 8px;
}
.authority-score {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--texto);
  line-height: 1;
}
.authority-count {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--texto-suave);
  margin-top: 4px;
}

.authority-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--texto);
}
.authority-badge svg {
  width: 24px;
  height: 24px;
  color: var(--dourado);
  flex-shrink: 0;
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.depoimento-card {
  background: var(--branco);
  border: 1px solid var(--borda);
  padding: 36px;
  border-radius: 8px;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(20px);
}
.depoimento-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.depoimento-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(176, 115, 126, 0.12);
  border-color: var(--rosa-claro);
}

.depoimento-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.depoimento-stars {
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--dourado);
}
.depoimento-rating {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--texto);
}

.depoimento-date {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--texto-suave);
  margin-bottom: 12px;
}

.depoimento-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--texto);
  margin-bottom: 14px;
  line-height: 1.3;
}

.depoimento-text {
  font-size: 13px;
  font-weight: 300;
  color: var(--texto-suave);
  line-height: 1.8;
  margin-bottom: 18px;
  font-style: italic;
}

.depoimento-author {
  font-size: 12px;
  font-weight: 600;
  color: var(--rosa);
  letter-spacing: 1px;
}

.depoimentos-btn-container {
  text-align: center;
}

/* ─── FAQ ─── */
#faq {
  padding: 100px 0;
  background: var(--off-white);
}
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.faq-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
}
.faq-title em { font-style: italic; color: var(--rosa); }
.faq-body {
  font-size: 13px;
  font-weight: 300;
  color: var(--texto-suave);
  line-height: 2;
  margin-bottom: 36px;
}

.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--borda);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 400;
  color: var(--texto);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: color 0.3s;
}
.faq-question:hover { color: var(--rosa); }
.faq-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--rosa-claro);
  transition: transform 0.3s, color 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--rosa); }
.faq-answer {
  font-size: 13px;
  font-weight: 300;
  color: var(--texto-suave);
  line-height: 2;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer {
  max-height: 200px;
  padding-bottom: 20px;
}

/* ─── CTA FINAL ─── */
#cta-final {
  padding: 160px 0;
  background: var(--branco);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta-final::before {
  content: 'FD';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 400px;
  font-weight: 300;
  color: rgba(176,115,126,0.03);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  letter-spacing: 20px;
}
.cta-final-inner { position: relative; z-index: 1; }
.cta-final-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}
.cta-final-ornament-line {
  width: 60px; height: 1px;
  background: var(--rosa-claro);
}
.cta-final-ornament-diamond {
  width: 8px; height: 8px;
  background: var(--rosa);
  transform: rotate(45deg);
}
.cta-final-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 24px;
}
.cta-final-title em { font-style: italic; color: var(--rosa); }
.cta-final-sub {
  font-size: 14px;
  font-weight: 300;
  color: var(--texto-suave);
  line-height: 2;
  max-width: 500px;
  margin: 0 auto 56px;
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--rosa);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 22px 52px;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.btn-whatsapp::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--dourado);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn-whatsapp:hover::before { transform: translateX(0); }
.btn-whatsapp span, .btn-whatsapp svg { position: relative; z-index: 1; }
.btn-whatsapp svg { width: 22px; height: 22px; }

.cta-final-note {
  font-size: 11px;
  font-weight: 300;
  color: var(--texto-suave);
  margin-top: 24px;
  letter-spacing: 1px;
}
.cta-final-note a {
  color: var(--rosa);
  text-decoration: none;
}

/* ─── FOOTER ─── */
footer {
  background: var(--texto);
  padding: 60px 0 40px;
  color: rgba(255,255,255,0.5);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--branco);
  letter-spacing: 2px;
  margin-bottom: 16px;
  display: block;
  text-decoration: none;
}
.footer-logo span { color: var(--rosa); }
.footer-logo img {
  display: block;
  height: 96px;
  width: auto;
}
.footer-desc {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  line-height: 2;
  max-width: 280px;
}
.footer-col-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--rosa-claro); }
.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin-bottom: 32px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-size: 11px;
  font-weight: 300;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.5px;
}
.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: all 0.3s;
}
.footer-social a:hover {
  border-color: var(--rosa);
  color: var(--rosa);
}

/* ─── FLOAT WHATSAPP ─── */
.float-wa {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 99;
  width: 56px; height: 56px;
  background: var(--rosa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 32px rgba(176,115,126,0.4);
  text-decoration: none;
  transition: all 0.3s ease;
  animation: pulse 3s infinite;
}
.float-wa:hover {
  transform: scale(1.1);
  background: var(--rosa-suave);
  box-shadow: 0 12px 40px rgba(176,115,126,0.5);
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(176,115,126,0.4); }
  50% { box-shadow: 0 8px 48px rgba(176,115,126,0.6), 0 0 0 8px rgba(176,115,126,0.08); }
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 120px 40px 60px; }
  .hero-numbers { left: 40px; position: relative; bottom: auto; margin-top: 48px; }
  .hero-right { height: 50vw; }
  .historia-inner { grid-template-columns: 1fr; gap: 60px; }
  .historia-imgs { height: 400px; }
  .historia-tag { display: none; }
  .diferenciais-grid { grid-template-columns: 1fr 1fr; }
  .masonry { columns: 2; }
  .autoridade-inner { grid-template-columns: 1fr; }
  .destaque-inner { grid-template-columns: 1fr; }
  .destaque-cards { grid-template-columns: 1fr; }
  .depoimentos-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .depoimentos-authority { gap: 32px; }
  .processo-steps { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
  .processo-steps::before { display: none; }
  .faq-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) {
  body { padding-top: 100px; }
}

@media (max-width: 680px) {
  body { padding-top: 88px; }
}

@media (max-width: 680px) {
  .container { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-left { padding: 100px 24px 48px; }
  .hero-numbers { left: 24px; gap: 32px; }
  .hero-number { font-size: 32px; }
  .diferenciais-grid { grid-template-columns: 1fr; }
  .masonry { columns: 1; }
  .depoimentos-grid { grid-template-columns: 1fr; }
  .depoimentos-authority { flex-direction: column; gap: 20px; }
  .processo-steps { grid-template-columns: repeat(2, 1fr); }
  .destaque-cards { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .galeria-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .float-wa { bottom: 20px; right: 20px; }
}

/* Mobile nav menu */
.mobile-nav {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--branco);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--texto);
  text-decoration: none;
  transition: color 0.3s;
}
.mobile-nav a:hover { color: var(--rosa); }
.mobile-nav-close {
  position: absolute;
  top: 28px; right: 28px;
  background: none; border: none;
  font-size: 28px;
  color: var(--texto);
  cursor: pointer;
}

/* Mobile nav link */
.mobile-nav a:last-child {
  color: var(--rosa);
}

.mobile-nav-link-rosa {
  color: var(--rosa);
}

/* Nav CTA sempre visível */
  transition-delay: 0.2s;
}

/* Hero Background */
.hero-right-bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #E3B6BE 0%, #C98D97 40%, #B0737E 70%, #8B5560 100%);
  position: relative;
}

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

.hero-svg-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.12;
}

.hero-quote-container {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
}

.hero-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.2);
  line-height: 1;
  text-align: right;
}

.hero-quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  text-align: right;
}

/* Historia Section Delays */
.historia-right.delay-02 {
  transition-delay: 0.2s;
}

.historia-media-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 16px;
  height: 560px;
}

.historia-main-media {
  grid-row: 1 / span 2;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.historia-card-media {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.historia-img-tall {
  background: linear-gradient(160deg, #E3B6BE, #C98D97, #B0737E);
  position: relative;
  overflow: hidden;
}

.historia-img-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.15;
}

.historia-label-box {
  position: absolute;
  bottom: 24px;
  left: 24px;
}

.historia-label-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
}

.historia-label-sub {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}

.historia-card-20 {
  background: linear-gradient(135deg, #FCFAF9, #E3B6BE);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}

.historia-card-20-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 300;
  color: var(--rosa);
}

.historia-card-20-text {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--texto-suave);
  font-weight: 600;
  text-align: center;
}

.historia-card-quote {
  background: linear-gradient(135deg, #C98D97, #8B5560);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}

.historia-card-quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  padding: 16px;
}

/* Seção Label Center */
.section-label-center {
  justify-content: center;
}

/* Card Delays */
.card-delay-0 { transition-delay: 0s; }
.card-delay-1 { transition-delay: 0.1s; }
.card-delay-2 { transition-delay: 0.2s; }
.card-delay-3 { transition-delay: 0.3s; }
.card-delay-4 { transition-delay: 0.4s; }
.card-delay-5 { transition-delay: 0.5s; }

/* Diferencial Card 6 Special */
.diferencial-card-special {
  background: var(--rosa);
  color: #fff;
}

.diferencial-card-special .diferencial-num {
  color: rgba(255, 255, 255, 0.4);
}

.diferencial-card-special .diferencial-name {
  color: #fff;
}

.diferencial-card-special .diferencial-desc {
  color: rgba(255, 255, 255, 0.7);
}

/* Masonry Cards */
.masonry-card-1 {
  height: 340px;
  background: linear-gradient(145deg, #E3B6BE 0%, #C98D97 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.masonry-card-2 {
  height: 220px;
  background: linear-gradient(135deg, #FCFAF9 0%, #E3B6BE 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.masonry-card-2-inner {
  text-align: center;
  padding: 32px;
}

.masonry-card-2-title-1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  font-style: italic;
  color: var(--rosa-suave);
}

.masonry-card-2-title-2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  font-style: italic;
  color: var(--rosa);
}

.masonry-card-3 {
  height: 400px;
  background: linear-gradient(160deg, #8B5560 0%, #B0737E 60%, #E3B6BE 100%);
}

.masonry-card-3-inner {
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.masonry-card-3-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
}

.masonry-card-4 {
  height: 260px;
  background: linear-gradient(135deg, #C8A66A 0%, #D4B87A 50%, #E3D0B0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}

.masonry-card-4-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
}

.masonry-card-4-text {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.gallery-item-1 { height: 340px; }
.gallery-item-2 { height: 220px; }
.gallery-item-3 { height: 400px; }
.gallery-item-4 { height: 260px; }
.gallery-item-5 { height: 300px; }
.gallery-item-6 { height: 360px; }

.gallery-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.masonry-card-5 {
  height: 300px;
  background: linear-gradient(140deg, #FCFAF9, #C98D97);
}

.masonry-card-5-inner {
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.masonry-card-5-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rosa);
  font-weight: 600;
}

.masonry-card-5-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--texto);
  font-style: italic;
  line-height: 1.4;
}

.masonry-card-6 {
  height: 360px;
  background: linear-gradient(150deg, #2E2B2B, #4A3F42);
}

.masonry-card-6-inner {
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.masonry-card-6-fd {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  font-weight: 300;
  color: rgba(176, 115, 126, 0.2);
  line-height: 1;
  margin-bottom: -20px;
}

.masonry-card-6-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.6);
}

.masonry-card-6-ig {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(176, 115, 126, 0.6);
  font-weight: 600;
  margin-top: 8px;
}

/* Portfolio Button Container */
.portfolio-btn-container {
  text-align: center;
  margin-top: 56px;
}

/* Autoridade Section */
.autoridade-title-custom {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
}

.autoridade-title-custom em {
  font-style: italic;
  color: var(--rosa);
}

.autoridade-right.delay-02 {
  transition-delay: 0.2s;
}

.autoridade-main-media {
  aspect-ratio: 4/3;
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.autoridade-small-media {
  aspect-ratio: 1;
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* Processo Delays */
.processo-step-delay-0 { transition-delay: 0s; }
.processo-step-delay-1 { transition-delay: 0.1s; }
.processo-step-delay-2 { transition-delay: 0.2s; }
.processo-step-delay-3 { transition-delay: 0.3s; }
.processo-step-delay-4 { transition-delay: 0.4s; }
.processo-step-delay-5 { transition-delay: 0.5s; }

/* Galeria section label center */
.galeria-section-label {
  justify-content: center;
}

.portfolio-btn-container {
  text-align: center;
  margin-top: 56px;
}

/* Destaque card delay */
.destaque-card.delay-02 {
  transition-delay: 0.2s;
}

/* FAQ delay */
.faq-list.delay-02 {
  transition-delay: 0.2s;
}
