/* ============================================================
   VARIÁVEIS E RESET
   ============================================================ */
:root {
  --cream: #f5f0e8;
  --sage:  #486D4C;
  --deep:  #2d4a31;
  --gold:  #b8975a;
  --warm:  #ede8df;
  --text:  #2d3a2e;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }

/* ============================================================
   NAVEGAÇÃO
   ============================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 60px;
  background: rgba(245, 240, 232, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(184, 151, 90, 0.2);
  transition: all 0.4s;
}

.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
}
.nav-brand span { color: var(--gold); }

nav ul {
  list-style: none;
  display: flex;
  gap: 44px;
  align-items: center;
}

nav ul a {
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}
nav ul a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
nav ul a:hover { color: var(--gold); }
nav ul a:hover::after { width: 100%; }

.nav-cta {
  background: var(--deep) !important;
  color: var(--cream) !important;
  padding: 10px 24px;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold) !important; color: var(--deep) !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.35s;
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--deep);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.1em;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #2d4a31 0%, #3d6342 60%, #486D4C 100%);
  overflow: hidden;
}

.hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 160px 80px 150px;
  position: relative;
}

.hero-texture {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 10% 80%, rgba(122,140,114,0.15) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 20%, rgba(184,151,90,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-tag {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  animation: fadeUp 1s ease 0.2s both;
}
.hero-tag::before {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 48px;
  animation: fadeUp 1s ease 0.4s both;
  white-space: nowrap;
}
.hero h1 em { font-style: italic; color: var(--gold); }

.hero-sub { 
  color: white;

 }

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 1s ease 0.8s both;
}

/* Botões globais */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--deep);
  padding: 16px 36px;
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--cream); transform: translateY(-2px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(245,240,232,0.3);
  color: var(--cream);
  padding: 16px 36px;
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  transition: all 0.3s;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

/* Hero direito — removido, stats ficam na base */
.hero-right {
  position: relative;
}

.hero-right-bg,
.hero-right-pattern { display: none; }

.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  background: rgba(15, 28, 17, 0.88);
  backdrop-filter: blur(10px);
  animation: fadeUp 1s ease 1s both;
  z-index: 3;
  border-top: 1px solid rgba(184,151,90,0.25);
}

.stat {
  flex: 1;
  padding: 28px 16px;
  text-align: center;
  border-right: 1px solid rgba(184,151,90,0.15);
}
.stat:last-child { border-right: none; }

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.5);
  margin-top: 6px;
  display: block;
}

/* ============================================================
   FAIXA DE FATOS
   ============================================================ */
.facts {
  background: var(--warm);
  padding: 0 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(184,151,90,0.2);
}

.fact-item {
  padding: 52px 40px;
  border-right: 1px solid rgba(184,151,90,0.2);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.3s;
}
.fact-item:last-child { border-right: none; }
.fact-item:hover { background: rgba(184,151,90,0.06); }

.fact-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.fact-text {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--deep);
  font-weight: 500;
  line-height: 1.5;
}

/* ============================================================
   COMPONENTES COMPARTILHADOS
   ============================================================ */
.section-tag {
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.section-tag::before {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.2vw, 3.6rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--deep);
}
.section-title em { font-style: italic; color: var(--sage); }

/* ============================================================
   SEÇÃO ESTRUTURA
   ============================================================ */
.estrutura {
  padding: 120px 60px;
  background: var(--cream);
}

.estrutura-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}

.estrutura-desc {
  font-size: 0.9rem;
  line-height: 1.9;
  color: rgba(45,58,46,0.7);
  font-weight: 300;
}

.estrutura-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(184,151,90,0.15);
}

.estrutura-card {
  background: var(--cream);
  overflow: hidden;
  transition: all 0.4s;
}

.card-img-wrap {
  height: 240px;
  overflow: hidden;
  background: #3d6342;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(15%) brightness(0.9);
  transition: all 0.6s ease;
}
.card-img-wrap .card-placeholder {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: rgba(245,240,232,0.4);
  letter-spacing: 0.1em;
  text-align: center;
  padding: 20px;
}

.estrutura-card:hover .card-img-wrap img {
  transform: scale(1.06);
  filter: grayscale(0%) brightness(1);
}

