@import url('https://fonts.googleapis.com/css2?family=Numans&display=swap');

/* ============================================================
   Rocha Terraplanagem — css/main.css
   Paleta: #F5B432 (amarelo) | #1A1F23 (escuro) | #111518 (dark)
   Tipografia: Numans (Google Fonts)
   ============================================================ */

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

:root {
  --ncl-primary: #F5B432;
  --ncl-primary-light: #FFD36B;
  --ncl-primary-soft: rgba(245, 180, 50, .14);
  --ncl-dark: #111518;
  --ncl-secondary: #1A1F23;
  --ncl-secondary-2: #252D33;
  --ncl-bg: #F6F6F4;
  --ncl-bg-light: #FBFAF7;
  --ncl-white: #FFFFFF;
  --ncl-text: #58636C;
  --ncl-border: #E7E4DC;
  --ncl-shadow: 0 24px 70px rgba(18, 22, 25, .14);
  --ncl-shadow-soft: 0 14px 35px rgba(18, 22, 25, .08);
  --ncl-font: 'Numans', system-ui, -apple-system, sans-serif;
  --ncl-radius: 20px;
  --ncl-radius-lg: 28px;
  scroll-behavior: smooth;
}

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

body {
  font-family: var(--ncl-font);
  color: var(--ncl-secondary);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100vw;
}

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

a {
  text-decoration: none;
}

ul { list-style: none; }

/* ==================== CONTAINERS ==================== */
.ncl-container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.ncl-container-narrow {
  max-width: 1040px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  width: min(1040px, calc(100% - 32px));
}

/* ==================== GRID ==================== */
.ncl-grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.ncl-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.ncl-kpis {
  margin-top: -54px;
  position: relative;
  z-index: 5;
}

/* ==================== SECTIONS ==================== */
.ncl-section {
  position: relative;
  padding: 100px 0;
}

.ncl-section-soft {
  background:
    radial-gradient(circle at 10% 10%, rgba(245, 180, 50, .12), transparent 32%),
    linear-gradient(180deg, var(--ncl-bg-light), var(--ncl-bg));
}

.ncl-section-dark {
  background:
    radial-gradient(circle at 12% 12%, rgba(245, 180, 50, .18), transparent 28%),
    radial-gradient(circle at 88% 22%, rgba(255, 255, 255, .08), transparent 24%),
    linear-gradient(135deg, var(--ncl-dark) 0%, var(--ncl-secondary-2) 100%);
  color: #fff;
}

.ncl-section-cta {
  text-align: center;
}

/* ==================== EYEBROW (Removido conforme solicitação) ==================== */
.ncl-eyebrow {
  display: none !important;
}

/* ==================== TYPOGRAPHY ==================== */
.ncl-title {
  font-size: clamp(32px, 4.4vw, 58px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -.055em;
  margin: 0 0 18px;
  color: var(--ncl-secondary);
}

.ncl-title span {
  color: var(--ncl-primary);
}

.ncl-section-dark .ncl-title {
  color: #fff;
}

.ncl-subtitle {
  font-size: 18px;
  line-height: 1.8;
  color: var(--ncl-text);
  margin: 0;
}

.ncl-section-dark .ncl-subtitle {
  color: rgba(255, 255, 255, .76);
}

.ncl-header-block {
  max-width: 900px;
  margin: 0 auto 48px;
  text-align: center;
}

/* ==================== BUTTONS ==================== */
.ncl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 16px;
  font-family: var(--ncl-font);
  cursor: pointer;
  transition: all .3s ease;
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}

.ncl-btn-primary {
  background: var(--ncl-primary);
  color: var(--ncl-secondary);
  border-color: var(--ncl-primary);
  box-shadow: none;
}

.ncl-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: none;
  background: var(--ncl-primary-light);
  border-color: var(--ncl-primary-light);
}

.ncl-btn-outline {
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border-color: rgba(255, 255, 255, .3);
  backdrop-filter: blur(10px);
}

.ncl-btn-outline:hover {
  background: rgba(255, 255, 255, .16);
  border-color: rgba(255, 255, 255, .5);
  transform: translateY(-2px);
  box-shadow: none;
}

.ncl-btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .4);
}

.ncl-btn-outline-white:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .7);
  transform: translateY(-2px);
  box-shadow: none;
}

.ncl-btn-small {
  padding: 10px 18px;
  font-size: 14px;
  border-radius: 10px;
  background: var(--ncl-primary);
  color: var(--ncl-secondary);
  border-color: var(--ncl-primary);
  font-weight: 800;
  box-shadow: none;
}

.ncl-btn-small:hover {
  background: var(--ncl-primary-light);
  transform: translateY(-2px);
  box-shadow: none;
}

.ncl-btn-lg {
  padding: 18px 32px;
  font-size: 17px;
  border-radius: 14px;
}

.ncl-btn-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: inline-block;
  vertical-align: -4px;
  margin-right: 8px;
  fill: currentColor;
  flex-shrink: 0;
}

/* ==================== HEADER ==================== */
.ncl-header {
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
  background: rgba(26, 31, 35, .96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  font-family: var(--ncl-font);
  transition: background .3s ease, box-shadow .3s ease;
}

.ncl-header.scrolled {
  background: rgba(17, 21, 24, .98);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .2);
}

.ncl-header__container {
  width: min(1440px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 20px;
  position: relative;
}

.ncl-header__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.ncl-header__logo img {
  height: 52px;
  display: block;
  width: auto;
}

.ncl-header__nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  justify-content: flex-end;
}

/* ==================== NAV MENU ==================== */
.ncl-menu {
  list-style: none;
  display: flex;
  gap: 4px;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}

.ncl-menu li {
  position: relative;
  flex-shrink: 0;
}

.ncl-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 10px;
  background: transparent;
  border: none;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  font-size: 15px;
  font-family: var(--ncl-font);
  line-height: 1;
  transition: .3s;
  text-decoration: none;
  white-space: nowrap;
}

.ncl-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 10px;
  background: transparent;
  border: none;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  font-size: 15px;
  font-family: var(--ncl-font);
  line-height: 1;
  transition: .3s;
  text-decoration: none;
  white-space: nowrap;
}

.ncl-dropdown-toggle:hover,
.ncl-link:hover {
  color: var(--ncl-primary);
  background: rgba(255, 255, 255, .04);
}

.arrow {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform .3s ease;
  transform-origin: center;
  margin-top: -3px;
}

.ncl-dropdown.is-open .arrow,
.ncl-dropdown:hover .arrow {
  transform: rotate(-135deg) translateY(-1px);
}

.ncl-submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #1f252a;
  border-radius: 14px;
  padding: 12px;
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all .3s ease;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .3);
  list-style: none;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .05);
}

.ncl-dropdown.is-open .ncl-submenu,
.ncl-dropdown:hover .ncl-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.ncl-submenu li { width: 100%; }

.ncl-submenu a {
  display: block;
  padding: 12px;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  transition: .3s;
  white-space: nowrap;
}

.ncl-submenu a:hover {
  background: rgba(245, 180, 50, .12);
  color: var(--ncl-primary);
}

