:root {
  --bg: #0a0909;
  --bg-soft: #121110;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(255, 255, 255, 0.11);
  --text: #f6f2e8;
  --text-black: #130f08;
  --muted: rgba(246, 242, 232, 0.72);
  --accent: #f5b12a;
  --accent-strong: #ffd66d;
  --line: rgba(245, 177, 42, 0.18);
  --shadow: 0 30px 70px rgba(0, 0, 0, 0.38);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  position: relative;
  background: rgba(253, 253, 253, 0.9);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("../images/background.svg") center top / cover no-repeat;
  opacity: 0.1;
  pointer-events: none;
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

header {
  position: relative;
  z-index: 1;
}

.header-anniversary {
  padding-block: 4px;
}

.segue-me-logo {
  width: clamp(40px, 5vw, 48px);
  height: auto;
  object-fit: contain;
}

.instagram-link {
  display: grid;
  width: 40px;
  height: 40px;
  margin-left: auto;
  flex: 0 0 40px;
  place-items: center;
  border-radius: 50%;
  color: var(--accent);
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.instagram-link:hover {
  color: var(--accent-strong);
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.instagram-link:focus-visible {
  outline: 3px solid var(--accent-strong);
  outline-offset: 2px;
}

.header-visuals {
  display: grid;
  grid-template-columns: minmax(0, 289px) minmax(260px, 442px) minmax(0, 289px);
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 3vw, 40px);
}

.logo-link,
.logo {
  display: block;
  width: 100%;
}

.retratos {
  width: min(100%, 289px);
  height: auto;
}

.retratos-right {
  justify-self: end;
}

.nav-principal {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.nav-principal .btn {
  display: grid;
  min-height: 48px;
  padding-inline: 20px;
  place-items: center;
}

.highlights-title {
  color: #130f08;
  font-size: clamp(1.25rem, 1.4vw, 1.75rem);
}

.encounter-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding: 24px;
  border-radius: 20px;
  color: #f7ae28;
  background-color: #874b2d;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.highlight-icon {
  width: clamp(130px, 12vw, 160px);
  height: auto;
  flex: 0 0 clamp(130px, 12vw, 160px);
  object-fit: contain;
}

.highlight-item h3 {
  margin-bottom: 8px;
}

.highlight-item p {
  margin-bottom: 0;
}

.testimonials-section {
  color: var(--text-black);
}

.testimonials-title {
  margin-bottom: 20px;
  font-size: clamp(1.25rem, 1.4vw, 1.75rem);
  font-weight: 800;
}

.testimonials-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  align-items: center;
  gap: clamp(10px, 2vw, 24px);
  padding: clamp(24px, 4vw, 42px) clamp(12px, 2.5vw, 28px);
  overflow: hidden;
  border-radius: 24px;
  background: #050505;
}

.testimonials-viewport {
  min-width: 0;
  padding: 18px 8px;
  overflow: hidden;
}

.testimonials-viewport:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
  border-radius: 12px;
}

.testimonials-track {
  display: flex;
  align-items: stretch;
  gap: 38px;
  transition: transform 600ms ease;
  will-change: transform;
}

.testimonial-card {
  position: relative;
  flex: 0 0 calc((100% - 76px) / 3);
  min-width: 0;
  aspect-ratio: 262 / 279;
  padding: 40px 20px 40px 20px;  color: var(--text-black);
  background: url("../images/depoimento card.svg") center / 100% 100% no-repeat;
}

.testimonial-card blockquote {
  display: flex;
  height: 100%;
  margin: 0;
  flex-direction: column;
  overflow: hidden;
  padding: 10px;
}

.testimonial-card p {
  margin: 0;
  font-size: clamp(0.68rem, 1.05vw, 0.82rem);
  line-height: 1.16;
}

.testimonial-card footer {
  margin-top: auto;
  padding-top: 10px;
  font-size: clamp(0.68rem, 1vw, 0.78rem);
  font-weight: 800;
  text-align: right;
}

.testimonials-control {
  display: grid;
  width: 48px;
  height: 64px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: transparent;
  transition: color 180ms ease, background-color 180ms ease;
}

.testimonials-control[hidden] {
  display: none;
}

.testimonials-control span {
  width: 24px;
  height: 24px;
  border-top: 4px solid currentColor;
  border-right: 4px solid currentColor;
}

.testimonials-control-previous span {
  transform: rotate(-135deg);
}

.testimonials-control-next span {
  transform: rotate(45deg);
}

