/* ============================================================
   VICI INCORPORADORA — Design System
   Inspired by Brunello Cucinelli & AG7
   Beach luxury aesthetic · Barra Velha, SC
   ============================================================ */

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

/* ---- Variables ---- */
:root {
  --cream:        #F7F4EE;
  --cream-dark:   #EDE7D9;
  --sand:         #D4C5A9;
  --earth:        #8B7355;
  --ocean:        #2B5B78;
  --ocean-deep:   #1A3B52;
  --ocean-light:  #4A8FAB;
  --sky:          #B8D4E3;
  --charcoal:     #1C1A17;
  --warm-gray:    #6B6560;
  --border:       #D9D5CE;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', -apple-system, system-ui, sans-serif;

  --nav-h:    80px;
  --section-v: clamp(80px, 10vw, 140px);
  --container: 1280px;
  --gutter:   clamp(24px, 5vw, 80px);
  --ease:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; object-fit: cover; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ---- Utilities ---- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--earth);
  display: block;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--charcoal);
}
.section-title em { font-style: italic; color: var(--earth); }

.body-text {
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: 300;
  line-height: 1.8;
  color: var(--warm-gray);
}

.divider {
  width: 40px;
  height: 1px;
  background: var(--earth);
  margin: 20px 0;
}

/* ---- Fade-in animations ---- */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.22s; }
.fade-in-delay-3 { transition-delay: 0.34s; }
.fade-in-delay-4 { transition-delay: 0.46s; }

/* ---- Image Placeholders (replace with real images) ---- */
.img-ph {
  width: 100%; height: 100%;
  display: flex; align-items: flex-end; padding: 20px;
  position: relative;
}
.img-ph::before {
  content: attr(data-label);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  position: relative; z-index: 1;
}

