/* ================================================================
   Template-1 
   ================================================================ */

/* ── Fonts ─────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400;1,600&family=Nunito:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables (scoped to .t1-root) ─────────────────────────── */
.t1-root {
  --t1-primary:   var(--template-primary,   #4A7B6F);
  --t1-secondary: var(--template-secondary, #C6E2DA);
  --t1-accent:    var(--template-accent,    #B8765A);
  --t1-bg:        var(--template-bg,        #F9F6F1);
  --t1-bg-alt:    var(--template-bg-alt,    #EDE8DF);
  --t1-text:      var(--template-text,      #1D2B3A);
  --t1-muted:     var(--template-text-muted,#7B8694);
  --t1-divider-label: color-mix(in srgb, var(--t1-primary) 72%, var(--t1-text) 28%);
  --t1-divider-line:  color-mix(in srgb, var(--t1-primary) 24%, var(--t1-secondary) 76%);

  --t1-serif:     'Playfair Display', Georgia, serif;
  --t1-sans:      'Nunito', system-ui, sans-serif;
  --t1-ease:      0.22s ease;
  --t1-shadow:    0 4px 24px rgba(29,43,58,0.08);
  --t1-shadow-lg: 0 16px 52px rgba(29,43,58,0.14);

  /* Container queries: respondem à largura do container, não do viewport.
     Garante que o preview mobile (412px) ative os breakpoints corretos. */
  container-type: inline-size;

  font-family: var(--t1-sans);
  background: var(--t1-bg);
  color: var(--t1-text);
  -webkit-font-smoothing: antialiased;
}

.t1-root h1,
.t1-root h2,
.t1-root h3,
.t1-root h4,
.t1-root h5,
.t1-root h6,
.t1-root section h1,
.t1-root section h2,
.t1-root section h3,
.t1-root section h4,
.t1-root section h5,
.t1-root section h6,
.t1-root article h1,
.t1-root article h2,
.t1-root article h3,
.t1-root article h4,
.t1-root article h5,
.t1-root article h6,
.t1-root [data-section-id] h1,
.t1-root [data-section-id] h2,
.t1-root [data-section-id] h3,
.t1-root [data-section-id] h4,
.t1-root [data-section-id] h5,
.t1-root [data-section-id] h6 {
  font-family: var(--t1-serif);
  color: var(--t1-text);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -0.02em;
  margin-top: 0;
  margin-bottom: 0.7em;
}

.t1-root h1 {
  font-size: clamp(2rem, 3.15vw, 3.35rem) !important;
}

.t1-root h2 {
  font-size: clamp(1.7rem, 2.35vw, 2.5rem) !important;
}

.t1-root h3 {
  font-size: clamp(1.34rem, 1.8vw, 1.9rem) !important;
}

.t1-root h4 {
  font-size: clamp(1.18rem, 1.32vw, 1.52rem) !important;
}

.t1-root h5 {
  font-size: clamp(1.03rem, 0.98vw, 1.2rem) !important;
}

.t1-root h6 {
  font-size: clamp(0.9rem, 0.8vw, 1rem) !important;
  letter-spacing: 0;
}

/* ================================================================
   NAVBAR — sobrescreve Bootstrap minimamente
   ================================================================ */
.t1-navbar {
  position: sticky !important;
  top: 0;
  z-index: 300;
  min-height: 64px;
  background: color-mix(in srgb, var(--t1-bg) 95%, var(--t1-primary) 5%) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid color-mix(in srgb, var(--t1-primary) 16%, transparent);
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.t1-navbar .container {
  display: flex;
  align-items: center;
  height: 64px;
}

.t1-navbar .navbar-brand {
  padding: 0;
}

.t1-navbar .navbar-brand img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

/* Desktop nav — hidden on mobile */
.t1-navbar__desktop-nav {
  display: flex !important;
  flex-direction: row;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 10px;
}

.t1-navbar__desktop-nav .nav-item {
  display: flex;
  align-items: center;
}

/* Nav links */
.t1-navbar .navbar-nav .nav-link,
.t1-navbar .t1-navbar__desktop-nav .nav-link {
  font-family: var(--t1-sans);
  font-size: 14.5px;
  font-weight: 700;
  color: color-mix(in srgb, var(--t1-primary) 58%, var(--t1-text) 42%) !important;
  padding: 0.62rem 0.9rem !important;
  margin: 0;
  position: relative;
  border-radius: 999px;
  letter-spacing: 0.01em;
  transition: color var(--t1-ease), background-color var(--t1-ease), transform var(--t1-ease), box-shadow var(--t1-ease);
}

.t1-navbar .navbar-nav .nav-link:hover,
.t1-navbar .t1-navbar__desktop-nav .nav-link:hover {
  color: var(--t1-primary) !important;
  background: color-mix(in srgb, var(--t1-secondary) 48%, var(--t1-bg) 52%);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--t1-primary) 18%, transparent);
  transform: translateY(-1px);
}

/* CTA button wrapper — desktop only */
.t1-nav-cta {
  margin-left: 20px;
  flex-shrink: 0;
}

/* Hamburger button — mobile only */
.t1-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

.t1-hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: color-mix(in srgb, var(--t1-text) 84%, transparent);
  border-radius: 2px;
  transition: opacity 0.2s ease;
}

.t1-hamburger:hover span {
  background: var(--t1-primary);
}

/* ── Drawer overlay ──────────────────────────────────────── */
.t1-drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1040;
  background: rgba(15,23,35,0.45);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.t1-drawer-overlay--visible {
  display: block;
  opacity: 1;
}

/* ── Drawer panel ────────────────────────────────────────── */
.t1-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1050;
  width: 280px;
  max-width: 85vw;
  background: var(--t1-bg);
  box-shadow: -8px 0 40px rgba(15,23,35,0.18);
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
}

.t1-drawer--open {
  transform: translateX(0);
}

.t1-drawer__header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 64px;
  padding: 0 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--t1-primary) 12%, transparent);
  flex-shrink: 0;
}

.t1-drawer__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: none;
  background: rgba(29,43,58,0.06);
  border-radius: 8px;
  cursor: pointer;
  color: var(--t1-muted);
  transition: background 0.15s ease, color 0.15s ease;
}