.testimonials-control:hover,
.testimonials-control:focus-visible {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.1);
}

.testimonials-control:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.richtext-content table {
  display: block;
  max-width: 100%;
  overflow-x: auto;
}

.richtext-content iframe,
.richtext-content video {
  max-width: 100%;
}

.richtext-content {
  overflow-wrap: anywhere;
}

.footer {
  position: relative;
  z-index: 1;
  color: #130f08;
}

.registration-section {
  position: relative;
  z-index: 1;
}

.registration-success {
  width: 100%;
  max-width: 760px;
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #151310;
  box-shadow: var(--shadow);
}

.registration-success p {
  color: var(--muted);
}

.registration-success .product-pickup-notice {
  color: #173b45;
  background: #d7f3fa;
  border: 1px solid #65bfd3;
  font-weight: 600;
}

.form-page {
  position: relative;
  z-index: 1;
  max-width: 960px;
  color: var(--text-black);
}

.form-page-heading {
  max-width: 720px;
}

.form-page-heading h1 {
  margin: 0 0 10px;
  color: var(--text-black);
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.form-page-heading p,
.form-page .form-text,
.form-payment-note {
  color: #62594d;
}

.form-page-kicker {
  margin-bottom: 8px;
  color: #874b2d !important;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-page fieldset {
  padding: 0;
  border: 0;
}

.form-page .form-label,
.form-page legend {
  color: var(--text-black);
}

.form-page .form-control,
.form-page .form-select {
  min-height: 52px;
  color: var(--text-black);
  border: 1px solid rgba(135, 75, 45, 0.42);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 8px 24px rgba(69, 42, 26, 0.06);
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.form-page .form-control::placeholder {
  color: #82776a;
}

.form-page .form-control:hover,
.form-page .form-select:hover {
  border-color: #874b2d;
}

.form-page .form-control:focus,
.form-page .form-select:focus {
  color: var(--text-black);
  border-color: #874b2d;
  background: #fff;
  box-shadow: 0 0 0 0.25rem rgba(245, 177, 42, 0.22);
}

.registration-fields {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
}

.registration-field {
  grid-column: span 6;
  min-width: 0;
}

.registration-field:not(.registration-field-full) > .form-label {
  display: flex;
  min-height: 3.25rem;
  align-items: flex-end;
}

.registration-field-full {
  grid-column: 1 / -1;
}

.registration-field-primary-name,
.registration-field-identification-name,
.registration-field-secondary-name,
.registration-field-secondary-identification-name,
.registration-field-primary-age,
.registration-field-secondary-age {
  grid-column: span 4;
}

.registration-field-year {
  grid-column: span 4;
}

.registration-form:not(.is-couple) .registration-field-year {
  grid-column: span 6;
}

.registration-form:not(.is-couple) .registration-field-primary-name {
  grid-column: span 4;
}

.registration-form [hidden] {
  display: none !important;
}

.registration-field > .registration-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.registration-field > .registration-options > div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.registration-options label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  color: var(--text-black);
}

.registration-form input[type="radio"],
.registration-form input[type="checkbox"] {
  appearance: none;
  width: 22px;
  height: 22px;
  margin: 0;
  flex: 0 0 22px;
  border: 2px solid #874b2d;
  background: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.registration-form input[type="radio"] {
  border-radius: 50%;
}

.registration-form input[type="checkbox"] {
  border-radius: 6px;
}

.registration-form input[type="radio"]:checked {
  border-color: #874b2d;
  background: radial-gradient(circle, var(--accent) 0 42%, #fff 45% 100%);
}

.registration-form input[type="checkbox"]:checked {
  border-color: #874b2d;
  background: var(--accent);
  box-shadow: inset 0 0 0 4px #fff;
}

.registration-form input:is([type="radio"], [type="checkbox"]):focus-visible {
  outline: 3px solid rgba(245, 177, 42, 0.45);
  outline-offset: 3px;
}

.registration-form .invalid-feedback {
  color: #9e241d;
}

.success-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin: 0 auto;
  border-radius: 50%;
  color: #17120a;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  font-size: 2rem;
  font-weight: 800;
}

.products-section {
  position: relative;
  z-index: 1;
}

.products-heading h1 {
  margin-bottom: 12px;
  color: #130f08;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
}

.products-heading p,
.products-empty {
  color: #4f4638;
}

.products-list {
  display: flex;
  flex-flow: row wrap;
  gap: 50px 0;
  justify-content: center;
}

.product-card {
  display: flex;
  flex: 0 1 50%;
  min-width: 0;
  margin-top: 16px;
  overflow: visible;
  background: #fff;
  border-radius: 0;
  padding: 2rem;
}

.product-card:nth-child(odd) {
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.product-card:nth-child(even) {
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.product-card:nth-child(odd):last-child {
  border-radius: var(--radius-lg);
}

.product-image-frame {
  flex: 0 0 42%;
  margin: -16px 0 0 12px;
  overflow: visible;
  border-radius: var(--radius-lg);
  position: relative;
}

.product-image {
  display: block;
  width: auto;
  height: 140%;
  object-fit: cover;
  position: absolute;
  top: -4rem;
}

.product-image-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  background: rgba(135, 75, 45, 0.1);
}

.product-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  text-align: center;
  gap: 5px;
}

.product-card h2 {
  color: var(--text-black);
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  font-weight: bolder;
  text-transform: uppercase;
  margin: 0;
}

.product-description {
  color: var(--text-black);
  line-height: 1.7;
  overflow-wrap: anywhere;
  font-size: 10px;
  margin: 0;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.badge-pill,
.btn.btn-primary.product-buy-button {
  color: #5a3700;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--accent);
  padding: 1px 5px 1px 5px;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 10px 0px 10px;
  font-size: 1rem;
  font-weight: 800;
}

.product-card-footer form {
  margin: 0;
}

.product-sold-out {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 1px 12px;
  border: 1px solid #847968;
  border-radius: 999px;
  color: #5f574b;
  background: #ece8e1;
}

.product-buy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-transform: uppercase;
}

.btn.btn-primary.product-buy-button {
  --bs-btn-color: #5a3700;
  --bs-btn-bg: var(--accent);
  --bs-btn-border-color: var(--accent);
  --bs-btn-hover-color: #3d2600;
  --bs-btn-hover-bg: var(--accent-strong);
  --bs-btn-hover-border-color: var(--accent-strong);
  --bs-btn-active-color: #3d2600;
  --bs-btn-active-bg: var(--accent-strong);
  --bs-btn-active-border-color: var(--accent-strong);
  --bs-btn-disabled-color: #5a3700;
  --bs-btn-disabled-bg: var(--accent);
  --bs-btn-disabled-border-color: var(--accent);
}

.custom-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  background-color: currentColor;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.custom-icon-cart-check {
  -webkit-mask-image: url("../icons/custom/cart-check.svg");
  mask-image: url("../icons/custom/cart-check.svg");
}

.custom-icon-instagram {
  width: 24px;
  height: 24px;
  -webkit-mask-image: url("../icons/custom/instagram.svg");
  mask-image: url("../icons/custom/instagram.svg");
}

.product-buy-icon {
  width: 22px;
  height: 22px;
  flex-basis: 22px;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 36px;
}

.site-header,
.hero,
.stats-grid,
.feature-section,
.cta-band,
.site-footer {
  position: relative;
  z-index: 1;
}

.home-clean {
  min-height: calc(100vh - 220px);
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 42px 0 56px;
}

.home-clean h1 {
  margin: 0;
  max-width: 13ch;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.home-clean p {
  margin: 0;
  max-width: 44ch;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
}

.home-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}

.home-links .btn {
  min-width: 180px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 22px;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.site-header .navbar-segue-me {
  margin-right: 0;
}

.site-header .navbar-collapse {
  flex-grow: 0;
}

.site-header .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.16);
}

.site-header .navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(245, 177, 42, 0.22);
}

