/* Reset leve para o novo layout, sem quebrar o restante do site */
/* Tema dourado/bronze (botão elegante) */
.novo-body {
  --novo-dourado-claro: #d2b482;
  --novo-dourado-escuro: #aa8250;
  --novo-dourado-texto: #2c2416;
  --novo-dourado-sombra: rgba(0, 0, 0, 0.18);
  --novo-btn-luz: inset 0 0 22px 2px rgba(255, 255, 255, 0.4), inset 0 0 45px rgba(255, 255, 255, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1f2933;
  background-color: #f7f8fa;
}

/* Efeito luz esquerda → direita ao passar o mouse (todos os botões e links) */
.novo-card-link,
.novo-body .btn-primary,
.novo-search-tab,
.novo-search-submit .btn-primary,
.novo-body .btn-outline-primary,
.novo-body .pagination .page-link,
.novo-nav a,
.novo-nav-mobile-inner a,
.novo-header-whats,
.novo-header-cta,
#btnContatoWhats {
  position: relative;
  overflow: hidden;
}

.novo-card-link::after,
.novo-body .btn-primary::after,
.novo-search-tab::after,
.novo-search-submit .btn-primary::after,
.novo-body .btn-outline-primary::after,
.novo-body .pagination .page-link::after,
.novo-header-whats::after,
.novo-header-cta::after,
#btnContatoWhats::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: translateX(-100%);
  transition: none;
  pointer-events: none;
}

/* Nav links usam ::before para o sweep (::after já é o sublinhado) */
.novo-nav a::before,
.novo-nav-mobile-inner a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: translateX(-100%);
  transition: none;
  pointer-events: none;
}

.novo-card-link:hover::after,
.novo-body .btn-primary:hover::after,
.novo-search-tab:hover::after,
.novo-search-submit .btn-primary:hover::after,
.novo-body .btn-outline-primary:hover::after,
.novo-body .pagination .page-link:hover::after,
.novo-body .pagination .page-item.active .page-link::after,
.novo-header-whats:hover::after,
.novo-header-cta:hover::after,
#btnContatoWhats:hover::after {
  transform: translateX(400%);
  transition: transform 0.5s ease;
}

.novo-nav a:hover::before,
.novo-nav-mobile-inner a:hover::before {
  transform: translateX(400%);
  transition: transform 0.5s ease;
}

.novo-card-link:not(:hover)::after,
.novo-body .btn-primary:not(:hover)::after,
.novo-search-tab:not(:hover)::after,
.novo-search-submit .btn-primary:not(:hover)::after,
.novo-body .btn-outline-primary:not(:hover)::after,
.novo-body .pagination .page-link:not(:hover)::after,
.novo-header-whats:not(:hover)::after,
.novo-header-cta:not(:hover)::after,
#btnContatoWhats:not(:hover)::after {
  transition-duration: 0s;
}

.novo-nav a:not(:hover)::before,
.novo-nav-mobile-inner a:not(:hover)::before {
  transition-duration: 0s;
}

.novo-body .pagination .page-item.active .page-link:not(:hover)::after {
  transition-duration: 0s;
}

.novo-header {
  background: linear-gradient(90deg, #050814, #111827);
  position: sticky;
  top: 0;
  z-index: 1030;
  padding: 0.9rem 0;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.65);
}

.novo-brand-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
}

.novo-logo {
  height: 44px;
  width: auto;
}

.novo-header-separador {
  width: 100%;
  max-width: 180px;
  height: auto;
  display: block;
}

.novo-brand-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: #f9fafb;
}

.novo-brand-tagline {
  font-size: 0.9rem;
  color: #e5e7eb;
}

.novo-nav a {
  margin: 0 0.75rem;
  font-size: 0.95rem;
  color: #e5e7eb;
  text-decoration: none;
  position: relative;
  padding-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.novo-nav a:hover {
  color: #fbbf24;
}

.novo-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #fbbf24, #f97316);
  transition: width 0.2s ease-in-out;
}

.novo-nav a:hover::after {
  width: 100%;
}

