@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;1,400&family=Great+Vibes&family=Inter:wght@300;400;500&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --verde: #657353;
  --verde-escuro: #4F5A42;
  --verde-profundo: #2F372A;
  --branco: #F7F7F4;
  --cinza-claro: #ECEDE8;
  --cinza-texto: #6E6E6E;
  --bege: #D8CFC4;
  --nav-height: 80px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--branco);
  color: var(--verde-profundo);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ─── NAVEGAÇÃO ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 60px;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(20,28,18,0.65) 0%, transparent 100%);
  transition: background 0.4s ease, box-shadow 0.4s ease, height 0.4s ease;
}

.nav.scrolled {
  background: #657353;
  box-shadow: 0 2px 24px rgba(47,55,42,0.18);
  height: 68px;
}

.nav-logo img {
  height: 88px;
  width: auto;
  object-fit: contain;
  transition: height 0.4s ease;
  filter: brightness(0) invert(1);
}

.nav.scrolled .nav-logo img { height: 52px; }

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  font-weight: 400;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--bege);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: #fff; }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: #fff; }

.nav-cta {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--verde-profundo);
  background: var(--bege);
  padding: 12px 28px;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: #c9bfb4; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  position: relative;
  z-index: 1002;
}
.nav-hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: #fff;
  transition: all 0.3s;
  border-radius: 2px;
}

/* Mobile nav — z-index acima do hamburger, scroll bloqueado */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--verde-profundo);
  z-index: 1001;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  overflow: hidden;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: #fff;
  font-weight: 400;
}
.nav-mobile a:hover { color: var(--bege); }
.nav-mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  line-height: 1;
  z-index: 1003;
}
.nav-mobile-close:hover { background: rgba(255,255,255,0.2); }

/* Bloquear scroll quando menu mobile aberto */
body.nav-open { overflow: hidden; }

/* ─── HERO ─── */
.hero {
  height: 100vh;
  min-height: 640px;
  background-color: #2F372A;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 28, 18, 0.45);
  z-index: 0;
}
.hero > * { position: relative; z-index: 1; }

.hero-tag {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--bege);
  margin-bottom: 20px;
  opacity: 0.9;
}

.hero-cursive {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(60px, 9vw, 110px);
  color: #fff;
  line-height: 1;
  margin-bottom: 12px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(14px, 2vw, 20px);
  color: rgba(255,255,255,0.8);
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  max-width: 480px;
  line-height: 1.9;
  margin-bottom: 48px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  background: var(--bege);
  color: var(--verde-profundo);
  padding: 16px 40px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  display: inline-block;
  transition: background 0.2s;
}
.btn-primary:hover { background: #c9bfb4; }

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.5);
  padding: 16px 40px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  display: inline-block;
  transition: all 0.2s;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

.btn-dark {
  background: #657353;
  color: #fff;
  padding: 16px 40px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  display: inline-block;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
  width: 100%;
  margin-top: 8px;
}
.btn-dark:hover { background: var(--verde-escuro); }

.hero-scroll {
  position: absolute;
  bottom: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll span {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.scroll-line {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.2);
  overflow: hidden;
  position: relative;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%; width: 1px; height: 100%;
  background: rgba(255,255,255,0.6);
  animation: scrollAnim 1.8s ease-in-out infinite;
}
@keyframes scrollAnim { 0% { top: -100%; } 100% { top: 200%; } }

/* ─── SECÇÕES COMUNS ─── */
.section { padding: 100px 60px; }
.section-alt { background: var(--cinza-claro); }

.section-header { text-align: center; max-width: 620px; margin: 0 auto 72px; }
.section-header.left { text-align: left; margin: 0 0 56px; }

.eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--verde);
  margin-bottom: 16px;
}

.cursive {
  font-family: 'Great Vibes', cursive;
  font-size: 48px;
  color: var(--verde);
  line-height: 1;
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 400;
  color: var(--verde-profundo);
  line-height: 1.25;
  margin-bottom: 20px;
}