.segue-me {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.segue-me-logo {
  display: block;
  flex: 0 0 auto;
}

.segue-me-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #120f0a;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  font-weight: 800;
}

.segue-me-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.segue-me-copy strong,
.hero h1,
.section-heading h2,
.cta-band h2,
.feature-card h3 {
  font-family: "Cormorant Garamond", serif;
}

.segue-me-copy strong {
  font-size: 1.15rem;
}

.segue-me-copy small,
.site-nav a,
.eyebrow,
.reference-tag,
.feature-card p,
.site-footer,
.cta-band p,
.hero p {
  color: var(--muted);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent-strong);
}

.nav-link {
  color: var(--muted);
  font-weight: 600;
  transition: color 180ms ease;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--accent-strong);
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 24px;
  align-items: stretch;
  padding: 32px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(247, 174, 40, 0.16), transparent 26%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--accent-strong);
}

.eyebrow::after {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--accent-strong);
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.2rem, 5.2vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: -0.03em;
  max-width: 11ch;
}

.hero p {
  max-width: 58ch;
  font-size: 1.03rem;
  line-height: 1.75;
  margin: 20px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: #130f08;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 16px 30px rgba(247, 174, 40, 0.18);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text);
}

.btn-primary {
  --bs-btn-color: #130f08;
  --bs-btn-bg: var(--accent);
  --bs-btn-border-color: var(--accent);
  --bs-btn-hover-color: var(--accent);
  --bs-btn-hover-bg: #130f08;
  --bs-btn-hover-border-color: var(--accent);
  --bs-btn-focus-shadow-rgb: 245, 177, 42;
  --bs-btn-active-color: var(--accent);
  --bs-btn-active-bg: #130f08;
  --bs-btn-active-border-color: var(--accent);
  --bs-btn-disabled-color: #130f08;
  --bs-btn-disabled-bg: var(--accent);
  --bs-btn-disabled-border-color: var(--accent);
  color: #130f08;
  background: var(--accent);
  border-color: transparent;
  border-radius: 50px;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:focus-visible {
  color: var(--accent);
  background: #130f08;
  border-color: var(--accent);
  box-shadow: 0 0 0 0.25rem rgba(245, 177, 42, 0.25);
}

.btn-outline-light {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.22);
}