/* ==================== HEADER SOCIAL ==================== */
.ncl-social {
  display: none !important;
}

/* ==================== HEADER CTA ==================== */
.ncl-header__cta {
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--ncl-primary);
  color: var(--ncl-secondary);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: .3s;
  flex-shrink: 0;
  font-family: var(--ncl-font);
  font-size: 15px;
  box-shadow: none;
}

.ncl-header__cta:hover {
  transform: translateY(-2px);
  box-shadow: none;
  background: var(--ncl-primary-light);
}

/* ==================== MOBILE TOGGLE ==================== */
.ncl-mobile-toggle {
  display: none;
  cursor: pointer;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .05);
  flex-direction: column;
  gap: 5px;
  border: none;
  flex-shrink: 0;
  transition: background .3s ease;
}

.ncl-mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  transition: all .3s ease;
}

.ncl-mobile-toggle:hover {
  background: rgba(255, 255, 255, .1);
}

/* Mobile open hamburger animation */
.ncl-header.is-mobile-open .ncl-mobile-toggle span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.ncl-header.is-mobile-open .ncl-mobile-toggle span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.ncl-header.is-mobile-open .ncl-mobile-toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ==================== HERO ==================== */
.ncl-hero {
  position: relative;
  min-height: calc(100vh - 82px);
  height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(17, 21, 24, .95) 0%, rgba(17, 21, 24, .85) 50%, rgba(17, 21, 24, .45) 100%),
    linear-gradient(135deg, rgba(245, 180, 50, .18), rgba(17, 21, 24, .06)),
    url('../assets/hero-img.webp') center / cover no-repeat;
  overflow: hidden;
  margin: 0;
  padding: 0;
  z-index: 1;
}

/* Grid overlay */
.ncl-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 54px 54px;
  pointer-events: none;
  z-index: 1;
}

/* Glow orb */
.ncl-hero::after {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -190px;
  top: -190px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(245, 180, 50, .2), rgba(245, 180, 50, 0) 68%);
  pointer-events: none;
  animation: ncl-float-glow 7s ease-in-out infinite;
  z-index: 1;
}

@keyframes ncl-float-glow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-24px, 18px) scale(1.08); }
}

.ncl-hero__grid {
  width: min(1360px, calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.ncl-hero-content {
  position: relative;
  z-index: 2;
  max-width: 960px;
  padding: 24px 20px;
  margin: 0;
  width: 100%;
}

.ncl-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .88);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  backdrop-filter: blur(12px);
}

.ncl-hero-tag span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ncl-primary);
  box-shadow: 0 0 0 7px rgba(245, 180, 50, .14);
  flex: 0 0 auto;
  animation: ncl-pulse 2.5s ease-in-out infinite;
}

@keyframes ncl-pulse {
  0%, 100% { box-shadow: 0 0 0 7px rgba(245, 180, 50, .14); }
  50% { box-shadow: 0 0 0 12px rgba(245, 180, 50, .06); }
}

.ncl-hero h1 {
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.05;
  letter-spacing: -.035em;
  margin: 0 0 18px;
  font-weight: 900;
  color: #fff;
}

.ncl-hero h1 strong {
  display: inline;
  color: var(--ncl-primary);
  font-weight: 900;
}

.ncl-hero p {
  max-width: 860px;
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.65;
  color: rgba(255, 255, 255, .88);
  margin: 0 0 28px;
}

.ncl-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 0;
}

/* ==================== HERO STATS ==================== */
.ncl-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 820px;
}

.ncl-stat {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(12px);
}

.ncl-stat strong {
  display: block;
  color: var(--ncl-primary);
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
  margin-bottom: 8px;
}

.ncl-stat span {
  display: block;
  color: rgba(255, 255, 255, .76);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 700;
}

/* ==================== KPIs ==================== */
.ncl-kpis-wrap {
  padding: 0 0 70px;
  position: relative;
}

.ncl-kpi {
  position: relative;
  min-height: 170px;
  padding: 28px 22px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--ncl-border);
  box-shadow: var(--ncl-shadow-soft);
  text-align: center;
  overflow: hidden;
  transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease;
}

.ncl-kpi::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(245, 180, 50, .14), transparent 42%);
  pointer-events: none;
}

.ncl-kpi:hover {
  transform: translateY(-7px);
  box-shadow: var(--ncl-shadow);
  border-color: rgba(245, 180, 50, .38);
}

.ncl-kpi strong {
  position: relative;
  display: block;
  font-size: 30px;
  line-height: 1;
  color: var(--ncl-primary);
  font-weight: 900;
  margin-bottom: 12px;
}

.ncl-kpi span {
  position: relative;
  display: block;
  color: var(--ncl-secondary);
  font-weight: 700;
  line-height: 1.55;
  font-size: 15px;
}

/* ==================== MEDIA (SOBRE IMAGE) ==================== */
.ncl-media {
  position: relative;
  min-height: 560px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--ncl-shadow);
  background: var(--ncl-secondary);
}

.ncl-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(17, 21, 24, .78) 100%);
  z-index: 1;
  pointer-events: none;
}

.ncl-media::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 26px;
  z-index: 2;
  pointer-events: none;
}

.ncl-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform .7s ease;
}

.ncl-media:hover img { transform: scale(1.09); }

.ncl-media-badge {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: 22px;
  background: rgba(17, 21, 24, .82);
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(14px);
  color: #fff;
}

.ncl-media-badge-icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--ncl-primary);
  color: var(--ncl-secondary);
  font-weight: 900;
  font-size: 22px;
}

.ncl-media-badge strong {
  display: block;
  color: #fff;
  font-size: 17px;
  line-height: 1.2;
  margin-bottom: 6px;
  font-weight: 900;
}

.ncl-media-badge span {
  display: block;
  color: rgba(255, 255, 255, .75);
  font-size: 14px;
  line-height: 1.6;
}

/* ==================== FEATURES (SOBRE) ==================== */
.ncl-feature-list {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.ncl-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--ncl-border);
  box-shadow: 0 10px 24px rgba(18, 22, 25, .05);
  transition: transform .28s ease, box-shadow .28s ease;
}

.ncl-feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--ncl-shadow-soft);
}

.ncl-feature-icon {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--ncl-primary), var(--ncl-primary-light));
  color: var(--ncl-secondary);
  font-weight: 900;
  font-size: 18px;
}

.ncl-feature strong {
  display: block;
  color: var(--ncl-secondary);
  font-size: 18px;
  line-height: 1.3;
  font-weight: 900;
  margin-bottom: 5px;
}

.ncl-feature span {
  display: block;
  color: var(--ncl-text);
  font-size: 15px;
  line-height: 1.7;
}

/* ==================== BENEFITS (DIFERENCIAIS) ==================== */
.ncl-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 34px 0;
}

.ncl-benefit {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 18px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--ncl-border);
  box-shadow: 0 10px 24px rgba(18, 22, 25, .05);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.ncl-benefit:hover {
  transform: translateY(-5px);
  box-shadow: var(--ncl-shadow-soft);
  border-color: rgba(245, 180, 50, .38);
}

