﻿@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Marcellus&display=swap");

:root {
  --green: #4a9e98;
  --green-2: #5eafa8;
  --black: #080a09;
  --graphite: #171a18;
  --gray: #8d948f;
  --soft: #eef2ef;
  --white: #ffffff;
  --warm: #b8966b;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--graphite);
  background: var(--soft);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(8, 10, 9, 0.1);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--graphite);
  letter-spacing: 0;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand-fallback {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(94, 175, 168, 0.7);
  background: linear-gradient(145deg, rgba(74, 158, 152, 0.95), rgba(8, 10, 9, 0.9));
  color: var(--white);
  font-family: "Marcellus", serif;
  font-size: 22px;
}

.brand-fallback[hidden] {
  display: none;
}

.brand-name {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  color: inherit;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.18em;
  line-height: 1.05;
}

.brand-name strong {
  color: var(--graphite);
  font-size: inherit;
  font-weight: 700;
  letter-spacing: inherit;
}

.brand-light {
  font-weight: 400;
}

.brand-text small {
  display: block;
  color: var(--green);
  margin-top: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  padding: 10px 12px;
  color: rgba(23, 26, 24, 0.72);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.nav-links a:hover {
  color: var(--graphite);
}

.nav-links a.active {
  color: var(--green);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(8, 10, 9, 0.14);
  background: rgba(8, 10, 9, 0.04);
  color: var(--graphite);
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 74% 28%, rgba(94, 175, 168, 0.2), transparent 30%),
    linear-gradient(135deg, rgba(8, 10, 9, 0.88), rgba(18, 24, 21, 0.78)),
    url("../img/revista-capa.jpeg");
  background-size: cover;
  background-position: center;
}

.hero-home {
  color: var(--white);
  background-image:
    radial-gradient(circle at 76% 26%, rgba(94, 175, 168, 0.14), transparent 30%),
    linear-gradient(90deg, rgba(8, 10, 9, 0.64), rgba(8, 10, 9, 0.42) 48%, rgba(8, 10, 9, 0.16)),
    url("../img/hero-home.jpg");
}

.hero-empresa {
  background-image:
    radial-gradient(circle at 74% 28%, rgba(94, 175, 168, 0.2), transparent 30%),
    linear-gradient(135deg, rgba(8, 10, 9, 0.76), rgba(18, 24, 21, 0.58)),
    url("../img/hero-empresa.jpg");
}

.hero-servicos {
  background-image:
    radial-gradient(circle at 74% 28%, rgba(94, 175, 168, 0.2), transparent 30%),
    linear-gradient(135deg, rgba(8, 10, 9, 0.76), rgba(18, 24, 21, 0.58)),
    url("../img/hero-servicos.jpg");
}

.hero-projetos {
  background-image:
    radial-gradient(circle at 74% 28%, rgba(94, 175, 168, 0.2), transparent 30%),
    linear-gradient(135deg, rgba(8, 10, 9, 0.72), rgba(18, 24, 21, 0.52)),
    url("../img/hero-projetos.jpg");
}

.hero-personalizacoes {
  background-image:
    radial-gradient(circle at 74% 28%, rgba(94, 175, 168, 0.2), transparent 30%),
    linear-gradient(135deg, rgba(8, 10, 9, 0.74), rgba(18, 24, 21, 0.54)),
    url("../img/hero-personalizacoes.jpg");
}

.hero-contato {
  background-image:
    radial-gradient(circle at 74% 28%, rgba(94, 175, 168, 0.14), transparent 30%),
    linear-gradient(90deg, rgba(8, 10, 9, 0.64), rgba(8, 10, 9, 0.42) 48%, rgba(8, 10, 9, 0.16)),
    url("../img/hero-contato.jpg");
}

.hero {
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: end;
}

.page-hero {
  padding: 92px 0 78px;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(0deg, rgba(8, 10, 9, 0.96), transparent);
}

.hero-home::after {
  background: linear-gradient(0deg, rgba(8, 10, 9, 0.62), transparent);
}

.hero-contato::after {
  background: linear-gradient(0deg, rgba(8, 10, 9, 0.62), transparent);
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-content,
.page-hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  padding: 110px 0 64px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-2);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0;
  color: inherit;
  font-family: "Marcellus", Georgia, serif;
  font-weight: 400;
  line-height: 1.06;
}

h1 {
  max-width: 860px;
  margin-top: 18px;
  font-size: clamp(42px, 7vw, 86px);
}

.page-hero h1 {
  font-size: clamp(38px, 6vw, 68px);
}

.eyebrow + h2 {
  margin-top: 16px;
}

