/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-900: #1a1a1a;
  --green-800: #242424;
  --green-700: #333333;
  --green-600: #D95F0E;
  --green-500: #C4550C;
  --green-400: #E8762A;
  --green-300: #EE9A60;
  --green-100: #E8E8E8;
  --green-50:  #F9F9F9;
  --white: #ffffff;
  --gray-50:  #F7F7F7;
  --gray-100: #EFEFEF;
  --gray-200: #DEDEDE;
  --gray-400: #9A9A9A;
  --gray-600: #5E5E5E;
  --gray-800: #3A3A3A;
  --text:     #1A1A1A;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 4px rgba(0,0,0,.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.14);

  --font: 'Inter', system-ui, sans-serif;
  --transition: .25s ease;

  /* Verde Grupo Alves do Prado */
  --brand-green: #1e5c3e;
  --brand-green-light: #d4eddf;
  --brand-green-50: #edf7f1;
  --brand-green-300: #52b37f;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== SECTION ===== */
.section { padding: 96px 0; }
.section--dark { background: var(--green-800); }

.section__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand-green);
  background: var(--brand-green-50);
  border: 1px solid var(--brand-green-light);
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.section__tag--light {
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.20);
}

.section__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
}
.section__title--light { color: var(--white); }

.section__desc { margin-top: 14px; color: var(--gray-600); font-size: 17px; }
.section__desc--light { color: rgba(255,255,255,.7); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--green-600);
  color: var(--white);
}
.btn--primary:hover { background: var(--green-500); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.45);
}
.btn--outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.8); }

.btn--large { padding: 18px 36px; font-size: 16px; }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(50, 50, 50, .97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(40, 40, 40, 1);
  box-shadow: var(--shadow-md);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.header__logo { display: flex; align-items: center; }
.header__logo-img { height: 36px; width: auto; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav__link {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  transition: var(--transition);
}
.nav__link:hover { color: var(--white); background: rgba(255,255,255,.08); }
.nav__link--cta {
  background: var(--green-600);
  color: var(--white) !important;
  margin-left: 8px;
}
.nav__link--cta:hover { background: var(--green-500); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--green-900);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('hero-bg.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.28) saturate(0.5);
  z-index: 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(110,40,0,.70) 0%, rgba(60,16,0,.52) 55%, rgba(15,4,0,.26) 100%);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--white));
  z-index: 3;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 60px;
  padding-top: 40px;
  padding-bottom: 80px;
  width: 100%;
}

.hero__content {
  flex: 0 0 auto;
  max-width: 560px;
}

.hero__photos {
  flex: 1;
  min-width: 0;
}

.hero__photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero__photo-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 190px;
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(135deg, var(--green-800), var(--green-600));
}

.hero__photo-item:first-child {
  margin-top: 28px;
}

.hero__photo-item:nth-child(2) {
  margin-top: -28px;
}

.hero__photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  font-size: 0;
}

.hero__photo-item span {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 12px 10px;
  background: linear-gradient(to top, rgba(0,0,0,.65), transparent);
  color: white;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.hero__tag-wrap {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.hero__tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,.55);
  background: rgba(255,255,255,.10);
  padding: 8px 18px;
  border-radius: 999px;
}
.hero__tag-logo {
  height: 32px;
  width: auto;
}

.hero__title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -.02em;
}

.hero__subtitle {
  margin-top: 20px;
  font-size: 20px;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
}

.hero__actions {
  margin-top: 40px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero__scroll span {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.4));
  margin: 0 auto;
  animation: scrollLine 2s ease infinite;
}
@keyframes scrollLine {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: top; }
}

/* ===== SOBRE ===== */
.sobre__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
}

.sobre__text p {
  margin-top: 20px;
  color: var(--gray-600);
  font-size: 16px;
  line-height: 1.7;
}

.sobre__stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
}
.stat strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--green-600);
}
.stat span {
  font-size: 13px;
  color: var(--gray-600);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.sobre__logo-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  min-width: 260px;
}
.sobre__logo { width: 180px; }
.sobre__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 16px 0;
  border-top: 1px solid var(--green-100);
  border-bottom: 1px solid var(--green-100);
  width: 100%;
  text-align: center;
}
.sobre__badge-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 14px;
}
.sobre__badge-img {
  height: 36px;
  width: auto;
}

.sobre__segmentos {
  list-style: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sobre__segmentos li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-800);
}
.sobre__segmentos li svg {
  width: 18px;
  height: 18px;
  color: var(--green-500);
  flex-shrink: 0;
}