.t1-drawer__close:hover {
  background: rgba(74,123,111,0.12);
  color: var(--t1-primary);
}

.t1-drawer__nav {
  list-style: none;
  margin: 0;
  padding: 20px 0;
  flex: 1;
  overflow-y: auto;
}

.t1-drawer__nav .nav-item {
  border-bottom: 1px solid rgba(29,43,58,0.05);
}

.t1-drawer__nav .nav-link {
  display: block;
  padding: 14px 24px !important;
  font-family: var(--t1-sans);
  font-size: 15px;
  font-weight: 600;
  color: color-mix(in srgb, var(--t1-primary) 56%, var(--t1-text) 44%) !important;
  transition: color 0.15s ease, background 0.15s ease;
  margin: 0 !important;
}

.t1-drawer__nav .nav-link:hover {
  color: var(--t1-primary) !important;
  background: color-mix(in srgb, var(--t1-secondary) 42%, transparent);
}

/* ── Mobile breakpoint — usa @container ── */
@container (max-width: 991.98px) {
  .t1-navbar__desktop-nav {
    display: none !important;
  }

  .t1-nav-cta {
    display: none !important;
  }

  .t1-hamburger {
    display: flex;
  }
}

/* ================================================================
   HERO — texto esquerda / foto direita (coluna Bootstrap)
   ================================================================ */
.t1-hero {
  background: var(--t1-bg);
  padding: 64px 0 72px;
  position: relative;
  overflow: hidden;
}