.btn-outline-light:hover,
.btn-outline-light:focus-visible {
  color: #120f0a;
  background: var(--accent-strong);
  border-color: var(--accent-strong);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-points span,
.reference-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-visual {
  display: grid;
  gap: 16px;
  align-content: start;
}

.mockup {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
}

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

.mockup-large {
  min-height: 430px;
}

.mockup-small {
  min-height: 250px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 22px 0 24px;
}

.stat-card,
.feature-card,
.cta-band {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
}

.stat-card {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.stat-card span {
  color: var(--muted);
}

.stat-card strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  line-height: 1;
}

.feature-section {
  padding: 28px 0;
}

.reference-section {
  padding: 18px 0 28px;
}

.page-detail {
  padding: 22px 0 8px;
}

.page-detail h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.richtext-content {
  padding: 26px 28px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
  color: var(--text);
}

.richtext-content > *:first-child {
  margin-top: 0;
}

.richtext-content > *:last-child {
  margin-bottom: 0;
}

.richtext-content h2,
.richtext-content h3,
.richtext-content h4 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1;
}

.richtext-content h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.richtext-content h3 {
  font-size: 1.8rem;
}

.richtext-content p,
.richtext-content li {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.02rem;
}

.richtext-content a {
  color: var(--accent-strong);
}

.richtext-content img {
  max-width: 100%;
  height: auto;
  border-radius: 18px;
}

.richtext-content blockquote {
  margin: 22px 0;
  padding: 18px 22px;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.richtext-content ul,
.richtext-content ol {
  padding-left: 22px;
}

.richtext-content hr {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin: 28px 0;
}

.institutional-content-page {
  position: relative;
  z-index: 1;
  color: var(--text-black);
}

.institutional-content-heading h1 {
  margin: 0;
  color: var(--text-black);
  font-size: clamp(2rem, 4vw, 3.5rem);
  text-align: center;
}

.richtext-content.institutional-richtext {
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--text-black);
  background: transparent;
  box-shadow: none;
}

.institutional-richtext :is(h1, h2, h3, h4, h5, h6, p, li, figcaption) {
  color: var(--text-black);
}

.institutional-richtext a {
  color: #6f381f;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.institutional-richtext blockquote {
  color: var(--text-black);
  background: rgba(135, 75, 45, 0.08);
}

.institutional-richtext hr {
  border-top-color: rgba(19, 15, 8, 0.2);
}

.event-about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  align-items: start;
  gap: clamp(28px, 4vw, 54px);
}

.event-about-copy p {
  margin: 0 0 24px;
  font-size: clamp(0.95rem, 1.35vw, 1.08rem);
  line-height: 1.55;
}

