:root {
  --bg: #fff7fa;
  --card: #ffffff;
  --primary: #d96c93;
  --primary-dark: #b94f76;
  --primary-soft: #fce4ec;
  --success: #198754;
  --line: rgba(80, 35, 55, .10);
  --shadow: 0 18px 45px rgba(125, 45, 80, .10);
  --text-dark: rgba(46, 28, 38, .92);
}

.page {
  background:
    radial-gradient(900px 420px at 10% 10%, rgba(217, 108, 147, .18), transparent 60%),
    radial-gradient(900px 420px at 90% 18%, rgba(255, 214, 231, .55), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  min-height: 100vh;
  color: var(--text-dark);
}

.topbar {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .94) !important;
  backdrop-filter: blur(10px);
}

.logo { color: var(--primary-dark); }

.btn-primary {
  --bs-btn-bg: var(--primary);
  --bs-btn-border-color: var(--primary);
  --bs-btn-hover-bg: var(--primary-dark);
  --bs-btn-hover-border-color: var(--primary-dark);
  --bs-btn-active-bg: var(--primary-dark);
  --bs-btn-active-border-color: var(--primary-dark);
}

.btn-outline-primary {
  --bs-btn-color: var(--primary-dark);
  --bs-btn-border-color: var(--primary);
  --bs-btn-hover-bg: var(--primary);
  --bs-btn-hover-border-color: var(--primary);
  --bs-btn-hover-color: #fff;
}

.text-primary { color: var(--primary-dark) !important; }
.bg-primary-subtle { background-color: var(--primary-soft) !important; }

.hero__bg {
  background: rgba(255, 255, 255, .92);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

@media (min-width: 992px) {
  .hero__bg { padding: 46px; }
}

.card-clean {
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  background: var(--card);
}

.kicker {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  font-size: 12px;
  color: var(--primary-dark);
  background: var(--primary-soft);
  border: 1px solid rgba(217, 108, 147, .24);
  border-radius: 999px;
  padding: 8px 13px;
  margin-bottom: 14px;
  letter-spacing: .2px;
}

.hero-actions .btn { border-radius: 999px; }

.hero-slider .carousel-inner {
  min-height: 360px;
  background: var(--primary-soft);
}

.hero-slider img {
  height: 420px;
  object-fit: cover;
}

.slider-placeholder {
  height: 420px;
  color: var(--primary-dark);
  background: linear-gradient(135deg, #fff, var(--primary-soft));
}

.mini-card {
  display: flex;
  align-items: center;
  gap: 9px;
  height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 14px;
  box-shadow: 0 10px 26px rgba(125, 45, 80, .06);
  font-weight: 700;
}

.mini-card i { color: var(--primary-dark); font-size: 20px; }

.trust-card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px 16px;
  text-align: center;
  box-shadow: 0 12px 28px rgba(125, 45, 80, .07);
}

.trust-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 22px;
  margin-bottom: 12px;
}

.trust-card strong { display: block; color: var(--text-dark); }
.trust-card span { display: block; font-size: 13px; color: rgba(46, 28, 38, .62); margin-top: 3px; }

.flower-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 12px 28px rgba(125, 45, 80, .07);
  transition: transform .14s ease, box-shadow .14s ease;
}

.flower-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.flower-icon {
  width: 50px;
  height: 50px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary-soft), #fff);
  color: var(--primary-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 14px;
}

.instagram-section {
  background: linear-gradient(135deg, #fff, var(--primary-soft));
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}

@media (min-width: 992px) {
  .instagram-section { padding: 42px; }
}

.btn-instagram {
  color: #fff;
  border: 0;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  border-radius: 999px;
}

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

@media (min-width: 992px) {
  .gallery { grid-template-columns: repeat(5, 1fr); }
}

.gallery__item {
  border: 0;
  background: transparent;
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(125, 45, 80, .08);
  transition: transform .12s ease, box-shadow .12s ease;
}

.gallery__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(125, 45, 80, .14);
}

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

@media (min-width: 992px) {
  .gallery__item img { height: 150px; }
}

#galleryCarousel .carousel-item img {
  max-height: 85vh;
  object-fit: contain;
  background-color: rgba(0,0,0,0.5);
}

.carousel-control-prev, .carousel-control-next { width: 10%; }

.step-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 12px 28px rgba(125, 45, 80, .07);
}

.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  margin-bottom: 15px;
}

.step-card h3 { font-size: 18px; font-weight: 800; }
.step-card p { color: rgba(46, 28, 38, .64); margin-bottom: 0; }

.accordion-clean .accordion-item,
.accordion .accordion-item {
  border-color: var(--line);
}

.accordion-button:not(.collapsed) {
  color: var(--primary-dark);
  background: var(--primary-soft);
}

.accordion-button:focus { box-shadow: none; border-color: var(--line); }

.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.contact-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
  color: rgba(46, 28, 38, .72);
}

.contact-list i { color: var(--primary-dark); margin-top: 2px; }
.contact-list a { color: var(--text-dark); text-decoration: none; font-weight: 700; }

.map-frame {
  min-height: 360px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #fff;
}

.stickybar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  display: flex;
  background: #ffffff;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
  border-top: 1px solid var(--line);
}

.stickybar__btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 10px 0;
  font-size: 12px;
  font-weight: 800;
  transition: background 0.2s;
  color: var(--text-dark);
}

.stickybar__btn i { font-size: 18px; margin-bottom: 2px; }

.stickybar__btn--call {
  color: var(--primary-dark);
  background: rgba(217, 108, 147, 0.08);
}

.stickybar__btn--wa {
  color: var(--success);
  background: rgba(25, 135, 84, 0.06);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.stickybar__btn--instagram {
  color: #ffffff;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.hp { position: absolute; left: -9999px; top: -9999px; opacity: 0; height: 0; overflow: hidden; }
.modal-clean { border-radius: 24px; overflow: hidden; }

@media (max-width: 767.98px) {
  body { padding-bottom: 70px; }
  .hero__bg { padding: 22px; border-radius: 22px; }
  .hero-slider img, .slider-placeholder { height: 330px; }
  .actions .btn { padding-left: 10px; padding-right: 10px; }
  .display-5 { font-size: 2rem; }
}