@container (min-width: 992px) {
  .t1-hero {
    min-height: clamp(620px, 52vh, 760px);
    padding: 76px 0 84px;
    display: flex;
    align-items: center;
  }

  .t1-hero > .container {
    min-height: inherit;
    display: flex;
    align-items: center;
  }

  .t1-hero > .container > .row {
    width: 100%;
    align-items: center !important;
  }

  .t1-hero__photo {
    max-height: 560px;
  }
}

/* Mancha orgânica atrás da foto — desktop only */
.t1-hero::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 44%;
  height: 100%;
  background: var(--t1-primary);
  border-radius: 52% 0 0 48% / 50% 0 0 50%;
  z-index: 0;
  pointer-events: none;
}

/* Garante z-index do container sobre o ::before */
.t1-hero > .container {
  position: relative;
  z-index: 1;
}

/* Eyebrow / label */
.t1-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--t1-secondary);
  color: var(--t1-primary);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px 5px 10px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.t1-hero__eyebrow p {
  margin: 0;
  margin-bottom: 0px;
}

.t1-hero__eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--t1-primary);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.7;
}

/* Heading principal */
.t1-hero__title {
  font-family: var(--t1-serif);
  font-size: clamp(2.55rem, 4.2vw, 4.3rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--t1-text);
  margin-bottom: 18px;
}

.t1-hero__title em {
  font-style: italic;
  color: var(--t1-primary);
  font-weight: 400;
}

/* Descrição */
.t1-hero__desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--t1-muted);
  line-height: 1.85;
  max-width: 460px;
  margin-bottom: 0;
}

/* Stats / Trust bar */
.t1-trust {
  display: flex;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(29,43,58,0.09);
  gap: 0;
}

.t1-trust__item {
  padding-right: 28px;
  margin-right: 28px;
  border-right: 1px solid rgba(29,43,58,0.09);
}

.t1-trust__item:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}

.t1-trust__value {
  display: block;
  font-family: var(--t1-serif);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--t1-primary);
  line-height: 1;
  margin-bottom: 3px;
}

.t1-trust__label {
  font-size: 11px;
  color: var(--t1-muted);
  letter-spacing: 0.03em;
}

/* Foto — wrapper relativo para o badge */
.t1-hero__photo-col {
  position: relative;
}

.t1-hero__photo-wrap {
  position: relative;
  display: block;
}

.t1-hero__photo {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px 20px 64px 20px;
  box-shadow: var(--t1-shadow-lg);
  display: block;
}

/* Badge flutuante sobre a foto */
.t1-hero__badge {
  position: absolute;
  bottom: 28px;
  left: -16px;
  background: #fff;
  border-radius: 14px;
  padding: 10px 16px;
  box-shadow: 0 8px 28px rgba(29,43,58,0.13);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  z-index: 2;
}

.t1-hero__badge p {
  margin: 0;
}

.t1-hero__badge-icon {
  width: 34px;
  height: 34px;
  background: var(--t1-secondary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t1-primary);
  font-size: 14px;
  flex-shrink: 0;
}

.t1-hero__badge-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--t1-text);
  line-height: 1.3;
}

.t1-hero__badge-sub {
  font-size: 10.5px;
  color: var(--t1-muted);
  font-weight: 400;
}

/* ── Responsividade do Hero ─────────────────────────────────────── */
@container (max-width: 991.98px) {
  .t1-hero {
    padding: 40px 0 56px;
  }

  .t1-hero__title {
    font-size: clamp(2.25rem, 6vw, 3.45rem);
    line-height: 1.12;
  }

  /* Remove blob decorativo */
  .t1-hero::before {
    display: none;
  }

  .t1-hero__desc {
    max-width: 100%;
  }

  /* Badge reposicionado */
  .t1-hero__badge {
    left: auto;
    right: 16px;
    bottom: 16px;
  }
}

