﻿:root {
  --bg: #ececec;
  --surface: #ffffff;
  --ink: #363739;
  --muted: #666a70;
  --line: #e6ad87;
  --primary: #cb7b44;
  --primary-2: #b56b37;
  --accent: #efad82;
  --success: #cb7b44;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

body.nav-open {
  overflow: hidden;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(236, 236, 236, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.topbar-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}

.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.brand img {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.menu {
  display: flex;
  align-items: center;
  gap: 8px;
  position: static;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  min-width: 0;
  z-index: auto;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.menu.open {
  display: flex;
}

.menu a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  border: 1px solid transparent;
  border-radius: 11px;
  padding: 9px 12px;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.menu a:hover {
  color: var(--primary);
  border-color: var(--line);
  background: #fff7f1;
  transform: translateX(4px);
}

.menu-toggle {
  display: none;
  z-index: 40;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 10px;
  width: 44px;
  height: 40px;
  padding: 8px;
  font-weight: 700;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.seo-strip {
  background: linear-gradient(100deg, #f4f1ee, #f3e2d6);
  border-bottom: 1px solid #edbc9a;
  padding: 18px 0;
}

.seo-grid {
  display: grid;
  position: relative;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding-right: 56px;
}

.seo-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-weight: 700;
  cursor: pointer;
}

.seo-grid p {
  margin: 0;
  color: #43454a;
  line-height: 1.6;
}

.zone-buttons {
  display: flex;
  gap: 12px;
}

.zone-buttons a {
  text-decoration: none;
  font-weight: 700;
  color: var(--primary);
  border: 1px solid var(--primary);
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff7f1;
}

.zone-buttons a:hover {
  background: var(--primary);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 74vh;
  display: grid;
  place-items: center;
  background-image: url("./assets/sao-paulo.jpg");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(45, 45, 48, 0.8), rgba(203, 123, 68, 0.62));
}

.hero-content {
  position: relative;
  color: #fff;
  padding: 48px 0;
}

.tag {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-weight: 700;
  font-size: 0.76rem;
  margin: 0 0 12px;
  color: #f5c5a5;
}

.hero h1 {
  font-family: "DM Serif Display", serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.08;
  margin: 0;
  max-width: 760px;
}

.hero-text {
  max-width: 640px;
  margin: 16px 0 24px;
  line-height: 1.65;
}

.search-box {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
  background: #ffffff;
  color: var(--ink);
  border-radius: var(--radius);
  padding: 12px;
  max-width: 820px;
  box-shadow: var(--shadow);
}

.search-box label {
  display: grid;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
}

.search-box select,
.form-card input {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 12px;
  font-size: 0.96rem;
}

.search-box button,
.form-card button,
.contact-cta,
.cta {
  border: 0;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
}

.search-box button,
.form-card button,
.contact-cta,
.cta {
  background: var(--primary);
  color: #fff;
}

.search-box button:hover,
.form-card button:hover,
.contact-cta:hover,
.cta:hover {
  background: var(--primary-2);
}

.about,
.listings,
.register,
.contact {
  padding: 84px 0;
}

/* Ajustes finos de respiro entre blocos da home */
.about {
  padding-bottom: 72px;
}

.listings {
  padding-top: 72px;
}

/* Reduz o vão entre "Imóveis em destaque" e "Cadastre seu interesse" */
.listings {
  padding-bottom: 42px;
}

.register {
  padding-top: 42px;
  padding-bottom: 36px;
}

.contact {
  padding-top: 40px;
}

.about {
  background: linear-gradient(180deg, #ececec, #f3f3f3);
}

.about .container {
  background: #ffffff;
  border: 1px solid #ead7c7;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 14px 32px rgba(44, 34, 24, 0.08);
  position: relative;
  overflow: hidden;
}

.about .container::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(239, 173, 130, 0.32), rgba(239, 173, 130, 0));
  border-radius: 50%;
  pointer-events: none;
}

.about-grid,
.register-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 32px;
  align-items: start;
}

.register-copy-box {
  background: #ffffff;
  border: 1px solid #ead7c7;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 12px 28px rgba(45, 33, 20, 0.08);
}

.lead-capture {
  background: linear-gradient(180deg, #ffffff, #fbf6f1);
  border: 1px solid #ead3c0;
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 18px 36px rgba(45, 33, 20, 0.1);
  position: relative;
  overflow: hidden;
}

.lead-capture::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 173, 130, 0.36), rgba(239, 173, 130, 0));
  top: -130px;
  left: -90px;
  pointer-events: none;
}

