/* ============================================================
   INNER PAGES — PAGE BANNER
   ============================================================ */
.page-banner {
  min-height: 380px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 160px 0 80px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(2,62,148,0.93) 0%, rgba(1,20,50,0.97) 100%);
}
.page-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}
.page-banner-content h1 {
  color: var(--white);
  font-size: clamp(32px, 5vw, 60px);
  margin-bottom: 18px;
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
}
.breadcrumb a { color: rgba(255,255,255,0.75); transition: var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { color: rgba(255,255,255,0.3); font-size: 16px; }
/* ============================================================
   INNER PAGES — MISSION / VISION / VALUES
   ============================================================ */
.mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.mvv-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  border-top: 4px solid var(--primary);
}
.mvv-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.mvv-icon {
  width: 72px; height: 72px; background: var(--light-blue); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; transition: var(--transition);
}
.mvv-card:hover .mvv-icon { background: var(--primary); }
.mvv-card h3 { font-size: 20px; color: var(--primary); margin-bottom: 16px; }
.mvv-card p { color: var(--secondary); font-size: 15px; line-height: 1.75; }
/* ============================================================
   INNER PAGES — DIFFERENTIALS
   ============================================================ */
.diff-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.diff-item {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 36px 32px; background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: var(--transition);
}
.diff-item:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.diff-num {
  font-family: 'Montserrat', sans-serif; font-size: 52px; font-weight: 900;
  color: rgba(2,62,148,0.08); line-height: 1; min-width: 64px; flex-shrink: 0;
}
.diff-item h3 { font-size: 18px; margin-bottom: 10px; }
.diff-item p { color: var(--secondary); font-size: 15px; line-height: 1.75; }
/* ============================================================
   INNER PAGES — SERVICE DETAIL BLOCKS
   ============================================================ */
.service-detail {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px;
  align-items: center; padding: 72px 0; border-bottom: 1px solid var(--border);
}
.service-detail:first-of-type { padding-top: 0; }
.service-detail:last-of-type { border-bottom: none; padding-bottom: 0; }
.service-detail.reverse .service-detail-img { order: 2; }
.service-detail.reverse .service-detail-text { order: 1; }
.service-detail-img img {
  width: 100%; height: 420px; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
}
.service-detail-text p { color: var(--secondary); font-size: 16px; line-height: 1.85; margin-bottom: 20px; }
.service-includes { margin-top: 28px; border-top: 1px solid var(--border); }
.service-includes li {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 0; border-bottom: 1px solid var(--border);
  font-size: 15px; color: var(--dark);
}
.service-includes li svg { color: var(--primary); flex-shrink: 0; }
/* ============================================================
   INNER PAGES — PROJECTS FULL GRID
   ============================================================ */
.projetos-filter {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 52px;
}
.filter-btn {
  padding: 10px 26px; border-radius: 100px;
  font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: 0.5px; border: 2px solid var(--border);
  color: var(--secondary); background: var(--white); transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--primary); color: var(--white); border-color: var(--primary);
}
.projetos-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.projeto-card-wrap { display: block; }
.projeto-card--full { position: relative; overflow: hidden; border-radius: var(--radius-lg); }
.projeto-card--full img {
  width: 100%; height: 320px; object-fit: cover;
  transition: transform 0.5s ease; display: block;
}
.projeto-card--full:hover img { transform: scale(1.06); }
.projeto-desc-hover {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(2,62,148,0.93); color: rgba(255,255,255,0.9);
  padding: 20px 22px; font-size: 14px; line-height: 1.6;
  transform: translateY(100%); transition: transform 0.35s ease;
}
.projeto-card--full:hover .projeto-desc-hover { transform: translateY(0); }
/* ============================================================
   INNER PAGES — CONTACT CHANNELS BAR
   ============================================================ */
.contact-channels { background: var(--primary); }
.channels-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.channel-item {
  display: flex; align-items: center; gap: 16px; padding: 28px 24px;
  border-right: 1px solid rgba(255,255,255,0.12);
  transition: var(--transition); color: var(--white);
}
.channel-item:last-child { border-right: none; }
.channel-item:hover { background: var(--primary-dark); }
.channel-icon {
  width: 52px; height: 52px; background: rgba(255,255,255,0.12);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: var(--transition);
}
.channel-item:hover .channel-icon { background: rgba(255,255,255,0.22); }
.channel-item strong {
  display: block; font-family: 'Montserrat', sans-serif;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase; opacity: 0.7; margin-bottom: 5px;
}
.channel-item span { font-size: 14px; font-weight: 600; }
.channel-whatsapp .channel-icon { background: rgba(37,211,102,0.25); }
/* ============================================================
   INNER PAGES — CTA SECTION
   ============================================================ */
.cta-section { background: var(--primary); padding: 90px 0; text-align: center; }
.cta-section h2 { color: var(--white); font-size: clamp(24px, 4vw, 44px); margin-bottom: 16px; }
.cta-section p {
  color: rgba(255,255,255,0.8); font-size: 18px; margin-bottom: 40px;
  max-width: 580px; margin-left: auto; margin-right: auto; line-height: 1.7;
}
.btn-cta-white {
  background: var(--white); color: var(--primary); padding: 18px 40px; font-size: 15px;
  border-radius: var(--radius); font-family: 'Montserrat', sans-serif; font-weight: 700;
  display: inline-flex; align-items: center; gap: 10px;
  letter-spacing: 0.5px; transition: var(--transition);
}
.btn-cta-white:hover { background: var(--light); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,0.2); }
/* ============================================================
   INNER PAGES — MAP
   ============================================================ */
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); height: 420px; }
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }
/* ============================================================
   INNER PAGES — RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) { .service-detail { gap: 48px; } }
@media (max-width: 900px) {
  .mvv-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .service-detail, .service-detail.reverse { grid-template-columns: 1fr; gap: 36px; }
  .service-detail.reverse .service-detail-img,
  .service-detail.reverse .service-detail-text { order: unset; }
  .service-detail-img img { height: 300px; }
  .projetos-full-grid { grid-template-columns: repeat(2, 1fr); }
  .channels-grid { grid-template-columns: repeat(2, 1fr); }
  .channels-grid .channel-item:nth-child(2) { border-right: none; }
  .page-banner { padding: 130px 0 64px; }
}
@media (max-width: 600px) {
  .mvv-grid, .diff-grid, .projetos-full-grid { grid-template-columns: 1fr; }
  .channels-grid { grid-template-columns: 1fr; }
  .channel-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .page-banner { padding: 110px 0 52px; background-attachment: scroll; }
  .hero-bg { background-attachment: scroll; }
}