.card-content {
  padding: 28px 30px 36px;
  border-top: 2px solid transparent;
  transition: border-color 0.3s;
}
.estrutura-card:hover .card-content { border-color: var(--gold); }

.card-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--deep);
  margin-bottom: 10px;
}
.card-content p {
  font-size: 0.82rem;
  line-height: 1.8;
  color: rgba(45,58,46,0.65);
  font-weight: 300;
}

/* ============================================================
   SEÇÃO SOBRE
   ============================================================ */
.sobre {
  background: var(--deep);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.sobre-img {
  position: relative;
  overflow: hidden;
}
.sobre-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(20%) brightness(0.75);
}
.sobre-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(28,43,30,0.8));
}

.sobre-content {
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sobre-content .section-tag         { color: var(--gold); }
.sobre-content .section-tag::before { background: var(--gold); }
.sobre-content .section-title       { color: var(--cream); }

.sobre-text {
  font-size: 0.88rem;
  line-height: 1.9;
  color: rgba(245,240,232,0.65);
  font-weight: 300;
  margin-top: 28px;
  margin-bottom: 52px;
}

/* ============================================================
   FASES
   ============================================================ */
.fases {
  padding: 120px 60px;
  background: var(--warm);
}
.fases-header {
  text-align: center;
  margin-bottom: 80px;
}
.fases-header .section-tag         { justify-content: center; }
.fases-header .section-tag::before { display: none; }

.fases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(184,151,90,0.2);
}

.fase-card {
  background: var(--warm);
  padding: 60px 48px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}
.fase-card:hover { background: var(--deep); }

.fase-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 300;
  color: rgba(184,151,90,0.15);
  line-height: 1;
  position: absolute;
  top: 20px; right: 30px;
  transition: color 0.4s;
}
.fase-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  margin-bottom: 28px;
}
.fase-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--deep);
  margin-bottom: 16px;
  transition: color 0.4s;
}
.fase-card p {
  font-size: 0.82rem;
  line-height: 1.85;
  color: rgba(45,58,46,0.65);
  font-weight: 300;
  transition: color 0.4s;
}
.fase-card:hover h4          { color: var(--cream); }
.fase-card:hover p           { color: rgba(245,240,232,0.55); }
.fase-card:hover .fase-num   { color: rgba(184,151,90,0.08); }

/* ============================================================
   SERVIÇOS
   ============================================================ */
.servicos {
  padding: 120px 60px;
  background: var(--cream);
}
.servicos-header { margin-bottom: 80px; }

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

.servico-card {
  background: var(--warm);
  padding: 44px 38px;
  border-bottom: 2px solid transparent;
  transition: all 0.4s;
}
.servico-card:hover {
  border-bottom-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(28,43,30,0.08);
}
.servico-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--deep);
  margin-bottom: 14px;
}
.servico-card p {
  font-size: 0.82rem;
  line-height: 1.85;
  color: rgba(45,58,46,0.65);
  font-weight: 300;
}

/* ============================================================
   CONTATO
   ============================================================ */
.contato {
  background: var(--deep);
  padding: 120px 60px;
}

.contato-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.contato-info .section-tag         { color: var(--gold); }
.contato-info .section-tag::before { background: var(--gold); }
.contato-info .section-title       { color: var(--cream); margin-bottom: 28px; }

.contato-text {
  font-size: 0.88rem;
  line-height: 1.9;
  color: rgba(245,240,232,0.6);
  font-weight: 300;
  margin-bottom: 48px;
}

.contato-links {
  display: flex;
  flex-direction: column;
}

.contato-link {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  padding: 20px 0;
  border-bottom: 1px solid rgba(245,240,232,0.1);
  transition: all 0.3s;
}
.contato-link:hover { border-bottom-color: var(--gold); }

.contato-link-icon {
  width: 44px; height: 44px;
  border: 1px solid rgba(184,151,90,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: all 0.3s;
}
.contato-link:hover .contato-link-icon {
  background: var(--gold);
  color: var(--deep);
}

.contato-link-label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
  margin-bottom: 4px;
}
.contato-link-value {
  font-size: 0.92rem;
  color: var(--cream);
  font-weight: 300;
}

