/* ==========================================================================
   MONSEG — Design System
   ========================================================================== */

:root{
  --orange: #F2661B;
  --orange-dark: #D6540F;
  --ink: #14171C;
  --ink-2: #1C2027;
  --gray-900: #1A1D21;
  --gray-700: #4B525C;
  --gray-500: #6B7280;
  --gray-300: #D7DAE0;
  --gray-100: #F5F6F8;
  --white: #FFFFFF;
  --radius: 10px;
  --radius-lg: 16px;
  --container: 1240px;
  --shadow: 0 10px 30px rgba(20,23,28,.08);
  --ff: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0; font-family:var(--ff); color:var(--gray-900);
  background:var(--white); line-height:1.5; -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
button{ font-family:inherit; cursor:pointer; }
h1,h2,h3,h4{ margin:0; font-weight:800; letter-spacing:-.01em; line-height:1.15; }
p{ margin:0; }

.container{ max-width:var(--container); margin:0 auto; padding:0 24px; }

/* Base icon size — specific contexts below override this via higher-specificity selectors. */
.ic, svg.ic{ width:22px; height:22px; flex:none; display:inline-block; vertical-align:middle; }
.stats-bar .stat > .ic{ width:30px; height:30px; }
.project-card .more .ic{ width:15px; height:15px; }
.case-metrics .ic{ width:22px; height:22px; }

/* Buttons ---------------------------------------------------------------- */
.btn{
  display:inline-flex; align-items:center; gap:8px; padding:14px 24px;
  border-radius:8px; font-weight:700; font-size:15px; border:1.5px solid transparent;
  white-space:nowrap; transition:.15s ease;
}
.btn-primary{ background:var(--orange); color:var(--white); }
.btn-primary:hover{ background:var(--orange-dark); }
.btn-outline-dark{ border-color:rgba(255,255,255,.35); color:var(--white); }
.btn-outline-dark:hover{ border-color:#fff; background:rgba(255,255,255,.06); }
.btn-outline-light{ border-color:var(--gray-300); color:var(--gray-900); }
.btn-outline-light:hover{ border-color:var(--gray-900); }
.btn svg{ width:16px; height:16px; flex:none; }

/* Eyebrow / kicker -------------------------------------------------------- */
.eyebrow{
  display:flex; align-items:center; gap:10px; color:var(--orange);
  font-weight:800; font-size:12.5px; letter-spacing:.14em; text-transform:uppercase;
  margin-bottom:14px;
}
.eyebrow::before{ content:""; width:22px; height:2px; background:var(--orange); flex:none; }
.eyebrow.on-dark{ color:var(--orange); }

.section-head{ max-width:640px; margin-bottom:40px; }
.section-head h2{ font-size:clamp(24px,3vw,34px); color:var(--gray-900); }
.section-head p{ margin-top:14px; color:var(--gray-500); font-size:16px; }
.section-head .accent{ color:var(--orange); }

.section{ padding:76px 0; }
.section.bg-alt{ background:var(--gray-100); }
.section.bg-dark{ background:var(--ink); color:var(--white); }
.section.bg-dark .section-head p{ color:#9CA3AF; }
.section.bg-dark h2{ color:var(--white); }

/* Header ------------------------------------------------------------------ */
.site-header{
  position:sticky; top:0; z-index:100; background:var(--ink);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.site-header .inner{
  display:flex; align-items:center; justify-content:space-between;
  height:78px; gap:24px;
}
.brand{ display:flex; flex-direction:column; line-height:1; flex:none; }
.brand .brand-name{ font-size:21px; font-weight:900; color:#fff; letter-spacing:.01em; }
.brand .brand-name span{ color:var(--orange); }
.brand .brand-tag{ font-size:9px; letter-spacing:.18em; color:#9CA3AF; margin-top:4px; text-transform:uppercase; }

.main-nav{ display:flex; align-items:center; gap:28px; flex:1; justify-content:center; }
.main-nav a{
  color:#D7DAE0; font-size:14.5px; font-weight:600; padding:8px 2px;
  border-bottom:2px solid transparent; white-space:nowrap;
}
.main-nav a:hover, .main-nav a.is-active{ color:#fff; border-color:var(--orange); }
.main-nav .has-children{ position:relative; }
.submenu{
  display:none; position:absolute; top:100%; left:0; background:var(--ink-2);
  border:1px solid rgba(255,255,255,.08); border-radius:8px; padding:8px; min-width:200px;
  box-shadow:var(--shadow);
}
.has-children:hover .submenu{ display:block; }
.submenu a{ display:block; padding:9px 12px; border:none; border-radius:6px; }
.submenu a:hover{ background:rgba(255,255,255,.06); }

.header-cta{ display:flex; align-items:center; gap:16px; flex:none; }
.header-cta .btn{ padding:12px 18px; font-size:14px; }
.header-search{ width:18px; height:18px; color:#D7DAE0; }
.nav-toggle{ display:none; background:none; border:0; color:#fff; }

/* Hero ---------------------------------------------------------------------*/
.hero{
  position:relative; color:#fff; overflow:hidden;
  background:linear-gradient(120deg,#0E1013 0%,#181B20 55%,#20242B 100%);
  min-height:560px; display:flex; align-items:stretch;
}
.hero::after{
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(ellipse 60% 90% at 82% 30%, rgba(242,102,27,.16), transparent 60%),
    linear-gradient(100deg, rgba(10,11,13,.94) 0%, rgba(10,11,13,.72) 42%, rgba(10,11,13,.25) 68%, rgba(10,11,13,.55) 100%);
  pointer-events:none;
}
.hero .hero-scene{
  position:absolute; inset:0; z-index:0;
}
.hero .hero-scene svg{ width:100%; height:100%; }
.hero .inner{
  position:relative; z-index:1; display:flex; width:100%;
  padding:76px 24px 56px; max-width:var(--container); margin:0 auto; gap:40px;
}
.hero-content{ max-width:620px; }
.hero-content h1{ font-size:clamp(30px,4.2vw,46px); color:#fff; }
.hero-content h1 .accent{ color:var(--orange); }
.hero-content p{ margin-top:18px; font-size:17px; color:#C7CBD2; max-width:520px; }
.hero-actions{ display:flex; gap:14px; margin-top:30px; flex-wrap:wrap; }
.hero-features{ display:flex; gap:32px; margin-top:44px; flex-wrap:wrap; }
.hero-feature{ display:flex; align-items:center; gap:10px; font-size:13.5px; font-weight:700; color:#E5E7EB; }
.hero-feature .ic{ width:20px; height:20px; color:var(--orange); flex:none; }

.hero-side{
  position:relative; margin-left:auto; display:flex; flex-direction:column;
  align-items:flex-end; justify-content:space-between; min-width:220px; text-align:right;
}
.hero-side .badge{ font-weight:900; font-size:18px; letter-spacing:.02em; }
.hero-side .badge span{ color:var(--orange); }
.hero-side .badge small{ display:block; font-size:9px; letter-spacing:.16em; color:#9CA3AF; font-weight:700; margin-top:4px; }
.hero-side .taglist{ font-size:11px; letter-spacing:.1em; color:#9CA3AF; line-height:1.9; text-transform:uppercase; margin-top:auto; }
.hero-side .taglist b{ color:#fff; }

/* Card grids ----------------------------------------------------------------*/
.grid{ display:grid; gap:20px; }
.grid-2{ grid-template-columns:repeat(2,1fr); }
.grid-3{ grid-template-columns:repeat(3,1fr); }
.grid-4{ grid-template-columns:repeat(4,1fr); }
.grid-5{ grid-template-columns:repeat(5,1fr); }
.grid-6{ grid-template-columns:repeat(6,1fr); }

.split-head{ display:flex; gap:40px; align-items:flex-start; margin-bottom:44px; flex-wrap:wrap; }
.split-head .section-head{ margin-bottom:0; flex:1 1 340px; }
.split-head .grid{ flex:1 1 520px; }

.icon-card{
  background:var(--white); border:1px solid var(--gray-300); border-radius:var(--radius);
  padding:22px; transition:.15s;
}
.bg-alt .icon-card, .bg-dark .icon-card{ background:var(--white); }
.icon-card:hover{ box-shadow:var(--shadow); transform:translateY(-2px); }
.icon-card .ic{
  width:34px; height:34px; color:var(--ink); margin-bottom:14px;
}
.icon-card h4{ font-size:15px; margin-bottom:6px; }
.icon-card p{ font-size:13.5px; color:var(--gray-500); line-height:1.5; }
.icon-card a.more{ display:inline-flex; align-items:center; gap:6px; margin-top:10px; color:var(--orange); font-weight:700; font-size:13.5px; }

.feature-row{ display:flex; gap:36px; flex-wrap:wrap; margin-top:8px; }
.feature-item{ display:flex; align-items:flex-start; gap:12px; flex:1 1 220px; }
.feature-item .ic{ width:26px; height:26px; color:var(--orange); flex:none; margin-top:2px; }
.feature-item h4{ font-size:15px; margin-bottom:4px; }
.feature-item p{ font-size:13.5px; color:var(--gray-500); }
.bg-dark .feature-item p{ color:#9CA3AF; }
.bg-dark .feature-item h4{ color:#fff; }

/* Segment tiles (Empresas/Condomínios/Indústrias/Residências) --------------*/
.tile{
  position:relative; border-radius:var(--radius); overflow:hidden; min-height:190px;
  display:flex; flex-direction:column; align-items:flex-start; justify-content:flex-end;
  padding:22px; color:#fff;
  background:linear-gradient(160deg,#20242B,#0E1013);
}
.tile::after{ content:""; position:absolute; inset:0; background:linear-gradient(0deg,rgba(0,0,0,.72),rgba(0,0,0,.15)); }
.tile > *{ position:relative; z-index:1; }
.tile .ic{ width:26px; height:26px; color:var(--orange); margin-bottom:10px; }
.tile h4{ font-size:17px; }
.tile p{ font-size:13px; color:#D7DAE0; margin-top:4px; }
.tile .arrow{ position:absolute; z-index:1; right:20px; top:20px; color:var(--orange); }

/* Stats bar ------------------------------------------------------------------*/
.stats-bar{
  display:flex; gap:0; border-radius:var(--radius-lg); overflow:hidden; background:var(--ink);
  flex-wrap:wrap;
}
.stats-bar .stat{
  flex:1 1 200px; padding:26px 24px; border-right:1px solid rgba(255,255,255,.08);
  color:#fff; display:flex; align-items:center; gap:14px;
}
.stats-bar .stat:last-child{ border-right:none; }
.stats-bar .stat .num{ font-size:26px; font-weight:900; color:var(--orange); }
.stats-bar .stat .lbl{ font-size:12.5px; color:#9CA3AF; margin-top:2px; }
.stats-bar.on-light{ background:var(--gray-100); }
.stats-bar.on-light .stat{ color:var(--gray-900); border-right-color:var(--gray-300); }
.stats-bar.on-light .stat .lbl{ color:var(--gray-500); }

/* Case / featured project ---------------------------------------------------*/
.case{
  background:var(--ink); border-radius:var(--radius-lg); overflow:hidden;
  display:grid; grid-template-columns:1fr 1fr; align-items:stretch; color:#fff;
}
.case-media{
  position:relative; min-height:260px;
  background:linear-gradient(160deg,#242830,#0E1013);
}
.case-media .tag{
  position:absolute; top:20px; left:20px; background:rgba(0,0,0,.5); backdrop-filter:blur(4px);
  padding:6px 12px; border-radius:6px; font-size:11px; letter-spacing:.08em; text-transform:uppercase; font-weight:700;
}
.case-media h5{ position:absolute; bottom:20px; left:20px; right:20px; font-size:22px; }
.case-body{ padding:32px; display:flex; flex-direction:column; gap:18px; justify-content:center; }
.case-body .eyebrow{ margin-bottom:0; }
.case-row{ display:flex; gap:28px; flex-wrap:wrap; }
.case-col{ flex:1 1 140px; }
.case-col .ic{ width:20px; height:20px; color:var(--orange); margin-bottom:8px; }
.case-col h5{ font-size:12.5px; text-transform:uppercase; letter-spacing:.06em; color:#9CA3AF; margin-bottom:6px; font-weight:800; }
.case-col p{ font-size:14px; color:#E5E7EB; }
.case-metrics{ display:flex; gap:32px; flex-wrap:wrap; }
.case-metrics .m .num{ font-size:24px; font-weight:900; color:var(--orange); }
.case-metrics .m .lbl{ font-size:12px; color:#9CA3AF; margin-top:2px; }

.case.light{ background:var(--gray-100); color:var(--gray-900); }
.case.light .case-col h5{ color:var(--gray-500); }
.case.light .case-col p{ color:var(--gray-700); }
.check-list{ margin-top:6px; }
.check-list li{ display:flex; align-items:center; gap:10px; padding:10px 0; font-size:14.5px; font-weight:600; border-top:1px solid var(--gray-300); }
.check-list li:first-child{ border-top:none; }
.check-list .ic{ width:20px; height:20px; color:var(--orange); flex:none; }

/* Project cards (Projetos page) ---------------------------------------------*/
.project-card{ background:#fff; border:1px solid var(--gray-300); border-radius:var(--radius); overflow:hidden; }
.project-card .thumb{ height:150px; background:linear-gradient(160deg,#20242B,#0E1013); }
.project-card .body{ padding:20px; }
.project-card .kicker{ display:flex; align-items:center; gap:8px; font-weight:800; font-size:14.5px; margin-bottom:2px; }
.project-card .kicker .ic{ width:18px; height:18px; color:var(--ink); }
.project-card .sub{ font-size:12.5px; color:var(--gray-500); margin-bottom:14px; }
.project-card dl{ margin:0 0 12px; }
.project-card dt{ font-size:11px; text-transform:uppercase; letter-spacing:.06em; color:var(--gray-500); font-weight:800; }
.project-card dd{ margin:2px 0 10px; font-size:13px; color:var(--gray-700); }
.project-card .more{ color:var(--orange); font-weight:700; font-size:13.5px; }

/* SLA number strip -------------------------------------------------------------*/
.sla-strip{ display:flex; gap:0; flex-wrap:wrap; }
.sla-strip .sla{ flex:1 1 150px; text-align:left; padding:18px 24px 18px 0; }
.sla-strip .sla .n{ font-size:34px; font-weight:900; color:var(--gray-900); }
.sla-strip .sla .l{ font-size:13px; color:var(--gray-500); margin-top:4px; }

/* Numbered process steps --------------------------------------------------------*/
.steps{ display:flex; gap:0; align-items:flex-start; flex-wrap:wrap; }
.steps .step{ flex:1 1 200px; display:flex; align-items:center; gap:14px; padding-right:20px; }
.steps .step .n{
  width:38px; height:38px; border-radius:50%; border:1.5px solid var(--gray-300); flex:none;
  display:flex; align-items:center; justify-content:center; font-weight:800; color:var(--gray-900);
}
.steps .step h5{ font-size:14.5px; margin-bottom:2px; }
.steps .step p{ font-size:12.5px; color:var(--gray-500); }
.steps .arrow-sep{ color:var(--gray-300); flex:none; align-self:center; margin:0 4px; }

/* Timeline (Sobre) ------------------------------------------------------------*/
.timeline{ display:flex; gap:0; position:relative; margin-top:12px; }
.timeline::before{ content:""; position:absolute; top:9px; left:0; right:0; height:2px; background:var(--gray-300); }
.timeline .tl-item{ flex:1; position:relative; padding-top:26px; }
.timeline .tl-item::before{
  content:""; position:absolute; top:2px; left:0; width:16px; height:16px; border-radius:50%;
  background:var(--orange); border:3px solid #fff; box-shadow:0 0 0 1px var(--gray-300);
}
.timeline .tl-item.is-now::before{ background:#fff; border-color:var(--orange); box-shadow:0 0 0 1px var(--orange); }
.timeline .yr{ font-weight:900; color:var(--gray-900); }
.timeline .yr.accent{ color:var(--orange); }
.timeline h5{ font-size:14px; margin:6px 0 4px; }
.timeline p{ font-size:12.5px; color:var(--gray-500); }

/* FAQ ---------------------------------------------------------------------------*/
.faq-search{ display:flex; gap:12px; margin-bottom:36px; }
.faq-search input{
  flex:1; padding:16px 18px; border-radius:8px; border:1.5px solid var(--gray-300); font-size:15px;
}
.faq-columns{ display:grid; grid-template-columns:repeat(3,1fr) 1fr; gap:20px; align-items:start; }
.faq-cat{ background:#fff; border:1px solid var(--gray-300); border-radius:var(--radius); padding:20px; }
.faq-cat h4{ display:flex; align-items:center; gap:10px; font-size:15.5px; margin-bottom:10px; }
.faq-cat h4 .ic{ width:20px; height:20px; color:var(--ink); }
.faq-item{ border-top:1px solid var(--gray-300); }
.faq-item:first-of-type{ border-top:none; }
.faq-item button{
  width:100%; text-align:left; background:none; border:0; padding:12px 0;
  display:flex; justify-content:space-between; gap:10px; font-size:13.5px; font-weight:700; color:var(--gray-900);
}
.faq-item .chev{ width:16px; height:16px; flex:none; transition:.2s; color:var(--gray-500); }
.faq-item.is-open .chev{ transform:rotate(180deg); }
.faq-item .answer{ display:none; padding:0 0 14px; font-size:13px; color:var(--gray-500); }
.faq-item.is-open .answer{ display:block; }
.faq-cta{
  background:var(--gray-100); border-radius:var(--radius); padding:24px; text-align:left;
}
.faq-cta .ic-lg{ width:30px; height:30px; color:var(--ink); margin-bottom:14px; }
.faq-cta h4{ font-size:16px; margin-bottom:8px; }
.faq-cta p{ font-size:13.5px; color:var(--gray-500); margin-bottom:16px; }
.faq-cta .btn{ width:100%; justify-content:center; margin-bottom:16px; }
.faq-mini{ display:flex; align-items:center; gap:10px; font-size:12.5px; color:var(--gray-700); margin-top:8px; font-weight:600; }
.faq-mini .ic{ width:16px; height:16px; color:var(--orange); }

/* Contact page ---------------------------------------------------------------------*/
.contact-grid{ display:grid; grid-template-columns:1.5fr 1fr; gap:24px; align-items:start; }
.contact-form{ background:#fff; border:1px solid var(--gray-300); border-radius:var(--radius-lg); padding:34px; }
.contact-form .eyebrow{ margin-bottom:6px; }
.contact-form h3{ font-size:24px; margin-bottom:6px; }
.contact-form > p{ color:var(--gray-500); font-size:14px; margin-bottom:26px; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:16px; }
.form-field label{ display:block; font-size:13px; font-weight:700; margin-bottom:7px; }
.form-field input, .form-field select, .form-field textarea{
  width:100%; padding:13px 14px; border:1.5px solid var(--gray-300); border-radius:8px; font-size:14px; font-family:inherit; color:var(--gray-900); background:#fff;
}
.form-field textarea{ min-height:120px; resize:vertical; }
.form-note{ font-size:12px; color:var(--gray-500); margin-top:6px; }
.contact-channels{ background:#fff; border:1px solid var(--gray-300); border-radius:var(--radius-lg); padding:30px; }
.contact-channels h3{ font-size:20px; margin-bottom:4px; }
.contact-channels > p{ font-size:13.5px; color:var(--gray-500); margin-bottom:22px; }
.channel{ display:flex; gap:14px; align-items:flex-start; padding:16px 0; border-top:1px solid var(--gray-300); }
.channel:first-of-type{ border-top:none; padding-top:0; }
.channel .ic-wrap{
  width:40px; height:40px; border-radius:8px; background:var(--gray-100); display:flex; align-items:center; justify-content:center; flex:none;
}
.channel .ic-wrap svg{ width:19px; height:19px; color:var(--ink); }
.channel h5{ font-size:14.5px; margin-bottom:2px; display:flex; align-items:center; gap:6px; }
.channel p{ font-size:13px; color:var(--gray-500); }
.channel .link-more{ color:var(--orange); font-weight:700; margin-left:auto; align-self:center; }
.privacy-note{ display:flex; gap:12px; background:var(--gray-100); border-radius:var(--radius); padding:18px; margin-top:18px; }
.privacy-note svg{ width:20px; height:20px; color:var(--gray-700); flex:none; }
.privacy-note p{ font-size:12.5px; color:var(--gray-500); }
.privacy-note strong{ display:block; color:var(--gray-900); font-size:13.5px; margin-bottom:2px; }
.form-msg{ padding:14px 16px; border-radius:8px; font-size:13.5px; font-weight:600; margin-bottom:16px; }
.form-msg.ok{ background:#E9F9EF; color:#0F7A3D; }
.form-msg.err{ background:#FDECEC; color:#B3261E; }

/* Bottom CTA banner -----------------------------------------------------------------*/
.cta-banner{ background:var(--ink); color:#fff; padding:34px 0; }
.cta-banner .inner{
  display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap;
}
.cta-banner .inner > div:first-child{ max-width:460px; flex:1 1 320px; }
.cta-banner .inner > .actions{ flex:0 0 auto; }
.cta-banner .inner > .side-note{ flex:0 0 auto; }
.cta-banner .eyebrow{ margin-bottom:6px; }
.cta-banner h3{ font-size:21px; }
.cta-banner p{ color:#9CA3AF; font-size:13.5px; margin-top:6px; }
.cta-banner .actions{ display:flex; gap:12px; align-items:center; flex-wrap:wrap; }
.cta-banner .side-note{ font-size:11px; letter-spacing:.08em; text-transform:uppercase; color:#9CA3AF; text-align:right; line-height:1.7; }
.cta-banner .side-note b{ color:#fff; display:block; }

/* Footer -------------------------------------------------------------------------------*/
.site-footer{ background:#0E1013; color:#9CA3AF; padding:50px 0 22px; }
.footer-top{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:32px; padding-bottom:36px; border-bottom:1px solid rgba(255,255,255,.08); }
.footer-brand .brand-name{ color:#fff; font-size:20px; font-weight:900; }
.footer-brand .brand-name span{ color:var(--orange); }
.footer-brand p{ font-size:13px; margin-top:12px; line-height:1.6; max-width:260px; }
.footer-social{ display:flex; gap:10px; margin-top:18px; }
.footer-social a{ width:34px; height:34px; border-radius:8px; background:rgba(255,255,255,.06); display:flex; align-items:center; justify-content:center; }
.footer-social svg{ width:16px; height:16px; }
.footer-col h5{ color:#fff; font-size:13px; text-transform:uppercase; letter-spacing:.06em; margin-bottom:16px; }
.footer-col ul li{ margin-bottom:10px; font-size:13.5px; display:flex; align-items:flex-start; gap:8px; }
.ic-sm{ width:16px; height:16px; flex:none; margin-top:2px; color:var(--orange); }
.footer-col ul li a:hover{ color:#fff; }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding-top:20px; font-size:12.5px; flex-wrap:wrap; gap:10px; }
.footer-bottom a:hover{ color:#fff; }

/* Utilities -----------------------------------------------------------------------------*/
.text-center{ text-align:center; }
.mt-0{ margin-top:0 !important; }
.accent{ color:var(--orange); }

/* Responsive -----------------------------------------------------------------------------*/
@media (max-width:980px){
  .main-nav, .header-cta .btn-outline-dark, .header-cta{ display:none; }
  .nav-toggle{ display:block; }
  .grid-4, .grid-5, .grid-6, .grid-3{ grid-template-columns:repeat(2,1fr); }
  .split-head{ flex-direction:column; }
  .hero .inner{ flex-direction:column; }
  .hero-side{ align-items:flex-start; text-align:left; margin-left:0; margin-top:30px; }
  .case{ grid-template-columns:1fr; }
  .contact-grid{ grid-template-columns:1fr; }
  .form-row{ grid-template-columns:1fr; }
  .footer-top{ grid-template-columns:1fr 1fr; }
  .faq-columns{ grid-template-columns:1fr 1fr; }
}
@media (max-width:640px){
  .grid-2, .grid-3, .grid-4, .grid-5, .grid-6{ grid-template-columns:1fr; }
  .section{ padding:52px 0; }
  .stats-bar .stat{ flex:1 1 50%; }
  .footer-top{ grid-template-columns:1fr; }
  .faq-columns{ grid-template-columns:1fr; }
  .timeline{ flex-direction:column; gap:20px; }
  .timeline::before{ display:none; }
  .cta-banner .inner{ flex-direction:column; align-items:flex-start; }
}

/* Mobile nav drawer -----------------------------------------------------------------------*/
.mobile-nav{
  display:none; position:fixed; inset:0; z-index:200; background:var(--ink); padding:24px; overflow:auto;
}
.mobile-nav.is-open{ display:block; }
.mobile-nav .close-nav{ background:none; border:0; color:#fff; float:right; }
.mobile-nav ul{ margin-top:50px; }
.mobile-nav a{ display:block; padding:14px 0; color:#fff; font-size:18px; font-weight:700; border-bottom:1px solid rgba(255,255,255,.08); }
.mobile-nav .btn{ margin-top:24px; width:100%; justify-content:center; }


/* Hero photo backgrounds --------------------------------------------------*/
.home .hero,
.page-template-template-sobre-php .hero{
	  background-image:url('https://monseg.com.br/wp-content/uploads/2026/09/image-1.png');
	  background-size:cover; background-position:center;
}
.page-template-template-empresas-php .hero{
	  background-image:url('https://monseg.com.br/wp-content/uploads/2026/09/image-2.png');
	  background-size:cover; background-position:center;
}
.page-template-template-condominios-php .hero{
	  background-image:url('https://monseg.com.br/wp-content/uploads/2026/09/image-3.png');
	  background-size:cover; background-position:center;
}
.page-template-template-industrias-php .hero{
	  background-image:url('https://monseg.com.br/wp-content/uploads/2026/09/image-4.png');
	  background-size:cover; background-position:center;
}
.page-template-template-projetos-php .hero{
	  background-image:url('https://monseg.com.br/wp-content/uploads/2026/09/image-5.png');
	  background-size:cover; background-position:center;
}
.page-template-template-residencias-php .hero{
	  background-image:url('https://monseg.com.br/wp-content/uploads/2026/09/image-6.png');
	  background-size:cover; background-position:center;
}
.page-template-template-solucoes-php .hero{
	  background-image:url('https://monseg.com.br/wp-content/uploads/2026/09/image-7.png');
	  background-size:cover; background-position:center;
}
.page-template-template-manutencao-php .hero{
	  background-image:url('https://monseg.com.br/wp-content/uploads/2026/09/image-8.png');
	  background-size:cover; background-position:center;
}
.page-template-template-duvidas-php .hero{
	  background-image:url('https://monseg.com.br/wp-content/uploads/2026/09/image-9.png');
	  background-size:cover; background-position:center;
}
.page-template-template-contato-php .hero{
	  background-image:url('https://monseg.com.br/wp-content/uploads/2026/09/image.png');
	  background-size:cover; background-position:center;
}

/* Tile photo backgrounds ---------------------------------------------------*/
a.tile[href*='empresas']{
  background-image:url('https://monseg.com.br/wp-content/uploads/2026/09/image-2.png');
  background-size:cover; background-position:center;
}
a.tile[href*='condominios']{
  background-image:url('https://monseg.com.br/wp-content/uploads/2026/09/image-3.png');
  background-size:cover; background-position:center;
}
a.tile[href*='industrias']{
  background-image:url('https://monseg.com.br/wp-content/uploads/2026/09/image-4.png');
  background-size:cover; background-position:center;
}
a.tile[href*='residencias']{
  background-image:url('https://monseg.com.br/wp-content/uploads/2026/09/image-6.png');
  background-size:cover; background-position:center;
}

/* Case-media & solution-card photo backgrounds -----------------------------*/
.case-media::after{
  content:'';
  position:absolute; inset:0;
  background:linear-gradient(0deg, rgba(0,0,0,.75), rgba(0,0,0,.05) 55%);
  pointer-events:none;
}
.case-media .tag, .case-media h5{ z-index:1; color:#fff; }
.page-template-template-empresas-php .case-media{
  background-image:url('https://monseg.com.br/wp-content/uploads/2026/09/image-9.png');
  background-size:cover; background-position:center;
}
.page-template-template-condominios-php .case-media{
  background-image:url('https://monseg.com.br/wp-content/uploads/2026/09/image-3.png');
  background-size:cover; background-position:center;
}
.page-template-template-industrias-php .project-card:nth-child(1) .thumb{
  background-image:url('https://monseg.com.br/wp-content/uploads/2026/09/image-8.png');
  background-size:cover; background-position:center;
}
.page-template-template-industrias-php .project-card:nth-child(2) .thumb{
  background-image:url('https://monseg.com.br/wp-content/uploads/2026/09/image-4.png');
  background-size:cover; background-position:center;
}
.page-template-template-industrias-php .project-card:nth-child(3) .thumb{
  background-image:url('https://monseg.com.br/wp-content/uploads/2026/09/image-7.png');
  background-size:cover; background-position:center;
}
.page-template-template-industrias-php .project-card:nth-child(4) .thumb{
  background-image:url('https://monseg.com.br/wp-content/uploads/2026/09/image-2.png');
  background-size:cover; background-position:center;
}
.page-template-template-industrias-php .project-card:nth-child(5) .thumb{
  background-image:url('https://monseg.com.br/wp-content/uploads/2026/09/image-5.png');
  background-size:cover; background-position:center;
}
.page-template-template-projetos-php .project-card:nth-child(1) .thumb{
  background-image:url('https://monseg.com.br/wp-content/uploads/2026/09/image-2.png');
  background-size:cover; background-position:center;
}
.page-template-template-projetos-php .project-card:nth-child(2) .thumb{
  background-image:url('https://monseg.com.br/wp-content/uploads/2026/09/image-3.png');
  background-size:cover; background-position:center;
}
.page-template-template-projetos-php .project-card:nth-child(3) .thumb{
  background-image:url('https://monseg.com.br/wp-content/uploads/2026/09/image-4.png');
  background-size:cover; background-position:center;
}
.page-template-template-projetos-php .project-card:nth-child(4) .thumb{
  background-image:url('https://monseg.com.br/wp-content/uploads/2026/09/image-6.png');
  background-size:cover; background-position:center;
}