.lead-capture::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 46% 54% 56% 44% / 50% 40% 60% 50%;
  background: radial-gradient(circle, rgba(203, 123, 68, 0.14), rgba(203, 123, 68, 0));
  right: -70px;
  bottom: -110px;
  pointer-events: none;
}

.lead-copy {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 22px;
}

.lead-kicker {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  color: #8a6242;
  font-weight: 700;
}

.lead-copy h2 {
  margin-bottom: 12px;
}

.lead-copy p {
  margin: 0 auto;
  max-width: 760px;
}

.lead-tags {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.lead-tags span {
  border: 1px solid #e9d5c5;
  border-radius: 999px;
  padding: 7px 12px;
  background: #fff;
  color: #6e5a48;
  font-size: 0.82rem;
  font-weight: 600;
}

.lead-form {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.lead-copy {
  position: relative;
  z-index: 2;
}

.reveal-up {
  opacity: 0;
  transform: translateY(20px);
  animation: revealUp 0.8s ease-out forwards;
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

h2 {
  margin: 0 0 14px;
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
}

.about p,
.section-subtitle,
.register p,
.contact p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.7;
}

.about-highlight,
.form-card,
.contact-box {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 24px;
  box-shadow: var(--shadow);
}

.about-highlight h3 {
  margin: 0 0 12px;
}

.about-highlight ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.cards {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-rows: 220px 1fr;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-content {
  padding: 18px;
  display: grid;
  gap: 10px;
}

.card-content h3 {
  margin: 0;
}

.card-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.card-meta {
  display: grid;
  gap: 6px;
  background: #fbf7f2;
  border: 1px solid #ead7c7;
  border-radius: 10px;
  padding: 10px 12px;
}

.card-meta p {
  margin: 0;
  color: #5f6674;
  line-height: 1.35;
}

.card-meta strong {
  color: #2f3540;
}

.results-toolbar {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  border-bottom: 1px solid #ddc6b3;
  padding-bottom: 16px;
}

.results-breadcrumb {
  margin: 0 0 10px;
  color: #7f8590;
  font-size: 0.92rem;
}

.results-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip-filter {
  background: #ebedf1;
  color: #242b35;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 600;
}

.results-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.map-btn,
.clear-btn {
  border-radius: 10px;
  border: 1px solid var(--line);
  padding: 10px 14px;
  background: #fff;
  color: var(--ink);
  font-weight: 700;
  cursor: pointer;
}

.map-btn:hover,
.clear-btn:hover {
  background: #fff4ec;
}

.chip {
  display: inline-flex;
  width: fit-content;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #7e4d2a;
  background: #f7d7bf;
  padding: 6px 10px;
  border-radius: 999px;
}

.form-card {
  display: grid;
  gap: 14px;
}

.form-card label {
  display: grid;
  gap: 8px;
  font-size: 0.87rem;
  font-weight: 600;
}

.contact-center {
  text-align: center;
}

.section-line {
  display: inline-block;
  width: 66px;
  height: 4px;
  border-radius: 999px;
  background: var(--primary);
  margin: 6px 0 26px;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 860px;
  margin: 0 auto;
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #e4c7af;
  color: var(--primary);
  font-size: 1.25rem;
}

.contact-info-grid p {
  margin: 10px 0 0;
  color: #6a7380;
  font-size: 1.08rem;
}

.specialist-highlight {
  max-width: 980px;
  margin: 0 auto;
  background: linear-gradient(180deg, #fff, #fdf8f4);
  border: 1px solid #e7c9b1;
  border-radius: 18px;
  padding: 44px 28px;
  text-align: center;
  box-shadow: 0 16px 30px rgba(51, 36, 24, 0.1);
}

.specialist-highlight h2 {
  margin-bottom: 14px;
}

.specialist-highlight p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.08rem;
}

.specialist-cta {
  display: inline-flex;
  margin-top: 20px;
  text-decoration: none;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  padding: 12px 22px;
}

.specialist-cta:hover {
  background: var(--primary-2);
}

.empty-result {
  margin: 16px 0 0;
  color: var(--muted);
  font-weight: 600;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  text-decoration: none;
  background: #25d366;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 16px 24px rgba(22, 79, 49, 0.26);
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.footer {
  background: #363a40;
  color: #d4dae3;
  padding: 52px 0 16px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 38px;
}

.footer-logo {
  margin: 0 0 14px;
  font-size: 2rem;
  font-family: "DM Serif Display", serif;
  color: var(--accent);
}

.footer-logo span {
  color: #d4dae3;
  font-family: "Montserrat", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid h4 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  font-weight: 800;
}

.footer-grid p,
.footer-grid a {
  margin: 8px 0;
  color: #d4dae3;
  text-decoration: none;
}

.footer-grid a {
  display: block;
}

.footer-grid a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 30px;
  padding-top: 14px;
  text-align: center;
  color: #9faab8;
}

.footer-contact-strip {
  padding-top: 72px;
  padding-bottom: 64px;
  background: #f4f4f4;
}

body.results-active .hero,
body.results-active .about,
body.results-active .register,
body.results-active .contact {
  display: none;
}

body.results-active .results-toolbar {
  display: flex;
}

body.results-active .listings {
  padding-top: 36px;
}

body.results-active .cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

body.results-active .card {
  grid-template-rows: 190px 1fr;
}

body.results-active .card-content {
  gap: 8px;
}

body.results-active .card-content h3 {
  font-size: 1rem;
  line-height: 1.35;
}

body.results-active .card-content p {
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-grid,
  .register-grid,
  .seo-grid {
    grid-template-columns: 1fr;
  }

  .seo-grid {
    gap: 12px;
    padding-right: 48px;
  }

  .about .container {
    padding: 28px;
  }

  .register-copy-box {
    padding: 24px;
  }

  .lead-capture {
    padding: 24px;
  }

  body.results-active .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .results-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .brand img {
    height: 46px;
  }

  .menu {
    position: fixed;
    inset: 0;
    top: 0;
    min-width: unset;
    width: 100%;
    height: 100vh;
    border: 0;
    border-radius: 0;
    background: rgba(28, 29, 33, 0.95);
    box-shadow: none;
    backdrop-filter: blur(6px);
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 92px 20px 32px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 0.28s ease, transform 0.28s ease;
  }

  .menu.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .menu a {
    color: #ffffff;
    font-size: 1.35rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    border: 0;
    background: transparent;
    padding: 8px 0 12px;
    width: min(320px, 85vw);
    position: relative;
  }

  .menu a::after {
    content: "";
    display: block;
    width: 74%;
    margin: 8px auto 0;
    border-bottom: 2px solid #d6a162;
  }

  .menu a:hover {
    color: #efad82;
    transform: none;
    background: transparent;
    border: 0;
  }

  .menu-toggle {
    display: inline-flex;
    position: relative;
    z-index: 40;
  }

  .seo-close {
    top: 2px;
    right: 2px;
  }

  .search-box {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  /* Reforça a leitura dos nomes dos imóveis no mobile */
  .card-content h3,
  .buy-card h3 {
    display: inline-block;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 8px;
    padding: 4px 8px;
    line-height: 1.28;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  }

  body.results-active .cards {
    grid-template-columns: 1fr;
  }

  .results-right {
    width: 100%;
  }

  .map-btn,
  .clear-btn {
    flex: 1;
  }
}

.buy-header {
  padding: 56px 0 28px;
  background: radial-gradient(circle at top left, #f6eee6, #ececec 40%);
}

.buy-header h1 {
  margin: 10px 0 8px;
  font-family: "DM Serif Display", serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.buy-header p {
  margin: 0;
  color: var(--muted);
}

.filter-bar {
  margin-top: 22px;
  background: #fff;
  border: 1px solid #e4c9b3;
  border-radius: 16px;
  padding: 18px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr auto auto;
  gap: 10px;
  align-items: end;
  box-shadow: 0 12px 24px rgba(59, 45, 32, 0.08);
}

.filter-bar label {
  display: grid;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
}

.filter-bar input,
.filter-bar select {
  width: 100%;
  border: 1px solid #ddd8d2;
  border-radius: 10px;
  padding: 11px;
  font: inherit;
  background: #fff;
}

.filter-bar button {
  border: 0;
  border-radius: 10px;
  padding: 12px 16px;
  font-weight: 700;
  cursor: pointer;
  background: var(--primary);
  color: #fff;
}

.buy-listings {
  padding: 18px 0 80px;
}

.buy-count {
  margin-bottom: 14px;
  color: #4b5260;
  font-weight: 600;
}

.buy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.buy-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e7d2bf;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(37, 28, 19, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.buy-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 30px rgba(37, 28, 19, 0.16);
}

.buy-card-image {
  display: block;
  height: 250px;
  overflow: hidden;
}

.buy-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.buy-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}

.buy-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.mini-code {
  font-size: 0.78rem;
  color: #7c838f;
  font-weight: 600;
}

.buy-card h3 {
  margin: 0;
  font-size: 1.28rem;
  font-family: "DM Serif Display", serif;
  line-height: 1.15;
}

.buy-loc {
  margin: 0;
  color: #606876;
}

.buy-specs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.buy-specs span {
  border: 1px solid #eadacb;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.8rem;
  color: #5f6674;
  background: #fbf8f5;
}

.buy-card .cta {
  margin-top: auto;
}

.detail-hero {
  min-height: 150px;
  display: grid;
  align-items: center;
  background: linear-gradient(120deg, #f2ece6 0%, #e8d7c9 55%, #f4efea 100%);
  border-bottom: 1px solid #e3c6ae;
}

.detail-hero-content {
  padding: 18px 0;
}

.detail-hero-content h1 {
  margin: 8px 0 6px;
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
}

.detail-hero-content p {
  margin: 0;
  color: #5e6674;
}

.detail-content {
  padding: 24px 0 80px;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 26px;
}

.detail-grid article,
.detail-grid aside {
  background: #fff;
  border: 1px solid #e5cfbc;
  border-radius: 16px;
  padding: 24px;
}

.detail-grid h1 {
  margin: 8px 0 10px;
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
}

.detail-grid p {
  color: #586170;
  line-height: 1.65;
}

.detail-address {
  margin: 4px 0 12px;
  color: #2f3540;
  font-weight: 700;
}

.detail-specs {
  margin: 20px 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.detail-specs div {
  border: 1px solid #ecd8c6;
  border-radius: 10px;
  padding: 10px 12px;
  display: grid;
  gap: 4px;
}

.detail-specs strong {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #8a6a52;
}

.detail-specs span {
  font-weight: 600;
  color: #2f3540;
}

.extra-info {
  margin-top: 18px;
  border-top: 1px solid #efdfd1;
  padding-top: 16px;
  background: #fbf6f1;
  border-radius: 12px;
  padding-left: 14px;
  padding-right: 14px;
  padding-bottom: 14px;
}

.orulo-link {
  display: inline-flex;
  margin-top: 12px;
  color: #8f562f;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid #e1b38f;
  background: #fff7f1;
  border-radius: 10px;
  padding: 10px 12px;
}

.orulo-link:hover {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
}

.extra-info h3 {
  margin: 0 0 10px;
  font-family: "DM Serif Display", serif;
  font-size: 1.35rem;
}

.extra-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
}

.extra-info-grid p {
  margin: 0;
  color: #5b6270;
}

.map-section {
  margin-top: 18px;
  border-top: 1px solid #efdfd1;
  padding-top: 14px;
}

.map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.map-header h3 {
  margin: 0;
  font-family: "DM Serif Display", serif;
  font-size: 1.35rem;
}

.map-header a {
  text-decoration: none;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.92rem;
}

.map-header a:hover {
  color: var(--primary-2);
}

.map-section iframe {
  width: 100%;
  height: 300px;
  border: 1px solid #ecd8c6;
  border-radius: 12px;
}

.detail-gallery-main {
  border-radius: 12px;
  overflow: hidden;
}

.detail-gallery-main img {
  width: 100%;
  height: 520px;
  object-fit: contain;
  background: #f6f6f6;
}

.vertical-showcase {
  background: linear-gradient(180deg, #f6f6f6, #efefef);
  display: grid;
  place-items: center;
  border: 1px solid #eee2d8;
}

.detail-thumbs {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.thumb-nav {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.thumb-nav span {
  color: #7b6a59;
  font-size: 0.88rem;
  font-weight: 600;
}

.thumb-nav-btn {
  width: 38px;
  height: 38px;
  border: 1px solid #e5cfbc;
  background: #fff7f1;
  color: #7d5639;
  border-radius: 10px;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}

.thumb-nav-btn:hover {
  background: #f6e8dd;
}

.plantas-section {
  margin-top: 16px;
  border-top: 1px solid #efdfd1;
  padding-top: 12px;
}

.plantas-section h3 {
  margin: 0 0 8px;
  font-family: "DM Serif Display", serif;
  font-size: 1.45rem;
}

.plantas-grid .thumb-btn img {
  height: 92px;
  object-fit: cover;
}

.thumb-btn {
  border: 2px solid transparent;
  background: transparent;
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

.thumb-btn.active {
  border-color: var(--primary);
}

.thumb-btn img {
  width: 100%;
  height: 78px;
  object-fit: cover;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  pointer-events: auto;
}

.image-lightbox.open {
  display: block;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 18, 23, 0.88);
}

.lightbox-panel {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 24px 66px;
}

.image-lightbox img {
  max-width: min(1300px, 92vw);
  max-height: 86vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.45);
  background: #fff;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  z-index: 140;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(34, 36, 42, 0.86);
  color: #fff;
  cursor: pointer;
}

.lightbox-close {
  top: 16px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-size: 1.55rem;
  line-height: 1;
  pointer-events: auto;
  touch-action: manipulation;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 72px;
  border-radius: 12px;
  font-size: 2rem;
}

.lightbox-nav.prev {
  left: 12px;
}

.lightbox-nav.next {
  right: 12px;
}

body.lightbox-open {
  overflow: hidden;
}

@media (max-width: 1100px) {
  .filter-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .buy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .filter-bar {
    grid-template-columns: 1fr;
  }

  .buy-grid {
    grid-template-columns: 1fr;
  }

  .detail-grid {
    grid-template-columns: 1fr;
  }

  .extra-info-grid {
    grid-template-columns: 1fr;
  }

  .detail-gallery-main img {
    height: 360px;
  }

  .about .container {
    padding: 22px;
    border-radius: 18px;
  }

  .register-copy-box {
    padding: 20px;
    border-radius: 16px;
  }

  .lead-capture {
    padding: 18px;
    border-radius: 18px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .specialist-highlight {
    padding: 30px 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer {
    padding-top: 36px;
  }
}