.ncl-benefit-full {
  grid-column: 1 / -1;
}

.ncl-check {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--ncl-primary);
  color: var(--ncl-secondary);
  font-size: 15px;
  font-weight: 900;
  margin-top: 1px;
}

.ncl-benefit span {
  display: block;
  color: var(--ncl-secondary);
  font-size: 15px;
  line-height: 1.65;
  font-weight: 750;
}

/* ==================== HIGHLIGHTS ==================== */
.ncl-highlight {
  position: relative;
  padding: 28px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--ncl-border);
  box-shadow: var(--ncl-shadow-soft);
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.ncl-highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(245, 180, 50, .1), transparent 54%);
  pointer-events: none;
}

.ncl-highlight:hover {
  transform: translateY(-5px);
  box-shadow: var(--ncl-shadow);
  border-color: rgba(245, 180, 50, .38);
}

.ncl-highlight strong {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 900;
  color: var(--ncl-secondary);
  margin-bottom: 12px;
}

.ncl-highlight p {
  position: relative;
  color: var(--ncl-text);
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
}

/* ==================== SERVICE CARDS ==================== */
.ncl-service-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  transition: transform .32s ease, border-color .32s ease, box-shadow .32s ease;
}

.ncl-service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 180, 50, .32);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .3);
}

.ncl-service-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.ncl-service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.ncl-service-card:hover .ncl-service-img-wrap img {
  transform: scale(1.08);
}

.ncl-service-body {
  padding: 24px;
}

.ncl-service-body h3 {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
}

.ncl-service-body p {
  color: rgba(255, 255, 255, .72);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 20px;
}

/* ==================== GALLERY ==================== */
.ncl-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 18px;
}

.ncl-gallery-item {
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  background: var(--ncl-secondary);
  box-shadow: var(--ncl-shadow-soft);
}

.ncl-gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(17, 21, 24, .5) 100%);
  opacity: 0;
  transition: opacity .3s ease;
}

.ncl-gallery-item:hover::after {
  opacity: 1;
}

.ncl-gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform .5s ease;
}

.ncl-gallery-item:hover img {
  transform: scale(1.06);
}

.ncl-gallery-big {
  grid-column: span 2;
}

.ncl-gallery-big img {
  height: 400px;
}

/* ==================== CTA SECTION ==================== */
.ncl-cta-box {
  max-width: 780px;
  margin: 0 auto;
}

.ncl-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 34px 0 42px;
}

.ncl-contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}

.ncl-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .78);
  font-size: 15px;
}

.ncl-contact-icon {
  font-size: 18px;
}

.ncl-contact-item a {
  color: var(--ncl-primary);
  font-weight: 700;
  text-decoration: none;
}

.ncl-contact-item a:hover {
  text-decoration: underline;
}

/* ==================== FOOTER ==================== */
.ncl-footer {
  background: linear-gradient(180deg, #161b1f 0%, #111518 100%);
  color: #ffffff;
  font-family: var(--ncl-font);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.ncl-footer::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(245, 180, 50, .14) 0%, rgba(245, 180, 50, 0) 70%);
  pointer-events: none;
}

.ncl-footer__container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 80px 0 32px;
}

.ncl-footer__top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.ncl-footer__brand { max-width: 420px; }

.ncl-footer__logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  text-decoration: none;
}

.ncl-footer__logo img {
  width: auto;
  height: 64px;
  display: block;
}

.ncl-footer__text {
  color: rgba(255, 255, 255, .72);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 22px;
}

.ncl-footer__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 12px;
  background: var(--ncl-primary);
  color: var(--ncl-secondary);
  font-weight: 800;
  text-decoration: none;
  transition: .25s;
  box-shadow: none;
  font-family: var(--ncl-font);
}

.ncl-footer__cta:hover {
  transform: translateY(-2px);
  box-shadow: none;
  background: var(--ncl-primary-light);
}

.ncl-footer__col h3 {
  margin: 0 0 16px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
  color: #ffffff;
  position: relative;
  padding-bottom: 10px;
}

.ncl-footer__col h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 3px;
  border-radius: 999px;
  background: var(--ncl-primary);
}

.ncl-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.ncl-footer__links a {
  color: rgba(255, 255, 255, .74);
  text-decoration: none;
  font-size: 15px;
  line-height: 1.5;
  transition: .3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ncl-footer__links a:hover {
  color: var(--ncl-primary);
  transform: translateX(4px);
}

.ncl-footer__links a::before {
  content: "›";
  color: var(--ncl-primary);
  font-size: 16px;
  line-height: 1;
}

.ncl-footer__contact {
  display: grid;
  gap: 14px;
}

.ncl-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, .74);
  font-size: 15px;
  line-height: 1.6;
}

.ncl-footer__contact-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  box-shadow: none;
}

.ncl-footer__contact-icon img,
.ncl-footer__contact-icon svg {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}

/* Cores de alto contraste para ícones de contato (sem preenchimento nem glow) */
.ncl-footer__contact-icon.ncl-icon--whatsapp {
  background: transparent;
  border: none;
  box-shadow: none;
}
.ncl-footer__contact-icon.ncl-icon--whatsapp svg {
  fill: #25D366;
}

.ncl-footer__contact-icon.ncl-icon--maps {
  background: transparent;
  border: none;
  box-shadow: none;
}
.ncl-footer__contact-icon.ncl-icon--maps svg {
  fill: #F5B432;
}

.ncl-footer__contact-icon.ncl-icon--instagram {
  background: transparent;
  border: none;
  box-shadow: none;
}
.ncl-footer__contact-icon.ncl-icon--instagram svg {
  fill: #FF5483;
}

.ncl-footer__contact a {
  color: rgba(255, 255, 255, .82);
  text-decoration: none;
  transition: .3s;
}

.ncl-footer__contact a:hover { color: var(--ncl-primary); }

.ncl-footer__social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.ncl-footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .22);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: border-color .2s ease, transform .2s ease;
  overflow: hidden;
  box-shadow: none;
}

.ncl-footer__social img,
.ncl-footer__social svg {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
  transition: transform .2s ease;
}

/* Cores de alto contraste sem preenchimento nem glow para redes sociais do rodapé */
.ncl-footer__social a.ncl-social--instagram {
  background: transparent;
  border-color: rgba(255, 84, 131, 0.45);
  box-shadow: none;
}
.ncl-footer__social a.ncl-social--instagram svg {
  fill: #FF5483;
}
.ncl-footer__social a.ncl-social--instagram:hover {
  background: transparent;
  border-color: #FF5483;
  transform: translateY(-2px);
  box-shadow: none;
}

.ncl-footer__social a.ncl-social--maps {
  background: transparent;
  border-color: rgba(245, 180, 50, 0.45);
  box-shadow: none;
}
.ncl-footer__social a.ncl-social--maps svg {
  fill: #F5B432;
}
.ncl-footer__social a.ncl-social--maps:hover {
  background: transparent;
  border-color: #F5B432;
  transform: translateY(-2px);
  box-shadow: none;
}