/* Gradient themes for placeholders */
.img-ph--ocean   { background: linear-gradient(135deg, #1A3B52 0%, #2B5B78 45%, #4A8FAB 80%, #B8D4E3 100%); }
.img-ph--sand    { background: linear-gradient(135deg, #D4C5A9 0%, #8B7355 50%, #4A6B78 100%); }
.img-ph--warm    { background: linear-gradient(135deg, #E8D5B7 0%, #C4A882 50%, #5A7B8A 100%); }
.img-ph--amalfi  { background: linear-gradient(145deg, #1A3B52 0%, #2B6B8A 40%, #5AA8C4 70%, #D4C5A9 100%); }
.img-ph--pos     { background: linear-gradient(145deg, #4A3020 0%, #8B6B4A 40%, #D4A878 70%, #4A7B8A 100%); }
.img-ph--gioppo  { background: linear-gradient(145deg, #1A2B3A 0%, #2B4B6B 45%, #4A7898 75%, #C9B99A 100%); }
.img-ph--rio     { background: linear-gradient(145deg, #1A2B3A 0%, #3B5B6B 45%, #6B8B9A 75%, #D4C5A9 100%); }
.img-ph--centre  { background: linear-gradient(145deg, #8B7355 0%, #C9B99A 50%, #F0E8D8 100%); }
.img-ph--about   { background: linear-gradient(135deg, #D4C5A9 0%, #8B9FA8 50%, #1A3B52 100%); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.nav.scrolled {
  background: rgba(247, 244, 238, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}

/* Pages without dark hero: nav always scrolled */
body.light-nav .nav {
  background: rgba(247, 244, 238, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 38px;
  width: auto;
  display: block;
  transition: opacity 0.4s var(--ease);
}
.nav-logo .logo-dark { display: none; }
.nav.scrolled .nav-logo .logo-white,
body.light-nav .nav-logo .logo-white { display: none; }
.nav.scrolled .nav-logo .logo-dark,
body.light-nav .nav-logo .logo-dark { display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links > li > a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s;
  position: relative;
  padding-bottom: 2px;
}
.nav.scrolled .nav-links > li > a,
body.light-nav .nav-links > li > a { color: var(--warm-gray); }
.nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.3s var(--ease);
}
.nav-links > li > a:hover::after { width: 100%; }
.nav-links > li > a:hover { color: white; }
.nav.scrolled .nav-links > li > a:hover,
body.light-nav .nav-links > li > a:hover { color: var(--charcoal); }

/* Dropdown */
.nav-links .has-dropdown { position: relative; }
.nav-links .dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  padding-top: 20px;
  background: transparent;
  min-width: 180px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s var(--ease);
  list-style: none;
}
.nav-links .dropdown::before {
  content: '';
  position: absolute;
  inset: 20px 0 0 0;
  background: var(--cream);
  border: 1px solid var(--border);
  pointer-events: none;
}
.nav-links .has-dropdown:hover .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-links .dropdown li a {
  display: block;
  padding: 11px 20px;
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--warm-gray) !important;
  transition: all 0.2s;
}
.nav-links .dropdown li a:hover {
  color: var(--charcoal) !important;
  background: var(--cream-dark);
}
.nav-links .dropdown li a::after { display: none !important; }

/* Nav CTA */
.nav-cta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1px solid rgba(255,255,255,0.45);
  color: white;
  transition: all 0.3s;
}
.nav.scrolled .nav-cta,
body.light-nav .nav-cta { border-color: var(--ocean); color: var(--ocean); }
.nav-cta:hover { background: white; color: var(--charcoal); border-color: white; }
.nav.scrolled .nav-cta:hover,
body.light-nav .nav-cta:hover { background: var(--ocean); color: white; border-color: var(--ocean); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: white; transition: all 0.3s;
}
.nav.scrolled .nav-hamburger span,
body.light-nav .nav-hamburger span { background: var(--charcoal); }

/* Mobile overlay */
.nav-mobile {
  position: fixed; inset: 0;
  background: var(--cream);
  z-index: 199;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.nav-mobile.open { opacity: 1; pointer-events: all; }
.nav-mobile-close {
  position: absolute;
  top: 24px; right: 28px;
  color: var(--warm-gray);
  padding: 8px;
  transition: color 0.2s;
}
.nav-mobile-close:hover { color: var(--charcoal); }
.nav-mobile a {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 300;
  color: var(--charcoal);
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--ocean); }
.nav-mobile .mobile-sub {
  display: flex; gap: 20px; flex-wrap: wrap; justify-content: center;
  border-top: 1px solid var(--border);
  padding-top: 24px; margin-top: -4px;
}
.nav-mobile .mobile-sub a {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-gray) !important;
}

/* ============================================================
   HERO (Homepage)
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, #1A3B52 0%, #2B5B78 35%, #4A8FAB 65%, #A8C4CF 85%, #D4C5A9 100%);
  /* TO ADD IMAGE: background: url('../images/hero.jpg') center/cover no-repeat; */
  transform-origin: center;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,25,40,0.55) 0%, rgba(10,25,40,0.15) 45%, rgba(10,25,40,0.5) 100%);
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 var(--gutter);
  max-width: 900px;
}
.hero-eyebrow {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 28px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(52px, 7.5vw, 108px);
  font-weight: 300;
  line-height: 1.04;
  color: white;
  margin-bottom: 28px;
}
.hero-title em { font-style: italic; display: block; }
.hero-tagline {
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
  max-width: 44ch;
  margin: 0 auto 44px;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: white;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 16px 36px;
  transition: all 0.35s var(--ease);
}
.hero-cta:hover { background: white; color: var(--charcoal); border-color: white; }
.hero-cta svg { transition: transform 0.3s var(--ease); }
.hero-cta:hover svg { transform: translateX(5px); }

.hero-badge {
  position: absolute;
  bottom: 44px; right: var(--gutter);
  z-index: 2;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 18px 22px;
  max-width: 210px;
  text-align: center;
}
.hero-badge strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 20px; font-weight: 400;
  font-style: italic; color: white;
  margin-bottom: 6px;
}
.hero-badge p {
  font-size: 11px; font-weight: 300;
  letter-spacing: 0.06em; line-height: 1.5;
  color: rgba(255,255,255,0.8);
}

.hero-scroll {
  position: absolute;
  bottom: 44px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: scrollPulse 2.2s ease-in-out infinite;
}
.hero-scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.55));
}
.hero-scroll span {
  font-size: 9px; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
}
@keyframes scrollPulse {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(9px); }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  height: 65vh; min-height: 440px;
  display: flex; align-items: flex-end;
  padding: 0 var(--gutter) 72px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
}
.page-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,35,0.85) 0%, rgba(10,22,35,0.1) 60%);
}
.page-hero-content {
  position: relative; z-index: 2;
  max-width: var(--container); width: 100%; margin: 0 auto;
}
.page-hero-content .eyebrow { color: rgba(255,255,255,0.55); margin-bottom: 14px; }
.page-hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(48px, 7vw, 100px);
  font-weight: 300; color: white; line-height: 1.05;
}

/* ============================================================
   STATEMENT SECTION
   ============================================================ */
.section-statement {
  padding: var(--section-v) var(--gutter);
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}
.statement-line {
  width: 1px; height: 60px;
  background: var(--border);
  margin: 0 auto 40px;
}
.statement-quote {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.5vw, 50px);
  font-weight: 300; font-style: italic;
  line-height: 1.35; color: var(--charcoal);
}
.statement-attribution {
  margin-top: 32px;
  font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--earth);
}