.novo-header-whats {
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding-inline: 0.9rem;
  border-radius: 999px;
  background-color: #020617;
  border: 1px solid #22c55e;
  color: #e5e7eb;
}

.novo-header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.novo-header-toggle {
  border: none;
  background: transparent;
  color: #f9fafb;
  padding: 0.25rem 0.4rem;
  font-size: 1.1rem;
}

.novo-header-toggle:focus {
  outline: none;
  box-shadow: none;
}

.novo-header-cta {
  background: linear-gradient(135deg, #fbbf24, #f97316);
  border-color: transparent;
  font-weight: 600;
  color: #111827;
  box-shadow: 0 10px 25px rgba(251, 191, 36, 0.35);
  padding-inline: 1.1rem;
  border-radius: 999px;
}

.novo-offcanvas-nav {
  background: linear-gradient(180deg, #050814, #020617);
  color: #e5e7eb;
  width: 260px;
  max-width: 80%;
}

.novo-offcanvas-nav .offcanvas-header {
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
}

.novo-offcanvas-nav .offcanvas-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.novo-offcanvas-nav .btn-close {
  filter: invert(1);
}

.novo-offcanvas-nav .offcanvas-body {
  padding-top: 0.5rem;
  padding-bottom: 0.75rem;
}

.novo-nav-mobile-inner {
  display: flex;
  flex-direction: column;
}

.novo-nav-mobile-inner a {
  padding: 0.55rem 0;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  color: #e5e7eb;
  text-decoration: none;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.novo-nav-mobile-inner a:last-child {
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.novo-nav-mobile-inner a:hover {
  color: #fbbf24;
}

.novo-header-cta:hover,
.novo-header-cta:focus {
  background: linear-gradient(135deg, #ea580c, #c2410c);
  border-color: transparent;
  color: #f9fafb;
}

.novo-hero {
  position: relative;
  padding: 3rem 0 3.5rem;
  overflow: hidden;
  color: #ffffff;
}

.hero-swiper {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.novo-hero-slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.novo-hero-slide-1 {
  background-image:
    linear-gradient(120deg, rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.35)),
    url("/img/hero-home-madia-25.png.webp");
}

.novo-hero-slide-2 {
  background-image:
    linear-gradient(120deg, rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.35)),
    url("/img/hero-home-madia-25.png.webp");
}

.novo-hero-slide-3 {
  background-image:
    linear-gradient(120deg, rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.35)),
    url("/img/hero-home-madia-25.png.webp");
}

.novo-hero-overlay {
  position: relative;
  z-index: 1;
}

.novo-hero-kicker {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fafafb;
  margin-bottom: 0.75rem;
}

.novo-hero-title {
  font-size: 2.1rem;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.novo-hero-subtitle {
  font-size: 1rem;
  color: #e5e7eb;
  margin-bottom: 1.25rem;
}

.novo-hero-highlights {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.novo-hero-highlights li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.95rem;
  color: #e5e7eb;
  margin-bottom: 0.35rem;
}

.novo-hero-highlights li::before {
  content: "●";
  font-size: 0.5rem;
  color: #22c55e;
}

/* Página de detalhe de slide (swiper_slide) */
.novo-hero-slide-detalhe {
  position: relative;
  padding: 3.5rem 0 3rem;
  color: #f9fafb;
  overflow: hidden;
}

.novo-hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(4px);
  transform: scale(1.08);
  opacity: 0.9;
}

.novo-hero-slide-detalhe .container {
  position: relative;
  z-index: 1;
}

.novo-hero-slide-card {
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.96));
  border-radius: 1.2rem;
  padding: 1.9rem 2rem 1.8rem;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(248, 250, 252, 0.05);
}

.novo-hero-slide-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #f9fafb;
}

.novo-hero-slide-subtitle {
  font-size: 0.98rem;
  color: #e5e7eb;
}

.novo-hero-slide-description p {
  font-size: 0.92rem;
  color: #d1d5db;
  margin-bottom: 0.4rem;
}

