@charset "UTF-8";
:root {
  --bg: #FFFFFF;
  --bg-2: #F5F7FA;
  --ink: #0E1730;
  --ink-2: #3A4358;
  --ink-3: #6B7280;
  --ink-4: #C9CED6;
  --line: #E7EAF0;
  --accent: #1D66E5;
  --accent-hover: #1452BD;
  --accent-soft: #EAF1FD;
  --accent-ink: #ffffff;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow-sm: 0 1px 2px rgba(18, 20, 24, 0.06), 0 2px 6px rgba(18, 20, 24, 0.04);
  --shadow-md: 0 4px 12px rgba(18, 20, 24, 0.08), 0 12px 36px rgba(18, 20, 24, 0.08);
}

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

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

body {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: #0E1730;
  background-color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.2;
  font-weight: 700;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate-fade-in-up {
  animation: fadeInUp 0.6s ease both;
}

.animate-fade-in {
  animation: fadeIn 0.5s ease both;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.section {
  padding: 6rem 0;
}

.section__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: #1D66E5;
  text-align: center;
  margin-bottom: 0.5rem;
}

.section__subtitle {
  text-align: center;
  color: #6B7280;
  font-size: 1.05rem;
  margin-bottom: 4rem;
}

.section__cta {
  text-align: center;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}

.btn--primary {
  background: #1D66E5;
  color: #FFFFFF;
}
.btn--primary:hover {
  background: #1452BD;
  box-shadow: 0 4px 14px rgba(29, 102, 229, 0.35);
}

.btn--secondary {
  background: #1D66E5;
  color: #FFFFFF;
}
.btn--secondary:hover {
  background: #1452BD;
}

.btn--outline {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.6);
}
.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #FFFFFF;
}

.btn--text {
  background: transparent;
  color: #1D66E5;
  padding: 0;
  font-weight: 600;
}
.btn--text:hover {
  color: #1D66E5;
}

.btn--large {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.placeholder-text {
  text-align: center;
  color: #6B7280;
  padding: 4rem 0;
  font-size: 0.95rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 22px;
  border-radius: 100px;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}
.btn:active {
  transform: scale(0.97);
}
.btn--white {
  background: #FFFFFF;
  color: #0E1730;
  border: 1px solid transparent;
  box-shadow: 0 1px 2px rgba(18, 20, 24, 0.06), 0 2px 6px rgba(18, 20, 24, 0.04);
}
.btn--white:hover {
  box-shadow: 0 4px 12px rgba(18, 20, 24, 0.08), 0 12px 36px rgba(18, 20, 24, 0.08);
}
.btn--accent {
  background: #1D66E5;
  color: #FFFFFF;
  border: 1px solid transparent;
}
.btn--accent:hover {
  background: #1452BD;
}
.btn--ghost-light {
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.5);
}
.btn--ghost {
  background: transparent;
  color: #0E1730;
  border: 1px solid var(--line);
}
.btn--ghost:hover {
  background: rgba(14, 23, 48, 0.04);
  border-color: #C9CED6;
}

.topnav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 14px 40px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.logo {
  flex-shrink: 0;
  line-height: 0;
}
.logo a {
  display: inline-flex;
  align-items: center;
}
.logo img,
.logo .custom-logo {
  height: 40px;
  width: auto;
  display: block;
}

.primary .primary__list {
  display: flex;
  align-items: center;
  gap: 2px;
}
.primary a {
  display: block;
  padding: 7px 13px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #0E1730;
  border-radius: 6px;
  transition: color 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}
.primary a:hover {
  color: #1D66E5;
  background: rgba(29, 102, 229, 0.06);
}
.primary .current-menu-item > a,
.primary .current-page-ancestor > a {
  color: #1D66E5;
  font-weight: 600;
}

.search-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid var(--line);
  border-radius: 100px;
  cursor: pointer;
  color: #6B7280;
  font-size: 0.875rem;
  white-space: nowrap;
  margin-left: auto;
  flex-shrink: 0;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.search-pill:hover {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.18);
  box-shadow: 0 1px 2px rgba(18, 20, 24, 0.06), 0 2px 6px rgba(18, 20, 24, 0.04);
}
.search-pill svg {
  flex-shrink: 0;
}