@container (max-width: 575.98px) {
  .t1-root h1,
  .t1-root section h1,
  .t1-root article h1,
  .t1-root [data-section-id] h1 {
    font-size: clamp(2.55rem, 8vw, 3rem) !important;
  }

  .t1-root h2,
  .t1-root section h2,
  .t1-root article h2,
  .t1-root [data-section-id] h2 {
    font-size: clamp(1.68rem, 6.3vw, 2rem) !important;
  }

  .t1-root h3,
  .t1-root section h3,
  .t1-root article h3,
  .t1-root [data-section-id] h3 {
    font-size: clamp(1.36rem, 5.3vw, 1.66rem) !important;
  }

  .t1-root h4,
  .t1-root section h4,
  .t1-root article h4,
  .t1-root [data-section-id] h4 {
    font-size: 1.18rem !important;
  }

  .t1-root h5,
  .t1-root section h5,
  .t1-root article h5,
  .t1-root [data-section-id] h5 {
    font-size: 1.04rem !important;
  }

  .t1-root h6,
  .t1-root section h6,
  .t1-root article h6,
  .t1-root [data-section-id] h6 {
    font-size: 0.94rem !important;
  }

  .t1-hero__title {
    font-size: 2.5rem;
    line-height: 1.12;
  }

  /* Esconde badge em telas muito pequenas */
  .t1-hero__badge {
    display: none;
  }

  .t1-trust {
    margin-top: 22px;
    padding-top: 18px;
    gap: 10px;
    justify-content: flex-start;
  }

  .t1-trust__item {
    padding-right: 12px;
    margin-right: 0;
    border-right: none;
  }

  .t1-trust__value {
    font-size: 1.52rem;
  }

  .t1-trust__label {
    font-size: 10.5px;
  }
}

/* ================================================================
   CONTENT AREA — dynamic sections
   ================================================================ */
.t1-main {
  background: var(--t1-bg);
  padding: 8px 0 0;
}

.t1-main #dynamic-sections,
.t1-main .dynamic-sections {
  max-width: var(--ds-content-width, 1140px);
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}

.t1-main #dynamic-sections > [data-section-id] > section,
.t1-main #dynamic-sections > [data-section-id] > div > section,
.t1-main .dynamic-sections > section,
.t1-main .dynamic-sections > div > section,
.t1-main .dynamic-sections > div > div > section {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

@container (max-width: 767.98px) {
  .t1-main #dynamic-sections > [data-section-id] .container,
  .t1-main .dynamic-sections .container {
    --bs-gutter-x: 1.5rem;
    padding-left: 18px;
    padding-right: 18px;
  }
}

/* ================================================================
   SECTION DIVIDER
   ================================================================ */
.t1-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 32px 0 32px;
}

.t1-divider__label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--t1-divider-label);
  white-space: nowrap;
}

.t1-divider__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--t1-divider-line), transparent);
}

/* ================================================================
   FOOTER
   ================================================================ */
.t1-footer {
  background: color-mix(in srgb, var(--t1-text) 88%, var(--t1-primary) 12%);
}

/* ── Corpo do rodapé (2 colunas) ─────────────────────────────── */
.t1-footer__body {
  padding: 56px 0 44px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 44px;
}

/* ── Coluna da marca ─────────────────────────────────────────── */
.t1-footer__brand-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 420px;
}

.t1-footer__brand-name {
  font-family: var(--t1-serif);
  font-size: 23px;
  font-style: italic;
  font-weight: 600;
  color: color-mix(in srgb, var(--t1-bg) 94%, white 6%);
  letter-spacing: 0.01em;
  line-height: 1.25;
}

.t1-footer__tagline {
  font-size: 14px;
  color: color-mix(in srgb, var(--t1-bg) 58%, var(--t1-text) 42%);
  line-height: 1.7;
  margin: 0;
}

.t1-footer__social {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.t1-footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--t1-bg) 14%, transparent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: color-mix(in srgb, var(--t1-bg) 72%, var(--t1-primary) 28%);
  font-size: 15px;
  text-decoration: none;
  background: color-mix(in srgb, var(--t1-bg) 4%, transparent);
  transition: background var(--t1-ease), color var(--t1-ease), border-color var(--t1-ease), transform var(--t1-ease);
}

