/* ============================================================
   ROSÉ STUDIO — CSS Principal (Bootstrap Override + Custom)
   Performance-first: sem animações pesadas, CSS enxuto
   ============================================================ */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --rose:         #c17f6b;
  --rose-dark:    #9a5f4e;
  --rose-light:   #e8c4b8;
  --rose-pale:    #fdf0ec;
  --cream:        #fdf6f3;
  --blush:        #f9e8e3;
  --brown:        #2c1810;
  --brown-mid:    #5c3825;
  --muted:        #8a7a75;
  --white:        #ffffff;
  --gray-100:     #f8f5f3;
  --gray-border:  #ecddd8;

  --font-head:  'Cormorant Garamond', Georgia, serif;
  --font-body:  'DM Sans', system-ui, sans-serif;

  --radius-sm: .5rem;
  --radius:    1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --pill:      9999px;

  --shadow-xs: 0 1px 4px rgba(44,24,16,.06);
  --shadow-sm: 0 2px 12px rgba(44,24,16,.08);
  --shadow-md: 0 6px 24px rgba(44,24,16,.11);
  --shadow-lg: 0 16px 48px rgba(44,24,16,.14);
  --shadow-rose: 0 8px 28px rgba(193,127,107,.35);

  --transition: .25s ease;
  --transition-md: .4s ease;
}

/* ===== BASE ===== */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  font-family: var(--font-body);
  color: var(--brown);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}

/* Performance: reduzir layout shifts */
img, video { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--rose); border-radius: var(--pill); }

/* ===== PY-SECTION HELPER ===== */
.py-section { padding: 6rem 0; }
@media (max-width: 768px) { .py-section { padding: 4rem 0; } }

/* ===== SEÇÃO HEADERS ===== */
.section-eyebrow {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: .75rem;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: var(--brown);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-title em {
  font-style: italic;
  color: var(--rose);
}

.section-lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ===== BOTÕES ===== */
.btn-rose {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  color: var(--white);
  border: none;
  border-radius: var(--pill);
  padding: .78rem 2rem;
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: .01em;
  box-shadow: var(--shadow-rose);
  transition: box-shadow var(--transition), transform var(--transition);
  will-change: transform;
}

.btn-rose:hover,
.btn-rose:focus-visible {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(193,127,107,.45);
}

.btn-ghost-rose {
  background: transparent;
  color: var(--brown);
  border: 1.5px solid var(--rose-light);
  border-radius: var(--pill);
  padding: .78rem 2rem;
  font-weight: 500;
  font-size: .95rem;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.btn-ghost-rose:hover,
.btn-ghost-rose:focus-visible {
  background: var(--rose-pale);
  border-color: var(--rose);
  color: var(--rose-dark);
}

/* ===== NAVBAR ===== */
#mainNav {
  padding: 1.1rem 0;
  background: transparent;
  transition: background var(--transition-md), padding var(--transition-md), box-shadow var(--transition-md);
}

#mainNav.nav-scrolled {
  background: rgba(253,246,243,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: .7rem 0;
  box-shadow: 0 2px 20px rgba(44,24,16,.08);
}

/* Estado inicial: links brancos (hero claro) → ajustados conforme scroll */
#mainNav .navbar-brand,
#mainNav .nav-link { color: var(--white); }

#mainNav.nav-scrolled .navbar-brand,
#mainNav.nav-scrolled .nav-link { color: var(--brown); }

.brand-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: .9rem;
  margin-right: .5rem;
  flex-shrink: 0;
}

.brand-name {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.brand-name em { font-style: italic; color: var(--rose); }

#mainNav.nav-scrolled .brand-name em { color: var(--rose); }

/* Nav links */
.nav-link {
  font-size: .875rem;
  font-weight: 500;
  padding: .45rem .75rem !important;
  border-radius: var(--pill);
  transition: background var(--transition), color var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active-link {
  color: var(--rose) !important;
}

.btn-nav-cta {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark)) !important;
  color: var(--white) !important;
  padding: .5rem 1.3rem !important;
  box-shadow: var(--shadow-rose);
}