.topnav__end {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #6B7280;
  transition: color 0.25s ease, background 0.25s ease;
}
.icon-btn:hover {
  color: #1D66E5;
  background: rgba(29, 102, 229, 0.06);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 8px;
  border-radius: 6px;
  transition: background 0.25s ease;
}
.nav-toggle:hover {
  background: rgba(0, 0, 0, 0.06);
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #0E1730;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}
.nav-toggle[aria-expanded=true] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle[aria-expanded=true] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.topnav-search-bar {
  position: sticky;
  top: 69px;
  z-index: 99;
  background: #FFFFFF;
  border-bottom: 1px solid var(--line);
  padding: 12px 40px;
  box-shadow: 0 4px 12px rgba(18, 20, 24, 0.08), 0 12px 36px rgba(18, 20, 24, 0.08);
}
.topnav-search-bar__form {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 1180px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 8px 8px 8px 18px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.topnav-search-bar__form:focus-within {
  border-color: #1D66E5;
  box-shadow: 0 0 0 3px rgba(29, 102, 229, 0.1);
}
.topnav-search-bar__form svg {
  flex-shrink: 0;
  color: #6B7280;
}
.topnav-search-bar__input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  font: inherit;
  font-size: 0.9rem;
  color: #0E1730;
  outline: none;
}
.topnav-search-bar__input::placeholder {
  color: #6B7280;
}
.topnav-search-bar__submit {
  padding: 7px 20px;
  background: #1D66E5;
  color: #FFFFFF;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.25s ease;
}
.topnav-search-bar__submit:hover {
  background: #1452BD;
}
.topnav-search-bar__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #6B7280;
  border-radius: 50%;
  flex-shrink: 0;
  transition: color 0.25s ease, background 0.25s ease;
}
.topnav-search-bar__close:hover {
  color: #0E1730;
  background: rgba(0, 0, 0, 0.06);
}

@media (max-width: 1024px) {
  .nav-toggle {
    display: flex;
  }
  .primary {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 4px 12px rgba(18, 20, 24, 0.08), 0 12px 36px rgba(18, 20, 24, 0.08);
    padding: 8px 0;
  }
  .primary.is-open {
    display: block;
  }
  .primary .primary__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 40px;
  }
  .primary li {
    width: 100%;
  }
  .primary a {
    padding: 12px 4px;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    font-size: 0.95rem;
  }
  .primary li:last-child > a {
    border-bottom: none;
  }
}
@media (max-width: 768px) {
  .topnav {
    padding: 12px 20px;
    gap: 12px;
  }
  .search-pill {
    padding: 8px 10px;
  }
  .search-pill__label {
    display: none;
  }
  .primary .primary__list {
    padding: 0 20px;
  }
  .topnav-search-bar {
    padding: 12px 20px;
    top: 65px;
  }
}
@media (max-width: 576px) {
  .topnav {
    padding: 12px 16px;
  }
  .topnav-search-bar {
    padding: 12px 16px;
    top: 65px;
  }
}
.site-footer {
  background: #FAFBFC;
  color: #6B7280;
  padding-top: 4rem;
  padding-bottom: 2rem;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2rem 4rem;
  margin-bottom: 4rem;
}
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1rem;
}
.footer-logo img {
  height: 40px;
  width: auto;
  display: block;
}

.footer-tagline {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  color: #0E1730;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.footer-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: #6B7280;
  margin-bottom: 1rem;
}

.footer-col__title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #6B7280;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  list-style: none;
}
.footer-links a {
  font-size: 0.875rem;
  color: #3A4358;
  transition: color 0.25s ease;
}
.footer-links a:hover {
  color: #1D66E5;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #3A4358;
}
.footer-contact li a {
  color: #3A4358;
  transition: color 0.25s ease;
}
.footer-contact li a:hover {
  color: #1D66E5;
}

.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 1rem;
}

.footer-social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #6B7280;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.footer-social__link:hover {
  color: #1D66E5;
  border-color: #1D66E5;
  background: #EAF1FD;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: #6B7280;
}

.footer-bottom__dev a {
  color: #1D66E5;
  transition: opacity 0.25s ease;
}
.footer-bottom__dev a:hover {
  opacity: 0.75;
}

.whatsapp-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.whatsapp-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
}