.novo-hero-slide-actions {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.novo-hero-slide-actions .btn-primary {
  background: linear-gradient(135deg, #fbbf24, #f97316);
  border-color: transparent;
  font-weight: 600;
  color: #111827;
}

.novo-hero-slide-actions .btn-outline-light {
  border-radius: 999px;
}

.novo-search-card {
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.85));
  border-radius: 1.1rem;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.7);
  padding: 1.5rem 1.6rem 1.35rem;
  border: 1px solid rgba(248, 250, 252, 0.06);
  color: #e5e7eb;
}

.novo-search-card .form-select,
.novo-search-card .form-control {
  color: #f9fafb;
  background-color: rgba(15, 23, 42, 0.9);
  border-color: rgba(148, 163, 184, 0.6);
  font-size: 0.9rem;
}

.novo-search-card .form-select:focus,
.novo-search-card .form-control:focus {
  border-color: #fbbf24;
  box-shadow: 0 0 0 1px rgba(251, 191, 36, 0.45);
}

.novo-search-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #c8c8c9;
  margin-bottom: 0.25rem;
}

.novo-search-row {
  margin-top: 0.25rem;
}

.novo-search-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
}

.novo-search-tab {
  flex: 1;
  border-radius: 6px;
  border: 1px solid #d1d5db;
  background: #f9fafb;
  color: #4b5563;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.4rem 0.6rem;
  cursor: pointer;
  transition: all 0.15s ease-out;
  white-space: nowrap;
}

.novo-search-tab.ativo {
  background: linear-gradient(180deg, var(--novo-dourado-claro), var(--novo-dourado-escuro));
  border-color: var(--novo-dourado-escuro);
  color: var(--novo-dourado-texto);
  box-shadow: 0 1px 3px var(--novo-dourado-sombra), var(--novo-btn-luz);
}

.novo-search-tab:hover {
  background: #e5e7eb;
}

.novo-search-tab.ativo:hover {
  background: linear-gradient(180deg, #c4a574, #967345);
  border-color: #967345;
}

.novo-search-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.7rem;
}

.novo-search-field {
  flex: 1 1 50%;
}

.novo-search-submit {
  flex: 0 0 40%;
  display: flex;
  align-items: flex-end;
}

.novo-search-submit .btn-primary {
  background: linear-gradient(180deg, var(--novo-dourado-claro), var(--novo-dourado-escuro));
  border-color: transparent;
  color: var(--novo-dourado-texto);
  font-weight: 600;
  border-radius: 3px;
  box-shadow: 0 2px 6px var(--novo-dourado-sombra), var(--novo-btn-luz);
}

.novo-search-submit .btn-primary:hover {
  background: linear-gradient(180deg, #c4a574, #967345);
  border-color: transparent;
  color: var(--novo-dourado-texto);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.22), var(--novo-btn-luz);
}

.novo-search-code-row {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.novo-search-code-row .form-control {
  font-size: 0.85rem;
}

.novo-search-code-row .btn {
  padding-inline: 0.85rem;
  border-color: rgba(148, 163, 184, 0.6);
}

.novo-search-advanced-wrapper {
  margin-top: 0.35rem;
  text-align: right;
}

.novo-search-advanced {
  font-size: 0.8rem;
  color: #2563eb;
  text-decoration: none;
}

.novo-search-advanced:hover {
  text-decoration: underline;
}

.novo-search-heading {
  font-size: 1rem;
  font-weight: 600;
  color: #f9fafb;
  margin-bottom: 0.15rem;
}

.novo-search-caption {
  font-size: 0.82rem;
  color: #d1d5db;
  margin-bottom: 0.75rem;
}

.novo-search-fields-secondary {
  margin-top: 0.55rem;
}

/* Botões elegantes dourado/bronze com degradê e luz suave no centro */
.novo-body .btn-primary {
  background: linear-gradient(180deg, var(--novo-dourado-claro), var(--novo-dourado-escuro));
  border: none;
  border-radius: 3px;
  color: var(--novo-dourado-texto);
  font-weight: 600;
  box-shadow: 0 2px 6px var(--novo-dourado-sombra), var(--novo-btn-luz);
}

.novo-body .btn-primary:hover,
.novo-body .btn-primary:active,
.novo-body .btn-primary:focus {
  background: linear-gradient(180deg, #c4a574, #967345);
  border: none;
  color: var(--novo-dourado-texto);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.22), var(--novo-btn-luz);
}

.novo-body .btn-outline-primary {
  color: var(--novo-dourado-escuro);
  border-color: var(--novo-dourado-escuro);
  background-color: #ffffff;
  border-radius: 3px;
}

.novo-body .btn-outline-primary:hover,
.novo-body .btn-outline-primary:active,
.novo-body .btn-outline-primary:focus {
  color: var(--novo-dourado-texto);
  background: linear-gradient(180deg, var(--novo-dourado-claro), var(--novo-dourado-escuro));
  border-color: var(--novo-dourado-escuro);
  box-shadow: 0 2px 6px var(--novo-dourado-sombra), var(--novo-btn-luz);
}

.novo-section {
  padding: 2.75rem 0;
}

.novo-section-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.3rem;
}