.t1-footer__social a:hover {
  background: color-mix(in srgb, var(--t1-primary) 84%, var(--t1-bg) 16%);
  color: color-mix(in srgb, var(--t1-bg) 94%, white 6%);
  border-color: color-mix(in srgb, var(--t1-primary) 70%, transparent);
  transform: translateY(-1px);
}

.t1-footer__contact-col {
  flex: 1;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.t1-footer__contact-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--t1-bg) 46%, var(--t1-text) 54%);
}

.t1-footer__contact-list {
  display: grid;
  gap: 14px;
}

.t1-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid color-mix(in srgb, var(--t1-bg) 10%, transparent);
}

.t1-footer__contact-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.t1-footer__contact-icon {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: color-mix(in srgb, var(--t1-primary) 72%, var(--t1-bg) 28%);
  font-size: 15px;
}

.t1-footer__contact-text {
  font-size: 13px;
  line-height: 1.75;
  color: color-mix(in srgb, var(--t1-bg) 78%, var(--t1-text) 22%);
  word-break: break-word;
}

/* icon-text genérico renderizado no footer do template-1 */
.t1-footer__contact-list > div {
  display: flex !important;
  align-items: flex-start !important;
  gap: 14px !important;
  padding: 0 0 14px !important;
  border-bottom: 1px solid color-mix(in srgb, var(--t1-bg) 10%, transparent);
}

.t1-footer__contact-list > div:last-child {
  padding-bottom: 0 !important;
  border-bottom: none;
}

.t1-footer__contact-list > div > i {
  width: 18px !important;
  min-width: 18px;
  height: 18px !important;
  margin-top: 2px !important;
  flex-shrink: 0;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: color-mix(in srgb, var(--t1-primary) 72%, var(--t1-bg) 28%) !important;
  font-size: 15px !important;
  text-align: center !important;
}

.t1-footer__contact-list > div > span {
  font-size: 13px !important;
  line-height: 1.75 !important;
  color: color-mix(in srgb, var(--t1-bg) 78%, var(--t1-text) 22%) !important;
  word-break: break-word;
}

/* ── Barra inferior ──────────────────────────────────────────── */
.t1-footer__bottom {
  padding: 18px 0;
  border-top: 1px solid color-mix(in srgb, var(--t1-bg) 10%, transparent);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.t1-footer__copy {
  font-size: 12px;
  color: color-mix(in srgb, var(--t1-bg) 42%, var(--t1-text) 58%);
}

.t1-footer__watermark {
  display: inline-block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: color-mix(in srgb, var(--t1-bg) 58%, transparent);
  text-decoration: none;
  transition: color var(--t1-ease);
}

.t1-footer__watermark strong {
  color: var(--t1-primary);
  font-weight: 700;
}

.t1-footer__watermark:hover {
  color: var(--t1-bg);
}

/* ── Responsivo ──────────────────────────────────────────────── */
@container (max-width: 767.98px) {
  .t1-footer__body {
    padding: 40px 0 28px;
    flex-direction: column;
    gap: 28px;
  }

  .t1-footer__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 16px 0 20px;
  }

  .t1-footer__watermark {
    order: 1;
  }

  .t1-footer__copy {
    order: 0;
  }

  .t1-footer__contact-col,
  .t1-footer__brand-col {
    max-width: none;
  }
}


/* ─────────────────────────────────────────────── */