.hero {
  position: relative;
  height: 640px;
  overflow: hidden;
  background: #0E1730;
}
@media (max-width: 768px) {
  .hero {
    height: 520px;
  }
}
@media (max-width: 576px) {
  .hero {
    height: 460px;
  }
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
}
.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 7s ease;
}
.hero-slide.is-active .hero-bg {
  transform: scale(1);
}
.hero-bg--placeholder {
  background: linear-gradient(135deg, #0E1730 0%, #3A4358 100%);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(14, 23, 48, 0.88) 0%, rgba(14, 23, 48, 0.35) 55%, transparent 100%), linear-gradient(to top, rgba(14, 23, 48, 0.65) 0%, transparent 55%);
}

.hero-inner {
  position: absolute;
  bottom: 150px;
  left: max(0px, (100% - 1180px) / 2);
  padding: 0 40px;
  max-width: 800px;
  color: #FFFFFF;
  z-index: 1;
}
@media (max-width: 768px) {
  .hero-inner {
    bottom: 44px;
    padding: 0 24px;
  }
}
@media (max-width: 576px) {
  .hero-inner {
    bottom: 32px;
    padding: 0 16px;
    max-width: 100%;
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  padding: 5px 12px;
  border-radius: 100px;
  color: #FFFFFF;
  margin-bottom: 14px;
}
.hero-eyebrow svg {
  opacity: 0.85;
}

.hero-title {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.75rem);
  font-weight: 700;
  line-height: 1.08;
  color: #FFFFFF;
  margin-bottom: 16px;
  letter-spacing: -0.025em;
}

.hero-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.875rem;
  margin-bottom: 18px;
}
.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.hero-meta span svg {
  opacity: 0.65;
  flex-shrink: 0;
}

.hero-price {
  font-family: "Fraunces", Georgia, serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 26px;
  letter-spacing: -0.03em;
  line-height: 1;
}
@media (max-width: 576px) {
  .hero-price {
    font-size: 1.75rem;
  }
}

.hero-ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-pagination {
  position: absolute;
  top: 30px;
  right: max(40px, (100% - 1180px) / 2 + 40px);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-pagination span {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.25s ease, width 0.3s ease;
}
.hero-pagination span.active {
  background: #FFFFFF;
  width: 22px;
}
@media (max-width: 576px) {
  .hero-pagination {
    right: 16px;
    top: 20px;
  }
}

.hero-counter {
  position: absolute;
  bottom: 56px;
  right: max(40px, (100% - 1180px) / 2 + 40px);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 768px) {
  .hero-counter {
    bottom: 44px;
    right: 24px;
  }
}
@media (max-width: 576px) {
  .hero-counter {
    bottom: 20px;
    right: 16px;
  }
}

.hero-counter__text {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.04em;
  min-width: 44px;
  text-align: center;
}

.hero-prev,
.hero-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #FFFFFF;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.hero-prev:hover,
.hero-next:hover {
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.5);
}

.sell {
  background: linear-gradient(135deg, #1C1C1C 0%, #2E2E2E 100%);
  color: #FFFFFF;
  padding: 6rem 0;
}

.sell__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 6rem;
  align-items: center;
}
@media (max-width: 1024px) {
  .sell__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.sell__eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 16px;
}

.sell__title {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 22px;
}

.sell__text {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  max-width: 540px;
  margin-bottom: 28px;
}

.sell__media {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 2/3;
}
.sell__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1024px) {
  .sell__media {
    aspect-ratio: 4/3;
  }
}

.card {
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  flex-shrink: 0;
  width: 300px;
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.card:hover .card-photo img {
  transform: scale(1.05);
}
.card--featured {
  width: 480px;
}
@media (max-width: 576px) {
  .card {
    width: 256px;
  }
  .card--featured {
    width: 300px;
  }
}

.card-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #F5F7FA;
  flex-shrink: 0;
}
.card-photo a {
  display: block;
  height: 100%;
}
.card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.card-photo__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: linear-gradient(135deg, #F5F7FA 0%, #E7EAF0 100%);
  color: #C9CED6;
}

.card--featured .card-photo {
  aspect-ratio: 16/10;
}

.card-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  z-index: 1;
}

.badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(14, 23, 48, 0.6);
  backdrop-filter: blur(6px);
  color: #FFFFFF;
  line-height: 1.5;
}
.badge--accent {
  background: #1D66E5;
}

.card-heart {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  color: #6B7280;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease;
}
.card-heart:hover, .card-heart.is-active {
  color: #e53e3e;
  background: #FFFFFF;
}
.card-heart.is-active svg {
  fill: #e53e3e;
  stroke: #e53e3e;
}

.card-photo-count {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #FFFFFF;
  background: rgba(14, 23, 48, 0.55);
  backdrop-filter: blur(4px);
  padding: 3px 8px;
  border-radius: 4px;
}

.card-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}
.card-body a {
  display: block;
  min-width: 0;
  text-decoration: none;
}
.card-body a:hover .card-title {
  color: #1D66E5;
}