.event-details {
  display: grid;
  gap: 4px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.event-details li {
  padding: 0;
  line-height: 1.45;
}

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

.event-gallery figure {
  min-width: 0;
  margin: 0;
}

.event-gallery .event-gallery-wide {
  grid-column: 1 / -1;
}

.event-gallery img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.section-heading h2,
.cta-band h2 {
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 3.5rem);
  line-height: 1;
  max-width: 14ch;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.reference-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.reference-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.reference-image-frame {
  min-height: 320px;
  padding: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.reference-image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.reference-copy {
  padding: 20px 22px 22px;
}

.reference-copy p {
  margin: 12px 0 0;
  line-height: 1.7;
  color: var(--muted);
}

.feature-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  min-height: 240px;
}

.feature-index {
  color: rgba(247, 174, 40, 0.5);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
}

.feature-card h3 {
  margin: 28px 0 12px;
  font-size: 2.1rem;
  line-height: 0.95;
}

.feature-card p {
  margin: 0;
  line-height: 1.7;
}

.cta-band {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
  align-items: center;
  margin: 24px 0 0;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(247, 174, 40, 0.14), rgba(255, 255, 255, 0.04));
  color: var(--text);
}

.cta-band .eyebrow,
.cta-band p {
  color: var(--muted);
}

.cta-band .eyebrow::before {
  background: var(--accent);
}

.cta-band h2 {
  max-width: 13ch;
}