.btn-nav-cta:hover { transform: translateY(-1px); box-shadow: 0 10px 25px rgba(193,127,107,.4); }

/* Mobile menu */
.navbar-toggler {
  border: none;
  padding: .4rem;
  display: flex; flex-direction: column; gap: 5px;
  background: none;
}

.navbar-toggler:focus { box-shadow: none; outline: 2px solid var(--rose); outline-offset: 2px; }

.toggler-icon {
  display: block; width: 22px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: var(--transition);
}

/* Burger aberto */
.navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(2) { opacity: 0; }
.navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1rem 1.5rem;
    margin-top: .75rem;
    box-shadow: var(--shadow-md);
  }
  #mainNav .nav-link { color: var(--brown) !important; }
}

/* ===== HERO ===== */
.hero-section {
  min-height: 100svh;
  min-height: 100vh;
  position: relative;
  background: linear-gradient(135deg, #2c1810 0%, #7a3a28 40%, #c17f6b 100%);
  overflow: hidden;
  padding: 5rem 0 3rem;
}

.hero-bg {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}

.hero-shape {
  position: absolute; border-radius: 50%; opacity: .12;
}

.hero-shape-1 {
  width: 600px; height: 600px;
  background: var(--rose-light);
  top: -200px; right: -180px;
}

.hero-shape-2 {
  width: 400px; height: 400px;
  background: var(--blush);
  bottom: -150px; left: -120px;
}

/* Partículas leves CSS-only (performance: só usa CSS) */
.hero-petals {
  position: absolute; inset: 0;
}

.petal {
  position: absolute;
  color: rgba(255,255,255,.18);
  font-size: 1.2rem;
  animation: floatPetal linear infinite;
}

.p1 { left: 10%; top: 20%; animation-duration: 12s; animation-delay: 0s; font-size: 1rem; }
.p2 { left: 25%; top: 70%; animation-duration: 15s; animation-delay: -3s; font-size: .8rem; }
.p3 { left: 60%; top: 15%; animation-duration: 10s; animation-delay: -6s; font-size: 1.4rem; color: rgba(232,196,184,.3); }
.p4 { left: 80%; top: 50%; animation-duration: 13s; animation-delay: -2s; font-size: .9rem; }
.p5 { left: 45%; top: 80%; animation-duration: 11s; animation-delay: -5s; font-size: 1.1rem; color: rgba(232,196,184,.25); }
.p6 { left: 90%; top: 80%; animation-duration: 14s; animation-delay: -8s; font-size: .75rem; }

@keyframes floatPetal {
  0%   { transform: translateY(0) rotate(0deg) scale(1); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: .5; }
  100% { transform: translateY(-80px) rotate(180deg) scale(.6); opacity: 0; }
}

/* Hero content */
.hero-content { position: relative; z-index: 2; color: var(--white); }

.hero-eyebrow {
  font-size: .85rem;
  font-weight: 500;
  color: var(--rose-light);
  letter-spacing: .1em;
  margin-bottom: 1.25rem;
  opacity: .9;
}

.hero-heading {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-heading em {
  display: block;
  font-style: italic;
  background: linear-gradient(135deg, var(--rose-light) 0%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  font-size: clamp(.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,.82);
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 2.25rem;
}

/* Trust bar hero */
.hero-trust {
  margin-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.18);
  padding-top: 1.5rem;
}

.trust-item { line-height: 1.3; }

.trust-number {
  display: block;
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--rose-light);
  line-height: 1;
}

.trust-number sup {
  font-size: .9rem;
  color: var(--rose-light);
  vertical-align: super;
}

.trust-item span {
  font-size: .78rem;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.trust-sep {
  width: 1px; height: 40px;
  background: rgba(255,255,255,.2);
  align-self: center;
}

/* Hero visual */
.hero-visual {
  position: relative;
  width: 400px;
  max-width: 100%;
  z-index: 2;
}

.hero-card-main {
  border-radius: var(--radius-xl) var(--radius-xl) var(--radius-xl) 4rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
}

.hero-card-img {
  width: 100%; height: 100%;
}

.hero-img-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1rem;
  color: rgba(255,255,255,.5);
}

.hero-img-placeholder i { font-size: 4rem; color: var(--rose-light); }
.hero-img-placeholder p { font-family: var(--font-head); font-size: 1.3rem; letter-spacing: .05em; }

/* Float cards */
.hero-card-float {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: .75rem 1.1rem;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: .65rem;
  font-size: .82rem; font-weight: 500; color: var(--brown);
  white-space: nowrap;
  animation: floatCardAnim 3.5s ease-in-out infinite;
}

.hero-card-float strong { color: var(--brown); font-weight: 700; }

.float-1 { top: 1.5rem; left: -3rem; animation-delay: 0s; }
.float-2 { bottom: 4rem; left: -2.5rem; animation-delay: -1.8s; }

@keyframes floatCardAnim {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.hero-badge-ring {
  position: absolute;
  bottom: -1rem; right: -1rem;
  animation: rotateSvg 18s linear infinite;
  transform-origin: center;
}

@keyframes rotateSvg {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 1.75rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  gap: .4rem;
  animation: scrollBounce 2s ease-in-out infinite;
  color: rgba(255,255,255,.5);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

.hero-scroll-mouse {
  width: 20px; height: 30px;
  border: 1.5px solid rgba(255,255,255,.4);
  border-radius: 10px;
  display: flex; justify-content: center;
  padding-top: 4px;
}

.hero-scroll-wheel {
  width: 3px; height: 7px;
  background: rgba(255,255,255,.5);
  border-radius: var(--pill);
  animation: wheelMove 1.4s ease-in-out infinite;
}

@keyframes wheelMove {
  0%   { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(10px); }
}

@media (max-width: 991px) {
  .hero-visual { width: 300px; margin: 0 auto; }
  .float-1 { left: -1rem; }
  .float-2 { left: -1rem; }
}

@media (max-width: 576px) {
  .hero-visual { width: 260px; }
  .hero-card-float { font-size: .75rem; padding: .6rem .9rem; }
}

/* ===== TRUST BAND ===== */
.trust-band {
  background: var(--cream);
  border-bottom: 1px solid var(--gray-border);
}

.trust-band-item {
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  font-size: .85rem; font-weight: 500; color: var(--brown-mid);
}

.trust-band-item i {
  color: var(--rose);
  font-size: 1.1rem;
}

/* ===== SERVIÇOS ===== */
.services-section { background: var(--white); }

.service-card {
  background: var(--white);
  border: 1.5px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  will-change: transform;
}

.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose-light), var(--rose));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition-md);
}