/* ===== PRODUTOS ===== */
.produtos__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.produto-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: var(--transition);
  cursor: default;
}
.produto-card:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(82, 179, 127, .4);
  transform: translateY(-4px);
}

.produto-card__icon {
  width: 44px;
  height: 44px;
  color: var(--green-300);
  flex-shrink: 0;
}
.produto-card__icon svg { width: 100%; height: 100%; }

.produto-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
}

.produto-card p {
  font-size: 13.5px;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
  flex: 1;
}

.produto-card__tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.produto-card__tags li {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--green-300);
  background: rgba(217,95,14,.12);
  border: 1px solid rgba(217,95,14,.25);
  padding: 3px 10px;
  border-radius: 999px;
}

/* ===== UNIDADES ===== */
.unidades__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.unidade-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.unidade-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--green-300);
  transform: translateY(-4px);
}

.unidade-card__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center;
  display: block;
  background: linear-gradient(135deg, var(--green-800) 0%, var(--green-600) 60%, var(--green-400) 100%);
  color: transparent;
  font-size: 0;
}
.unidade-card__img-placeholder {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, var(--green-800) 0%, var(--green-600) 60%, var(--green-400) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.18);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.unidade-card__body {
  padding: 28px 28px 28px;
}

.unidade-card__body {
  padding: 24px 28px 28px;
}

.unidade-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--gray-100);
}

.unidade-card__icon {
  width: 40px;
  height: 40px;
  background: var(--green-50);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-600);
  flex-shrink: 0;
}
.unidade-card__icon svg { width: 20px; height: 20px; }

.unidade-card__title {
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
}

.unidade-card__info {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.unidade-card__info li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.5;
}
.unidade-card__info li svg {
  width: 16px;
  height: 16px;
  color: var(--green-500);
  flex-shrink: 0;
  margin-top: 2px;
}
.unidade-card__info li a {
  color: var(--green-600);
  font-weight: 600;
  transition: var(--transition);
}
.unidade-card__info li a:hover { color: var(--green-500); }

.unidade-card__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.btn-unit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
  flex: 1;
  justify-content: center;
  min-width: 0;
}
.btn-unit svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-unit--whatsapp {
  background: #25d366;
  color: var(--white);
}
.btn-unit--whatsapp:hover { background: #20bd5a; transform: translateY(-1px); }

.btn-unit--maps {
  background: var(--green-50);
  color: var(--green-700);
  border: 1px solid var(--green-100);
}
.btn-unit--maps:hover { background: var(--green-100); }

.btn-unit--instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
  color: var(--white);
}
.btn-unit--instagram:hover { opacity: .9; transform: translateY(-1px); }

/* ===== CONTATO ===== */
.contato {
  background: linear-gradient(135deg, var(--green-800), var(--green-700));
  border-top: 3px solid var(--green-600);
}
.contato__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.contato__desc {
  margin-top: 16px;
  color: rgba(255,255,255,.65);
  font-size: 16px;
  max-width: 500px;
  line-height: 1.7;
}
.contato__horario {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: rgba(255,255,255,.65);
  font-size: 14px;
  font-weight: 500;
}
.contato__horario svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ===== FOOTER ===== */
.footer {
  background: var(--green-900);
  padding-top: 72px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer__brand p {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
}
.footer__logo { height: 40px; width: auto; }

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links strong {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  transition: var(--transition);
}
.footer__links a:hover { color: var(--green-300); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 20px 0;
}
.footer__bottom span {
  font-size: 13px;
  color: rgba(255,255,255,.3);
}

/* ===== MUNICÍPIOS ===== */
.municipios-toggle {
  width: 100%;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green-700);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  transition: var(--transition);
}
.municipios-toggle:hover { background: var(--green-100); }
.municipios-toggle svg {
  width: 16px;
  height: 16px;
  transition: transform .25s ease;
  flex-shrink: 0;
}
.municipios-toggle.open svg { transform: rotate(180deg); }

.municipios-list {
  display: none;
  padding: 14px 0 4px;
}
.municipios-list.open { display: block; }

.municipios-list__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 12px;
}
.municipios-list__grid li {
  font-size: 12.5px;
  color: var(--gray-600);
  padding: 3px 0;
  border-bottom: 1px solid var(--gray-100);
  list-style: none;
}
.municipios-list__count {
  font-size: 11px;
  color: var(--gray-400);
  font-weight: 500;
}

