@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');

:root {
  --blue: #007bb7;
  --blue-dark: #006493;
  --magenta: #d70775;
  --magenta-dark: #b90663;
  --red: #da1a17;
  --orange: #f59a01;
  --amber: #f9ad01;
  --lime: #bdcf01;
  --green: #a1c617;
  --turquoise: #44bccc;
  --purple: #8c438a;
  --forest: #243139;
  --forest-2: #151d22;
  --leaf: var(--blue);
  --sun: var(--blue);
  --sun-2: var(--blue-dark);
  --cream: #f3f5f6;
  --paper: #ffffff;
  --ink: #171a1d;
  --muted: #626b72;
  --line: rgba(0, 123, 183, 0.16);
  --shadow: 0 24px 70px rgba(0, 82, 122, 0.14);
  --radius: 1.4rem;
  --container: min(1180px, calc(100% - 2.5rem));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid var(--sun); outline-offset: 3px; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 9999;
  padding: .8rem 1rem;
  color: white;
  background: var(--forest);
  border-radius: .6rem;
}
.skip-link:focus { top: 1rem; }
.container { width: var(--container); margin-inline: auto; }
.section { padding: clamp(4.8rem, 8vw, 8rem) 0; }
.section-soft { background: var(--cream); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 1rem;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow::before { content: ''; width: 2.4rem; height: 3px; background: linear-gradient(90deg, var(--orange), var(--amber), var(--lime), var(--turquoise), var(--blue), var(--purple), var(--magenta)); }
.section-title,
.hero h1,
.project-hero h1 {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.05;
}
.section-title { max-width: 780px; font-size: clamp(2.25rem, 5vw, 4.4rem); }
.section-title em { color: var(--blue); font-style: normal; }
.hero h1 em, .project-hero h1 em { color: white; font-style: normal; }
.section-intro { max-width: 680px; margin: 1.25rem 0 0; color: var(--muted); font-size: 1.08rem; }

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  padding: 4px 0 0;
  border-bottom: 1px solid rgba(0,123,183,.12);
  background: rgba(255,255,255,.98);
  box-shadow: 0 8px 28px rgba(40,25,35,.08);
  transition: box-shadow .25s ease;
}
.site-header::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--amber), var(--lime), var(--turquoise), var(--blue), var(--purple), var(--magenta));
}
.site-header.is-scrolled, .site-header.header-solid {
  background: rgba(255,255,255,.99);
  box-shadow: 0 10px 34px rgba(40,25,35,.13);
}
.nav-shell {
  width: var(--container);
  height: 86px;
  margin: auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transition: none;
}
.site-header.is-scrolled .nav-shell,
.site-header.header-solid .nav-shell {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}
.brand { display: inline-flex; align-items: center; padding: .2rem .45rem; text-decoration: none; }
.brand img { width: 120px; height: auto; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 1.7rem; }
.nav-links a { color: var(--ink); font-size: .9rem; font-weight: 700; text-decoration: none; }
.site-header.is-scrolled .nav-links a,
.site-header.header-solid .nav-links a { color: var(--ink); }
.nav-links a:not(.btn):hover { color: var(--sun); }
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: .55rem;
  min-height: 50px;
  padding: .72rem 1.3rem;
  border: 0;
  border-radius: 999px;
  background: var(--sun);
  color: white !important;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(215, 7, 117, .24);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); background: var(--sun-2); box-shadow: 0 16px 34px rgba(215, 7, 117, .3); }
.btn-dark { color: white !important; background: var(--forest); box-shadow: none; }
.btn-dark:hover { background: var(--forest-2); }
.btn-outline { color: white !important; background: rgba(0,123,183,.16); border: 1px solid rgba(255,255,255,.58); box-shadow: none; }
.btn-outline:hover { background: rgba(0,123,183,.34); }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 0; border: 0; border-radius: 50%; background: var(--blue); }
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 4px auto; background: white; }