.ncl-footer__social a.ncl-social--whatsapp {
  background: transparent;
  border-color: rgba(37, 211, 102, 0.45);
  box-shadow: none;
}
.ncl-footer__social a.ncl-social--whatsapp svg {
  fill: #25D366;
}
.ncl-footer__social a.ncl-social--whatsapp:hover {
  background: transparent;
  border-color: #25D366;
  transform: translateY(-2px);
  box-shadow: none;
}

.ncl-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  flex-wrap: wrap;
}

.ncl-footer__copy,
.ncl-footer__dev {
  margin: 0;
  color: rgba(255, 255, 255, .58);
  font-size: 14px;
  line-height: 1.6;
}

.ncl-footer__dev a {
  color: var(--ncl-primary);
  text-decoration: none;
  font-weight: 700;
}

.ncl-footer__dev a:hover { text-decoration: underline; }

/* ==================== UP-TO-TOP DISCRETO NO RODAPÉ ==================== */
.ncl-footer-totop {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color .2s ease, color .2s ease, transform .2s ease;
  cursor: pointer;
  box-shadow: none;
}

.ncl-footer-totop svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  display: block;
  transition: transform .2s ease;
}

.ncl-footer-totop:hover {
  background: transparent;
  border-color: var(--ncl-primary);
  color: var(--ncl-primary);
  transform: translateY(-2px);
  box-shadow: none;
}

.ncl-footer-totop:hover svg {
  transform: translateY(-2px);
}

/* ==================== WHATSAPP FLOAT ==================== */
.ncl-whats-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.22);
  transition: transform .25s ease, background .25s ease;
  animation: ncl-whats-appear .5s ease .8s both;
  overflow: visible;
}

@keyframes ncl-whats-appear {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.ncl-whats-float:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.28);
  background: #20ba5a;
}

.ncl-whats-float img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.ncl-whats-float svg {
  width: 34px;
  height: 34px;
  fill: #fff;
  display: block;
}

/* Modal sutil no hover do WhatsApp */
.ncl-whats-modal {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: #161B1F;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  padding: 8px 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}

.ncl-whats-modal::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent transparent #161B1F;
}

.ncl-whats-modal-status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25D366;
  display: inline-block;
  flex-shrink: 0;
  box-shadow: none;
}

@keyframes ncl-pulse-dot {
  0%, 100% { opacity: 0.8; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1.15); }
}

.ncl-whats-modal-text {
  font-family: var(--ncl-font);
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: .2px;
}

.ncl-whats-float:hover .ncl-whats-modal {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

/* ==================== SCROLL REVEAL ANIMATIONS ==================== */
.ncl-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}

.ncl-reveal.ncl-visible {
  opacity: 1;
  transform: translateY(0);
}

.ncl-delay-1 { transition-delay: .12s; }
.ncl-delay-2 { transition-delay: .24s; }
.ncl-delay-3 { transition-delay: .36s; }

/* ==================== SCROLL-TO-TOP (Removido) ==================== */
.ncl-to-top {
  display: none !important;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1100px) {
  .ncl-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .ncl-footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 980px) {
  .ncl-header__container { min-height: 74px; }

  .ncl-header__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: #1A1F23;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    gap: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .3);
  }

  .ncl-header.is-mobile-open .ncl-header__nav {
    display: flex;
  }

  .ncl-mobile-toggle { display: flex; }

  .ncl-menu {
    width: 100%;
    flex-direction: column;
  }

  .ncl-menu li,
  .ncl-menu li button { width: 100%; }

  .ncl-menu li button {
    justify-content: space-between;
    padding: 14px 0;
  }

  .ncl-submenu {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    min-width: 100%;
    width: 100%;
    margin-top: 8px;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
  }

  .ncl-dropdown:hover .ncl-submenu { transform: none; }

  .ncl-dropdown.is-open .ncl-submenu {
    display: block;
    transform: none;
  }

  .ncl-social { margin-top: 4px; }

  .ncl-grid-2-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ncl-grid-3 { grid-template-columns: 1fr; }

  .ncl-section { padding: 70px 0; }

  .ncl-hero { min-height: 80vh; }

  .ncl-hero-content {
    padding: 100px 20px 70px;
    margin: 0 auto;
    max-width: 100%;
    width: 100%;
  }

  .ncl-hero-stats {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .ncl-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .ncl-gallery-big {
    grid-column: 1 / -1;
  }

  .ncl-kpis { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .ncl-header__container { min-height: 66px; }

  .ncl-header__logo img { height: 44px; }

  .ncl-hero h1 { font-size: clamp(36px, 10vw, 56px); }

  .ncl-hero p { font-size: 17px; }

  .ncl-hero-actions { flex-direction: column; }

  .ncl-benefits { grid-template-columns: 1fr; }

  .ncl-benefit-full { grid-column: 1; }

  .ncl-grid-4 { grid-template-columns: 1fr; }

  .ncl-gallery {
    grid-template-columns: 1fr;
  }

  .ncl-gallery-item img { height: 220px; }

  .ncl-gallery-big img { height: 260px; }

  .ncl-footer__top { grid-template-columns: 1fr; gap: 28px; }

  .ncl-footer__logo img { height: 56px; }

  .ncl-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .ncl-footer__container { padding: 54px 0 24px; }

  .ncl-kpis { grid-template-columns: 1fr; }

  .ncl-cta-actions { flex-direction: column; }

  .ncl-whats-float {
    width: 54px;
    height: 54px;
    bottom: 20px;
    right: 20px;
  }

  .ncl-whats-float img {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 480px) {
  .ncl-section { padding: 50px 0; }

  .ncl-hero-content { padding: 80px 16px 60px; }

  .ncl-title { font-size: clamp(28px, 8vw, 40px); }

  .ncl-kpis-wrap { padding: 0 0 50px; }

  .ncl-kpis { margin-top: -40px; }
}

/* ==================== PRINT ==================== */
@media print {
  .ncl-header,
  .ncl-whats-float,
  .ncl-to-top,
  .ncl-hero-actions { display: none; }
}

/* ============================================================
   ROCHA TERRAPLANAGEM — COMPONENTES ESPECÍFICOS DO BRIEFING
   (Mantendo 100% da identidade visual, variáveis e tipografia)
   ============================================================ */

/* Logo com texto de apoio */
.rocha-logo-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.rocha-logo-brand img {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: transform .25s ease;
}

.rocha-logo-brand:hover img {
  transform: scale(1.05);
}

.rocha-logo-brand-text {
  display: flex;
  flex-direction: column;
}

.rocha-logo-brand-text strong {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .08em;
  color: #fff;
  line-height: 1;
}

.rocha-logo-brand-text span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--ncl-primary);
  text-transform: uppercase;
  margin-top: 3px;
}

.ncl-footer .rocha-logo-brand-text strong {
  color: #fff;
}

/* Grid de 3 Colunas dos Serviços (9 serviços) */
.rocha-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

@media (max-width: 980px) {
  .rocha-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .rocha-services-grid {
    grid-template-columns: 1fr;
  }
}