/* ============================================================
   PROJECTS — Homepage Grid
   ============================================================ */
.section-projects {
  padding: 0 0 var(--section-v);
}
.projects-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 var(--gutter);
  margin: 0 auto 56px;
  max-width: var(--container);
}
.projects-header .section-title { margin-top: 12px; }

.view-all-link {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ocean);
  white-space: nowrap;
  transition: gap 0.3s var(--ease);
}
.view-all-link:hover { gap: 14px; }

.projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}
.project-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  display: block;
}
.project-card:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
}
.project-card-bg {
  position: absolute; inset: 0;
  transition: transform 0.9s var(--ease);
}
.project-card:hover .project-card-bg { transform: scale(1.05); }

/* Per-project gradients (replace .img-ph with actual img inside .project-card-bg) */
.project-card[data-p="amalfi"]       .project-card-bg { background: linear-gradient(145deg,#1A3B52,#2B6B8A 40%,#5AA8C4 70%,#D4C5A9); }
.project-card[data-p="positano"]     .project-card-bg { background: linear-gradient(145deg,#4A3020,#8B6B4A 40%,#D4A878 70%,#4A7B8A); }
.project-card[data-p="gioppo"]       .project-card-bg { background: linear-gradient(145deg,#1A2B3A,#2B4B6B 45%,#4A7898 75%,#C9B99A); }
.project-card[data-p="riomaggiore"]  .project-card-bg { background: linear-gradient(145deg,#1A2B3A,#3B5B6B 45%,#6B8B9A 75%,#D4C5A9); }
.project-card[data-p="centrevici"]   .project-card-bg { background: linear-gradient(145deg,#8B7355,#C9B99A 50%,#F0E8D8); }

.project-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,20,32,0.88) 0%, rgba(10,20,32,0.08) 55%);
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  transition: background 0.4s;
}
.project-card:hover .project-card-overlay {
  background: linear-gradient(to top, rgba(10,20,32,0.92) 0%, rgba(10,20,32,0.2) 65%);
}

.project-status {
  display: inline-block;
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.28);
  padding: 4px 10px;
  margin-bottom: 10px;
  align-self: flex-start;
}
.project-status.delivered { border-color: #8BC48B; color: #8BC48B; }

.project-name {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 300; color: white;
  line-height: 1.1; margin-bottom: 6px;
}
.project-location {
  font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
}

.project-arrow {
  position: absolute;
  top: 28px; right: 28px;
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  color: white;
  opacity: 0; transform: translateY(-8px);
  transition: all 0.35s var(--ease);
}
.project-card:hover .project-arrow { opacity: 1; transform: translateY(0); }

/* ============================================================
   ABOUT TEASER
   ============================================================ */
.section-about-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}
.about-teaser-image { position: relative; min-height: 480px; overflow: hidden; }
.about-teaser-image .img-ph { position: absolute; inset: 0; }

.about-teaser-content {
  background: var(--ocean-deep);
  padding: clamp(60px, 8vw, 120px) clamp(40px, 6vw, 80px);
  display: flex; flex-direction: column; justify-content: center;
}
.about-teaser-content .eyebrow { color: rgba(255,255,255,0.45); margin-bottom: 14px; }
.about-teaser-content .section-title { color: white; margin-bottom: 20px; }
.about-teaser-content .divider { background: rgba(255,255,255,0.2); }
.about-teaser-content .body-text { color: rgba(255,255,255,0.6); max-width: 46ch; margin-bottom: 16px; }

.btn-outline-white {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 14px 32px; margin-top: 32px;
  align-self: flex-start;
  transition: all 0.3s var(--ease);
}
.btn-outline-white:hover { background: white; color: var(--ocean-deep); }

/* ============================================================
   LOCATION SECTION
   ============================================================ */
.section-location {
  padding: var(--section-v) var(--gutter);
  background: var(--cream-dark);
  text-align: center;
}
.location-header { margin-bottom: 72px; }
.location-header .eyebrow { margin-bottom: 16px; }
.location-header .section-title { margin: 0 auto 20px; max-width: 620px; }
.location-header .body-text { margin: 0 auto; max-width: 52ch; }

.location-stats {
  display: flex;
  justify-content: center;
  gap: clamp(40px, 6vw, 100px);
  margin-top: 72px;
  flex-wrap: wrap;
}
.location-stat-number {
  font-family: var(--font-serif);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 300; color: var(--ocean);
  line-height: 1; margin-bottom: 8px;
}
.location-stat-label {
  font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--warm-gray);
}

.location-images {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 8px; margin-top: 56px;
}
.location-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}
.location-img:first-child { aspect-ratio: 16/10; }
.location-img .img-ph { position: absolute; inset: 0; transition: transform 0.7s var(--ease); }
.location-img:hover .img-ph { transform: scale(1.04); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.section-testimonials {
  padding: var(--section-v) var(--gutter);
}
.testimonials-header { text-align: center; margin-bottom: 72px; }
.testimonials-header .eyebrow { margin-bottom: 14px; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: var(--container); margin: 0 auto;
  border: 1px solid var(--border);
}
.testimonial-card {
  padding: 44px 36px;
  border-right: 1px solid var(--border);
  background: var(--cream);
  transition: background 0.3s;
}
.testimonial-card:last-child { border-right: none; }
.testimonial-card:hover { background: var(--cream-dark); }

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.8vw, 21px);
  font-weight: 300; font-style: italic;
  line-height: 1.65; color: var(--charcoal);
  margin-bottom: 28px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ocean);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 17px; color: white;
  flex-shrink: 0;
}
.testimonial-name { font-size: 14px; font-weight: 500; color: var(--charcoal); margin-bottom: 2px; }
.testimonial-role { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--warm-gray); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.section-cta {
  position: relative;
  padding: var(--section-v) var(--gutter);
  text-align: center; overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1A3B52 0%, #2B5B78 55%, #4A8FAB 100%);
  /* TO ADD IMAGE: background: url('../images/cta-bg.jpg') center/cover; */
}
.cta-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(10, 25, 42, 0.62);
}
.cta-content { position: relative; z-index: 2; max-width: 600px; margin: 0 auto; }
.cta-content .eyebrow { color: rgba(255,255,255,0.5); margin-bottom: 18px; }
.cta-content .section-title { color: white; margin-bottom: 14px; }
.cta-content .body-text { color: rgba(255,255,255,0.62); margin: 0 auto 40px; max-width: 44ch; }

.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: white; color: var(--charcoal);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 18px 40px;
  transition: all 0.3s var(--ease);
}
.btn-primary:hover { background: var(--cream-dark); transform: translateY(-2px); }