.novo-section-subtitle {
  font-size: 0.95rem;
  color: #6b7280;
}

.novo-featured-wrapper {
  margin-top: 0.75rem;
}

.novo-section-link {
  text-align: right;
}

/* Ajustes nos cards existentes para uma cara mais moderna sem quebrar o backend */
.resultList .product-inner {
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out;
}

.resultList .product-inner:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
}

.resultList .product-info {
  padding: 0.8rem 1rem 1rem;
}

.resultList .product-title a {
  font-size: 0.95rem;
  font-weight: 600;
  color: #111827;
}

.resultList .price,
.resultList .product-info .price {
  color: #2563eb;
  font-weight: 700;
}

.novo-cards-row {
  margin-top: 0.75rem;
}

.novo-cards-row [class*="col-"] {
  display: flex;
}

.novo-cards-row .novo-card-imovel {
  flex: 1;
  width: 100%;
}

.novo-swiper {
  margin-top: 0.75rem;
  padding-bottom: 2.3rem;
}

.novo-swiper .swiper-wrapper {
  padding-bottom: 0.5rem;
  align-items: stretch;
}

.novo-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.novo-swiper .swiper-pagination-bullet {
  background: #e5e7eb;
  opacity: 1;
  width: 8px;
  height: 8px;
}

.novo-swiper .swiper-pagination-bullet-active {
  background: linear-gradient(180deg, var(--novo-dourado-claro), var(--novo-dourado-escuro));
  width: 16px;
  border-radius: 999px;
}

.novo-card-imovel {
  background: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  min-height: 0;
  border-bottom: 2px solid var(--novo-dourado-escuro);
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out;
}

.novo-card-img-wrap {
  position: relative;
  overflow: hidden;
  max-height: 210px;
  cursor: pointer;
}

.novo-card-img-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: translateX(-100%);
  transition: none;
  pointer-events: none;
  z-index: 1;
}

.novo-card-img-wrap:hover::after {
  transform: translateX(400%);
  transition: transform 0.5s ease;
}

.novo-card-img-wrap:not(:hover)::after {
  transition-duration: 0s;
}

.novo-card-img-wrap img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease-out;
  cursor: pointer;
}

.detalhe-main-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.detalhe-thumb-img {
  width: 100%;
  height: 110px;
  object-fit: cover;
}

.novo-card-chip {
  position: absolute;
  top: 8px;
  left: 2px;
  background: rgba(0, 0, 0, 0.38);
  color: #e6e5ed;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem 0.65rem;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

.novo-card-body {
  padding: 0.9rem 1rem 0.8rem;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
}

.novo-card-title {
  font-size: 0.98rem;
  margin-bottom: 0.4rem;
}

.novo-card-title a {
  color: #111827;
  text-decoration: none;
}

.novo-card-title a:hover {
  color: #1d4ed8;
}

.novo-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0.6rem;
  font-size: 0.78rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.novo-card-meta span {
  padding: 0.18rem 0.45rem;
  border-radius: 999px;
  background: #f3f4f6;
}

.novo-card-footer {
  padding: 0.45rem 1rem 3px;
  margin-top: auto;
  border-top: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 2.75rem;
  flex-shrink: 0;
}

@media (max-width: 420px) {
  .novo-card-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    padding: 0.5rem 1rem 3px;
  }
  .novo-card-preco {
    order: 1;
    justify-content: flex-start;
  }
  .novo-card-link {
    order: 2;
    min-width: 0;
    width: 100%;
  }
}

