﻿:root {
  --bg-deep: #07182f;
  --bg-navy: #0c2f5f;
  --bg-soft: #f3f7fc;
  --gold: #d5aa48;
  --gold-strong: #c28c26;
  --silver: #c6ced8;
  --silver-strong: #8a97a9;
  --white: #ffffff;
  --text-dark: #0f1f33;
  --text-soft: #4f5f73;
  --shadow-soft: 0 16px 38px rgba(8, 29, 56, 0.12);
  --shadow-card: 0 18px 40px rgba(4, 20, 41, 0.14);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Plus Jakarta Sans", sans-serif;
  color: var(--text-dark);
  background: linear-gradient(180deg, #f8fbff, #eef3fa 44%, #f8fbff 100%);
  line-height: 1.65;
}

img {
  width: 100%;
  display: block;
}

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

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(7, 24, 47, 0.82);
  border-bottom: 1px solid rgba(213, 170, 72, 0.2);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 82px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.brand-logo {
  width: 74px;
  height: 74px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 12px 24px rgba(197, 146, 52, 0.42));
}

.brand-logo svg {
  width: 100%;
  height: 100%;
}

.brand-text {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.4px;
  line-height: 1;
  color: #f7e2ad;
  text-shadow: 0 6px 14px rgba(7, 24, 47, 0.45);
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-creci {
  font-family: "Manrope", "Plus Jakarta Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #d8e1ee;
}

.nav-links {
  display: flex;
  gap: 20px;
  color: #dfe7f4;
}

.nav-links a {
  position: relative;
  font-weight: 600;
  font-size: 0.96rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), #f2d389);
  transition: width 0.28s ease;
}

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

.menu-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: transparent;
  color: var(--white);
  border-radius: 10px;
  padding: 7px 10px;
  cursor: pointer;
}

.btn {
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  border-radius: 999px;
  padding: 12px 24px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, #bd8421, var(--gold), #ebcb80);
  color: #2f240d;
  box-shadow: 0 10px 25px rgba(194, 140, 38, 0.3);
}

.btn-outline {
  color: #e4ebf9;
  border: 1px solid rgba(228, 235, 249, 0.55);
  background: rgba(255, 255, 255, 0.05);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-nav {
  padding: 10px 18px;
  font-size: 0.92rem;
}

.hero {
  position: relative;
  min-height: 96vh;
  display: flex;
  align-items: center;
  background: url("https://images.unsplash.com/photo-1600607687644-c7171b42498f?auto=format&fit=crop&w=1800&q=80") center / cover no-repeat;
  color: var(--white);
  isolation: isolate;
}

.overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 18%, rgba(213, 170, 72, 0.3), transparent 35%),
    linear-gradient(112deg, rgba(4, 18, 36, 0.88), rgba(7, 24, 47, 0.62));
  z-index: -1;
}

.hero-content {
  max-width: 700px;
  padding: 120px 0 70px;
}

.hero-kicker {
  color: #f2cc7b;
  font-family: "Cinzel", "Cormorant Garamond", serif;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-size: clamp(0.95rem, 1.7vw, 1.2rem);
  text-shadow: 0 7px 18px rgba(6, 23, 44, 0.48);
}

.section-tag {
  color: #e7c77f;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  margin: 0;
  line-height: 1.2;
}

.hero h1 {
  margin-top: 12px;
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  font-weight: 800;
}

.hero-sub {
  max-width: 62ch;
  margin-top: 18px;
  color: #dbe4f4;
}

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

.hero-metrics {
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(100px, 1fr));
  gap: 14px;
}

.hero-metrics li {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(198, 206, 216, 0.32);
  border-radius: var(--radius-md);
  padding: 14px;
}

.hero-metrics strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1.25;
  letter-spacing: 0.2px;
  color: #f4d78f;
}

.hero-metrics span {
  font-size: 0.88rem;
  line-height: 1.45;
  color: #d5deef;
}

.section {
  padding: 96px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 42px;
  align-items: center;
}

.about-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.about-photo img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-content h2,
.section-head h2,
.featured-main h2,
.contact-info h2,
.cta-inner h2 {
  font-size: clamp(1.7rem, 3.1vw, 2.6rem);
  margin: 10px 0 18px;
  color: #0c2443;
}

.about-content p {
  color: var(--text-soft);
}