/* Cards "Para Quem" */
.rocha-audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.rocha-audience-card {
  background: #fff;
  border: 1px solid var(--ncl-border);
  border-radius: var(--ncl-radius);
  padding: 34px 26px;
  transition: all .3s cubic-bezier(.22, 1, .36, 1);
  box-shadow: var(--ncl-shadow-soft);
  display: flex;
  flex-direction: column;
}

.rocha-audience-card:hover {
  transform: translateY(-6px);
  border-color: var(--ncl-primary);
  box-shadow: 0 20px 45px rgba(245, 180, 50, .14);
}

.rocha-audience-icon {
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

.rocha-audience-icon svg {
  width: 44px;
  height: 44px;
  fill: #F5B432;
  display: block;
}

.rocha-audience-icon svg path,
.rocha-audience-icon svg g {
  fill: #F5B432;
}

.rocha-audience-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--ncl-secondary);
  margin-bottom: 12px;
}

.rocha-audience-card p {
  font-size: 15px;
  color: var(--ncl-text);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 980px) {
  .rocha-audience-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 580px) {
  .rocha-audience-grid { grid-template-columns: 1fr; }
}

/* Seção Sobre Preço / Fatores de Orçamento em Lista */
.rocha-factors-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 580px;
  margin: 32px auto 38px;
  text-align: left;
}

.rocha-factors-list-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 16px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
  transition: all .2s ease;
}

.rocha-factors-list-item:hover {
  background: rgba(245, 180, 50, .1);
  border-color: rgba(245, 180, 50, .3);
  transform: translateX(4px);
}

.rocha-factors-list-item svg {
  width: 22px;
  height: 22px;
  min-width: 22px;
  fill: #F5B432;
  display: block;
}

.rocha-factors-list-item svg path {
  fill: #F5B432;
}

/* Destaque visual intuitivo da Seção Sobre Nós */
.rocha-about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
  padding-top: 26px;
  border-top: 1px solid var(--ncl-border);
}

.rocha-about-stat-card {
  background: var(--ncl-bg-light);
  border: 1px solid var(--ncl-border);
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all .25s ease;
}

.rocha-about-stat-card:hover {
  border-color: var(--ncl-primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(245, 180, 50, .12);
}

/* Card de destaque do +30 ocupando uma linha sozinho */
.rocha-about-stat-card.rocha-stat-featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(245, 180, 50, 0.1) 0%, #FFFFFF 100%);
  border: 1.5px solid rgba(245, 180, 50, 0.4);
  border-left: 6px solid var(--ncl-primary);
  padding: 22px 28px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}

.rocha-stat-featured-count {
  display: flex;
  align-items: baseline;
  flex-shrink: 0;
}

.rocha-stat-featured .rocha-counter-num {
  font-size: clamp(42px, 5vw, 56px);
  font-weight: 900;
  color: var(--ncl-primary);
  line-height: 1;
  letter-spacing: -1px;
  display: inline-block;
  min-width: 90px;
}

.rocha-stat-featured-text {
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 700;
  color: var(--ncl-secondary);
  line-height: 1.4;
}

.rocha-stat-sub-icon {
  font-size: 26px;
  line-height: 1;
  flex-shrink: 0;
}

.rocha-about-stat-card strong {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ncl-secondary);
  line-height: 1.35;
}

@media (max-width: 680px) {
  .rocha-about-stats {
    grid-template-columns: 1fr;
  }
  .rocha-about-stat-card.rocha-stat-featured {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
  }
}

/* Área de Atendimento & Bairros */
.rocha-area-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
  align-items: start;
}

.rocha-area-box {
  background: #fff;
  border: 1px solid var(--ncl-border);
  border-radius: var(--ncl-radius);
  padding: 36px;
  box-shadow: var(--ncl-shadow-soft);
}

.rocha-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.rocha-tag {
  background: var(--ncl-bg);
  border: 1px solid var(--ncl-border);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ncl-secondary);
  transition: all .2s ease;
}

.rocha-tag:hover {
  background: var(--ncl-primary);
  border-color: var(--ncl-primary);
  color: var(--ncl-secondary);
  transform: translateY(-2px);
}

.rocha-cities-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}

.rocha-city-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 16px;
  color: var(--ncl-secondary);
}

.rocha-city-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ncl-primary);
  flex-shrink: 0;
}

.rocha-area-notice {
  background: rgba(245, 180, 50, 0.08);
  border-left: 4px solid var(--ncl-primary);
  border-radius: 8px;
  padding: 14px 16px;
  margin-top: 20px;
}

.rocha-area-notice p {
  font-size: 13.5px;
  color: var(--ncl-secondary);
  line-height: 1.5;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 860px) {
  .rocha-area-grid { grid-template-columns: 1fr; }
}

/* Como Funciona - Passos */
.rocha-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.rocha-step-card {
  background: #fff;
  border: 1px solid var(--ncl-border);
  border-radius: var(--ncl-radius);
  padding: 32px 24px;
  box-shadow: var(--ncl-shadow-soft);
  position: relative;
  transition: all .3s ease;
}

.rocha-step-card:hover {
  transform: translateY(-6px);
  border-color: var(--ncl-primary);
  box-shadow: 0 16px 36px rgba(245, 180, 50, .12);
}

.rocha-step-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--ncl-primary);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -.03em;
}

.rocha-step-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--ncl-secondary);
  margin-bottom: 10px;
}

.rocha-step-card p {
  font-size: 14px;
  color: var(--ncl-text);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 980px) {
  .rocha-steps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
  .rocha-steps-grid { grid-template-columns: 1fr; }
}

/* Depoimentos - Carrossel em Loop com Fade In/Out nas extremidades */
.rocha-google-mini-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FFFFFF;
  border: 1px solid var(--ncl-border);
  padding: 8px 18px;
  border-radius: 30px;
  margin-top: 14px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.rocha-google-mini-badge strong {
  font-size: 16px;
  font-weight: 900;
  color: var(--ncl-secondary);
}

.rocha-google-mini-badge span {
  font-size: 13.5px;
  color: var(--ncl-text);
  font-weight: 600;
}

.rocha-carousel-wrapper {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  padding: 20px 0 28px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.rocha-carousel-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: rochaLoopScroll 42s linear infinite;
  will-change: transform;
}

@keyframes rochaLoopScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.rocha-testi-card {
  background: #FFFFFF;
  border: 1px solid var(--ncl-border);
  border-radius: 18px;
  padding: 24px;
  width: 360px;
  min-width: 360px;
  max-width: 360px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  user-select: none;
}

.rocha-testi-card:hover {
  transform: translateY(-4px);
  border-color: var(--ncl-primary);
  box-shadow: 0 12px 28px rgba(245, 180, 50, 0.14);
}

.rocha-testi-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.rocha-testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ncl-primary) 0%, var(--ncl-secondary) 100%);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--ncl-font);
}

.rocha-testi-info {
  flex: 1;
  min-width: 0;
}

.rocha-testi-info strong {
  font-size: 15.5px;
  font-weight: 800;
  color: var(--ncl-secondary);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}

.rocha-testi-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
}

.rocha-testi-stars {
  color: #FBBC05;
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 1;
}