:root {
            
            --template-primary: #555b3e;
            
            --template-secondary: #d7cfb1;
            
            --template-accent: #7a8260;
            
            --template-bg: #f4f0e4;
            
            --template-bg-alt: #e5dec7;
            
            --template-text: #1c1f22;
            
            --template-text-muted: #64675d;
            
            --ds-section-padding-y: 3rem;
            --ds-divider-spacing: 1;
            --ds-content-width: 100%;
            --ds-container-width: 1140px;
        }
        /* ── Section content width ── */
        .dynamic-sections {
            max-width: var(--ds-content-width, 1140px) !important;
        }
        .dynamic-sections [id$="section-wrapper"] {
            transition: background 0.2s ease, box-shadow 0.2s ease;
        }
        .dynamic-sections [id$="section-wrapper"].content-section-bg-enabled {
            background: var(--template-bg-alt, #f5f5f5) !important;
        }
        .dynamic-sections [id$="section-wrapper"].content-section-bg-disabled {
            background: transparent !important;
        }
        /* ── Section content padding ── */
        .dynamic-sections [id$="section-wrapper"] {
            padding-top: var(--ds-section-padding-y, 3rem) !important;
            padding-bottom: var(--ds-section-padding-y, 3rem) !important;
        }
        .dynamic-sections [id$="section-wrapper"] > .container {
            width: 100%;
            max-width: min(100%, var(--ds-container-width, 1140px)) !important;
            margin-left: auto;
            margin-right: auto;
        }
        .section-divider {
            width: min(100%, var(--ds-container-width, 1140px)) !important;
            max-width: min(100%, var(--ds-container-width, 1140px)) !important;
            margin-left: auto !important;
            margin-right: auto !important;
            box-sizing: border-box;
        }
        /* ── Divider spacing ── */
        .t1-divider {
            margin-top: calc(32px * var(--ds-divider-spacing, 1));
            margin-bottom: calc(32px * var(--ds-divider-spacing, 1));
        }
        .t3-section-divider {
            margin-top: calc(56px * var(--ds-divider-spacing, 1));
            margin-bottom: calc(40px * var(--ds-divider-spacing, 1));
        }
        .t3-section-divider {
            margin-top: calc(56px * var(--ds-divider-spacing, 1));
            margin-bottom: calc(40px * var(--ds-divider-spacing, 1));
        }
        .t4-section-divider {
            padding-top: calc(52px * var(--ds-divider-spacing, 1));
            padding-bottom: calc(36px * var(--ds-divider-spacing, 1));
        }
        .t5-section-divider {
            margin-top: calc(2rem * var(--ds-divider-spacing, 1));
            margin-bottom: calc(2rem * var(--ds-divider-spacing, 1));
        }
        .t6-section-divider {
            margin-top: calc(8px * var(--ds-divider-spacing, 1));
            margin-bottom: calc(4px * var(--ds-divider-spacing, 1));
        }
        .t7-section-divider {
            padding-top: calc(34px * var(--ds-divider-spacing, 1));
            padding-bottom: calc(22px * var(--ds-divider-spacing, 1));
        }
        .t8-divider {
            margin-top: calc(40px * var(--ds-divider-spacing, 1));
            margin-bottom: calc(28px * var(--ds-divider-spacing, 1));
        }

/* ─────────────────────────────────────────────── */

#section-1783932639309-section-wrapper {
        background: transparent;
    }

    #section-1783932639309-section-wrapper .gallery-carousel-simple__head {
        max-width: 760px;
        margin: 0 auto 1.8rem;
        text-align: center;
    }

    #section-1783932639309-section-wrapper .gallery-carousel-simple__title {
        color: var(--template-text, #222);
        font-weight: 700;
        margin-bottom: 0.65rem;
        font-size: clamp(1.55rem, 2.6vw, 2.2rem);
        line-height: 1.15;
    }

    #section-1783932639309-section-wrapper .gallery-carousel-simple__subtitle {
        color: var(--template-text-muted, #666);
        margin: 10px auto 0;
        max-width: 500px;
        line-height: 1.6;
        font-size: 0.96rem;
    }

    #section-1783932639309-section-wrapper .gallery-carousel-simple__item {
        height: 100%;
    }

    #section-1783932639309-section-wrapper .gallery-carousel-simple__frame {
        position: relative;
        overflow: hidden;
        border-radius: 20px;
        aspect-ratio: 4 / 4.35;
        background: color-mix(in srgb, var(--template-bg-alt, #f5f5f5) 80%, #000 20%);
        box-shadow: 0 16px 30px rgba(0, 0, 0, 0.07);
    }

    #section-1783932639309-section-wrapper .gallery-carousel-simple__frame img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.55s ease;
    }

    #section-1783932639309-section-wrapper .gallery-carousel-simple__frame:hover img {
        transform: scale(1.04);
    }

    #section-1783932639309-section-wrapper .owl-dots {
        margin-top: 1rem;
        text-align: center;
    }

    #section-1783932639309-section-wrapper .owl-theme .owl-dots .owl-dot span {
        width: 10px;
        height: 10px;
        margin: 5px 6px;
        background: color-mix(in srgb, var(--template-primary, #999) 28%, transparent);
        transition: background 0.2s ease, transform 0.2s ease;
    }

    #section-1783932639309-section-wrapper .owl-theme .owl-dots .owl-dot.active span,
    #section-1783932639309-section-wrapper .owl-theme .owl-dots .owl-dot:hover span {
        background: var(--template-primary, #333);
        transform: scale(1.08);
    }

    @media (max-width: 991.98px) {
        #section-1783932639309-section-wrapper .gallery-carousel-simple__head {
            margin-bottom: 1.45rem;
        }

        #section-1783932639309-section-wrapper .gallery-carousel-simple__frame {
            border-radius: 18px;
            aspect-ratio: 4 / 4.5;
        }
    }

    @container (max-width: 991.98px) {
        #section-1783932639309-section-wrapper .gallery-carousel-simple__head {
            margin-bottom: 1.45rem;
        }

        #section-1783932639309-section-wrapper .gallery-carousel-simple__frame {
            border-radius: 18px;
            aspect-ratio: 4 / 4.5;
        }
    }

    @media (max-width: 575.98px) {
        #section-1783932639309-section-wrapper.py-5 {
            padding-top: 2rem !important;
            padding-bottom: 2rem !important;
            padding-left: 0.85rem !important;
            padding-right: 0.85rem !important;
        }

        #section-1783932639309-section-wrapper .container {
            padding-left: 0;
            padding-right: 0;
        }

        #section-1783932639309-section-wrapper .gallery-carousel-simple__head {
            margin-bottom: 1.05rem;
        }

        #section-1783932639309-section-wrapper .gallery-carousel-simple__title {
            font-size: clamp(1.3rem, 6.4vw, 1.7rem);
            line-height: 1.15;
            margin-bottom: 0.55rem;
        }

        #section-1783932639309-section-wrapper .gallery-carousel-simple__subtitle {
            font-size: 0.88rem;
            line-height: 1.5;
        }

        #section-1783932639309-section-wrapper .gallery-carousel-simple__frame {
            border-radius: 16px;
            aspect-ratio: 1 / 1.02;
        }

        #section-1783932639309-section-wrapper .owl-dots {
            margin-top: 0.8rem;
        }

        #section-1783932639309-section-wrapper .owl-theme .owl-dots .owl-dot span {
            width: 8px;
            height: 8px;
            margin: 4px 5px;
        }
    }

    @container (max-width: 575.98px) {
        #section-1783932639309-section-wrapper.py-5 {
            padding-top: 2rem !important;
            padding-bottom: 2rem !important;
            padding-left: 0.85rem !important;
            padding-right: 0.85rem !important;
        }

        #section-1783932639309-section-wrapper .container {
            padding-left: 0;
            padding-right: 0;
        }

        #section-1783932639309-section-wrapper .gallery-carousel-simple__head {
            margin-bottom: 1.05rem;
        }

        #section-1783932639309-section-wrapper .gallery-carousel-simple__title {
            font-size: clamp(1.3rem, 6.4vw, 1.7rem);
            line-height: 1.15;
            margin-bottom: 0.55rem;
        }

        #section-1783932639309-section-wrapper .gallery-carousel-simple__subtitle {
            font-size: 0.88rem;
            line-height: 1.5;
        }

        #section-1783932639309-section-wrapper .gallery-carousel-simple__frame {
            border-radius: 16px;
            aspect-ratio: 1 / 1.02;
        }

        #section-1783932639309-section-wrapper .owl-dots {
            margin-top: 0.8rem;
        }

        #section-1783932639309-section-wrapper .owl-theme .owl-dots .owl-dot span {
            width: 8px;
            height: 8px;
            margin: 4px 5px;
        }
    }