.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--rose-light); }
.service-card:hover::before { transform: scaleX(1); }

/* Card destaque */
.service-card--featured {
  background: linear-gradient(145deg, var(--brown) 0%, var(--brown-mid) 100%);
  border-color: transparent;
  color: var(--white);
}

.service-card--featured::before {
  background: linear-gradient(90deg, var(--rose), var(--rose-light));
  transform: scaleX(1);
}

.service-card--featured .service-title { color: var(--white); }
.service-card--featured .service-desc { color: rgba(255,255,255,.7); }
.service-card--featured .service-price { color: var(--rose-light); background: rgba(255,255,255,.1); }
.service-card--featured .service-link { color: var(--rose-light); }

.service-badge {
  position: absolute; top: 1.25rem; right: 1.25rem;
  background: var(--rose);
  color: var(--white);
  font-size: .68rem; font-weight: 600;
  padding: .28rem .75rem;
  border-radius: var(--pill);
  letter-spacing: .06em; text-transform: uppercase;
}

.service-icon-wrap {
  width: 56px; height: 56px;
  background: var(--blush);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--rose);
  margin-bottom: 1.5rem;
  transition: background var(--transition), transform var(--transition);
  flex-shrink: 0;
}

.service-card--featured .service-icon-wrap {
  background: rgba(255,255,255,.12); color: var(--rose-light);
}