.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: white;
  border: 1px solid rgba(255,255,255,0.35);
  padding: 18px 40px;
  transition: all 0.3s var(--ease);
}
.btn-whatsapp:hover { background: rgba(255,255,255,0.1); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--charcoal);
  padding: 80px var(--gutter) 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  max-width: var(--container); margin: 0 auto;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo {
  margin-bottom: 16px;
}
.footer-logo img {
  height: 44px;
  width: auto;
}
.footer-brand p {
  font-size: 14px; font-weight: 300;
  line-height: 1.75; color: rgba(255,255,255,0.5);
  max-width: 30ch; margin-bottom: 28px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.14);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45);
  transition: all 0.2s;
}
.footer-social a:hover { border-color: rgba(255,255,255,0.5); color: white; }

.footer-col h4 {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 14px; font-weight: 300;
  color: rgba(255,255,255,0.55); transition: color 0.2s;
}
.footer-col ul a:hover { color: white; }
.footer-col address { font-style: normal; }
.footer-contact-item {
  font-size: 14px; font-weight: 300;
  line-height: 1.7; color: rgba(255,255,255,0.55);
  margin-bottom: 14px;
}
.footer-contact-item a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-contact-item a:hover { color: white; }

.footer-bottom {
  max-width: var(--container); margin: 0 auto;
  padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: rgba(255,255,255,0.25);
}