.site-footer {
  padding: 24px 4px 6px;
  font-size: 0.95rem;
}
@media (max-width:1399px){
  .testimonial-card{
    padding: 30px 15px 30px 15px;
  }
}
@media (max-width:1199px){
  .testimonial-card{
    padding: 25px 12px 22px 13px;
  }
}
@media (max-width: 991px) {
  .header-visuals {
    grid-template-columns: minmax(0, 220px) minmax(240px, 380px) minmax(0, 220px);
    gap: 12px;
  }

  .nav-principal {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .encounter-highlights {
    grid-template-columns: 1fr;
  }

  .highlight-item {
    justify-content: center;
  }

  .highlight-item div{
    width: 50%;
  }

  .testimonial-card {
    padding: 27px 14px 30px 13px;  
  }

  .event-about-layout {
    grid-template-columns: 1fr;
  }

  .event-gallery {
    width: min(100%, 560px);
    margin-inline: auto;
  }

  .hero,
  .cta-band {
    grid-template-columns: 1fr;
    border-radius: 28px;
  }

  .site-header {
    border-radius: 28px;
  }

  .stats-grid,
  .reference-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .page-detail h1,
  .richtext-content {
    border-radius: 28px;
  }

  .mockup-large,
  .mockup-small,
  .reference-image-frame {
    min-height: 260px;
  }

  .product-card {
    flex-direction: column;
  }

  .product-image-frame {
    flex-basis: auto;
    width: 100%;
    max-width: 340px;
    min-height: 0;
    margin: 0 auto 20px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
  }

  .product-image {
    position: static;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

@media (max-width: 767px) {
  .testimonial-card {
    padding: 17px 6px 12px 9px;
  }
}

@media (max-width: 640px) {
  .header-anniversary .container {
    justify-content: center;
  }

  .header-anniversary p {
    font-size: 0.88rem;
  }

  .segue-me-logo {
    width: 40px;
    height: auto;
  }

  .header-visuals {
    display: flex;
    justify-content: center;
  }

  .logo-link {
    width: min(100%, 340px);
  }

  .retratos {
    display: none;
  }

  .nav-principal {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .highlights-section,
  .registration-section,
  .form-page,
  .institutional-content-page {
    padding-block: 32px !important;
  }

  .encounter-highlights {
    padding: 20px;
  }

  .highlight-icon {
    flex-basis: 84px;
    width: 84px;
    height: auto;
  }

  .testimonials-section {
    padding-block: 32px !important;
  }

  .testimonials-carousel {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    gap: 4px;
    padding-inline: 4px;
    border-radius: 18px;
  }

  .testimonials-track {
    gap: 20px;
  }

  .testimonial-card {
    flex-basis: 100%;
    padding: 17.5% 11% 12% 8.5%;
  }

  .testimonial-card p {
    font-size: clamp(0.74rem, 3.6vw, 0.9rem);
  }

  .testimonial-card footer {
    font-size: clamp(0.72rem, 3.4vw, 0.86rem);
  }

  .event-about-copy p {
    margin-bottom: 20px;
    font-size: 0.98rem;
  }

  .event-gallery {
    grid-template-columns: 1fr;
  }

  .event-gallery .event-gallery-wide {
    grid-column: auto;
  }

  .testimonials-control {
    width: 40px;
  }

  .testimonials-control span {
    width: 19px;
    height: 19px;
  }

  .registration-success {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .registration-fields {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .registration-field,
  .registration-field-full,
  .registration-field-primary-name,
  .registration-field-identification-name,
  .registration-field-secondary-name,
  .registration-field-secondary-identification-name,
  .registration-field-primary-age,
  .registration-field-secondary-age,
  .registration-field-year,
  .registration-field-half,
  .registration-form:not(.is-couple) .registration-field-primary-age,
  .registration-form:not(.is-couple) .registration-field-year,
  .registration-form:not(.is-couple) .registration-field-primary-name {
    grid-column: 1;
  }

  .registration-field:not(.registration-field-full) > .form-label {
    min-height: 0;
  }

  .products-list {
    row-gap: 18px;
  }

  .product-card:nth-child(n) {
    flex-basis: 100%;
    border-radius: var(--radius-lg);
  }

  .product-image-frame {
    max-width: 300px;
  }

  .product-card-body {
    padding: 20px;
  }

  .form-page-heading h1,
  .registration-success h1 {
    font-size: clamp(1.8rem, 9vw, 2.5rem);
  }

  .eyebrow {
    letter-spacing: 0.1em;
  }

  .eyebrow::before,
  .eyebrow::after {
    width: 20px;
  }

  .page-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 12px;
  }

  .hero,
  .cta-band {
    padding: 22px;
  }

  .home-clean {
    min-height: auto;
    padding: 28px 0 40px;
  }

  .home-clean h1 {
    max-width: none;
  }

  .richtext-content {
    padding: 20px;
  }

  .home-links {
    flex-direction: column;
  }

  .home-links .btn {
    width: 100%;
  }

  .hero h1,
  .section-heading h2,
  .cta-band h2 {
    max-width: none;
  }
}

.alert.alert-error {
    color: red;
}

.variant-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 16px;
}

.product-order-page .breadcrumb-item,
.product-order-page .breadcrumb-item.active {
  color: #62594d;
}

.product-order-page .breadcrumb-item a {
  color: #874b2d;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-order-page .breadcrumb-item a:focus-visible {
  outline: 3px solid rgba(135, 75, 45, 0.38);
  outline-offset: 3px;
}

.product-order-actions {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
}

.product-order-actions .btn {
  border-radius: 50px;
}

@media (max-width: 640px) {
  .product-order-actions {
    grid-template-columns: 1fr;
  }
}

.product-price,
.variant-price {
  color: #874b2d;
  font-weight: 800;
}

.variant-card {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(34, 53, 75, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.variant-card-image {
  width: 100%;
  max-width: 260px;
  margin-inline: auto;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.56);
}

.variant-card-image img {
  width: 100%;
  height: auto;
  min-height: 100%;
  max-height: 100%;
  object-fit: contain;
}

.variant-card span {
  color: var(--bs-secondary-color);
  font-size: 0.875rem;
}

.variant-card-quantity {
  margin-top: auto;
}

.variant-card-quantity .form-label {
  margin-bottom: 6px;
}

.client-field-error:not([hidden]) {
  display: block;
  margin-top: 0.25rem;
  color: #9e241d;
  font-size: 0.875em;
}

.variant-selection-error:not([hidden]) {
  display: block;
  color: #9e241d;
  font-size: 0.875em;
}

.order-summary {
  display: grid;
  grid-template-columns: minmax(90px, auto) 1fr;
  gap: 8px 16px;
}

.product-order-modal {
  color: #2f2922;
}

.product-order-modal .modal-content {
  color: #2f2922;
  background: #fff;
  border: 1px solid rgba(47, 41, 34, 0.2);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.product-order-modal .modal-title,
.product-order-modal .order-summary dt {
  color: #211c17;
}

.product-order-modal .order-summary dd {
  color: #4f463d;
}

.product-order-modal .modal-header,
.product-order-modal .modal-footer {
  border-color: rgba(47, 41, 34, 0.16);
}

.product-order-modal .modal-footer .btn {
  border-radius: 50px;
}

.product-order-modal .btn-outline-secondary {
  --bs-btn-color: #4f5964;
  --bs-btn-border-color: #6c757d;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #5c636a;
  --bs-btn-hover-border-color: #565e64;
  --bs-btn-focus-shadow-rgb: 108, 117, 125;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #565e64;
  --bs-btn-active-border-color: #51585e;
  --bs-btn-disabled-color: #6c757d;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #6c757d;
}

.order-summary dt,
.order-summary dd {
  margin: 0;
}