.service-card:hover .service-icon-wrap { background: var(--rose-pale); transform: scale(1.08); }

.service-title {
  font-family: var(--font-head);
  font-size: 1.3rem; font-weight: 700;
  color: var(--brown); margin-bottom: .6rem;
}

.service-desc { font-size: .9rem; color: var(--muted); line-height: 1.7; flex: 1; }

.service-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 1.75rem; gap: .5rem; flex-wrap: wrap;
}

.service-price {
  font-size: .82rem; color: var(--rose-dark);
  background: var(--rose-pale);
  padding: .3rem .85rem; border-radius: var(--pill);
}

.service-link {
  font-size: .85rem; font-weight: 600; color: var(--rose);
  display: flex; align-items: center; gap: .3rem;
  transition: gap var(--transition), color var(--transition);
}

.service-link:hover { gap: .6rem; color: var(--rose-dark); }

/* ===== OFFER BAND ===== */
.offer-band {
  background: linear-gradient(135deg, var(--rose-dark) 0%, var(--rose) 60%, #dda090 100%);
  padding: 4.5rem 0;
  position: relative; overflow: hidden;
}

.offer-band::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3e%3cg fill='%23ffffff' fill-opacity='0.06'%3e%3ccircle cx='20' cy='20' r='3'/%3e%3c/g%3e%3c/svg%3e");
  pointer-events: none;
}

.offer-inner { position: relative; }

.offer-eyebrow {
  font-size: .78rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.8); margin-bottom: .75rem;
}

.offer-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700; color: var(--white);
  margin-bottom: .6rem; line-height: 1.2;
}

.offer-title em { font-style: italic; color: #ffd7c8; }

.offer-desc { color: rgba(255,255,255,.85); font-size: .95rem; }
.offer-desc strong { background: rgba(255,255,255,.2); padding: .1rem .45rem; border-radius: .25rem; }

.btn-offer {
  background: var(--white);
  color: var(--rose-dark);
  border: none; border-radius: var(--pill);
  padding: .85rem 2rem; font-weight: 600;
  box-shadow: 0 6px 20px rgba(0,0,0,.15);
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.btn-offer:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,.2); color: var(--rose-dark); }

/* ===== SOBRE ===== */
.about-section { background: var(--cream); }

.about-visual-wrap { position: relative; }

.about-card-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--rose-light) 0%, var(--rose) 100%);
  border-radius: var(--radius-xl) var(--radius-xl) var(--radius-xl) 5rem;
  transform: rotate(-3deg) scale(.97);
  opacity: .2;
  pointer-events: none;
}

.about-img-frame {
  border-radius: var(--radius-xl) var(--radius-xl) var(--radius-xl) 4rem;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--rose-pale) 0%, var(--blush) 100%);
  border: 1.5px solid var(--gray-border);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}

.about-img-placeholder {
  text-align: center; color: var(--rose-light);
}

.about-img-placeholder i { font-size: 5rem; color: var(--rose); display: block; margin-bottom: 1rem; }
.about-img-placeholder p { font-family: var(--font-head); font-size: 1.4rem; color: var(--muted); }

.about-float-card {
  position: absolute; bottom: -1.5rem; right: -1.5rem; z-index: 2;
  background: var(--white); border-radius: var(--radius);
  padding: .9rem 1.25rem;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: .75rem;
  border: 1px solid var(--gray-border);
  animation: floatCardAnim 3.5s ease-in-out infinite;
}

.about-float-icon {
  width: 40px; height: 40px;
  background: var(--rose-pale); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--rose); font-size: 1.1rem;
}