/* ============================================================
   A VICI PAGE
   ============================================================ */
.section-avici-intro {
  padding: var(--section-v) var(--gutter);
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.avici-image {
  position: relative; min-height: 520px; overflow: hidden;
}
.avici-image .img-ph { position: absolute; inset: 0; }
.avici-text .eyebrow { margin-bottom: 14px; }
.avici-text .section-title { margin-bottom: 20px; }
.avici-text .divider { }
.avici-text .body-text { margin-top: 20px; }

.section-avici-values {
  padding: var(--section-v) var(--gutter);
  background: var(--cream-dark);
}
.values-header { text-align: center; margin-bottom: 72px; }
.values-header .eyebrow { margin-bottom: 14px; }
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 4px; max-width: var(--container); margin: 0 auto;
}
.value-item {
  padding: 44px 40px;
  background: var(--cream);
  border-top: 2px solid var(--earth);
}
.value-number {
  font-family: var(--font-serif);
  font-size: 52px; font-weight: 300;
  color: var(--earth); opacity: 0.25;
  line-height: 1; margin-bottom: 20px;
}
.value-title {
  font-family: var(--font-serif);
  font-size: 26px; font-weight: 400;
  color: var(--charcoal); margin-bottom: 12px;
}
.value-text { font-size: 14px; line-height: 1.75; color: var(--warm-gray); font-weight: 300; }

.section-avici-certif {
  padding: var(--section-v) var(--gutter);
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.certif-image { position: relative; min-height: 400px; overflow: hidden; }
.certif-image .img-ph { position: absolute; inset: 0; }
.certif-text .eyebrow { margin-bottom: 14px; }
.certif-text .section-title { margin-bottom: 20px; font-size: clamp(30px, 4vw, 52px); }
.certif-text .body-text { margin-top: 20px; }

.certif-badge {
  display: inline-flex; align-items: center; gap: 14px;
  margin-top: 32px;
  padding: 18px 24px;
  border: 1px solid var(--border);
  background: var(--cream-dark);
}
.certif-badge-icon {
  width: 44px; height: 44px;
  background: var(--ocean);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 20px; flex-shrink: 0;
}
.certif-badge-text strong { display: block; font-size: 15px; font-weight: 500; color: var(--charcoal); }
.certif-badge-text span { font-size: 12px; color: var(--warm-gray); }

/* ============================================================
   PROJETOS LIST PAGE
   ============================================================ */
.section-projetos-list {
  padding: var(--section-v) var(--gutter);
}
.projetos-intro {
  text-align: center; max-width: 560px;
  margin: 0 auto 80px;
}
.projetos-intro .eyebrow { margin-bottom: 14px; }
.projetos-intro .body-text { margin-top: 20px; }

.projetos-items {
  max-width: var(--container); margin: 0 auto;
  display: flex; flex-direction: column; gap: 4px;
}
.projeto-item {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 500px; overflow: hidden;
}
.projeto-item:nth-child(even) .projeto-item-image { order: 2; }
.projeto-item:nth-child(even) .projeto-item-content { order: 1; }

.projeto-item-image { position: relative; overflow: hidden; }
.projeto-item-image .img-ph {
  position: absolute; inset: 0;
  transition: transform 0.8s var(--ease);
}
.projeto-item:hover .projeto-item-image .img-ph { transform: scale(1.04); }

.projeto-item-content {
  background: var(--cream-dark);
  padding: clamp(48px, 6vw, 88px) clamp(36px, 5vw, 72px);
  display: flex; flex-direction: column; justify-content: center;
}
.projeto-item-content .project-status { margin-bottom: 16px; }
.projeto-item-content h3 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 300; color: var(--charcoal);
  margin-bottom: 16px; line-height: 1.1;
}
.projeto-item-content .body-text { margin-bottom: 36px; }