.lead {
  max-width: 710px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.hero-home .lead {
  color: rgba(255, 255, 255, 0.82);
}

.hero-home .eyebrow {
  color: var(--green-2);
}

.hero-home .btn-secondary {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 18px 38px rgba(74, 158, 152, 0.28);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}

.section {
  padding: 92px 0;
}

.section.dark {
  color: var(--white);
  background:
    radial-gradient(circle at 15% 10%, rgba(74, 158, 152, 0.2), transparent 28%),
    linear-gradient(135deg, var(--black), #141816);
}

.section.alt {
  background: var(--white);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 42px;
}

.section-title {
  max-width: 680px;
}

.section-title h2 {
  margin-top: 12px;
  font-size: clamp(32px, 5vw, 56px);
}

.section-title p,
.muted {
  color: #69716c;
}

.dark .section-title p,
.dark .muted {
  color: rgba(255, 255, 255, 0.68);
}

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

.pillar-card,
.service-card,
.project-card,
.contact-card,
.quote-panel {
  border: 1px solid rgba(8, 10, 9, 0.1);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 48px rgba(8, 10, 9, 0.08);
}

.dark .pillar-card,
.dark .service-card,
.dark .project-card,
.dark .contact-card,
.dark .quote-panel {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.pillar-card,
.service-card,
.contact-card,
.quote-panel {
  padding: 28px;
}

.service-card {
  overflow: hidden;
}

.service-media {
  width: calc(100% + 56px);
  max-width: none;
  height: 190px;
  margin: -28px -28px 24px;
  object-fit: cover;
}

.service-card .service-media {
  height: 220px;
}
.home-electric-media {
  object-position: center bottom;
}
.home-paint-media {
  object-position: center center;
}

.icon-badge {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--white);
  background: var(--green);
}

.pillar-card-head,
.service-card-head,
.contact-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.pillar-card-head .icon-badge,
.service-card-head .icon-badge,
.contact-card-head .icon-badge {
  flex: 0 0 auto;
  margin-bottom: 0;
}

.pillar-card-head h3,
.service-card-head h3,
.contact-card-head h3 {
  margin: 0;
}

.icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
}

.pillar-card h3,
.service-card h3,
.project-card h3,
.contact-card h3 {
  font-size: 25px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
}

.media-frame {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(74, 158, 152, 0.8), rgba(8, 10, 9, 0.7)),
    url("../img/materia-grupo-ochigame.jpeg");
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.media-frame.warm {
  background:
    linear-gradient(135deg, rgba(8, 10, 9, 0.34), rgba(8, 10, 9, 0.16)),
    url("../img/servicos-equipe.jpg");
  background-size: cover;
  background-position: center;
}

.media-frame.founders-frame {
  background:
    linear-gradient(135deg, rgba(8, 10, 9, 0.24), rgba(74, 158, 152, 0.22)),
    url("../img/placeholder-casal.jpg");
  background-size: cover;
  background-position: center;
}
.media-frame.home-founders-frame {
  background:
    linear-gradient(135deg, rgba(8, 10, 9, 0.22), rgba(74, 158, 152, 0.16)),
    url("../img/home-fundadores.jpg");
  background-size: cover;
  background-position: center;
}
.media-frame.empresa-founders-frame {
  background:
    linear-gradient(135deg, rgba(8, 10, 9, 0.22), rgba(74, 158, 152, 0.16)),
    url("../img/empresa-fundadores.jpg");
  background-size: cover;
  background-position: center;
}

.contact-location {
  margin-top: 28px;
}

.map-frame {
  min-height: 470px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 470px;
  display: block;
  border: 0;
}

.media-label {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(8, 10, 9, 0.62);
  color: var(--white);
  text-align: center;
  backdrop-filter: blur(12px);
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #39413c;
}

.dark .feature-list li {
  color: rgba(255, 255, 255, 0.76);
}

.feature-list .icon {
  color: var(--green);
  flex: 0 0 auto;
  margin-top: 3px;
}

.industrial-highlight {
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  align-items: center;
  gap: 34px;
  padding: 34px;
  border: 1px solid rgba(8, 10, 9, 0.1);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(8, 10, 9, 0.08);
}

.industrial-highlight h2 {
  margin-top: 12px;
  font-size: clamp(30px, 4vw, 46px);
}

.industrial-highlight .feature-list {
  margin: 0;
}

.services-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

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

.project-card {
  overflow: hidden;
  background: var(--white);
}

.project-media {
  min-height: 260px;
  background:
    linear-gradient(135deg, rgba(8, 10, 9, 0.18), rgba(74, 158, 152, 0.32)),
    url("../img/materia-grupo-ochigame.jpeg");
  background-size: cover;
  background-position: center;
}


.project-card:nth-child(1) .project-media {
  background:
    linear-gradient(135deg, rgba(8, 10, 9, 0.12), rgba(74, 158, 152, 0.10)),
    url("../img/projeto-acabamento-residencial.jpg");
  background-size: cover;
  background-position: center 18%;
}
.project-card:nth-child(2) .project-media {
  background:
    linear-gradient(135deg, rgba(8, 10, 9, 0.10), rgba(74, 158, 152, 0.10)),
    url("../img/projeto-personalizacao-aplicada.jpg");
  background-size: cover;
  background-position: center 42%;
}

.project-card:nth-child(3) .project-media {
  background:
    linear-gradient(135deg, rgba(8, 10, 9, 0.12), rgba(74, 158, 152, 0.12)),
    url("../img/projeto-ambiente-comercial.jpg");
  background-size: cover;
  background-position: center 22%;
}

.project-card:nth-child(4) .project-media {
  background:
    linear-gradient(135deg, rgba(8, 10, 9, 0.10), rgba(184, 150, 107, 0.10)),
    url("../img/projeto-requalificacao-pintura.jpg");
  background-size: cover;
  background-position: center;
}

.project-card:nth-child(5) .project-media {
  background:
    linear-gradient(135deg, rgba(8, 10, 9, 0.12), rgba(184, 150, 107, 0.12)),
    url("../img/projeto-detalhes-especiais.jpg");
  background-size: cover;
  background-position: center 38%;
}
.project-card:nth-child(6) .project-media {
  background:
    linear-gradient(135deg, rgba(8, 10, 9, 0.08), rgba(74, 158, 152, 0.10)),
    url("../img/projeto-infraestrutura-eletrica.jpg");
  background-size: cover;
  background-position: center 28%;
}

.home-projects-grid .project-card:nth-child(1) .project-media {
  background:
    linear-gradient(135deg, rgba(8, 10, 9, 0.06), rgba(74, 158, 152, 0.08)),
    url("../img/home-projeto-residencial-alto-padrao.jpg");
  background-size: cover;
  background-position: center 38%;
}
.home-projects-grid .project-card:nth-child(2) .project-media {
  background:
    linear-gradient(135deg, rgba(8, 10, 9, 0.08), rgba(74, 158, 152, 0.10)),
    url("../img/home-projeto-comercial-corporativo.jpg");
  background-size: cover;
  background-position: center 34%;
}
.home-projects-grid .project-card:nth-child(3) .project-media {
  background:
    linear-gradient(135deg, rgba(8, 10, 9, 0.08), rgba(74, 158, 152, 0.10)),
    url("../img/home-projeto-comercial-pilates.jpg");
  background-size: cover;
  background-position: center 36%;
}

.project-body {
  padding: 24px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: -38px;
  position: relative;
  z-index: 2;
}

.stat {
  padding: 26px;
  color: var(--white);
  background: var(--graphite);
  border-top: 3px solid var(--green);
}

.stat strong {
  display: block;
  font-family: "Marcellus", Georgia, serif;
  font-size: 40px;
  font-weight: 400;
}

.quote-panel {
  position: relative;
}

.quote-panel p {
  margin: 0;
  font-family: "Marcellus", Georgia, serif;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.18;
}

.quote-panel span {
  display: block;
  margin-top: 20px;
  color: var(--green-2);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
}

.split-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.split-band > div {
  padding: 76px min(7vw, 84px);
}

.split-band .image-side {
  background:
    linear-gradient(135deg, rgba(8, 10, 9, 0.28), rgba(74, 158, 152, 0.22)),
    url("../img/personalizacao-metalicos.jpg");
  background-size: cover;
  background-position: center;
}

.cta {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 10, 9, 0.82), rgba(18, 24, 21, 0.66)),
    url("../img/cta-projeto.jpg");
  background-size: cover;
  background-position: center;
}