.about-badges {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.about-badges article {
  background: linear-gradient(180deg, #ffffff, #f5f8fd);
  border: 1px solid #d8e1ed;
  border-radius: var(--radius-sm);
  padding: 18px 14px;
  box-shadow: var(--shadow-soft);
}

.about-badges h3 {
  font-size: 1.14rem;
  margin-bottom: 8px;
  color: #123564;
  line-height: 1.25;
}

.about-badges p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.section-portfolio {
  background:
    radial-gradient(circle at 15% 10%, rgba(213, 170, 72, 0.11), transparent 34%),
    linear-gradient(180deg, #f9fbff 0%, #eef3fa 100%);
}

.section-head {
  max-width: 780px;
  margin-bottom: 28px;
}

.section-head p {
  color: var(--text-soft);
  margin-top: 10px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter-btn {
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid #c7d2e4;
  background: #f8fbff;
  color: #20436f;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: linear-gradient(120deg, #123a70, #1f4f89);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 10px 25px rgba(18, 58, 112, 0.25);
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.property-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid #d9e1ed;
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.property-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 50px rgba(8, 29, 56, 0.19);
}

.card-image-wrap {
  overflow: hidden;
}

.property-card img {
  height: 220px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.property-card:hover img {
  transform: scale(1.06);
}

.card-content {
  padding: 18px;
}

.card-content h3 {
  color: #173a68;
  font-size: 1.15rem;
}

.price {
  margin: 8px 0 0;
  font-weight: 800;
  color: #0f3568;
}

.location {
  color: #5d6f85;
  margin: 6px 0 14px;
  font-size: 0.92rem;
}

.btn-small {
  font-size: 0.92rem;
  padding: 10px 16px;
  background: linear-gradient(120deg, #0f3769, #24528e);
  color: var(--white);
}

.section-featured {
  background: linear-gradient(160deg, #081a33 0%, #102f59 55%, #0b2446 100%);
  color: #eaf0fb;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 26px;
  align-items: center;
}

.featured-main h2,
.featured-main h3 {
  color: #ffffff;
}

.featured-main h2 {
  color: #f2cc7b;
  text-shadow: 0 6px 18px rgba(7, 24, 47, 0.35);
}

.section-featured .section-tag {
  color: #f2cc7b;
  text-shadow: 0 5px 16px rgba(8, 29, 56, 0.42);
}

.featured-main h3 {
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  margin-bottom: 12px;
}

.featured-main p {
  color: #cad7eb;
}

.price-featured {
  font-size: 2rem;
  color: #f0cb79;
  font-weight: 800;
  margin: 18px 0 20px;
}

.featured-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.featured-image img {
  min-height: 380px;
  object-fit: cover;
}

.section-testimonials {
  background: linear-gradient(180deg, #f8fbff 0%, #edf3fa 100%);
}

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

.testimonial-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid #d4dfed;
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.stars {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
}

.stars svg {
  width: 18px;
  height: 18px;
  fill: #d5aa48;
  filter: drop-shadow(0 4px 10px rgba(181, 122, 16, 0.35));
}

.testimonial-card p {
  margin: 0;
  color: #40536d;
}

.author {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #d9c089;
}

.author strong {
  display: block;
  color: #183e70;
}

.author span {
  color: #60728a;
  font-size: 0.9rem;
}

.cta-strong {
  padding-top: 82px;
  padding-bottom: 82px;
}

.cta-inner {
  text-align: center;
  background: linear-gradient(135deg, #0a2950, #123d71 65%, #16508d);
  color: #edf3ff;
  border: 1px solid rgba(213, 170, 72, 0.38);
  border-radius: var(--radius-lg);
  padding: clamp(30px, 5vw, 58px);
  box-shadow: 0 22px 50px rgba(8, 29, 56, 0.35);
}

.cta-inner p {
  color: #d3deef;
  max-width: 600px;
  margin: 14px auto 22px;
}

.cta-inner h2 {
  color: #f2cc7b;
  text-shadow: 0 6px 22px rgba(4, 18, 36, 0.45);
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.btn-large {
  padding: 14px 30px;
  font-size: 1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
}

.contact-info p {
  color: #5a6e89;
}

.btn-contact-whatsapp {
  color: #2f240d;
  border: 1px solid rgba(194, 140, 38, 0.5);
  background: linear-gradient(135deg, #bd8421, #d5aa48, #f1d58d);
  box-shadow: 0 10px 26px rgba(194, 140, 38, 0.28);
}

.btn-contact-whatsapp:hover {
  background: linear-gradient(135deg, #c38b27, #dfb35a, #f7df9f);
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(194, 140, 38, 0.36);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 10px;
}

.contact-form {
  background: #fff;
  border: 1px solid #d7e2ef;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 24px;
}

.contact-form h3 {
  color: #163f72;
  margin-bottom: 16px;
}

.contact-form label {
  display: block;
  margin: 12px 0 6px;
  color: #2c4b70;
  font-weight: 700;
  font-size: 0.92rem;
}

.contact-form input,
.contact-form select {
  width: 100%;
  padding: 11px 12px;
  border-radius: 10px;
  border: 1px solid #c8d3e2;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus {
  outline: none;
  border-color: #3264a0;
  box-shadow: 0 0 0 3px rgba(50, 100, 160, 0.2);
}

.contact-form button {
  margin-top: 16px;
  width: 100%;
}

.form-feedback {
  min-height: 22px;
  margin-top: 10px;
  font-weight: 600;
  font-size: 0.92rem;
}

.footer {
  padding: 24px 0;
  background: #081a33;
  color: #d1ddef;
  border-top: 1px solid rgba(198, 206, 216, 0.18);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.social-links {
  display: flex;
  gap: 14px;
}

.social-links a {
  color: #d1ddef;
  font-weight: 600;
}

.social-links a:hover {
  color: #f0cc7b;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 20px;
  z-index: 1100;
  background: linear-gradient(130deg, #10be64, #0f8d4e);
  color: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 800;
  box-shadow: 0 18px 30px rgba(7, 38, 21, 0.35);
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.hidden-card {
  display: none;
}

@media (max-width: 1080px) {
  .nav-links,
  .btn-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-wrap {
    position: relative;
  }

  .nav-links.open {
    display: flex;
    position: absolute;
    top: 72px;
    right: 0;
    flex-direction: column;
    background: rgba(8, 29, 56, 0.95);
    border: 1px solid rgba(213, 170, 72, 0.25);
    border-radius: 12px;
    padding: 12px;
    min-width: 220px;
    width: min(86vw, 320px);
  }

  .about-grid,
  .featured-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .property-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 740px) {
  .section {
    padding: 72px 0;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    padding-top: 90px;
  }

  .hero-actions .btn,
  .cta-inner .btn,
  .contact-form .btn,
  .btn-contact-whatsapp {
    width: 100%;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .property-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .floating-whatsapp span {
    font-size: 0.88rem;
  }

  .brand-logo {
    width: 56px;
    height: 56px;
  }

  .brand-text {
    font-size: 1.1rem;
    line-height: 1.1;
    max-width: 190px;
  }

  .brand-creci {
    font-size: 0.64rem;
    letter-spacing: 0.8px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(94vw, 100%);
  }

  .hero h1 {
    font-size: clamp(1.78rem, 8.2vw, 2.2rem);
  }

  .hero-sub {
    font-size: 0.96rem;
  }

  .property-card img {
    height: 210px;
  }

  .contact-form {
    padding: 18px;
  }
}

.property-page {
  background: linear-gradient(180deg, #f8fbff, #eef3fa 50%, #f8fbff);
}

.property-hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  background: url("Imagens/Condominio%20Ouro%20Verde/imagem%201.jpeg") center/cover no-repeat;
  color: #fff;
  isolation: isolate;
}

.property-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 78% 16%, rgba(213, 170, 72, 0.3), transparent 36%),
    linear-gradient(108deg, rgba(5, 20, 40, 0.9), rgba(8, 29, 56, 0.55));
}

.property-hero-content {
  max-width: 760px;
  padding: 110px 0 56px;
}

.property-hero h1 {
  margin-top: 12px;
  font-size: clamp(2rem, 4.4vw, 3.35rem);
  color: #f2cc7b;
  text-shadow: 0 8px 20px rgba(6, 23, 44, 0.5);
}

.property-hero p {
  color: #dce5f6;
}

.property-hero .hero-kicker {
  color: #f2cc7b;
}

.property-overview-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: start;
}

.property-overview.section {
  padding-bottom: 54px;
}

.property-aside {
  background: #fff;
  border: 1px solid #d7e2ef;
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-md);
  padding: 22px;
}

.property-aside h3 {
  margin-bottom: 12px;
  color: #173c6d;
  font-size: 1.45rem;
}

.property-aside ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: grid;
  gap: 9px;
}

.property-aside li {
  color: #4b5f79;
  font-size: 0.96rem;
}

.property-gallery {
  background: linear-gradient(180deg, #f8fbff, #edf3fa);
}

.property-gallery.section {
  padding-top: 48px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid #dbe5f2;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: zoom-in;
}

.gallery-grid img:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(8, 29, 56, 0.2);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(4, 13, 28, 0.9);
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 2200;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  width: auto !important;
  height: auto !important;
  max-width: min(1100px, 94vw);
  max-height: 84vh;
  object-fit: contain;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #c8922f, #edcd86);
  color: #2b210f;
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(194, 140, 38, 0.35);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(5px);
}

.lightbox-prev {
  left: 16px;
}

.lightbox-next {
  right: 16px;
}

@media (max-width: 980px) {
  .property-overview-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .property-hero {
    min-height: 74vh;
  }

  .property-hero-content {
    padding-top: 88px;
  }

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

  .property-overview.section {
    padding-bottom: 36px;
  }

  .property-gallery.section {
    padding-top: 34px;
  }

  .lightbox {
    padding: 12px;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
  }

  .lightbox-nav {
    width: 42px;
    height: 42px;
    font-size: 1.7rem;
  }

  .lightbox-prev {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }
}