.about-float-card strong { display: block; font-size: .85rem; font-weight: 700; color: var(--brown); }
.about-float-card small { font-size: .75rem; color: var(--muted); }

.about-dots {
  position: absolute; bottom: 2rem; left: -2rem; z-index: 0;
  opacity: .6;
}

.about-lead { font-size: 1.05rem; color: var(--brown-mid); font-weight: 500; margin-bottom: .75rem; }
.about-text { font-size: .95rem; color: var(--muted); line-height: 1.8; }

.about-checks li {
  display: flex; align-items: center; gap: .75rem;
  font-size: .92rem; color: var(--brown);
  margin-bottom: .65rem;
}

.about-checks i { color: var(--rose); font-size: 1rem; flex-shrink: 0; }

/* Stats sobre */
.about-stat {
  background: var(--white); border-radius: var(--radius);
  padding: 1.25rem 1rem; text-align: center;
  border: 1px solid var(--gray-border);
}

.about-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem; font-weight: 700; color: var(--rose);
}

.about-stat sup { font-size: 1rem; }
.about-stat span { font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }

/* ===== GALERIA ===== */
.gallery-section { background: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 200px 200px;
  gap: .75rem;
}

.gallery-item { border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer; }
.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }

.gallery-fill {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .6rem; color: rgba(255,255,255,.8);
  font-size: .82rem; font-weight: 600;
  transition: transform var(--transition-md);
}