.btn-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ocean);
  transition: gap 0.3s var(--ease);
}
.btn-link:hover { gap: 16px; }

/* ============================================================
   PROJECT DETAIL PAGE
   ============================================================ */
.project-detail-hero {
  position: relative; width: 100%; height: 100vh; min-height: 640px;
  display: flex; align-items: flex-end;
  padding: 0 var(--gutter) 80px; overflow: hidden;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.project-detail-bg {
  position: absolute; inset: 0;
  transition: transform 0.1s linear;
}
.project-detail-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,18,28,0.9) 0%, rgba(8,18,28,0) 55%);
}
.project-detail-content {
  position: relative; z-index: 2;
  max-width: var(--container); width: 100%; margin: 0 auto;
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px;
}
.project-detail-info .project-status { margin-bottom: 14px; }
.project-detail-info h1 {
  font-family: var(--font-serif);
  font-size: clamp(60px, 9vw, 128px);
  font-weight: 300; color: white; line-height: 1;
  margin-bottom: 10px;
}
.project-detail-info .project-location { font-size: 13px; }

.project-meta-cards {
  display: flex; flex-direction: column; gap: 10px; align-items: flex-end;
}
.project-meta-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 14px 20px; text-align: center; min-width: 120px;
}
.project-meta-card strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 24px; font-weight: 300; color: white;
}
.project-meta-card span {
  font-size: 10px; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
}

.section-project-body {
  padding: var(--section-v) var(--gutter);
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.project-body-text .eyebrow { margin-bottom: 14px; }
.project-body-text .section-title { margin-bottom: 20px; font-size: clamp(32px, 4vw, 56px); }
.project-body-text .body-text { margin-bottom: 20px; }

.project-features h4 {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--earth); margin-bottom: 20px;
}
.project-features ul { list-style: none; }
.project-features ul li {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px; font-weight: 300; color: var(--warm-gray);
}
.project-features ul li::before {
  content: '';
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--earth); flex-shrink: 0;
}

.section-project-gallery {
  padding: 0 var(--gutter) var(--section-v);
  max-width: var(--container); margin: 0 auto;
}
.gallery-label { margin-bottom: 32px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.gallery-item {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
}
.gallery-item:first-child { grid-column: span 2; aspect-ratio: 16/9; }
.gallery-item .img-ph {
  position: absolute; inset: 0;
  transition: transform 0.7s var(--ease);
}
.gallery-item:hover .img-ph { transform: scale(1.05); }

/* ============================================================
   CONTATO PAGE
   ============================================================ */
.section-contact {
  padding: var(--section-v) var(--gutter);
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.contact-info .section-title { margin-bottom: 20px; }
.contact-info .body-text { margin-bottom: 40px; }
.contact-detail {
  display: flex; gap: 16px;
  margin-bottom: 24px; align-items: flex-start;
}
.contact-detail-icon {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--ocean); flex-shrink: 0;
}
.contact-detail-text h4 {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--earth); margin-bottom: 4px;
}
.contact-detail-text p, .contact-detail-text a {
  font-size: 15px; font-weight: 300;
  color: var(--charcoal); line-height: 1.6;
}