.novo-card-preco {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  flex: 1 1 auto;
  min-width: 0;
}

.novo-card-preco-label {
  font-size: 0.78rem;
  color: #4b5563;
}

.novo-card-preco-valor {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
}

.novo-card-preco-mes {
  font-size: 0.78rem;
  color: #6b7280;
}

.novo-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 8.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--novo-dourado-texto);
  text-decoration: none;
  white-space: nowrap;
  padding: 0.4rem 0.75rem;
  background: linear-gradient(180deg, var(--novo-dourado-claro), var(--novo-dourado-escuro));
  border-radius: 3px;
  box-shadow: 0 1px 3px var(--novo-dourado-sombra), var(--novo-btn-luz);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.15s ease;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.novo-card-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 60%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.35) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}

.novo-card-link i {
  margin-left: 0.25rem;
}

.novo-card-link:hover {
  color: var(--novo-dourado-texto);
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.22), var(--novo-btn-luz);
  transform: translateY(-1px);
}

.novo-card-imovel:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.2);
}

.novo-card-imovel:hover .novo-card-img-wrap img {
  transform: scale(1.04);
}

.novo-body .pagination .page-link {
  color: var(--novo-dourado-escuro);
  border-color: var(--novo-dourado-escuro);
  border-radius: 3px;
}

.novo-body .pagination .page-link:hover {
  color: var(--novo-dourado-texto);
  background: linear-gradient(180deg, var(--novo-dourado-claro), var(--novo-dourado-escuro));
  border-color: var(--novo-dourado-escuro);
  box-shadow: 0 1px 3px var(--novo-dourado-sombra), var(--novo-btn-luz);
}

.novo-body .pagination .page-item.active .page-link {
  color: var(--novo-dourado-texto);
  background: linear-gradient(180deg, var(--novo-dourado-claro), var(--novo-dourado-escuro));
  border-color: var(--novo-dourado-escuro);
  box-shadow: 0 1px 3px var(--novo-dourado-sombra), var(--novo-btn-luz);
}

.novo-section-sobre p {
  font-size: 0.95rem;
  color: #4b5563;
}

.novo-card-info {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.4rem 1.6rem;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.1);
}

.novo-card-info h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: #111827;
}

.novo-card-info ul {
  padding-left: 1.1rem;
  margin-bottom: 0.75rem;
  font-size: 0.93rem;
  color: #4b5563;
}

.novo-link-inline {
  font-size: 0.85rem;
  color: #2563eb;
  text-decoration: none;
}

.novo-link-inline:hover {
  text-decoration: underline;
}

.novo-section-cta {
  padding-bottom: 3.25rem;
}

.novo-cta-card {
  background: linear-gradient(135deg, #1d4ed8, #22c55e);
  border-radius: 1.25rem;
  padding: 1.75rem 1.8rem;
  color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.novo-cta-card h2 {
  font-size: 1.3rem;
  margin-bottom: 0.35rem;
}

.novo-cta-card p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.novo-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.novo-cta-actions .btn-primary {
  background: #ffffff;
  color: #1f2933;
  border-color: transparent;
  font-weight: 600;
}

.novo-cta-actions .btn-outline-light {
  border-width: 1px;
}

/* Rodapé conforme layout: fundo escuro, dourado, textura */
.novo-footer {
  position: relative;
  background: #0f0f12;
  color: #e8e8ec;
  padding: 2.5rem 0 0;
  margin-top: 1.5rem;
  overflow: hidden;
}

.novo-footer-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(212, 168, 83, 0.06) 0%, transparent 45%),
    repeating-linear-gradient(
      125deg,
      transparent,
      transparent 8px,
      rgba(212, 168, 83, 0.03) 8px,
      rgba(212, 168, 83, 0.03) 9px
    );
  pointer-events: none;
}