/* ─────────────────────────────────────────────── */

#section-1783934126983-section-wrapper { background: transparent; }
    #section-1783934126983-section-wrapper .svc2-card {
        background: var(--template-bg-alt);
        box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    }
    #section-1783934126983-section-wrapper .svc2-icon {
        width: 52px; height: 52px; flex-shrink: 0;
        border-radius: 14px;
        background: var(--template-secondary);
        display: flex; align-items: center; justify-content: center;
        font-size: 20px; color: var(--template-primary);
    }

/* ─────────────────────────────────────────────── */

#section-1783934723428-section-wrapper {
        background: transparent;
    }
    #section-1783934723428-section-wrapper .cta-0__inner {
        border-radius: 14px;
        border: 1px solid color-mix(in srgb, var(--template-primary) 22%, var(--template-secondary) 18%);
        padding: clamp(2.5rem, 6vw, 4.5rem);
    }
    #section-1783934723428-section-wrapper .cta-0__rule {
        width: 72px;
        height: 4px;
        border-radius: 999px;
        margin: 0 auto 1.2rem;
        background: linear-gradient(90deg, var(--template-primary), color-mix(in srgb, var(--template-secondary) 72%, white));
    }

/* ─────────────────────────────────────────────── */

#section-1781222699242-section-wrapper { background: transparent; }

