@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap");

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --bg: #efebe9;
  --dark: #3e2723;
  --mid: #5d4037;
  --light: #8d6e63;
  --cream: #f5f0ed;
  --white: #ffffff;
  --border: #d7ccc8;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Jost", sans-serif;
  background: var(--bg);
  color: var(--mid);
  line-height: 1.7;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 3rem;
  background: rgba(239, 235, 233, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--dark);
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  color: var(--light);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: var(--dark);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 9rem 3rem 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #efebe9 55%, #e8e0dc 100%);
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--light);
}
.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -1px;
  color: var(--dark);
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic;
}
.hero-desc {
  font-size: 1rem;
  color: var(--mid);
  max-width: 520px;
  margin: 0 auto 3rem;
  line-height: 1.95;
  font-weight: 300;
}
.hero-cta {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--mid);
  color: var(--white);
  font-family: "Jost", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  text-decoration: none;
  transition: background 0.3s;
}
.btn-cta:hover {
  background: var(--light);
}

/* SECTIONS */
.section {
  padding: 6rem 3rem;
}
.section-alt {
  background: var(--cream);
}
.section-dark {
  background: var(--dark);
}
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 0.75rem;
}
.section-dark .section-label {
  color: #bcaaa4;
}
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 3rem;
}
.section-dark .section-title {
  color: var(--white);
}

/* SOBRE */
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.sobre-text p {
  font-size: 0.95rem;
  line-height: 1.95;
  color: var(--mid);
  font-weight: 300;
  margin-bottom: 1.25rem;
}
.sobre-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 300;
  color: var(--dark);
  border-left: 2px solid var(--light);
  padding-left: 1.5rem;
  margin: 2rem 0;
  line-height: 1.65;
}
.sobre-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--dark);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--light);
  margin-top: 0.3rem;
}

/* PROJETOS */
.proj-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.proj-section-header p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--mid);
  max-width: 380px;
  line-height: 1.85;
}
.flora-block {
  margin-bottom: 4rem;
}
.flora-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.flora-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}
.flora-hero-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.flora-caption {
  background: var(--dark);
  color: var(--white);
  padding: 1.25rem 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.flora-caption-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 300;
}
.flora-caption-sub {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #bcaaa4;
}
.flora-interiors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}
.flora-interiors img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}
.img-caption {
  padding: 0.75rem 0;
  font-size: 0.78rem;
  color: var(--light);
  letter-spacing: 1px;
}
.apt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.apt-grid .apt-main {
  grid-column: 1 / -1;
}
.apt-grid img {
  width: 100%;
  object-fit: cover;
  display: block;
}
.apt-grid .apt-main img {
  height: 420px;
}
.apt-grid .apt-sub img {
  height: 260px;
}

/* SERVIÇOS */
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.servico-card {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  border-top: 1px solid var(--border);
}
.servico-card:last-child {
  border-right: none;
}
.servico-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.servico-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.75rem;
}
.servico-desc {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.85;
}

/* DIFERENCIAIS */
.dif-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
}
.dif-item {
  padding: 2.5rem;
  background: var(--dark);
}
.dif-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--light);
  margin-bottom: 1rem;
}
.dif-text {
  font-size: 0.9rem;
  font-weight: 300;
  color: #efebe9;
  line-height: 1.8;
}

/* CTA */
.cta-section {
  text-align: center;
  padding: 7rem 3rem;
  background: var(--dark);
}
.cta-section h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.15;
}
.cta-section p {
  font-size: 0.95rem;
  color: #bcaaa4;
  font-weight: 300;
  margin-bottom: 3rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.btn-cta-light {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: transparent;
  color: var(--white);
  font-family: "Jost", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 1.1rem 2.8rem;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition:
    background 0.3s,
    border-color 0.3s,
    color 0.3s;
}
.btn-cta-light:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

/* FOOTER */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 2.5rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
}

.footer-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.95rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  justify-self: start;
}

.footer-ig {
  justify-self: center;
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.5px;
  justify-self: end;
}

.footer-ig a {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #bcaaa4;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-ig a:hover {
  color: var(--white);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  nav {
    padding: 1rem 1.5rem;
  }
  .nav-links {
    display: none;
  }
  .section {
    padding: 4rem 1.5rem;
  }
  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .flora-interiors {
    grid-template-columns: 1fr;
  }
  .apt-grid {
    grid-template-columns: 1fr;
  }
  .apt-grid .apt-main {
    grid-column: 1;
  }
  .servicos-grid {
    grid-template-columns: 1fr;
  }
  .servico-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .dif-grid {
    grid-template-columns: 1fr;
  }

  footer {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    text-align: center;
    padding: 2rem 1.5rem;
    align-items: center;
    justify-content: center;
  }

  .footer-ig {
    order: -1;
  }
  .proj-section-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .flora-hero-img {
    height: 300px;
  }
  .flora-interiors img {
    height: 220px;
  }
}