.section-body {
  font-size: 15px;
  line-height: 1.9;
  color: var(--cinza-texto);
  font-weight: 300;
}

.container { max-width: 1200px; margin: 0 auto; }

/* ─── CARDS DE SERVIÇOS ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  background: var(--branco);
  padding: 56px 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  cursor: pointer;
}
.service-card:hover { background: #657353; }
.service-card:hover .service-icon,
.service-card:hover .service-name { color: #fff; }
.service-card:hover .service-desc { color: rgba(255,255,255,0.55); }
.service-card:hover .service-num { color: rgba(255,255,255,0.06); }

.service-num {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  color: var(--cinza-claro);
  position: absolute;
  top: 16px; right: 20px;
  line-height: 1;
  transition: color 0.3s;
}
.service-icon {
  font-size: 18px;
  color: var(--verde);
  margin-bottom: 28px;
  transition: color 0.3s;
}
.service-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--verde-profundo);
  margin-bottom: 14px;
  transition: color 0.3s;
}
.service-desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--cinza-texto);
  font-weight: 300;
  transition: color 0.3s;
}

/* ─── GALERIA ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.gallery-item { overflow: hidden; cursor: pointer; }
.gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-img {
  width: 100%; height: 100%; min-height: 220px;
  display: block;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.gallery-item:hover .gallery-img { transform: scale(1.04); }

/* ─── ALOJAMENTO DARK ─── */
.section-dark {
  background: #657353;
  color: #fff;
  padding: 100px 60px;
}
.section-dark .eyebrow { color: var(--bege); }
.section-dark .cursive { color: var(--bege); }
.section-dark .section-title { color: #fff; }
.section-dark .section-body { color: rgba(255,255,255,0.6); }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.features-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 40px; }
.features-list li { display: flex; align-items: center; gap: 14px; font-size: 14px; color: rgba(255,255,255,0.7); font-weight: 300; }
.feature-dot { width: 5px; height: 5px; background: var(--bege); border-radius: 50%; flex-shrink: 0; }

.aloj-images { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.aloj-img { aspect-ratio: 1; background-size: cover; background-position: center; }
.aloj-img:first-child { grid-column: span 2; aspect-ratio: 16/9; }

/* ─── TESTIMONIAL ─── */
.testimonial {
  padding: 120px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.testimonial::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 280px;
  color: var(--cinza-claro);
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  pointer-events: none;
}
.testimonial-inner { position: relative; max-width: 700px; margin: 0 auto; }
.testimonial-name { font-family: 'Great Vibes', cursive; font-size: 36px; color: var(--verde); margin-bottom: 12px; }
.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 2.2vw, 26px);
  font-style: italic;
  color: var(--verde-profundo);
  line-height: 1.7;
  margin-bottom: 32px;
  font-weight: 400;
}
.testimonial-author { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--cinza-texto); }

/* ─── CTA ─── */
.cta-section {
  padding: 120px 20px;
  text-align: center;
  background: var(--verde);
}
.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 42px);
  color: #fff;
  font-weight: 400;
  margin-bottom: 12px;
}
.cta-sub { font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 48px; font-weight: 300; }