.card-price {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #0E1730;
  letter-spacing: -0.025em;
  line-height: 1;
}

.card--featured .card-price {
  font-size: 1.625rem;
}

.card-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0E1730;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 3px;
  transition: color 0.25s ease;
}

.card-address {
  font-size: 0.78rem;
  color: #6B7280;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 2px;
}

.card-specs {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  color: #6B7280;
}
.card-specs span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.card-specs span svg {
  flex-shrink: 0;
  color: #C9CED6;
}

.content {
  padding: 4rem 0;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .content {
    padding: 2rem 0;
    gap: 2rem;
  }
}

.shelf-header {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  padding: 0 40px;
  margin-bottom: 18px;
}
@media (max-width: 768px) {
  .shelf-header {
    padding: 0 24px;
  }
}
@media (max-width: 576px) {
  .shelf-header {
    display: block;
    padding: 0 16px;
  }
}

.shelf-title {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0E1730;
  letter-spacing: -0.025em;
  margin: 0;
  line-height: 1.2;
}

.shelf-sub {
  font-size: 0.875rem;
  color: #6B7280;
  flex: 1;
  min-width: 0;
}

.shelf-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1D66E5;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.25s ease;
}
.shelf-link:hover {
  color: #1452BD;
}

.rail-wrap {
  position: relative;
}

.rail {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 40px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 6px 40px 24px;
  width: 100%;
  box-sizing: border-box;
}
.rail::-webkit-scrollbar {
  display: none;
}
.rail > .card {
  scroll-snap-align: start;
}
@media (max-width: 768px) {
  .rail {
    scroll-padding-left: 24px;
    padding: 6px 24px 20px;
  }
}
@media (max-width: 576px) {
  .rail {
    scroll-padding-left: 16px;
    padding: 6px 16px 20px;
  }
}

.rail-btn {
  position: absolute;
  top: calc(50% - 12px);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  color: #0E1730;
  cursor: pointer;
  transition: box-shadow 0.25s ease, opacity 0.25s ease;
}
.rail-btn:hover {
  box-shadow: var(--shadow-md);
}
.rail-btn--prev {
  left: 0;
  transform: translate(-50%, -50%);
}
.rail-btn--next {
  right: 0;
  transform: translate(50%, -50%);
}
.rail-btn.is-hidden {
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .rail-btn {
    display: none;
  }
}

.rail-dots {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 4px;
}
@media (max-width: 1024px) {
  .rail-dots {
    display: flex;
  }
}
.rail-dots span {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: var(--line);
  cursor: pointer;
  transition: background 0.25s ease, width 0.3s ease;
}
.rail-dots span.active {
  background: #1D66E5;
  width: 22px;
}

.about {
  background: linear-gradient(180deg, #F8F4EA 0%, #EFE7D8 100%);
  padding: 4rem 0;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
@media (max-width: 1024px) {
  .about__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.about__eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8A8378;
  margin-bottom: 16px;
}

.about__title {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #2A2520;
  margin-bottom: 22px;
}

.about__text {
  font-size: 1rem;
  line-height: 1.75;
  color: #6E6860;
  margin-bottom: 16px;
}
.about__text:last-of-type {
  margin-bottom: 28px;
}

.about__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: #2A2520;
  color: #FFFFFF;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.25s ease;
}
.about__cta:hover {
  background: #3A332C;
}

.about__media {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.about__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1024px) {
  .about__media {
    aspect-ratio: 4/3;
  }
}

.youtube {
  background: #0E1730;
  padding: 6rem 0;
}

.youtube__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.youtube__eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgb(111.3285714286, 157.7357142857, 238.4714285714);
  margin-bottom: 12px;
}

.youtube__title {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.youtube__sub {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
}

.youtube__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}
@media (max-width: 1024px) {
  .youtube__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .youtube__grid {
    grid-template-columns: 1fr;
  }
}

.youtube-card {
  display: block;
  text-decoration: none;
}

.youtube-card__thumb {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  margin-bottom: 14px;
}
.youtube-card__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.youtube-card:hover .youtube-card__thumb img {
  transform: scale(1.05);
}

.youtube-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.youtube-card__play svg {
  margin-left: 2px;
}

.youtube-card:hover .youtube-card__play {
  background: #FF0000;
  border-color: #FF0000;
  transform: translate(-50%, -50%) scale(1.08);
}