.contato-visual { position: relative; }
.contato-box {
  background: rgba(245,240,232,0.04);
  border: 1px solid rgba(245,240,232,0.1);
  padding: 52px 44px;
}
.contato-box-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 32px;
}
.horario-item {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(245,240,232,0.07);
  font-size: 0.82rem;
}
.horario-item:last-child { border-bottom: none; }
.horario-dia {
  color: rgba(245,240,232,0.45);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.7rem;
}
.horario-val { color: var(--gold); font-weight: 400; }
.contato-aviso {
  margin-top: 28px;
  padding: 20px;
  background: rgba(184,151,90,0.08);
  border-left: 2px solid var(--gold);
  font-size: 0.8rem;
  line-height: 1.7;
  color: rgba(245,240,232,0.6);
}

/* ============================================================
   RODAPÉ
   ============================================================ */
footer {
  background: #111a12;
  padding: 30px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(184,151,90,0.15);
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 600;
}
.footer-logo span { color: var(--gold); }

.footer-links {
  display: flex;
  gap: 32px;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  text-decoration: none;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.nav-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
}
.footer-copy {
  font-size: 0.62rem;
  color: rgba(245,240,232,0.25);
}

/* ============================================================
   WHATSAPP FLUTUANTE
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 9999;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  transition: all 0.3s;
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 14px 36px rgba(37,211,102,0.5);
}
.whatsapp-float svg { flex-shrink: 0; }

/* ============================================================
   ANIMAÇÕES
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVIDADE
   ============================================================ */

/* Tablet */
@media (max-width: 1100px) {
  nav { padding: 16px 36px; }
  nav ul { gap: 28px; }
  .hero-left { padding: 120px 48px 100px; max-width: 100%; }
  .facts { padding: 0 36px; }
  .fact-item { padding: 40px 28px; }
  .estrutura, .fases, .servicos, .contato { padding: 90px 40px; }
  .estrutura-header { grid-template-columns: 1fr; gap: 28px; margin-bottom: 60px; }
  .estrutura-grid { grid-template-columns: 1fr 1fr; }
  .sobre { grid-template-columns: 1fr; }
  .sobre-img { height: 380px; }
  .sobre-content { padding: 80px 48px; }
  .fases-grid { grid-template-columns: 1fr; gap: 2px; }
  .servicos-grid { grid-template-columns: 1fr 1fr; }
  .contato-inner { grid-template-columns: 1fr; gap: 56px; }
  footer { padding: 40px 40px; }
  .footer-right { align-items: center; }
}

/* Mobile grande */
@media (max-width: 768px) {
  nav { padding: 14px 24px; }
  nav ul { display: none; }
  .nav-toggle { display: flex; }
  .hero-left { padding: 100px 28px 100px; }
  .stat-num { font-size: 1.6rem; }
  .facts { grid-template-columns: 1fr 1fr; padding: 0 28px; }
  .fact-item { padding: 32px 20px; }
  .fact-num { font-size: 2.2rem; }
  .estrutura, .fases, .servicos { padding: 72px 28px; }
  .contato { padding: 72px 28px; }
  .estrutura-grid { grid-template-columns: 1fr; }
  .servicos-grid { grid-template-columns: 1fr; }
  .fases-grid { grid-template-columns: 1fr; }
  .fase-card { padding: 44px 32px; }
  footer { padding: 36px 24px; flex-direction: column; text-align: center; }
  .footer-right { align-items: center; }
  .footer-links { gap: 20px; }
}

/* Mobile pequeno */
@media (max-width: 480px) {
  .hero-left { padding: 88px 22px 100px; }
  .hero h1 { font-size: clamp(2.2rem, 8vw, 3rem); }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-secondary { text-align: center; justify-content: center; }
  .facts { grid-template-columns: 1fr; padding: 0 22px; }
  .fact-item { border-right: none; border-bottom: 1px solid rgba(184,151,90,0.2); }
  .fact-item:last-child { border-bottom: none; }
  .hero-stats { flex-direction: row; }
  .stat { padding: 14px 8px; }
  .stat-num { font-size: 1.4rem; }
  .stat-label { font-size: 0.5rem; }
  .section-title { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .card-img-wrap { height: 200px; }
  .estrutura { padding: 60px 20px; }
  .fases { padding: 60px 20px; }
  .servicos { padding: 60px 20px; }
  .contato { padding: 60px 20px; }
  .sobre-content { padding: 60px 28px; }
  .contato-box { padding: 36px 28px; }
  footer { padding: 32px 20px; }
  .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
}