/* ================================================
   CASA COELHO – cc-mobile-menu.css
   ================================================ */

/* Previne scroll horizontal na página */
html, body { overflow-x: hidden !important; max-width: 100vw !important; }

@media (max-width: 767px) {
  /* Esconde ícones originais */
  #_mobile_user_info { display: none !important; }
  #_mobile_cart      { display: none !important; }

  /* Mata menu Bootstrap offcanvas completamente */
  #mobileMenu {
    display: none !important;
    visibility: hidden !important;
    transform: translateX(-100%) !important;
    box-shadow: none !important;
  }
  .offcanvas-backdrop, .modal-backdrop {
    display: none !important; opacity: 0 !important;
  }
  .main-menu, .js-menu-canvas {
    box-shadow: none !important;
  }

  /* ================================================
     HEADER: hamburger esquerda | logo centrado | lupa direita
     ================================================ */
  .header-bottom .header-bottom__row,
  .header-bottom > .container > .row,
  .header-bottom > .container-fluid > .row {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    position: relative !important;
  }

  /* Logo centrado absolutamente */
  .header-bottom .logo,
  .header-bottom ._desktop_logo,
  .header-bottom #_desktop_logo {
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    text-align: center !important;
  }

  /* Hamburger fica à esquerda (primeira coluna) */
  .header-bottom .header__hamburger,
  .header-bottom #_mobile_menu_btn,
  .header-bottom [data-bs-target="#mobileMenu"] {
    order: -1 !important;
    flex-shrink: 0 !important;
  }

  /* Lupa original vai para a direita */
  .header-bottom .search-widget,
  .header-bottom [data-bs-toggle="offcanvas"][aria-controls="searchCanvas"],
  .header-bottom [aria-label="Show search bar"],
  .header-bottom #search_widget {
    order: 99 !important;
    flex-shrink: 0 !important;
    margin-left: auto !important;
  }

  /* Esconde a lupa quando o searchCanvas está aberto (para não sobrepor) */
  body.offcanvas-search-open .header-bottom .search-widget,
  body.offcanvas-search-open .header-bottom [data-bs-toggle="offcanvas"][aria-controls="searchCanvas"] {
    opacity: 0 !important;
    pointer-events: none !important;
  }
}

/* ================================================
   OVERLAY
   ================================================ */
.cc-overlay {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,.65);
  z-index: 9998;
  backdrop-filter: blur(3px);
}
.cc-overlay.active { display: block; animation: ccF .28s ease forwards; }
@keyframes ccF { from { opacity: 0; } to { opacity: 1; } }

/* ================================================
   DRAWER
   ================================================ */
div#ccDrawer,
div#ccDrawer.cc-drawer {
  position: fixed !important;
  top: 0 !important; left: 0 !important;
  width: 280px !important;
  max-width: 90vw !important;
  height: 100% !important;
  background: #111 !important;
  z-index: 9999 !important;
  transform: translateX(-100%) !important;
  transition: transform .34s cubic-bezier(.4, 0, .2, 1) !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
  box-shadow: none !important;
  visibility: visible !important;
  border: none !important;
  border-radius: 0 !important;
  outline: none !important;
}
div#ccDrawer.open,
div#ccDrawer.cc-drawer.open {
  transform: translateX(0) !important;
  box-shadow: 8px 0 40px rgba(0,0,0,.7) !important;
}

/* ---- Logo topo ---- */
.cc-dh {
  background: #1a1a1a;
  padding: 12px 16px;
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid #252525;
  flex-shrink: 0;
}
.cc-dh img { height: 28px; width: auto; display: block; }