.youtube-card__duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  background: rgba(0, 0, 0, 0.75);
  padding: 2px 6px;
  border-radius: 4px;
  line-height: 1.5;
}

.youtube-card__title {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
  color: #FFFFFF;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.9em;
  transition: color 0.25s ease;
}

.youtube-card:hover .youtube-card__title {
  color: rgb(111.3285714286, 157.7357142857, 238.4714285714);
}

.youtube__cta {
  text-align: center;
}

.btn--youtube {
  background: #FF0000;
  color: #FFFFFF;
  border: 1px solid transparent;
}
.btn--youtube:hover {
  background: #CC0000;
}

.imoveis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) {
  .imoveis-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .imoveis-grid {
    grid-template-columns: 1fr;
  }
}

.card-imovel {
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(18, 20, 24, 0.08), 0 12px 36px rgba(18, 20, 24, 0.08);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card-imovel:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
}

.card-imovel__thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.card-imovel__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card-imovel:hover .card-imovel__thumb img {
  transform: scale(1.05);
}

.card-imovel__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #1D66E5;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card-imovel__body {
  padding: 1rem 1rem 2rem;
}

.card-imovel__price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1D66E5;
  margin-bottom: 0.4rem;
}

.card-imovel__title {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1rem;
  color: #0E1730;
  margin-bottom: 0.5rem;
}

.card-imovel__location {
  font-size: 0.875rem;
  color: #6B7280;
  margin-bottom: 1rem;
}
.card-imovel__location::before {
  content: "📍 ";
}

.card-imovel__features {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: #6B7280;
  padding-top: 0.5rem;
  border-top: 1px solid #E7EAF0;
}

.section--diferenciais {
  background: #F5F7FA;
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) {
  .diferenciais-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .diferenciais-grid {
    grid-template-columns: 1fr;
  }
}

.diferencial-card {
  text-align: center;
  padding: 2rem;
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(18, 20, 24, 0.06), 0 2px 6px rgba(18, 20, 24, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.diferencial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(18, 20, 24, 0.08), 0 12px 36px rgba(18, 20, 24, 0.08);
}

.diferencial-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.diferencial-card h3 {
  font-size: 1.1rem;
  color: #1D66E5;
  margin-bottom: 0.5rem;
}

.diferencial-card p {
  font-size: 0.9rem;
  color: #6B7280;
  line-height: 1.6;
}

.section--cta {
  background: linear-gradient(135deg, #1D66E5, #1452BD);
  color: #FFFFFF;
  text-align: center;
}

.cta__inner {
  max-width: 640px;
  margin: 0 auto;
}

.cta__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.cta__text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.page-interna {
  padding: 4rem 0;
}

.page-header {
  margin-bottom: 2rem;
}

.page-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #1D66E5;
}

.page-body {
  max-width: 800px;
}
.page-body p {
  margin-bottom: 1rem;
}
.page-body h2 {
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  color: #1D66E5;
}
.page-body h3 {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
.page-body ul, .page-body ol {
  margin-left: 2rem;
  margin-bottom: 1rem;
  list-style: revert;
}
.page-body img {
  border-radius: 10px;
  margin: 1rem 0;
}

.single-post {
  padding: 4rem 0;
}

.post-header {
  margin-bottom: 2rem;
}

.post-thumbnail {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 2rem;
}
.post-thumbnail img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.post-meta {
  font-size: 0.85rem;
  color: #6B7280;
  margin-bottom: 0.5rem;
}

.post-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #1D66E5;
}

.post-body {
  max-width: 760px;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 4rem 0;
}
@media (max-width: 1024px) {
  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .posts-grid {
    grid-template-columns: 1fr;
  }
}

.post-card {
  border: 1px solid #E7EAF0;
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}
.post-card:hover {
  box-shadow: 0 4px 12px rgba(18, 20, 24, 0.08), 0 12px 36px rgba(18, 20, 24, 0.08);
}

.post-card__thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.post-card__body {
  padding: 1rem;
}

.post-card__date {
  font-size: 0.8rem;
  color: #6B7280;
}

.post-card__title {
  font-size: 1rem;
  margin: 0.3rem 0 0.5rem;
}
.post-card__title a:hover {
  color: #1D66E5;
}

.post-card__excerpt {
  font-size: 0.875rem;
  color: #6B7280;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .section {
    padding: 4rem 0;
  }
  .hero {
    min-height: 60vh;
  }
  .hero__actions {
    flex-direction: column;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 576px) {
  .section__title {
    font-size: 1.6rem;
  }
}