.contact-form-wrap { background: var(--cream-dark); padding: 48px; }
.form-group { margin-bottom: 22px; }
.form-label {
  display: block;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--earth); margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%; background: white;
  border: 1px solid var(--border);
  padding: 14px 16px;
  font-size: 15px; font-family: var(--font-sans);
  font-weight: 300; color: var(--charcoal);
  outline: none; border-radius: 0;
  appearance: none; -webkit-appearance: none;
  transition: border-color 0.2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--ocean); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-radio-group { display: flex; gap: 20px; flex-wrap: wrap; }
.form-radio-label {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 300;
  color: var(--warm-gray); cursor: pointer;
}
.form-radio-label input { accent-color: var(--ocean); }

.form-submit {
  width: 100%; background: var(--charcoal); color: white;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 18px; font-family: var(--font-sans);
  border: none; cursor: pointer;
  transition: background 0.3s;
}
.form-submit:hover { background: var(--ocean-deep); }

.form-success { display: none; text-align: center; padding: 32px 16px; }
.form-success.show { display: block; }
.form-success p {
  font-family: var(--font-serif);
  font-size: 24px; font-style: italic; color: var(--ocean);
}

/* ============================================================
   SECTION SEPARATOR
   ============================================================ */
.sep {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.sep hr { border: none; border-top: 1px solid var(--border); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .section-avici-intro,
  .section-avici-certif,
  .section-contact,
  .section-project-body { grid-template-columns: 1fr; gap: 48px; }
  .avici-image, .certif-image { min-height: 360px; }
  .projects-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .section-about-teaser { grid-template-columns: 1fr; }
  .about-teaser-image { min-height: 320px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .projeto-item { grid-template-columns: 1fr; min-height: auto; }
  .projeto-item:nth-child(even) .projeto-item-image,
  .projeto-item:nth-child(even) .projeto-item-content { order: unset; }
  .projeto-item-image { aspect-ratio: 16/9; }
  .project-detail-content { flex-direction: column; }
  .project-meta-cards { flex-direction: row; align-items: flex-start; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .projects-grid { grid-template-columns: 1fr; }
  .project-card:first-child { grid-row: auto; aspect-ratio: 3/4; }
  .location-images { grid-template-columns: 1fr; }
  .location-img:first-child { aspect-ratio: 16/9; }
  .testimonials-grid { grid-template-columns: 1fr; border: none; gap: 4px; }
  .testimonial-card { border-right: none; border: 1px solid var(--border); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .values-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: auto; aspect-ratio: 4/3; }
  .form-row { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .project-meta-cards { display: none; }
  .contact-form-wrap { padding: 28px 24px; }
  .hero-badge { display: none; }
}

/* ============================================================
   MOBILE PEQUENO (≤ 480px) — ajustes finos
   ============================================================ */
@media (max-width: 480px) {
  .hero-title { font-size: clamp(38px, 11vw, 54px); line-height: 1.08; }
  .hero-tagline { font-size: 14px; margin-bottom: 32px; }
  .hero-cta { padding: 14px 28px; font-size: 11px; }
  .section-title { font-size: clamp(30px, 8vw, 40px); }
  .page-hero-content h1 { font-size: clamp(40px, 10vw, 60px); }
  .project-detail-hero { min-height: 92vh; }
  .project-detail-info h1 { font-size: clamp(44px, 12vw, 64px); }
  .statement-quote { font-size: clamp(20px, 5.5vw, 30px); }
  .location-stat-number { font-size: clamp(36px, 9vw, 56px); }
  .btn-primary, .btn-whatsapp { width: 100%; justify-content: center; }
  .cta-buttons { gap: 12px; width: 100%; padding: 0 8px; }
  .section-projetos-list { padding-left: 20px; padding-right: 20px; }
  .nav-mobile a { font-size: 22px; }
  .footer-grid { gap: 28px; }
  .testimonial-card { padding: 24px 20px; }
  .section-project-gallery { padding-left: 16px; padding-right: 16px; }
}