.rocha-testi-time {
  font-size: 12px;
  color: var(--ncl-text-light);
  font-weight: 600;
}

.rocha-testi-glogo {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  opacity: .85;
}

.rocha-testi-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ncl-text);
  font-weight: 500;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 600px) {
  .rocha-testi-card {
    width: 300px;
    min-width: 300px;
    max-width: 300px;
    padding: 20px;
  }
}

/* Acordeão FAQ */
.rocha-faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.rocha-faq-item {
  background: #fff;
  border: 1px solid var(--ncl-border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease;
}

.rocha-faq-item.active {
  border-color: var(--ncl-primary);
  box-shadow: 0 8px 24px rgba(245, 180, 50, .1);
}

.rocha-faq-question {
  width: 100%;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: transparent;
  border: none;
  font-family: var(--ncl-font);
  font-size: 17px;
  font-weight: 700;
  color: var(--ncl-secondary);
  cursor: pointer;
  text-align: left;
}

.rocha-faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--ncl-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: transform .3s ease, background .3s ease;
}

.rocha-faq-item.active .rocha-faq-icon {
  transform: rotate(45deg);
  background: var(--ncl-primary);
  color: var(--ncl-secondary);
}

.rocha-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(0, 1, 0, 1);
  padding: 0 26px;
}

.rocha-faq-item.active .rocha-faq-answer {
  max-height: 600px;
  transition: max-height .4s ease-in-out;
  padding: 0 26px 22px;
}

.rocha-faq-answer p {
  color: var(--ncl-text);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

/* ==================== GALERIA / PORTFÓLIO DE OBRAS ==================== */
.rocha-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.rocha-gallery-item {
  position: relative;
  border-radius: var(--ncl-radius);
  overflow: hidden;
  box-shadow: var(--ncl-shadow-soft);
  background: #11141a;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.rocha-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s cubic-bezier(0.2, 1, 0.3, 1), filter .4s ease;
}

.rocha-gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.85);
}

/* Overlay no hover com os descritivos */
.rocha-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 15, 20, 0.95) 0%, rgba(12, 15, 20, 0.7) 50%, rgba(12, 15, 20, 0.1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px 16px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .35s ease, transform .35s ease;
  pointer-events: none;
}

.rocha-gallery-item:hover .rocha-gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

.rocha-gallery-badge {
  display: inline-block;
  background: var(--ncl-primary);
  color: #111;
  font-size: 10.5px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border-radius: 4px;
  align-self: flex-start;
  margin-bottom: 6px;
  box-shadow: none;
}

.rocha-gallery-desc {
  color: #ffffff;
  font-size: 12.5px;
  line-height: 1.4;
  margin: 0 0 8px 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.rocha-gallery-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ncl-primary);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.rocha-gallery-overlay--simple {
  justify-content: center;
  align-items: center;
  background: rgba(12, 15, 20, 0.5);
}

.rocha-gallery-overlay--simple .rocha-gallery-action {
  background: rgba(245, 180, 50, 0.92);
  color: #111;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
  transform: scale(0.9);
  transition: transform .3s ease;
}

.rocha-gallery-item:hover .rocha-gallery-overlay--simple .rocha-gallery-action {
  transform: scale(1);
}

@media (max-width: 1100px) {
  .rocha-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .rocha-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .rocha-gallery-overlay {
    opacity: 1;
    transform: translateY(0);
    background: linear-gradient(to top, rgba(12, 15, 20, 0.9) 0%, rgba(12, 15, 20, 0.5) 40%, transparent 100%);
    padding: 12px 10px;
  }
  .rocha-gallery-desc {
    -webkit-line-clamp: 2;
    font-size: 11.5px;
  }
  .rocha-gallery-overlay--simple {
    opacity: 0;
  }
  .rocha-gallery-item:hover .rocha-gallery-overlay--simple {
    opacity: 1;
  }
}