.novo-footer-main {
  padding-bottom: 1.5rem;
}

.novo-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
}

.novo-footer-logo {
  width: 100%;
  max-width: 260px;
  height: auto;
  max-height: 90px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.novo-footer-brand-text {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e8e8ec;
}

/* Wrapper do separador com efeito de luz a cada 8 segundos (header e footer) */
.novo-separador-light-wrap {
  position: relative;
  display: block;
  line-height: 0;
  margin-left: -30px;
}

.novo-separador-light-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 40%;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    rgba(212, 168, 83, 0.7),
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: translate(-120%, -50%);
  opacity: 0;
  animation: novo-separador-light-sweep 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes novo-separador-light-sweep {
  0%,
  75% {
    transform: translate(-120%, -50%);
    opacity: 0;
  }
  80% {
    transform: translate(-40%, -50%);
    opacity: 1;
  }
  90% {
    transform: translate(140%, -50%);
    opacity: 1;
  }
  100% {
    transform: translate(220%, -50%);
    opacity: 0;
  }
}

.novo-footer-brand .novo-separador-light-wrap {
  margin-top: 0.15rem;
}

.novo-footer-separador {
  width: 100%;
  max-width: 260px;
  height: auto;
  display: block;
}

.novo-footer-title {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #d4a853;
}

.novo-footer-icon {
  color: #fff;
  width: 1.2em;
  text-align: center;
  margin-right: 0.5rem;
}

.novo-footer-list,
.novo-footer-links {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.novo-footer-list li,
.novo-footer-links li {
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  color: #e8e8ec;
}

.novo-footer-links a {
  color: #e8e8ec;
  text-decoration: none;
}

.novo-footer-links a:hover {
  color: #d4a853;
}

.novo-footer-social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.novo-footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 30, 35, 0.95);
  color: #e8e8ec;
  text-decoration: none;
  border: 1px solid rgba(212, 168, 83, 0.2);
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.novo-footer-social-link:hover {
  background: rgba(212, 168, 83, 0.25);
  color: #fff;
  border-color: rgba(212, 168, 83, 0.5);
  box-shadow: 0 0 12px rgba(212, 168, 83, 0.2);
}

.novo-footer-bottom {
  position: relative;
  text-align: center;
  padding: 1rem 0 1.25rem;
  border-top: 1px solid rgba(212, 168, 83, 0.4);
  font-size: 0.8rem;
  color: #b8b8c0;
  overflow-x: hidden;
}

/* Efeito de luz passando na linha a cada 5 segundos */
.novo-footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 35%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    rgba(212, 168, 83, 0.7),
    rgba(255, 255, 255, 0.4),
    rgba(212, 168, 83, 0.7),
    rgba(255, 255, 255, 0.15),
    transparent
  );
  animation: novo-footer-line-light 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes novo-footer-line-light {
  0%, 50% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(400%);
  }
}

.novo-footer-bottom span {
  display: inline-block;
}

@media (min-width: 992px) {
  .novo-footer-col-divider {
    position: relative;
    padding-left: 1.75rem;
  }

  .novo-footer-col-divider::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.2rem;
    bottom: 0.2rem;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(212, 168, 83, 0.5), transparent);
  }
}

@media (max-width: 991.98px) {
  .novo-hero {
    padding-top: 2.25rem;
  }

  .novo-hero-title {
    font-size: 1.7rem;
  }

  .novo-header {
    position: static;
  }
}

@media (max-width: 767.98px) {
  .novo-header {
    padding: 0.5rem 0;
  }

  .novo-hero {
    padding-bottom: 2.5rem;
  }

  .novo-footer-logo,
  .novo-footer-separador {
    max-width: 220px;
    max-height: 72px;
  }

  .novo-footer-logo {
    max-width: 220px;
    max-height: 72px;
  }

  .novo-search-card {
    padding: 1.2rem 1.05rem 1.05rem;
  }

  .novo-cta-card {
    padding: 1.3rem 1.2rem;
  }

  .novo-section-link {
    text-align: left;
    margin-top: 0.6rem;
  }
}