.gf-1 { background: linear-gradient(145deg, #2c1810, #7a3a28); }
.gf-2 { background: linear-gradient(145deg, #c17f6b, #9a5f4e); }
.gf-3 { background: linear-gradient(145deg, #e8c4b8, #c17f6b); }
.gf-4 { background: linear-gradient(145deg, #5c3825, #2c1810); }
.gf-5 { background: linear-gradient(145deg, #dda090, #c17f6b); }
.gf-6 { background: linear-gradient(145deg, #7a3a28, #5c3825); }

.gallery-fill i { font-size: 2.2rem; color: rgba(255,255,255,.6); }

.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(44,24,16,.75) 0%, transparent 55%);
  display: flex; align-items: flex-end;
  padding: 1rem 1.25rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-overlay p { color: var(--white); font-weight: 600; font-size: .88rem; margin: 0; }

.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-fill { transform: scale(1.04); }

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item--tall, .gallery-item--wide {
    grid-row: span 1; grid-column: span 1;
  }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-fill { min-height: 140px; }
}

/* ===== DEPOIMENTOS ===== */
.testimonials-section {
  background: linear-gradient(145deg, var(--brown) 0%, var(--brown-mid) 100%);
}

/* Override carousel indicators */
.testimonial-indicators {
  position: static;
  margin-top: 1.5rem;
  gap: .4rem;
}

.testimonial-indicators [data-bs-target] {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  border: none;
  opacity: 1;
  transition: all var(--transition);
}

.testimonial-indicators .active {
  width: 24px; border-radius: var(--pill);
  background: var(--rose);
}

.testimonial-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  height: 100%;
  backdrop-filter: blur(8px);
  transition: border-color var(--transition), transform var(--transition);
}

.testimonial-card:hover { border-color: var(--rose-light); transform: translateY(-4px); }

.testimonial-stars { color: #f5c518; font-size: 1.1rem; letter-spacing: .1em; margin-bottom: 1rem; }

.testimonial-text {
  font-style: italic;
  color: rgba(255,255,255,.8);
  font-size: .92rem; line-height: 1.8;
  margin-bottom: 1.5rem;
}

.testimonial-author { display: flex; align-items: center; gap: .85rem; }

.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: .82rem; font-weight: 700; color: var(--white);
  flex-shrink: 0;
}

.testimonial-author strong { display: block; color: var(--white); font-size: .88rem; }
.testimonial-author small { color: rgba(255,255,255,.5); font-size: .76rem; }

.rating-summary { color: rgba(255,255,255,.8); }
.rating-stars { font-size: 1.3rem; color: #f5c518; letter-spacing: .06em; }
.rating-summary p { font-size: .88rem; margin: .4rem 0 0; }
.rating-summary strong { color: var(--white); }

/* ===== CONTATO ===== */
.contact-section { background: var(--cream); }

.contact-list li {
  display: flex; gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-icon {
  width: 44px; height: 44px;
  background: var(--rose-pale);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--rose); font-size: 1rem;
  flex-shrink: 0;
}

.contact-list strong { display: block; font-size: .88rem; font-weight: 600; color: var(--brown); margin-bottom: .2rem; }
.contact-list p { font-size: .88rem; color: var(--muted); margin: 0; }

.social-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--brown);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem;
  transition: background var(--transition), transform var(--transition);
}

.social-btn:hover { background: var(--rose); color: var(--white); transform: translateY(-2px); }

/* Form card */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-border);
}

@media (max-width: 575px) {
  .contact-form-card { padding: 2rem 1.5rem; }
}

/* Form controls Bootstrap overrides */
.form-label {
  font-size: .83rem; font-weight: 600;
  color: var(--brown); margin-bottom: .4rem;
}

.form-label span[aria-hidden] { color: var(--rose); }

.form-control, .form-select {
  border: 1.5px solid var(--gray-border);
  border-radius: var(--radius-sm);
  padding: .72rem 1rem;
  font-family: var(--font-body);
  font-size: .9rem; color: var(--brown);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-control:focus, .form-select:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(193,127,107,.15);
  outline: none;
}

.form-control.is-invalid, .form-select.is-invalid {
  border-color: #dc3545;
  background-image: none;
}

.form-control::placeholder { color: #b0a09b; }

.invalid-feedback { font-size: .78rem; }

textarea.form-control { resize: vertical; min-height: 85px; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--brown);
  color: rgba(255,255,255,.65);
}

.footer-top { border-bottom: 1px solid rgba(255,255,255,.08); }

.site-footer .navbar-brand { color: var(--white); }
.site-footer .brand-name em { color: var(--rose-light); }

.footer-desc { font-size: .88rem; line-height: 1.7; }

.footer-heading {
  font-size: .82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--white); margin-bottom: 1.25rem;
  position: relative; padding-bottom: .6rem;
}

.footer-heading::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 24px; height: 2px;
  background: var(--rose);
  border-radius: var(--pill);
}

.footer-links li { margin-bottom: .6rem; }
.footer-links a { font-size: .88rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--rose-light); }

.footer-contact li {
  display: flex; gap: .6rem;
  font-size: .86rem; margin-bottom: .65rem;
  align-items: flex-start;
}

.footer-contact i { color: var(--rose); margin-top: .15rem; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: .8rem;
}

/* Social footer */
.site-footer .social-btn { background: rgba(255,255,255,.1); }
.site-footer .social-btn:hover { background: var(--rose); }

/* ===== WHATSAPP FLUTUANTE ===== */
.wa-float {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 990;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.65rem; color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: transform var(--transition), box-shadow var(--transition);
}

.wa-float:hover {
  color: var(--white);
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,.6);
}

.wa-tip {
  position: absolute; right: 64px;
  background: var(--brown); color: var(--white);
  font-size: .78rem; font-weight: 500;
  padding: .35rem .85rem; border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}

.wa-tip::after {
  content: '';
  position: absolute; top: 50%; right: -6px;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--brown);
}

.wa-float:hover .wa-tip { opacity: 1; }

/* ===== MODAL DE SUCESSO ===== */
.success-modal { border: none; border-radius: var(--radius-xl); overflow: hidden; }
.success-icon { font-size: 4rem; color: var(--rose); }
.success-modal h3 { font-family: var(--font-head); font-size: 1.7rem; color: var(--brown); }

/* ===== SCROLL REVEAL (CSS-only, sem JS pesado) ===== */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .55s ease, transform .55s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== ACCESSIBILITY ===== */
:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
}