/* ---- Strip conta / carrinho ---- */
.cc-strip {
  display: flex;
  background: #181818;
  border-bottom: 1px solid #252525;
  flex-shrink: 0;
}
.cc-strip a {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 12px 8px;
  color: #bbb;
  text-decoration: none !important;
  font-size: 10px; font-weight: 700; letter-spacing: .4px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background .2s, color .2s;
}
.cc-strip a:hover { background: #242424; color: #fff; }
.cc-strip a svg { width: 15px; height: 15px; flex-shrink: 0; }
.cc-strip-sep { width: 1px; background: #252525; margin: 8px 0; }
.cc-badge {
  background: #c0392b; color: #fff;
  font-size: 9px; font-weight: 700;
  border-radius: 50%; width: 15px; height: 15px;
  display: flex; align-items: center; justify-content: center;
}

/* ---- Nav ---- */
.cc-nav { flex: 1; overflow-y: auto; overflow-x: hidden; padding: 4px 0; }
.cc-nav::-webkit-scrollbar { width: 0; }

.cc-nav-lbl {
  padding: 12px 18px 3px;
  font-size: 9px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: #333;
}

/* Item nível 1 */
.cc-nav-item { border-left: 3px solid transparent; }
.cc-nav-item.open { border-left-color: #c0392b; }

/* Row = área clicável para expandir + link de texto */
.cc-nav-row {
  display: flex;
  align-items: center;
  width: 100%;
  cursor: pointer; /* toda a row expande */
}

/* Link nível 1 — só o texto é clicável para navegar */
.cc-nav-row > a {
  padding: 13px 18px;
  color: #ccc;
  text-decoration: none !important;
  font-size: 12px; font-weight: 700; letter-spacing: .7px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color .18s, background .18s;
  /* NÃO ocupa flex:1 — só o tamanho do texto */
}
.cc-nav-row > a:hover,
.cc-nav-item.open > .cc-nav-row > a { color: #fff; }

/* Zona clicável para expandir (preenche o resto da row) */
.cc-nav-expzone {
  flex: 1;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 14px;
}

/* Ícone + rotativo */
.cc-expand-icon {
  color: #c0392b;
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s;
  flex-shrink: 0;
}
.cc-expand-icon svg { width: 13px; height: 13px; }
.cc-nav-item.open > .cc-nav-row .cc-expand-icon,
.cc-sub-item.open2 > .cc-nav-row .cc-expand-icon { transform: rotate(45deg); }

/* Submenu nível 1 */
.cc-sub { display: none; background: #0d0d0d; border-top: 1px solid #1a1a1a; }
.cc-nav-item.open > .cc-sub { display: block; }

/* Sub-item nível 2 */
.cc-sub-item > .cc-nav-row { background: #0d0d0d; cursor: pointer; }
.cc-sub-item > .cc-nav-row > a {
  padding: 10px 10px 10px 24px;
  color: #999; font-size: 11px; font-weight: 600;
  letter-spacing: .4px; text-transform: uppercase;
  white-space: nowrap;
  text-decoration: none !important;
  transition: color .15s;
}
.cc-sub-item.open2 > .cc-nav-row > a { color: #fff; }
.cc-sub-item > .cc-nav-row .cc-expand-icon { color: #555; }

/* Submenu nível 2 */
.cc-sub2 { display: none; background: #0a0a0a; }
.cc-sub-item.open2 > .cc-sub2 { display: block; }

.cc-sub2 a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 14px 9px 34px;
  color: #777; text-decoration: none !important;
  font-size: 10.5px; font-weight: 600; letter-spacing: .4px;
  text-transform: uppercase;
  white-space: nowrap;
  border-left: 2px solid transparent;
  transition: color .15s, background .15s, border-color .15s;
}
.cc-sub2 a:hover { color: #ccc; background: #111; border-left-color: #c0392b; }
.cc-sub2 a svg { opacity: .2; width: 10px; height: 10px; flex-shrink: 0; }

.cc-nav-sep { height: 1px; background: #1a1a1a; margin: 2px 14px; }

/* ---- Rodapé ---- */
.cc-foot {
  padding: 10px 14px;
  border-top: 1px solid #1d1d1d;
  display: flex; align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.cc-foot-tel {
  color: #c0392b; text-decoration: none;
  font-size: 11px; font-weight: 600;
  white-space: nowrap;
  flex: 1;
}
.cc-dh-close {
  background: none;
  border: 1px solid #333;
  color: #666;
  font-size: 14px; line-height: 1;
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  margin-left: auto;
  padding: 0;
  transition: background .2s, color .2s, border-color .2s;
}
.cc-dh-close:hover { background: #c0392b; color: #fff; border-color: #c0392b; }

/* ================================================
   SEARCH OFFCANVAS
   ================================================ */
@media (max-width: 767px) {
  #searchCanvas { background: #0f0f0f !important; border-bottom: 2px solid #c0392b !important; }
  #searchCanvas .offcanvas-header { padding: 12px 14px !important; }
  #searchCanvas input[type="text"],
  #searchCanvas input[type="search"] {
    background: #1e1e1e !important; border: 1px solid #333 !important;
    border-radius: 7px !important; color: #fff !important;
    padding: 11px 15px !important; font-size: 14px !important;
    box-shadow: none !important; outline: none !important;
  }
  #searchCanvas input:focus { border-color: #c0392b !important; box-shadow: none !important; }
  #searchCanvas input::placeholder { color: #555 !important; }
  #searchCanvas .btn-close { filter: invert(1) !important; opacity: .45 !important; }
}


/* ================================================
   PÁGINA SOBRE NÓS - cc-sobre
   ================================================ */

/* ── REMOVE ESPAÇO ENTRE BREADCRUMB E BANNER ── */
.cms-id-4 #content-wrapper,
.cms-id-4 .page-content,
.cms-id-4 #content {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* ── ESCONDE BREADCRUMB ── */
.cms-id-4 .breadcrumb__wrapper {
  display: none !important;
}

/* ── ESCONDE TÍTULO PADRÃO DO PRESTASHOP ── */
.cms-id-4 .page-header {
  display: none;
}

/* ── BANNER FULLWIDTH ── */
.cc-banner {
  position: relative;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  max-height: 80vh;
  min-height: 500px;
  overflow: hidden;
  background: #111;
}
.cc-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: grayscale(30%) brightness(0.85);
}
.cc-banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.35);
}
.cc-banner-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  font-style: italic;
  color: #ffffff !important;
  text-align: center;
  letter-spacing: 2px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
  margin: 0;
  padding: 0 20px;
  text-transform:uppercase;
}

/* ── CRONOGRAMA ── */
.cc-timeline-wrap {
  padding: 48px 20px 32px;
  max-width: 900px;
  margin: 0 auto;
}
.cc-timeline {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
}
.cc-timeline::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: #222;
}
.cc-tl-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  position: relative;
  z-index: 1;
}
.cc-tl-year {
  font-family: 'Montserrat', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(18px, 3vw, 26px);
  color: #222;
  margin-bottom: 4px;
}
.cc-tl-dot {
  width: 14px;
  height: 14px;
  background: #222;
  border-radius: 50%;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.cc-tl-label {
  font-family: 'Montserrat', sans-serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(11px, 1.8vw, 15px);
  color: #222;
  text-transform: uppercase;
  line-height: 1.4;
  max-width: 120px;
}

/* ── TEXTO ── */
.cc-texto {
  max-width: 860px;
  margin: 8px auto 48px;
  padding: 0 20px;
}
.cc-texto p {
  font-family: 'Montserrat', sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(14px, 1.8vw, 17px);
  line-height: 1.85;
  color: #222 !important;
  margin-bottom: 1.4em;
  text-align: justify;
}

/* ── RESPONSIVE MOBILE ── */
@media (max-width: 768px) {

  /* Banner */
  .cc-banner {
    max-height: none;
    min-height: 280px;
    height: 60vw;
  }

  .cc-banner img {
    height: 100%;
    object-position: center center;
  }

  .cc-banner-title {
    font-size: clamp(22px, 6vw, 36px);
    letter-spacing: 1px;
  }

  /* Timeline vertical */
  .cc-timeline {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 32px;
    max-width: 320px;
    margin: 0 auto;
  }

  .cc-timeline::before {
    top: 8px;
    bottom: 8px;
    left: 6px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .cc-tl-item {
    flex-direction: row;
    align-items: center;
    text-align: left;
    margin-bottom: 32px;
    gap: 16px;
    width: 100%;
  }

  .cc-tl-dot {
    position: absolute;
    left: -29px;
    margin: 0;
    flex-shrink: 0;
  }

  .cc-tl-year {
    min-width: 60px;
    margin-bottom: 0;
  }

  .cc-tl-label {
    max-width: none;
    text-align: left;
  }

  /* Texto */
  .cc-texto {
    padding: 0 16px;
  }

  .cc-texto p {
    font-size: 14px;
    text-align: left;
  }
}/* ================================================
   PÁGINA SHOW ROOM - cc-showroom
   ================================================ */
/* ── REMOVE ESPAÇO E BREADCRUMB ── */
.cms-id-8 #content-wrapper,
.cms-id-8 .page-content,
.cms-id-8 #content {
  padding-top: 0 !important;
  margin-top: 0 !important;
}
.cms-id-8 .breadcrumb__wrapper {
  display: none !important;
}
.cms-id-8 .page-header {
  display: none;
}
/* ── BANNER FULLWIDTH ── */
.cc-banner {
  position: relative;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  height: 80vh;
  min-height: 500px;
  max-height: 800px;
  overflow: hidden;
  background: #111;
}
.cc-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: grayscale(30%) brightness(0.85);
}
/* ── BANNER SHOWROOM — foca no centro/baixo da imagem ── */
.cms-id-8 .cc-banner img {
  object-position: center 70% !important;
}
/* ── TEXTO ── */
.cc-showroom .cc-texto {
  max-width: 860px;
  margin: 40px auto 48px;
  padding: 0 20px;
}
.cc-showroom .cc-texto p {
  font-family: 'Montserrat', sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(14px, 1.8vw, 17px);
  line-height: 1.85;
  color: #222 !important;
  margin-bottom: 1.4em;
  text-align: justify;
}
/* ── GRID DE FOTOS ── */
.cc-grid {
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cc-grid-row {
  display: flex;
  gap: 8px;
}
.cc-grid-item {
  overflow: hidden;
  flex: 1;
}
.cc-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.4s ease;
}
.cc-grid-item:hover img {
  transform: scale(1.03);
}
/* Linha de 2 — landscape */
.cc-grid-2 .cc-grid-item {
  height: 400px;
}
/* Linha de 4 — portrait */
.cc-grid-4 .cc-grid-item {
  height: 500px;
}
/* ── RESPONSIVE MOBILE ── */
@media (max-width: 768px) {
    .carousel .carousel-caption .caption-description {
    max-width: 40rem;
    margin-top: 85px;
}

.carousel .carousel-control-next {
  display: none;
}

.cc-manutencao .cc-banner-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(26px, 4.5vw, 52px);
  font-weight: 700;
  font-style: italic;
  color: #ffffff !important;
  letter-spacing: 2px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
  margin: 0 0 12px;
}
.cc-manutencao .cc-banner-sub2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(11px, 1.4vw, 14px);
  font-weight: 400;
  color: rgba(255,255,255,0.55) !important;
  margin: 0 0 28px;
  padding-bottom: -11px;
  display: none;
}

.carousel .carousel-control-prev {
  display: none;
}
  .cc-showroom .cc-texto {
    padding: 0 16px;
    margin: 24px auto 32px;
  }
  .cc-showroom .cc-texto p {
    font-size: 14px;
    text-align: left;
  }
  .cc-grid {
    padding: 0 12px;
    gap: 6px;
  }
  .cc-grid-2,
  .cc-grid-4 {
    flex-wrap: wrap;
  }
  .cc-grid-2 .cc-grid-item {
    flex: 1 1 calc(50% - 3px);
    height: 180px;
  }
  .cc-grid-4 .cc-grid-item {
    flex: 1 1 calc(50% - 3px);
    height: 180px;
  }
}

/* ================================================
   PÁGINA MANUTENÇÃO - cc-manutencao
   ================================================ */
/* ── REMOVE ESPAÇO E BREADCRUMB ── */
.cms-id-9 #content-wrapper,
.cms-id-9 .page-content,
.cms-id-9 #content {
  padding-top: 0 !important;
  margin-top: 0 !important;
}
.cms-id-9 .breadcrumb__wrapper {
  display: none !important;
}
.cms-id-9 .page-header {
  display: none;
}

/* ── BANNER ── */
.cc-manutencao .cc-banner {
  position: relative;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  height: 80vh;
  min-height: 500px;
  max-height: 800px;
  overflow: hidden;
  background: #111;
}
.cc-manutencao .cc-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: brightness(0.55);
}
.cc-manutencao .cc-banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  text-align: center;
}
.cc-manutencao .cc-banner-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(26px, 4.5vw, 52px);
  font-weight: 700;
  font-style: italic;
  color: #ffffff !important;
  letter-spacing: 2px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
  margin: 0 0 12px;
}
.cc-manutencao .cc-banner-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(13px, 1.8vw, 18px);
  font-weight: 400;
  color: rgba(255,255,255,0.8) !important;
  margin: 0 0 8px;
}
.cc-manutencao .cc-banner-sub2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(11px, 1.4vw, 14px);
  font-weight: 400;
  color: rgba(255,255,255,0.55) !important;
  margin: 0 0 28px;
}
.cc-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff !important;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(13px, 1.6vw, 16px);
  font-weight: 600;
  text-decoration: none !important;
  border-radius: 4px;
  padding: 14px 28px;
}