.hero {
  min-height: 790px;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: white;
  background: #075b68;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/luzimangues-aereo-nova.webp') center/cover;
  filter: saturate(1.10) contrast(1.04) brightness(1.02);
  transform: scale(1.01);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 84% 18%, rgba(249,173,1,.17), transparent 27%),
    linear-gradient(90deg, rgba(0,55,72,.90) 0%, rgba(0,86,91,.66) 38%, rgba(0,123,183,.20) 68%, rgba(0,123,183,.04) 100%),
    linear-gradient(0deg, rgba(0,47,57,.44) 0%, transparent 50%);
}
.hero-content { position: relative; z-index: 2; width: var(--container); margin-inline: auto; padding: 10rem 0 6rem; }
.hero .location-pill { display: inline-flex; gap: .6rem; align-items: center; padding: .5rem .8rem; border: 1px solid rgba(255,255,255,.38); border-radius: 999px; background: rgba(0,83,92,.32); box-shadow: 0 10px 30px rgba(0,45,57,.16); backdrop-filter: blur(8px); font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.hero .location-pill::before { content: ''; width: 1.8rem; height: 3px; border-radius: 99px; background: linear-gradient(90deg, var(--orange), var(--lime), var(--turquoise), var(--blue)); }
.hero h1 { max-width: 850px; margin-top: 1.3rem; font-size: clamp(3.3rem, 7.2vw, 6.35rem); text-shadow: 0 4px 28px rgba(0,31,40,.28); }
.hero-lead { max-width: 610px; margin: 1.4rem 0 2rem; color: rgba(255,255,255,.92); font-size: clamp(1.05rem, 2vw, 1.28rem); text-shadow: 0 2px 18px rgba(0,31,40,.24); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 1.6rem; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.2); }
.hero-proof strong { display: block; font-family: 'Manrope'; font-size: 1.45rem; line-height: 1; }
.hero-proof span { color: rgba(255,255,255,.68); font-size: .82rem; }

.trust-strip { border-bottom: 1px solid var(--line); background: white; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 1.4rem 1.5rem; border-right: 1px solid var(--line); text-align: center; }
.trust-item:last-child { border: 0; }
.trust-item:nth-child(1) { border-top: 4px solid var(--orange); }
.trust-item:nth-child(2) { border-top: 4px solid var(--turquoise); }
.trust-item:nth-child(3) { border-top: 4px solid var(--green); }
.trust-item:nth-child(4) { border-top: 4px solid var(--purple); }
.trust-item strong { display: block; color: var(--blue); font-family: 'Manrope'; font-size: 1.22rem; }
.trust-item span { font-size: .84rem; }

.about-grid { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: clamp(2.5rem, 6vw, 6rem); }
.about-media { position: relative; }
.about-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.about-seal { position: absolute; right: -1.2rem; bottom: 2rem; max-width: 180px; padding: 1.1rem; color: white; background: var(--forest); border-radius: 1rem; box-shadow: var(--shadow); }
.about-seal strong { display: block; color: var(--sun); font-family: 'Manrope'; font-size: 2rem; }
.check-list { list-style: none; margin: 2rem 0; padding: 0; display: grid; gap: .8rem; }
.check-list li { display: flex; gap: .8rem; align-items: flex-start; }
.check-list li::before { content: '✓'; flex: 0 0 1.55rem; height: 1.55rem; display: grid; place-items: center; margin-top: .12rem; color: white; background: var(--leaf); border-radius: 50%; font-size: .78rem; font-weight: 800; }

.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 3rem; }
.benefit-card { min-height: 250px; padding: 1.7rem; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.benefit-card:nth-child(1) { border-top: 5px solid var(--orange); }
.benefit-card:nth-child(2) { border-top: 5px solid var(--turquoise); }
.benefit-card:nth-child(3) { border-top: 5px solid var(--green); }
.benefit-card:nth-child(4) { border-top: 5px solid var(--purple); }
.benefit-card:nth-child(even) span { background: var(--blue); }
.benefit-card span { width: 3rem; height: 3rem; display: grid; place-items: center; color: white; background: var(--forest); border-radius: 1rem; font-weight: 800; }
.benefit-card h3 { margin: 1.3rem 0 .6rem; font-family: 'Manrope'; font-size: 1.22rem; line-height: 1.25; }
.benefit-card p { margin: 0; color: var(--muted); font-size: .94rem; }

.projects-head { display: flex; justify-content: space-between; align-items: end; gap: 2rem; margin-bottom: 2.5rem; }
.projects-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.25rem; }
.project-card { grid-column: span 4; position: relative; min-height: 500px; overflow: hidden; border-radius: var(--radius); color: white; background: var(--forest); box-shadow: 0 12px 36px rgba(17,34,24,.1); }
.project-card.featured { grid-column: span 6; }
.project-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.project-card:hover img { transform: scale(1.045); }
.project-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(18,27,32,.02) 20%, rgba(18,27,32,.94) 100%); }
.project-card-content { position: absolute; z-index: 2; inset: auto 0 0; padding: 1.6rem; }
.status { display: inline-flex; margin-bottom: .8rem; padding: .35rem .65rem; color: white; background: var(--blue); border-radius: 999px; font-size: .72rem; font-weight: 800; text-transform: uppercase; }
.project-card h3 { margin: 0; font-family: 'Manrope'; font-size: clamp(1.65rem, 3vw, 2.35rem); line-height: 1.1; }
.project-card p { margin: .6rem 0 1.1rem; color: rgba(255,255,255,.76); }
.project-link { display: inline-flex; align-items: center; gap: .5rem; font-weight: 800; text-decoration: none; }
.project-link::after { content: '→'; transition: transform .2s ease; }
.project-link:hover::after { transform: translateX(4px); }