/* ===== DIFERENCIAIS ===== */
.diferenciais {
  background: var(--gray-50);
  padding: 96px 0;
  border-bottom: 1px solid var(--gray-200);
}
.diferenciais__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.diferencial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--transition);
}
.diferencial-card:hover {
  border-color: var(--green-300);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.diferencial-card__icon {
  width: 44px; height: 44px;
  background: rgba(217,95,14,.09);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-600);
  flex-shrink: 0;
}
.diferencial-card__icon svg { width: 22px; height: 22px; }
.diferencial-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.diferencial-card p {
  font-size: 13.5px;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

/* ===== RECURSOS TÉCNICOS ===== */
.recursos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.recurso-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.recurso-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--green-300);
  transform: translateY(-3px);
}
.recurso-card__icon {
  width: 48px; height: 48px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-600);
}
.recurso-card__icon svg { width: 22px; height: 22px; }
.recurso-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}
.recurso-card > p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  flex: 1;
  margin: 0;
}
.recurso-normas {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.recurso-normas li {
  font-size: 13px;
  color: var(--gray-600);
  display: flex;
  align-items: baseline;
  gap: 8px;
  line-height: 1.4;
}
.recurso-normas li span {
  font-weight: 700;
  font-size: 11px;
  color: var(--green-600);
  background: rgba(217,95,14,.10);
  border: 1px solid rgba(217,95,14,.20);
  padding: 2px 8px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ===== FORMULÁRIO DE ORÇAMENTO ===== */
.orcamento__wrap {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}
.orcamento__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  letter-spacing: .05em;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 14px;
  color: var(--white);
  font-family: var(--font);
  transition: border-color .2s ease, background .2s ease;
  outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.30); }
.form-group select option { background: #2a2a2a; color: var(--white); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-500);
  background: rgba(255,255,255,.11);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-submit { width: 100%; justify-content: center; margin-top: 6px; gap: 10px; }

.orcamento__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 28px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius-lg);
}
.orcamento__info-intro {
  font-size: 14px;
  color: rgba(255,255,255,.70);
  line-height: 1.65;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 4px;
}
.orcamento__info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.orcamento__info-item svg {
  width: 20px; height: 20px;
  color: var(--green-400);
  flex-shrink: 0;
  margin-top: 2px;
}
.orcamento__info-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}
.orcamento__info-item span {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  line-height: 1.4;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .diferenciais__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .diferenciais__grid { grid-template-columns: repeat(2, 1fr); }
  .recursos__grid { grid-template-columns: 1fr; }
  .orcamento__wrap { grid-template-columns: 1fr; }
  .sobre__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .sobre__logo-block {
    flex-direction: column;
    min-width: unset;
    width: 100%;
    padding: 32px 24px;
    box-sizing: border-box;
  }
  .sobre__segmentos {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }
  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .diferenciais__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .container { padding: 0 16px; }

  .nav {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--green-900);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    border-top: 1px solid rgba(255,255,255,.08);
    box-shadow: var(--shadow-lg);
  }
  .nav.open { display: flex; }
  .nav__link { width: 100%; padding: 12px 16px; font-size: 16px; }
  .nav__link--cta { margin-left: 0; margin-top: 8px; justify-content: center; }
  .nav__burger { display: flex; }

  /* HERO */
  .hero__inner { flex-direction: column; gap: 32px; padding-top: 80px; padding-bottom: 64px; }
  .hero__content { max-width: 100%; }
  .hero__tag-wrap { margin-bottom: 16px; }
  .hero__tag { font-size: 11px; padding: 5px 12px; }
  .hero__tag-logo { height: 22px; }
  .hero__arcelor-logo { height: 34px; margin-bottom: 20px; }
  .hero__title { font-size: 30px; }
  .hero__subtitle { font-size: 16px; margin-top: 14px; }
  .hero__actions { margin-top: 28px; flex-direction: column; gap: 10px; }
  .hero__actions .btn { width: 100%; justify-content: center; text-align: center; }
  .hero__photos { display: none; }

  /* UNIDADES */
  .unidades__grid { grid-template-columns: 1fr; }
  .unidade-card__actions { flex-direction: column; }
  .btn-unit { flex: unset; width: 100%; }

  /* SOBRE */
  .sobre__stats { flex-direction: column; gap: 20px; }

  /* CONTATO */
  .contato__inner { flex-direction: column; align-items: flex-start; }

  /* FOOTER */
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__brand { grid-column: unset; }
}

@media (max-width: 480px) {
  .section { padding: 48px 0; }
  .produtos__grid { grid-template-columns: repeat(2, 1fr); }
  .sobre__stats { gap: 16px; }
  .hero__title { font-size: 28px; }
  .hero__subtitle { font-size: 15px; }
}