.contact-card a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  color: var(--green);
  font-weight: 800;
}

.site-footer {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
  background: var(--black);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 38px;
  padding: 58px 0;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.footer-brand img {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  object-fit: contain;
}

.footer-brand .brand-name {
  color: var(--white);
}

.footer-brand .brand-name strong {
  color: var(--white);
}

.footer-grid h3,
.footer-grid h4 {
  color: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-contact {
  display: grid;
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
}

.footer-contact-item .icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--green-2);
}

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

.footer-wa-logo {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 14px;
  width: 48px;
  height: auto;
  opacity: 0.5;
  filter: brightness(0) invert(1);
}

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

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

@media (max-width: 960px) {
  .site-footer {
    display: flex;
    flex-direction: column;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 78px;
    display: none;
    padding: 14px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(8, 10, 9, 0.1);
  }

  .nav-links.open {
    display: grid;
  }

  .pillars,
  .services-grid,
  .projects-grid,
  .contact-grid,
  .stats,
  .industrial-highlight,
  .grid-2,
  .split-band,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-wa-logo {
    position: static;
    order: 3;
    width: 48px;
    margin: 18px 16px 18px auto;
  }

  .footer-bottom {
    order: 2;
  }

  .section-head {
    display: block;
  }

  .media-frame {
    min-height: 360px;
  }
}

@media (max-width: 620px) {
  .brand-text small {
    display: block;
    font-size: 9px;
    letter-spacing: 0.03em;
  }

  .brand-name {
    font-size: 13px;
    gap: 5px;
    letter-spacing: 0.12em;
  }

  .brand-name strong {
    font-size: inherit;
    letter-spacing: inherit;
  }

  .hero {
    min-height: 760px;
  }

  .hero-home {
    min-height: 640px;
    align-items: center;
  }

  .section,
  .page-hero {
    padding: 64px 0;
  }

  .hero-content {
    padding: 74px 0 48px;
  }

  .hero-home .hero-content {
    padding: 28px 0 40px;
  }

  .split-band > div {
    padding: 56px 24px;
  }
}