@media (max-width: 480px) {
  .rocha-gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ==================== NOVO LAYOUT DO PORTFÓLIO POR OBRAS ==================== */
.rocha-portfolio-section {
  background:
    radial-gradient(circle at 10% 10%, rgba(245, 180, 50, .14), transparent 28%),
    radial-gradient(circle at 90% 20%, rgba(255, 255, 255, .05), transparent 25%),
    linear-gradient(135deg, #0d1015 0%, #151922 100%) !important;
  color: #fff;
  padding: 80px 0 90px;
}

.rocha-portfolio-header {
  margin-bottom: 44px;
  text-align: left;
}

.rocha-portfolio-accent-bar {
  width: 36px;
  height: 3px;
  background: var(--ncl-primary, #e08713);
  border-radius: 2px;
  margin-bottom: 12px;
}

.rocha-portfolio-title {
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 6px 0;
}

.rocha-portfolio-title strong {
  font-weight: 900;
}

.rocha-portfolio-subtitle {
  font-size: 15px;
  color: #9aa1ad;
  margin: 0;
  line-height: 1.5;
}

.rocha-portfolio-list {
  display: flex;
  flex-direction: column;
  gap: 38px;
}

.rocha-project-row {
  display: flex;
  flex-direction: column;
}

.rocha-project-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}

.rocha-project-number {
  font-size: 20px;
  font-weight: 800;
  color: var(--ncl-primary, #e08713);
  line-height: 1.2;
}

.rocha-project-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.rocha-project-title {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
  line-height: 1.2;
}

.rocha-project-subtitle {
  font-size: 13.5px;
  color: #9aa1ad;
  margin: 0;
  line-height: 1.4;
}

.rocha-project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.rocha-project-grid .rocha-gallery-item {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
  background: #11141a;
}

@media (max-width: 900px) {
  .rocha-project-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 520px) {
  .rocha-portfolio-section {
    padding: 60px 0 70px;
  }
  .rocha-portfolio-header {
    margin-bottom: 30px;
  }
  .rocha-portfolio-list {
    gap: 30px;
  }
  .rocha-project-header {
    gap: 10px;
    margin-bottom: 12px;
  }
  .rocha-project-number {
    font-size: 18px;
  }
  .rocha-project-title {
    font-size: 16px;
  }
  .rocha-project-subtitle {
    font-size: 12.5px;
  }
  .rocha-project-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}

/* ==================== SERVIÇOS PARCEIROS ==================== */
.rocha-partners-section {
  position: relative;
  padding: 85px 0 95px;
  background:
    radial-gradient(circle at 50% 0%, rgba(245, 180, 50, .09), transparent 45%),
    linear-gradient(135deg, #11141A 0%, #1A1E26 100%);
  color: #fff;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Garante contraste perfeito da palavra 'Serviços' sobre o fundo escuro */
.rocha-partners-section .ncl-title {
  color: #ffffff !important;
}

.rocha-partners-section .ncl-title span {
  color: var(--ncl-primary) !important;
}

.rocha-partners-section .ncl-subtitle {
  color: rgba(255, 255, 255, 0.8) !important;
}

.rocha-partners-carousel-wrap {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  padding: 15px 0 25px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.rocha-partners-carousel-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: rochaPartnersLoop 38s linear infinite;
  will-change: transform;
}

/* Não pausa no hover conforme solicitado */

@keyframes rochaPartnersLoop {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Cards dos parceiros limpos e estáveis (sem efeito glow) */
.rocha-partner-card {
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 16px 28px;
  height: 96px;
  min-width: 220px;
  max-width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
  user-select: none;
}

.rocha-partner-card img {
  max-height: 58px;
  max-width: 165px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: contrast(1.02);
}

/* ==================== LIGHTBOX MODAL ROCHA ==================== */
#ncl-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(8, 10, 14, 0.94);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  padding: 20px;
  transition: opacity .3s ease, visibility .3s ease;
  box-sizing: border-box;
}

#ncl-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.rocha-lightbox-content {
  position: relative;
  max-width: 92vw;
  max-height: 94vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: rochaZoomModal .28s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

@keyframes rochaZoomModal {
  from {
    transform: scale(0.93);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.rocha-lightbox-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 74vh;
}

.rocha-lightbox-img-wrap img {
  max-width: 90vw;
  max-height: 74vh;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: block;
}

.rocha-lightbox-caption {
  margin-top: 14px;
  background: rgba(20, 24, 30, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 14px 20px;
  max-width: 780px;
  width: 100%;
  box-sizing: border-box;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.rocha-lightbox-caption-badge {
  display: inline-block;
  background: var(--ncl-primary);
  color: #111;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
  box-shadow: none;
  text-shadow: none;
  filter: none;
}

.rocha-lightbox-caption-text {
  font-size: 14px;
  line-height: 1.55;
  color: #ffffff;
  margin: 0;
}

.rocha-lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-size: 26px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s ease;
  z-index: 100000;
}

.rocha-lightbox-close:hover {
  background: var(--ncl-primary);
  color: #111;
  transform: scale(1.1);
}

/* ============================================================
   RESPONSIVIDADE MOBILE ULTRA-OTIMIZADA (BREAKPOINT <= 768px)
   - Todos os textos, títulos, botões, cards e rodapé centralizados
   - Espaçamentos e gutters seguros para não colar nas bordas
   - Zero overflow horizontal (100% fluido)
   - Modern Web Guidance: content-visibility para acelerar mobile FCP/LCP
   - A versão DESKTOP permanece 100% intacta e inalterada
   ============================================================ */
@media (max-width: 768px) {
  /* Contêiner seguro sem colar nas bordas */
  .ncl-container {
    padding-left: 18px !important;
    padding-right: 18px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Centralização Global de Cabeçalhos e Seções */
  .ncl-section-header,
  .ncl-header-block,
  .ncl-title,
  .ncl-subtitle,
  .ncl-lead,
  .ncl-section-tag {
    text-align: center !important;
    justify-content: center !important;
    align-items: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .ncl-section {
    padding: 50px 0 !important;
  }

  /* Header Mobile */
  .ncl-header__container {
    min-height: 64px !important;
    padding: 0 16px !important;
  }
  .ncl-header__nav {
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .ncl-menu {
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .ncl-menu li a {
    text-align: center !important;
    justify-content: center !important;
    padding: 10px 0 !important;
  }
  .ncl-header__cta {
    width: 100% !important;
    max-width: 280px !important;
    margin: 12px auto 0 !important;
    justify-content: center !important;
    text-align: center !important;
  }

  /* 01. Hero Centralizado */
  .ncl-hero {
    min-height: auto !important;
    height: auto !important;
    padding: 90px 0 60px !important;
    background-image:
      linear-gradient(180deg, rgba(17, 21, 24, .95) 0%, rgba(17, 21, 24, .88) 100%),
      url('../assets/hero-img-mobile.webp') !important;
    background-position: center top !important;
    background-size: cover !important;
    text-align: center !important;
  }

  .ncl-hero-content {
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 0 16px !important;
    margin: 0 auto !important;
  }

  .ncl-hero h1 {
    font-size: clamp(26px, 7.5vw, 38px) !important;
    line-height: 1.25 !important;
    text-align: center !important;
    margin: 0 auto 16px !important;
  }

  .ncl-hero p {
    font-size: 15px !important;
    line-height: 1.65 !important;
    text-align: center !important;
    margin: 0 auto 24px !important;
    max-width: 520px !important;
  }

  /* Ajuste Geral de Botões Mobile: evita corte do ícone WhatsApp */
  .ncl-btn {
    white-space: normal !important;
    word-break: normal !important;
    max-width: 100% !important;
    padding: 14px 18px !important;
    font-size: 15px !important;
    line-height: 1.35 !important;
    box-sizing: border-box !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    text-align: center !important;
  }

  .ncl-btn-lg {
    padding: 15px 18px !important;
    font-size: 15px !important;
  }

  .ncl-btn-icon {
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    min-height: 22px !important;
    flex-shrink: 0 !important;
    margin-right: 0 !important;
    display: inline-block !important;
    overflow: visible !important;
  }

  /* 1. Remover botão da Hero 'Conhecer serviços' e seção KPIs no mobile */
  #hero-servicos,
  .ncl-kpis-wrap,
  #numeros,
  .ncl-kpis {
    display: none !important;
  }

  .ncl-hero-actions {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 380px !important;
    margin: 0 auto !important;
    gap: 12px !important;
  }

  .ncl-hero-actions .ncl-btn {
    width: 100% !important;
    max-width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 15px 18px !important;
  }

  /* 02. Para Quem */
  .rocha-audience-grid,
  .rocha-pq-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .rocha-audience-card,
  .rocha-pq-card {
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 24px 18px !important;
  }

  .rocha-audience-icon,
  .rocha-pq-icon {
    margin: 0 auto 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .rocha-audience-card h3,
  .rocha-audience-card p,
  .rocha-pq-card h3,
  .rocha-pq-card p {
    text-align: center !important;
  }

  /* 03. Sobre Preço / Fatores */
  .rocha-factors-card {
    text-align: center !important;
    padding: 26px 18px !important;
  }

  .rocha-factors-card h3,
  .rocha-factors-card > p {
    text-align: center !important;
  }

  .rocha-factors-list {
    align-items: center !important;
  }

  .rocha-factors-item {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 10px !important;
    padding: 16px 12px !important;
  }

  .rocha-factors-check {
    margin: 0 auto !important;
  }

  .rocha-factors-item strong,
  .rocha-factors-item span {
    text-align: center !important;
  }

  .rocha-factors-card .ncl-btn {
    margin: 22px auto 0 !important;
    width: 100% !important;
    max-width: 360px !important;
    justify-content: center !important;
    text-align: center !important;
  }

  /* 04. Serviços */
  .rocha-services-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .ncl-service-card {
    text-align: center !important;
  }

  .ncl-service-body {
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 22px 18px !important;
  }

  .ncl-service-body h3,
  .ncl-service-body p {
    text-align: center !important;
  }

  .ncl-service-body .ncl-btn {
    margin: 14px auto 0 !important;
    width: 100% !important;
    max-width: 320px !important;
    justify-content: center !important;
    text-align: center !important;
  }

  /* 05. Consultoria / Entendimento */
  .ncl-split {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .ncl-split-content {
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .ncl-split-content h2,
  .ncl-split-content p {
    text-align: center !important;
  }

  .ncl-checklist {
    align-items: center !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 0 !important;
    width: 100% !important;
  }

  .ncl-checklist li {
    text-align: center !important;
    justify-content: center !important;
  }

  .rocha-entendimento-btn-wrap {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin: 24px auto 0 !important;
    text-align: center !important;
  }

  .rocha-entendimento-btn-wrap .ncl-btn,
  .ncl-split-content .ncl-btn {
    margin: 0 auto !important;
    width: 100% !important;
    max-width: 360px !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .ncl-media {
    margin: 0 auto !important;
    text-align: center !important;
    width: 100% !important;
  }

  .ncl-media-badge {
    flex-direction: column !important;
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
    left: 12px !important;
    right: 12px !important;
    bottom: 12px !important;
    padding: 14px !important;
  }

  .ncl-media-badge-icon {
    margin: 0 auto 6px !important;
  }

  /* 06. Portfólio / Trabalhos Realizados */
  .rocha-gallery-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .rocha-gallery-item img {
    height: 230px !important;
  }

  #portfolio .ncl-btn {
    width: 100% !important;
    max-width: 360px !important;
    margin: 18px auto 0 !important;
    justify-content: center !important;
    text-align: center !important;
  }

  /* 07. Sobre Nós */
  .rocha-about-text {
    text-align: center !important;
  }

  .rocha-about-text p {
    text-align: center !important;
  }

  .rocha-stats-row {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .rocha-stat-card-highlight {
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 24px 18px !important;
  }

  .rocha-stat-number-wrap {
    justify-content: center !important;
    margin: 0 auto 8px !important;
  }

  .rocha-stat-desc {
    text-align: center !important;
  }

  .rocha-about-stat-card {
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 18px 14px !important;
  }

  .rocha-stat-sub-icon {
    margin: 0 auto 8px !important;
  }

  /* 08. Diferenciais */
  #diferenciais .ncl-grid-3,
  .rocha-diff-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  #diferenciais .ncl-highlight,
  .rocha-diff-card {
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 22px 18px !important;
  }

  .rocha-diff-icon {
    margin: 0 auto 12px !important;
  }

  #diferenciais .ncl-highlight strong,
  #diferenciais .ncl-highlight p,
  .rocha-diff-card h3,
  .rocha-diff-card p {
    text-align: center !important;
  }

  /* 09. Área de Atendimento */
  .rocha-area-header {
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .rocha-city-tags {
    justify-content: center !important;
  }

  .rocha-area-card {
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .rocha-area-card h3 {
    text-align: center !important;
  }

  .rocha-area-notice {
    text-align: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    align-items: center !important;
    padding: 18px 16px !important;
  }

  .rocha-area-notice p {
    text-align: center !important;
  }

  #area-atendimento .ncl-btn {
    width: 100% !important;
    max-width: 360px !important;
    margin: 24px auto 0 !important;
    justify-content: center !important;
    text-align: center !important;
  }

  /* 10. Como Funciona */
  .rocha-steps-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .rocha-step-card {
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 24px 18px !important;
  }

  .rocha-step-num {
    text-align: center !important;
    margin: 0 auto 10px !important;
  }

  .rocha-step-card h3,
  .rocha-step-card p {
    text-align: center !important;
  }

  /* 11. Depoimentos */
  .rocha-testi-header {
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .rocha-testi-card {
    text-align: center !important;
  }

  .rocha-testi-stars {
    justify-content: center !important;
    margin: 0 auto 10px !important;
  }

  .rocha-testi-author {
    justify-content: center !important;
    text-align: center !important;
  }

  .rocha-testi-btn-wrap {
    text-align: center !important;
    justify-content: center !important;
    margin-top: 24px !important;
  }

  .rocha-btn-maps {
    margin: 0 auto !important;
    width: 100% !important;
    max-width: 320px !important;
    justify-content: center !important;
    text-align: center !important;
  }

  /* 12. FAQ */
  .rocha-faq-question {
    text-align: center !important;
    justify-content: center !important;
    gap: 12px !important;
    padding: 18px 16px !important;
    font-size: 15px !important;
  }

  .rocha-faq-answer {
    max-height: 0 !important;
    overflow: hidden !important;
    text-align: center !important;
    padding: 0 16px !important;
    transition: max-height .35s cubic-bezier(0, 1, 0, 1), padding .35s ease !important;
  }

  .rocha-faq-item.active .rocha-faq-answer {
    max-height: 600px !important;
    padding: 0 16px 18px !important;
    transition: max-height .4s ease-in-out, padding .2s ease !important;
  }

  .rocha-faq-answer p {
    text-align: center !important;
  }

  /* 13. CTA Final */
  .ncl-cta-content {
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .ncl-cta-actions {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 380px !important;
    margin: 24px auto 0 !important;
  }

  .ncl-cta-actions .ncl-btn {
    width: 100% !important;
    max-width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .ncl-contact-info {
    justify-content: center !important;
    text-align: center !important;
  }

  /* 14. Rodapé Centralizado */
  .ncl-footer__top {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
    text-align: center !important;
  }

  .ncl-footer__brand {
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  .ncl-footer__brand .rocha-logo-brand {
    margin: 0 auto 16px !important;
    justify-content: center !important;
  }

  .ncl-footer__text {
    text-align: center !important;
    margin: 0 auto 20px !important;
  }

  .ncl-footer__cta {
    margin: 0 auto !important;
    width: 100% !important;
    max-width: 280px !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .ncl-footer__col {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .ncl-footer__col h3 {
    text-align: center !important;
  }

  .ncl-footer__col h3::after {
    left: 50% !important;
    transform: translateX(-50%) !important;
  }

  .ncl-footer__links {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    padding: 0 !important;
  }

  .ncl-footer__links a::before {
    display: none !important;
  }

  .ncl-footer__contact {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  .ncl-footer__contact-item {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    justify-content: center !important;
    gap: 8px !important;
  }

  .ncl-footer__social {
    justify-content: center !important;
    margin: 18px auto 0 !important;
  }

  .ncl-footer__bottom {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    justify-content: center !important;
    gap: 16px !important;
  }

  .ncl-footer-totop {
    margin: 8px auto !important;
  }

  /* 15. WhatsApp Flutuante & Modal Seguro no Mobile */
  .ncl-whats-float {
    width: 52px !important;
    height: 52px !important;
    bottom: 16px !important;
    right: 16px !important;
  }

  .ncl-whats-float svg {
    width: 28px !important;
    height: 28px !important;
  }

  .ncl-whats-modal {
    right: calc(100% + 10px) !important;
    font-size: 13px !important;
    padding: 6px 12px !important;
    max-width: calc(100vw - 85px) !important;
  }

  /* 16. Modern Web Guidance: content-visibility para acelerar renderização mobile */
  #portfolio,
  #sobre,
  #diferenciais,
  #como-funciona,
  #depoimentos,
  #faq {
    content-visibility: auto;
    contain-intrinsic-size: 1px 750px;
  }
}