.location { overflow: hidden; color: var(--ink); border-block: 1px solid var(--line); background: var(--cream); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(2rem, 6vw, 6rem); }
.location .eyebrow { color: var(--blue); }
.location-visual { position: relative; }
.location-visual img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 50%; border: 1rem solid rgba(255,255,255,.06); }
.location-card { position: absolute; left: -1.2rem; bottom: 2rem; max-width: 260px; padding: 1.1rem; color: var(--ink); background: white; border-radius: 1rem; box-shadow: var(--shadow); }
.location-card strong { display: block; color: var(--forest); }
.location .section-intro { color: var(--muted); }

.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.5rem; }
.testimonial { padding: 1.6rem; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.testimonial p { margin: 0 0 1.4rem; color: var(--muted); }
.person { display: flex; align-items: center; gap: .8rem; }
.person img { width: 52px; height: 52px; object-fit: cover; border-radius: 50%; }
.person strong { display: block; }
.person span { color: var(--muted); font-size: .82rem; }

.contact { border-top: 1px solid var(--line); background: #f5f7f8; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.contact-copy .section-title { font-size: clamp(2.4rem, 5vw, 4.4rem); }
.contact-links { display: grid; gap: .7rem; margin-top: 2rem; }
.contact-links a { font-weight: 700; text-decoration: none; }
.lead-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; padding: clamp(1.4rem, 4vw, 2.4rem); background: white; border-radius: var(--radius); box-shadow: var(--shadow); }
.field { display: grid; gap: .35rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .8rem; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; min-height: 50px; padding: .8rem .9rem; border: 1px solid #d9dfda; border-radius: .75rem; color: var(--ink); background: #fbfcfb; }
.field textarea { min-height: 110px; resize: vertical; }
.form-note { grid-column: 1 / -1; margin: 0; color: var(--muted); font-size: .76rem; }
.form-status { display: none; grid-column: 1 / -1; margin: 0; padding: .8rem; border-radius: .7rem; font-weight: 700; }
.form-status.show { display: block; }
.form-status.success { color: #0a5637; background: #dcfce7; }
.form-status.error { color: #8f1d1d; background: #fee2e2; }

.site-footer { position: relative; padding: 4rem 0 1.5rem; color: rgba(255,255,255,.86); background: var(--blue); }
.site-footer::before { content: ''; position: absolute; inset: 0 0 auto; height: 6px; background: linear-gradient(90deg, var(--red), var(--orange), var(--amber), var(--lime), var(--turquoise), var(--blue), var(--purple), var(--magenta)); }
.footer-grid { display: grid; grid-template-columns: 1.5fr .8fr .8fr 1fr; gap: 2.5rem; }
.footer-brand img { width: 190px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer-brand p { max-width: 340px; }
.footer-title { margin: 0 0 1rem; color: white; font-family: 'Manrope'; font-size: .95rem; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--sun); }
.footer-bottom { margin-top: 3rem; padding-top: 1.3rem; border-top: 1px solid rgba(255,255,255,.1); font-size: .77rem; }

.whatsapp-float { position: fixed; z-index: 900; right: 1.2rem; bottom: 1.2rem; display: inline-flex; align-items: center; gap: .55rem; min-height: 54px; padding: .75rem 1rem; color: white; background: #168b50; border-radius: 999px; box-shadow: 0 16px 40px rgba(22,139,80,.35); font-weight: 800; text-decoration: none; }

.project-hero { position: relative; min-height: 660px; display: flex; align-items: end; overflow: hidden; color: white; background: var(--forest); }
.project-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.project-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(18,27,32,.92), rgba(18,27,32,.26)), linear-gradient(0deg, rgba(18,27,32,.76), transparent 55%); }
.project-hero-content { position: relative; z-index: 2; width: var(--container); margin-inline: auto; padding: 10rem 0 4rem; }
.breadcrumbs { margin-bottom: 1.5rem; color: rgba(255,255,255,.7); font-size: .82rem; }
.breadcrumbs a { text-decoration: none; }
.project-hero h1 { max-width: 900px; font-size: clamp(3.2rem, 8vw, 6.7rem); }
.project-hero p { max-width: 720px; margin: 1rem 0 1.6rem; color: rgba(255,255,255,.8); font-size: 1.15rem; }
.project-overview { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.project-facts { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.fact { min-height: 132px; padding: 1.2rem; border: 1px solid var(--line); border-radius: 1rem; background: var(--cream); }
.fact strong { display: block; margin-bottom: .35rem; color: var(--forest); font-family: 'Manrope'; }
.gallery { display: grid; grid-template-columns: 1.3fr .7fr; grid-template-rows: 260px 260px; gap: 1rem; margin-top: 2.5rem; }
.gallery img { width: 100%; height: 100%; object-fit: cover; border-radius: 1rem; }
.gallery img:first-child { grid-row: 1 / 3; }
.gallery img:only-child { grid-column: 1 / -1; grid-row: 1 / 3; }
.gallery.gallery-2 { grid-template-columns: 1fr 1fr; grid-template-rows: 520px; }
.gallery.gallery-2 img:first-child { grid-row: auto; }
.video-shell { overflow: hidden; margin-top: 2.5rem; border-radius: var(--radius); background: var(--blue); box-shadow: var(--shadow); }
.video-shell video { width: 100%; max-height: 680px; }
.project-cta { padding: 3rem; border-radius: var(--radius); color: white; background: var(--forest); }
.project-cta h2 { margin: 0 0 .6rem; font-family: 'Manrope'; font-size: clamp(2rem,4vw,3.5rem); line-height: 1.05; }
.project-cta p { max-width: 640px; color: rgba(255,255,255,.72); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .nav-shell { backdrop-filter: none; }
  .nav-links { position: fixed; z-index: 999; inset: 90px 0 0; display: none; overflow-y: auto; flex-direction: column; justify-content: center; gap: 1.3rem; border-radius: 0; background: white; box-shadow: var(--shadow); }
  .nav-links.is-open { display: flex; }
  .nav-links a, .site-header.is-scrolled .nav-links a, .site-header.header-solid .nav-links a { color: var(--ink); font-size: 1.25rem; }
  .brand, .menu-toggle { position: relative; z-index: 1001; }
  .menu-toggle { display: block; }
  .about-grid, .location-grid, .contact-grid, .project-overview { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .project-card, .project-card.featured { grid-column: span 6; }
  .footer-grid { grid-template-columns: 1.4fr 1fr; }
}

@media (max-width: 680px) {
  :root { --container: min(100% - 1.35rem, 1180px); }
  .section { padding: 4.3rem 0; }
  .site-header { padding: 4px 0 0; }
  .nav-shell { height: 76px; padding: 0; }
  .brand img { width: 120px; }
  .nav-links { inset: 80px 0 0; }
  .hero { min-height: 720px; }
  .hero::before { background-position: 58% center; }
  .hero::after {
    background:
      radial-gradient(circle at 78% 16%, rgba(249,173,1,.14), transparent 25%),
      linear-gradient(90deg, rgba(0,51,67,.92) 0%, rgba(0,82,87,.74) 68%, rgba(0,123,183,.30) 100%),
      linear-gradient(0deg, rgba(0,47,57,.50) 0%, transparent 56%);
  }
  .hero-content { padding-top: 8rem; }
  .hero h1 { font-size: clamp(3rem, 16vw, 4.7rem); }
  .hero-proof { gap: 1.1rem; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: 0; }
  .benefit-grid, .testimonial-grid, .project-facts { grid-template-columns: 1fr; }
  .projects-head { align-items: start; flex-direction: column; }
  .project-card, .project-card.featured { grid-column: 1 / -1; min-height: 440px; }
  .about-seal { right: .7rem; }
  .lead-form { grid-template-columns: 1fr; }
  .field { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1fr; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { width: 56px; padding: 0; justify-content: center; font-size: 1.3rem; }
  .project-hero { min-height: 600px; }
  .project-hero h1 { font-size: clamp(3rem, 15vw, 4.8rem); }
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 240px 180px; }
  .gallery img:first-child { grid-column: 1 / -1; grid-row: auto; }
  .gallery.gallery-2 { grid-template-columns: 1fr; grid-template-rows: 220px 220px; }
  .gallery.gallery-2 img:first-child { grid-column: auto; }
  .project-cta { padding: 2rem 1.4rem; }
}

/* Direção editorial da página inicial */
html, body { overflow-x: hidden; }

.btn {
  border-radius: .35rem;
  background: linear-gradient(110deg, var(--blue-dark), var(--blue) 62%, var(--turquoise));
  box-shadow: 0 12px 26px rgba(0, 123, 183, .22);
}
.btn:hover { background: linear-gradient(110deg, var(--blue), var(--turquoise)); }
.btn-dark { background: var(--forest); }
.btn-dark:hover { background: var(--forest-2); }

.site-header {
  box-shadow: none;
}
.nav-shell { height: 78px; }
.brand img { width: 108px; }
.nav-links a { font-size: .84rem; letter-spacing: .015em; }

.hero {
  min-height: 820px;
  display: block;
  color: var(--ink);
  background: #f5f7f7;
}
.hero::before {
  z-index: 0;
  inset: 82px 0 0 44%;
  background-position: 54% center;
  filter: saturate(1.08) contrast(1.04);
  transform: none;
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
}
.hero::after {
  z-index: 1;
  inset: 82px auto 0 0;
  width: 56%;
  background:
    radial-gradient(circle at 6% 24%, rgba(189,207,1,.15), transparent 24%),
    radial-gradient(circle at 44% 90%, rgba(68,188,204,.14), transparent 28%),
    radial-gradient(circle at 82% 10%, rgba(245,154,1,.11), transparent 24%),
    linear-gradient(135deg, rgba(255,255,255,.99), rgba(241,246,247,.97)),
    #f5f7f7;
  clip-path: polygon(0 0, 100% 0, 86% 100%, 0 100%);
}
.hero-content {
  min-height: 820px;
  padding: 10.5rem 0 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero .location-pill {
  align-self: flex-start;
  padding: 0 0 0 .9rem;
  border: 0;
  border-left: 3px solid var(--orange);
  border-radius: 0;
  color: var(--blue-dark);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
.hero .location-pill::before { display: none; }
.hero h1 {
  max-width: 610px;
  margin-top: 1.6rem;
  color: var(--ink);
  font-size: clamp(4rem, 6.5vw, 6.15rem);
  text-shadow: none;
}
.hero h1 em {
  color: transparent;
  background: linear-gradient(90deg, var(--blue) 0 48%, var(--turquoise) 68%, var(--green) 84%, var(--orange));
  background-clip: text;
  -webkit-background-clip: text;
}
.hero-lead {
  max-width: 520px;
  margin: 1.6rem 0 2.1rem;
  color: var(--muted);
  font-size: 1.08rem;
  text-shadow: none;
}
.hero .btn-outline {
  color: var(--ink) !important;
  border: 1px solid rgba(23,26,29,.35);
  background: transparent;
}
.hero .btn-outline:hover { color: white !important; border-color: var(--forest); background: var(--forest); }
.hero-proof {
  max-width: 520px;
  margin-top: 3rem;
  padding-top: 1.4rem;
  border-top-color: rgba(23,26,29,.18);
}
.hero-proof strong { color: var(--ink); }
.hero-proof div:nth-child(1) strong { color: var(--blue); }
.hero-proof div:nth-child(2) strong { color: #7f9f00; }
.hero-proof div:nth-child(3) strong { color: var(--purple); }
.hero-proof span { color: var(--muted); }

.trust-strip { border-block: 1px solid var(--line); }
.trust-item {
  position: relative;
  padding: 1.65rem 1.5rem 1.55rem;
  text-align: left;
}
.trust-item::before {
  content: '';
  position: absolute;
  left: 1.5rem;
  top: 0;
  width: 2.8rem;
  height: 3px;
  background: var(--blue);
}
.trust-item:nth-child(1), .trust-item:nth-child(2), .trust-item:nth-child(3), .trust-item:nth-child(4) { border-top: 0; }
.trust-item:nth-child(1)::before { background: var(--orange); }
.trust-item:nth-child(2)::before { background: var(--turquoise); }
.trust-item:nth-child(3)::before { background: var(--green); }
.trust-item:nth-child(4)::before { background: var(--purple); }
.trust-item strong { color: var(--ink); font-size: 1rem; }
.trust-item span { color: var(--muted); }

#sobre { padding-block: clamp(6rem, 10vw, 10rem); }
.about-grid { grid-template-columns: 1.15fr .85fr; align-items: stretch; }
.about-media img {
  height: 100%;
  min-height: 620px;
  aspect-ratio: auto;
  border-radius: .35rem;
  box-shadow: none;
}
.about-media::before {
  content: '';
  position: absolute;
  z-index: 2;
  left: -1rem;
  top: -1rem;
  width: 8.5rem;
  height: .45rem;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--lime), var(--turquoise), var(--blue), var(--purple), var(--magenta));
}
.about-seal {
  right: -1.5rem;
  bottom: -1.5rem;
  border-radius: .3rem;
  background: var(--blue-dark);
  border-top: 5px solid transparent;
  border-image: linear-gradient(90deg, var(--orange), var(--lime), var(--turquoise), var(--magenta)) 1;
}
.about-seal strong { color: var(--amber); }

.partnership {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 4% 15%, rgba(189,207,1,.15), transparent 24%),
    radial-gradient(circle at 94% 88%, rgba(68,188,204,.18), transparent 27%),
    #f2f7f7;
}
.partnership::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--amber), var(--lime), var(--turquoise), var(--blue), var(--purple), var(--magenta));
}
.partnership-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}
.partnership-brand {
  position: relative;
  min-height: 480px;
  padding: clamp(2rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(0,123,183,.12);
  background:
    linear-gradient(145deg, rgba(255,255,255,.98), rgba(255,255,255,.86)),
    white;
  box-shadow: 0 28px 80px rgba(0,82,122,.11);
}
.partnership-brand::after {
  content: '';
  position: absolute;
  right: -4rem;
  bottom: -4rem;
  width: 12rem;
  aspect-ratio: 1;
  border: 1.5rem solid rgba(68,188,204,.09);
  border-radius: 50%;
  pointer-events: none;
}
.partnership-kicker {
  margin: 0;
  color: var(--blue-dark);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.partnership-logos {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: start;
  gap: 1.1rem;
}
.partnership-logos span {
  color: var(--orange);
  font-family: 'Manrope';
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.partnership-logo-cidade { width: 180px; height: auto; }
.partnership-logo-brasil { width: min(310px, 100%); height: auto; }
.partnership-source {
  position: relative;
  z-index: 1;
  width: fit-content;
  color: var(--blue-dark);
  font-size: .84rem;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,123,183,.3);
}
.partnership-copy .section-title { max-width: 720px; }
.partnership-copy .section-title em {
  color: transparent;
  background: linear-gradient(90deg, var(--blue), var(--turquoise), var(--green));
  background-clip: text;
  -webkit-background-clip: text;
}
.partnership-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2.3rem;
  padding-block: 1.5rem;
  border-block: 1px solid rgba(0,123,183,.16);
}
.partnership-proof div {
  padding-inline: 1.2rem;
  border-right: 1px solid rgba(0,123,183,.16);
}
.partnership-proof div:first-child { padding-left: 0; }
.partnership-proof div:last-child { padding-right: 0; border-right: 0; }
.partnership-proof strong {
  display: block;
  font-family: 'Manrope';
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1;
}
.partnership-proof div:nth-child(1) strong { color: var(--blue); }
.partnership-proof div:nth-child(2) strong { color: #779900; }
.partnership-proof div:nth-child(3) strong { color: var(--magenta); }
.partnership-proof span {
  display: block;
  margin-top: .45rem;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.35;
}
.partnership-projects-label {
  margin: 2rem 0 .7rem;
  color: var(--ink);
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.partnership-advantage {
  margin: 1.6rem 0 0;
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--turquoise);
  color: var(--muted);
  background: linear-gradient(90deg, rgba(68,188,204,.11), rgba(255,255,255,.72));
  font-size: .84rem;
  line-height: 1.5;
}
.partnership-advantage strong { color: var(--blue-dark); }
.partnership-advantage + .partnership-projects-label { margin-top: 1.4rem; }
.partnership-projects { display: grid; grid-template-columns: repeat(3, 1fr); }
.partnership-projects a {
  display: flex;
  justify-content: space-between;
  gap: .8rem;
  padding: .9rem 0;
  border-bottom: 3px solid var(--blue);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}
.partnership-projects a + a { margin-left: 1rem; }
.partnership-projects a:nth-child(1) { border-color: var(--orange); }
.partnership-projects a:nth-child(2) { border-color: var(--turquoise); }
.partnership-projects a:nth-child(3) { border-color: var(--magenta); }
.partnership-projects a span { color: var(--blue); transition: transform .2s ease; }
.partnership-projects a:hover span { transform: translateX(4px); }

section[aria-labelledby="diferenciais-title"] {
  color: white;
  background:
    radial-gradient(circle at 95% 5%, rgba(215,7,117,.14), transparent 28%),
    radial-gradient(circle at 4% 96%, rgba(68,188,204,.15), transparent 28%),
    #102b36;
}
section[aria-labelledby="diferenciais-title"] .eyebrow { color: var(--turquoise); }
section[aria-labelledby="diferenciais-title"] .section-title { max-width: 900px; }
section[aria-labelledby="diferenciais-title"] .section-title em {
  color: transparent;
  background: linear-gradient(90deg, var(--turquoise), var(--green), var(--amber));
  background-clip: text;
  -webkit-background-clip: text;
}
.benefit-grid { grid-template-columns: 1fr 1fr; gap: 0; margin-top: 4rem; border-top: 1px solid rgba(255,255,255,.16); }
.benefit-card {
  position: relative;
  min-height: 210px;
  padding: 2rem 2rem 2.2rem 5.2rem;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.16);
  border-radius: 0;
  color: white;
  background: transparent;
}
.benefit-card:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.16); }
.benefit-card:nth-child(1), .benefit-card:nth-child(2), .benefit-card:nth-child(3), .benefit-card:nth-child(4) { border-top: 0; }
.benefit-card span,
.benefit-card:nth-child(even) span {
  position: absolute;
  left: 0;
  top: 2rem;
  width: 3.6rem;
  height: auto;
  display: block;
  color: var(--turquoise);
  background: transparent;
  border-radius: 0;
  font-family: 'Manrope';
  font-size: 1.6rem;
}
.benefit-card:nth-child(1) span { color: var(--orange); }
.benefit-card:nth-child(2) span { color: var(--turquoise); }
.benefit-card:nth-child(3) span { color: var(--green); }
.benefit-card:nth-child(4) span { color: #e85aa6; }
.benefit-card:nth-child(1) { box-shadow: inset 0 3px 0 var(--orange); }
.benefit-card:nth-child(2) { box-shadow: inset 0 3px 0 var(--turquoise); }
.benefit-card:nth-child(3) { box-shadow: inset 0 3px 0 var(--green); }
.benefit-card:nth-child(4) { box-shadow: inset 0 3px 0 var(--magenta); }
.benefit-card h3 { margin: 0 0 .7rem; font-size: 1.35rem; }
.benefit-card p { max-width: 420px; color: rgba(255,255,255,.62); }

#empreendimentos { padding-block: clamp(6rem, 10vw, 10rem); }
.projects-head { margin-bottom: 4rem; padding-bottom: 2rem; border-bottom: 1px solid var(--line); }
.projects-head .section-intro { max-width: 350px; }
.projects-grid { counter-reset: empreendimento; gap: 1rem; }
.project-card {
  counter-increment: empreendimento;
  min-height: 480px;
  border-radius: .35rem;
  box-shadow: none;
}
.project-card:nth-child(4n + 1) { border-bottom: 5px solid var(--orange); }
.project-card:nth-child(4n + 2) { border-bottom: 5px solid var(--turquoise); }
.project-card:nth-child(4n + 3) { border-bottom: 5px solid var(--green); }
.project-card:nth-child(4n + 4) { border-bottom: 5px solid var(--magenta); }
.project-card::before {
  content: '0' counter(empreendimento);
  position: absolute;
  z-index: 3;
  top: 1.25rem;
  right: 1.35rem;
  color: rgba(255,255,255,.86);
  font-family: 'Manrope';
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
}
.project-card::after { background: linear-gradient(180deg, rgba(8,24,31,.04) 24%, rgba(8,24,31,.94) 100%); }
.project-card:nth-child(1) { grid-column: span 7; min-height: 610px; }
.project-card:nth-child(2) { grid-column: span 5; min-height: 610px; }
.project-card:nth-child(3) { grid-column: span 5; min-height: 440px; }
.project-card:nth-child(4) { grid-column: span 7; min-height: 440px; }
.project-card:nth-child(5) { grid-column: span 7; min-height: 520px; }
.project-card:nth-child(6) { grid-column: span 5; min-height: 520px; }
.project-card:nth-child(7) { grid-column: span 5; min-height: 460px; }
.project-card:nth-child(8) { grid-column: span 7; min-height: 460px; }
.project-card-content { padding: 2rem; }
.project-card h3 { font-size: clamp(1.8rem, 3.2vw, 3rem); }
.status {
  margin-bottom: 1rem;
  padding: 0 0 0 .7rem;
  border-left: 3px solid var(--turquoise);
  border-radius: 0;
  color: rgba(255,255,255,.82);
  background: transparent;
  letter-spacing: .08em;
}
.project-card:nth-child(4n + 1) .status { border-left-color: var(--orange); }
.project-card:nth-child(4n + 2) .status { border-left-color: var(--turquoise); }
.project-card:nth-child(4n + 3) .status { border-left-color: var(--green); }
.project-card:nth-child(4n + 4) .status { border-left-color: #e85aa6; }

.location { background: #f4f7f7; }
.location .section-title em {
  color: transparent;
  background: linear-gradient(90deg, var(--blue), var(--turquoise), var(--green));
  background-clip: text;
  -webkit-background-clip: text;
}
.location-grid { grid-template-columns: .82fr 1.18fr; }
.location-visual img {
  aspect-ratio: 4 / 3;
  border: 0;
  border-radius: .35rem;
}
.location-card {
  left: -2rem;
  bottom: -2rem;
  border-radius: .3rem;
  border-top: 4px solid var(--orange);
  box-shadow: 0 24px 60px rgba(14,43,54,.14);
}

section[aria-labelledby="depoimentos-title"] { background: white; }
section[aria-labelledby="depoimentos-title"] .section-title em {
  color: transparent;
  background: linear-gradient(90deg, var(--blue), var(--purple), var(--magenta));
  background-clip: text;
  -webkit-background-clip: text;
}
.testimonial-grid { grid-template-columns: repeat(12, 1fr); gap: 0; border-block: 1px solid var(--line); }
.testimonial {
  grid-column: span 3;
  padding: 2rem;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
}
.testimonial:first-child { grid-column: span 6; }
.testimonial:last-child { border-right: 0; }
.testimonial:first-child p { color: var(--ink); font-family: 'Manrope'; font-size: 1.45rem; line-height: 1.45; }
.testimonial:nth-child(1) { border-top: 4px solid var(--orange); }
.testimonial:nth-child(2) { border-top: 4px solid var(--turquoise); }
.testimonial:nth-child(3) { border-top: 4px solid var(--magenta); }

.contact {
  color: white;
  background:
    radial-gradient(circle at 6% 12%, rgba(68,188,204,.18), transparent 28%),
    radial-gradient(circle at 92% 88%, rgba(215,7,117,.15), transparent 26%),
    #102b36;
}
.contact .eyebrow { color: var(--turquoise); }
.contact .section-title em {
  color: transparent;
  background: linear-gradient(90deg, var(--turquoise), var(--green), var(--amber));
  background-clip: text;
  -webkit-background-clip: text;
}
.contact-copy > p:not(.eyebrow), .contact-links { color: rgba(255,255,255,.7); }
.lead-form {
  position: relative;
  border-radius: .35rem;
  box-shadow: none;
  border-top: 6px solid transparent;
  border-image: linear-gradient(90deg, var(--red), var(--orange), var(--lime), var(--turquoise), var(--blue), var(--purple), var(--magenta)) 1;
}
.field input, .field select, .field textarea { border-radius: .25rem; }
.site-footer { background: #071b24; }

@media (max-width: 980px) {
  .hero { min-height: auto; }
  .hero::before {
    inset: 82px 0 auto;
    height: 390px;
    clip-path: none;
    background-position: center;
  }
  .hero::after {
    inset: 440px 0 0;
    width: 100%;
    clip-path: none;
    background: white;
  }
  .hero-content { min-height: 0; padding: 31rem 0 5rem; }
  .hero h1 { max-width: 720px; }
  .about-grid, .partnership-grid { grid-template-columns: 1fr; }
  .about-media img { min-height: 0; aspect-ratio: 16 / 10; }
  .about-seal { right: 1rem; bottom: -1rem; }
  .project-card:nth-child(n) { grid-column: span 6; min-height: 500px; }
  .location-grid { grid-template-columns: 1fr; }
  .location-card { left: 1rem; bottom: -1.5rem; }
  .testimonial:first-child, .testimonial { grid-column: span 6; border-bottom: 1px solid var(--line); }
}

@media (max-width: 680px) {
  .nav-shell { height: 76px; }
  .brand img { width: 106px; }
  .hero::before { inset: 80px 0 auto; height: 270px; background-position: 58% center; }
  .hero::after { inset: 350px 0 0; }
  .hero-content { padding: 24.5rem 0 4.5rem; }
  .hero h1 { font-size: clamp(2.85rem, 13.5vw, 3.35rem); }
  .section-title { font-size: clamp(2rem, 10vw, 2.7rem); overflow-wrap: break-word; }
  .hero-lead { font-size: 1rem; }
  .hero-actions { display: grid; }
  .hero-actions .btn { width: 100%; }
  .hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: .7rem; }
  .hero-proof strong { font-size: 1.15rem; }
  .hero-proof span { font-size: .7rem; line-height: 1.3; }
  .trust-item { padding: 1.4rem .9rem; }
  .trust-item::before { left: .9rem; }
  .trust-item strong { font-size: .9rem; }
  .trust-item span { font-size: .73rem; }
  .about-media img { aspect-ratio: 4 / 3; }
  .about-seal { max-width: 150px; font-size: .8rem; }
  .partnership-brand { min-height: 390px; }
  .partnership-logo-cidade { width: 150px; }
  .partnership-logo-brasil { width: min(260px, 100%); }
  .partnership-proof { gap: .5rem; }
  .partnership-proof div { padding-inline: .55rem; }
  .partnership-proof span { font-size: .68rem; }
  .partnership-projects { grid-template-columns: 1fr; }
  .partnership-projects a + a { margin-left: 0; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-card { min-height: 0; padding: 1.7rem 0 1.9rem 4.2rem; }
  .benefit-card:nth-child(odd) { border-right: 0; }
  .benefit-card span, .benefit-card:nth-child(even) span { top: 1.7rem; font-size: 1.35rem; }
  .projects-head { margin-bottom: 2rem; }
  .project-card:nth-child(n) { grid-column: 1 / -1; min-height: 440px; }
  .project-card-content { padding: 1.45rem; }
  .project-card h3 { font-size: 2rem; }
  .location-card { position: relative; left: auto; bottom: auto; max-width: none; margin: -1rem .8rem 0; }
  .testimonial:first-child, .testimonial { grid-column: 1 / -1; border-right: 0; }
  .testimonial:first-child p { font-size: 1.15rem; }
}