/* ─── FORMULÁRIO ─── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--cinza-texto); margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(107,119,88,0.25);
  background: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--verde-profundo);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--verde); }
.form-group textarea { resize: vertical; min-height: 110px; }

.contact-info-block h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--verde-profundo);
  margin-bottom: 36px;
}
.contact-item { margin-bottom: 28px; }
.contact-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--verde); margin-bottom: 6px; }
.contact-value { font-size: 15px; color: var(--verde-profundo); line-height: 1.6; }

/* ─── PÁGINA INTERNA HERO ─── */
.page-hero {
  height: 100vh;
  min-height: 600px;
  background-color: #2F372A;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 28, 18, 0.45);
  z-index: 0;
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero .hero-tag { margin-bottom: 16px; }
.page-hero .hero-cursive { font-size: clamp(48px, 7vw, 84px); margin-bottom: 10px; }
.page-hero .hero-title { font-size: clamp(12px, 1.5vw, 16px); margin-bottom: 0; }

/* ─── NAV ESCURA (páginas sem hero — legais) ─── */
.nav-dark {
  background: #657353 !important;
}
.nav-dark .nav-links a { color: rgba(255,255,255,0.75); }
.nav-dark .nav-links a:hover { color: #fff; }

/* ─── FOOTER ─── */
footer {
  background: var(--verde-profundo);
  padding: 64px 60px 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 0.5px solid rgba(255,255,255,0.1);
}
.footer-logo-img { height: 80px; width: auto; object-fit: contain; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.7; font-weight: 300; max-width: 220px; }
.footer-col h4 {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--bege);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a { font-size: 13px; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-col ul a:hover { color: rgba(255,255,255,0.85); }
.footer-bottom {
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.25); letter-spacing: 0.5px; }
.footer-dev { font-size: 11px; color: rgba(255,255,255,0.25); }
.footer-dev a { color: rgba(255,255,255,0.45); font-weight: 500; transition: color 0.2s; }
.footer-dev a:hover { color: var(--bege); }

/* ─── COOKIE BANNER ─── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: #657353;
  color: #fff;
  padding: 24px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  transform: translateY(100%);
  transition: transform 0.5s ease;
  border-top: 2px solid var(--bege);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-text { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.6; font-weight: 300; max-width: 700px; }
.cookie-text a { color: var(--bege); }
.cookie-text a:hover { text-decoration: underline; }
.cookie-btns { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-accept {
  background: var(--bege);
  color: var(--verde-profundo);
  border: none;
  padding: 12px 28px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.cookie-accept:hover { background: #c9bfb4; }
.cookie-reject {
  background: transparent;
  color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 12px 20px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.cookie-reject:hover { color: #fff; border-color: rgba(255,255,255,0.5); }

/* ─── PÁGINAS LEGAIS ─── */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 60px 100px;
}
.legal-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--verde-profundo);
  margin-bottom: 8px;
}
.legal-date { font-size: 12px; color: var(--cinza-texto); letter-spacing: 1px; margin-bottom: 48px; }
.legal-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--verde-profundo);
  margin: 40px 0 14px;
}
.legal-content p, .legal-content li {
  font-size: 14px;
  line-height: 1.9;
  color: var(--cinza-texto);
  font-weight: 300;
  margin-bottom: 14px;
}
.legal-content ul { padding-left: 20px; }
.legal-content strong { font-weight: 500; color: var(--verde-profundo); }

/* ─── SOBRE NÓS ─── */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img { width: 100%; aspect-ratio: 4/5; background-size: cover; background-position: center; }

/* ─── OBRIGADO ─── */
.obrigado-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
  background: var(--branco);
}
.obrigado-icon { font-size: 48px; margin-bottom: 24px; }
.obrigado-wrap .cursive { font-size: 64px; margin-bottom: 12px; }
.obrigado-wrap p { font-size: 15px; color: var(--cinza-texto); line-height: 1.9; max-width: 480px; margin-bottom: 40px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .nav { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  /* Overlay mais forte no mobile para o logo ser visível */
  .nav {
    background: linear-gradient(to bottom, rgba(20,28,18,0.75) 0%, transparent 100%);
  }
  .nav.scrolled { background: #657353; }

  /* Logo menor no mobile mas ainda legível */
  .nav-logo img { height: 60px; }
  .nav.scrolled .nav-logo img { height: 44px; }

  .section { padding: 72px 24px; }
  .section-dark { padding: 72px 24px; }
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: span 2; }
  .gallery-item:nth-child(4) { grid-column: span 1; }
  .form-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row-2 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .cookie-banner { flex-direction: column; padding: 24px; align-items: flex-start; }
  .legal-content { padding: 60px 24px 80px; }
  .about-intro { grid-template-columns: 1fr; }
}

@media (max-width: 500px) {
  .footer-top { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
}