/* ─────────────────────────────────────────────── */

#section-1783935289643-section-wrapper {
        background: var(--template-bg-alt);
        container-type: inline-size;
    }
    #section-1783935289643-section-wrapper .testi4-card {
        background: var(--template-bg, #fff);
        border-radius: 18px;
        padding: 2rem 2rem 1.75rem;
        height: 100%;
        display: flex;
        flex-direction: column;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    }
    #section-1783935289643-section-wrapper .testi4-stars {
        color: var(--template-primary, #e2889a);
        font-size: 13px;
        letter-spacing: 3px;
        margin-bottom: 0.9rem;
    }
    #section-1783935289643-section-wrapper .testi4-quote-icon {
        font-size: 30px;
        color: color-mix(in srgb, var(--template-primary, #e2889a) 60%, var(--template-secondary, #f5c2cc));
        margin-bottom: 0.85rem;
        display: block;
        line-height: 1;
    }
    #section-1783935289643-section-wrapper .testi4-text {
        color: var(--template-text-muted, #666);
        line-height: 1.8;
        font-size: 14.5px;
        font-style: italic;
        margin-bottom: 1.25rem;
        flex: 1;
    }
    #section-1783935289643-section-wrapper .testi4-footer {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding-top: 1rem;
        border-top: 1px solid color-mix(in srgb, var(--template-primary, #e2889a) 18%, transparent);
    }
    #section-1783935289643-section-wrapper .testi4-avatar {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: var(--template-secondary, #f5c2cc);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        color: var(--template-primary, #e2889a);
        flex-shrink: 0;
    }
    #section-1783935289643-section-wrapper .testi4-name {
        font-size: 13.5px;
        font-weight: 600;
        color: var(--template-text, #333);
        line-height: 1.3;
    }
    #section-1783935289643-section-wrapper .testi4-role {
        font-size: 12px;
        color: var(--template-text-muted, #777);
    }