/* ── INTRO ── */
.cc-intro {
  max-width: 860px;
  margin: 48px auto 0;
  padding: 0 20px;
}
.cc-intro p {
  font-family: 'Montserrat', sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(14px, 1.8vw, 17px);
  line-height: 1.85;
  color: #222 !important;
  margin-bottom: 1.2em;
  text-align: justify;
}

/* ── FEATURES ESCURAS ── */
.cc-features-dark {
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  position: relative;
  background: #1a1a1a;
  padding: 56px 20px;
  margin-top: 56px;
  margin-bottom: 0;
}
.cc-features-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}
.cc-feature {
  text-align: center;
  padding: 0 8px;
}
.cc-feature-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  color: #fff;
}
.cc-feature h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(11px, 1.4vw, 13px);
  color: #fff !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 10px;
}
.cc-feature hr {
  border: none;
  border-top: 1px solid #444;
  width: 30px;
  margin: 0 auto 10px;
}
.cc-feature p {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(11px, 1.3vw, 13px);
  color: #888 !important;
  line-height: 1.6;
  margin: 0;
}

/* ── CARDS DE SERVIÇOS ── */
.cc-services-wrap {
  max-width: 1100px;
  margin: 56px auto 0;
  padding: 0 20px;
}
.cc-services-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(18px, 2.5vw, 28px);
  color: #222 !important;
  text-align: center;
  margin: 0 0 32px;
}
.cc-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cc-service-card {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 28px 16px 24px;
  text-align: center;
}
.cc-service-icon-wrap {
  width: 64px;
  height: 64px;
  background: #111;
  border-radius: 4px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cc-service-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(11px, 1.3vw, 13px);
  color: #222 !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 10px;
}
.cc-service-card p {
  font-family: 'Montserrat', sans-serif;
  font-style: italic;
  font-size: clamp(11px, 1.2vw, 13px);
  color: #666 !important;
  line-height: 1.6;
  margin: 0;
}

/* ── DISTRITOS ── */
.cc-districts-wrap {
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  position: relative;
  background: #f5f5f5;
  padding: 48px 20px;
  margin-top: 56px;
}
.cc-districts-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.cc-districts-inner h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(16px, 2vw, 22px);
  color: #222 !important;
  margin: 0 0 8px;
  text-align: center;
}
.cc-districts-inner p {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(12px, 1.4vw, 14px);
  color: #666 !important;
  text-align: center;
  margin: 0 0 24px;
}
.cc-district-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.cc-tag {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 5px 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(11px, 1.2vw, 13px);
  color: #444 !important;
}

/* ── CTA FINAL ── */
.cc-cta-final {
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  position: relative;
  background: #111;
  padding: 56px 20px;
}
.cc-cta-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.cc-cta-inner h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(20px, 3vw, 32px);
  color: #fff !important;
  margin: 0 0 12px;
}
.cc-cta-inner p {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(13px, 1.6vw, 16px);
  color: rgba(255,255,255,0.7) !important;
  line-height: 1.7;
  margin: 0 0 28px;
}

/* ── RESPONSIVE MOBILE ── */
@media (max-width: 768px) {
    .cc-manutencao {
    padding-top: 40px;
    
}
  .cc-manutencao .cc-banner {
    height: 70vw;
    min-height: 320px;
    max-height: none;
  }
  .cc-features-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 20px;
  }
  .cc-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cc-intro {
    margin-top: 32px;
  }
  .cc-services-wrap {
    margin-top: 40px;
  }
}

@media (max-width: 480px) {
  .cc-features-inner {
    grid-template-columns: 1fr;
  }
  .cc-services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}
.cc-feature-icon {
  font-size: 48px !important;
  color: #fff !important;
  margin-bottom: 16px;
  display: block;
}

