/* ============================================================
   CTN LOCAÇÕES — style.css
   Estilos complementares (o crítico — header + hero — está inline no HTML)
   ============================================================ */

/* ---------- Base das seções ---------- */
.section {
  padding: 80px 0;
}

.section__head {
  text-align: center;
  margin-bottom: 48px;
}

.section__head--left {
  text-align: left;
  margin-bottom: 24px;
}

.section__title {
  font-family: var(--fonte-titulo);
  font-weight: 800;
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  text-transform: uppercase;
  color: var(--laranja);
  margin-bottom: 12px;
}

.section__subtitle {
  color: var(--cinza-medio);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 16px;
}

.section__head--left .section__subtitle {
  margin: 0 0 16px;
}

.section__line {
  display: inline-block;
  width: 60px;
  height: 4px;
  background: var(--laranja);
  border-radius: 2px;
}

.section__head--left .section__line {
  display: block;
}

/* ---------- Botões complementares ---------- */
.btn--laranja {
  background: var(--laranja);
  color: var(--branco);
}

.btn--laranja:hover {
  background: var(--laranja-hover);
  transform: translateY(-2px);
}

.btn--grande {
  padding: 16px 36px;
  font-size: 1.1rem;
}

.btn--sm {
  padding: 8px 16px;
  font-size: 0.8rem;
}

/* ============================================================
   EQUIPAMENTOS
   ============================================================ */
.equipamentos {
  background: var(--branco);
}

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

.card {
  background: var(--branco);
  border: 1px solid var(--cinza-borda);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.card__img-wrap {
  flex-shrink: 0;
}

.card:hover {
  border-color: var(--laranja);
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(242, 107, 29, 0.15);
}

.card__img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--cinza-claro);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card__placeholder {
  color: #C4C8CE;
  position: absolute;
}

.card__img-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__body {
  padding: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card__title {
  font-family: var(--fonte-titulo);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.35;
  color: var(--preto);
  margin-bottom: 12px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card__btn {
  width: 100%;
  padding: 10px 12px;
  font-size: 0.85rem;
}

.equipamentos__more {
  text-align: center;
  margin-top: 48px;
}

.equipamentos__more p {
  font-family: var(--fonte-titulo);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--preto);
  margin-bottom: 16px;
}

/* ============================================================
   DIFERENCIAIS
   ============================================================ */
.diferenciais {
  background: var(--azul);
  padding: 48px 0;
}

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

.diferencial {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  color: var(--branco);
}

.diferencial svg {
  color: var(--branco);
}

.diferencial span {
  font-family: var(--fonte-titulo);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================================
   SOBRE
   ============================================================ */
.sobre {
  background: var(--cinza-claro);
  position: relative;
  overflow: hidden;
}

.sobre__bgword {
  position: absolute;
  top: -0.12em;
  right: -0.06em;
  font-family: var(--fonte-titulo);
  font-weight: 800;
  font-size: clamp(9rem, 24vw, 22rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(26, 60, 110, 0.07);
  pointer-events: none;
  user-select: none;
}

.sobre__grid {
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}

/* Composição da foto: bloco azul deslocado + faixa listrada de obra */
.sobre__visual {
  position: relative;
}

.sobre__visual::before {
  content: "";
  position: absolute;
  top: -18px;
  right: -18px;
  width: 55%;
  height: 55%;
  border-radius: 6px;
  background: repeating-linear-gradient(45deg, var(--laranja) 0, var(--laranja) 10px, transparent 10px, transparent 22px);
  z-index: 0;
}

.sobre__visual::after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: -18px;
  width: 50%;
  height: 55%;
  border-radius: 6px;
  background: var(--azul);
  z-index: 0;
}

.sobre__foto {
  position: relative;
  z-index: 1;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #E9EBEE;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 24px 48px rgba(15, 38, 71, 0.22);
}

.sobre__placeholder {
  color: #C4C8CE;
  position: absolute;
}

.sobre__foto img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sobre__badge {
  position: absolute;
  z-index: 2;
  bottom: 22px;
  right: -16px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--branco);
  border-left: 4px solid var(--laranja);
  border-radius: 6px;
  padding: 12px 18px;
  box-shadow: 0 12px 28px rgba(15, 38, 71, 0.25);
}

.sobre__badge svg {
  color: var(--laranja);
  flex-shrink: 0;
}

.sobre__badge strong {
  display: block;
  font-family: var(--fonte-titulo);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--azul);
  line-height: 1.25;
}

.sobre__badge span {
  font-size: 0.78rem;
  color: var(--cinza-medio);
}

.sobre__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fonte-titulo);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--laranja);
  margin-bottom: 14px;
}

.sobre__eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--laranja);
  border-radius: 2px;
}

.sobre__title {
  font-family: var(--fonte-titulo);
  font-weight: 800;
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  line-height: 1.12;
  text-transform: uppercase;
  color: var(--azul);
  margin-bottom: 18px;
}

.sobre__title span {
  color: var(--laranja);
}

.sobre__texto {
  color: var(--preto);
  margin-bottom: 28px;
  max-width: 58ch;
}

.sobre__lista {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
  margin-bottom: 32px;
}

.sobre__lista li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--branco);
  border: 1px solid var(--cinza-borda);
  border-radius: 6px;
  padding: 12px 14px;
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.35;
}

.sobre__chip {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(242, 107, 29, 0.12);
  border-radius: 6px;
  color: var(--laranja);
}

.sobre__acoes {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.sobre__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fonte-titulo);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--azul);
  border-bottom: 2px solid var(--laranja);
  padding-bottom: 3px;
  transition: color 0.25s, gap 0.25s;
}

.sobre__link:hover {
  color: var(--laranja);
  gap: 12px;
}

/* ============================================================
   CTA INTERMEDIÁRIO
   ============================================================ */
.cta {
  background: linear-gradient(135deg, var(--laranja) 0%, #E5570F 100%);
  padding: 72px 0;
}

.cta__content {
  text-align: center;
}

.cta__title {
  font-family: var(--fonte-titulo);
  font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  text-transform: uppercase;
  color: var(--branco);
  margin-bottom: 12px;
}

.cta__subtitle {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   CONTATO / LOCALIZAÇÃO
   ============================================================ */
.contato {
  background: var(--branco);
}

.contato__grid {
  display: grid;
  grid-template-columns: minmax(340px, 42%) 1fr;
  gap: 56px;
  align-items: center;
}

.contato__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fonte-titulo);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--laranja);
  margin-bottom: 14px;
}

.contato__eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--laranja);
  border-radius: 2px;
}

.contato__title {
  font-family: var(--fonte-titulo);
  font-weight: 800;
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  line-height: 1.12;
  text-transform: uppercase;
  color: var(--azul);
  margin-bottom: 18px;
}

.contato__title span {
  color: var(--laranja);
}

.contato__texto {
  color: var(--preto);
  margin-bottom: 28px;
  max-width: 48ch;
}

/* Painel destaque do WhatsApp */
.zap-card {
  background: linear-gradient(135deg, var(--azul) 0%, var(--azul-escuro) 100%);
  border-radius: 6px;
  padding: 24px;
  margin-bottom: 12px;
}

.zap-card__top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.zap-card__icon {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 211, 102, 0.16);
  border-radius: 6px;
  color: var(--verde-zap);
}

.zap-card__dados strong {
  display: block;
  font-family: var(--fonte-titulo);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--branco);
  line-height: 1.2;
}

.zap-card__dados span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.zap-card__btn {
  width: 100%;
}

/* Canais secundários: linhas limpas, sem caixas */
.contato__canais {
  list-style: none;
}

.contato__canais li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 4px;
  border-bottom: 1px solid var(--cinza-borda);
}

.contato__canais li:last-child {
  border-bottom: 0;
}

.contato__chip {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(242, 107, 29, 0.12);
  border-radius: 6px;
  color: var(--laranja);
}

.contato__canais small {
  display: block;
  font-family: var(--fonte-titulo);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cinza-medio);
}

.contato__canais a {
  font-weight: 600;
  color: var(--preto);
  word-break: break-word;
  transition: color 0.25s;
}

.contato__canais a:hover {
  color: var(--laranja);
}

/* Mapa com moldura de obra + cartão de endereço sobreposto */
.contato__mapa-wrap {
  position: relative;
}

.contato__mapa-wrap::before {
  content: "";
  position: absolute;
  top: -16px;
  right: -16px;
  width: 45%;
  height: 40%;
  border-radius: 6px;
  background: repeating-linear-gradient(45deg, var(--laranja) 0, var(--laranja) 10px, transparent 10px, transparent 22px);
  z-index: 0;
}

.contato__mapa {
  position: relative;
  z-index: 1;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(15, 38, 71, 0.18);
}

.contato__mapa iframe {
  display: block;
}

.contato__endereco {
  position: absolute;
  z-index: 2;
  left: 20px;
  bottom: 20px;
  right: auto;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--branco);
  border-radius: 6px;
  padding: 14px 18px;
  box-shadow: 0 12px 28px rgba(15, 38, 71, 0.25);
  max-width: calc(100% - 40px);
}

.contato__endereco-txt strong {
  display: block;
  font-family: var(--fonte-titulo);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--azul);
  line-height: 1.3;
}

.contato__endereco-txt span {
  font-size: 0.8rem;
  color: var(--cinza-medio);
}

.contato__rota {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 10px;
  font-family: var(--fonte-titulo);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--laranja);
  white-space: nowrap;
  transition: gap 0.25s;
}

.contato__rota:hover {
  gap: 10px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--azul-escuro);
  color: rgba(255, 255, 255, 0.85);
  border-top: 3px solid var(--laranja);
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 56px 20px 40px;
}

.footer__logo img {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
}

.footer__logo-text {
  font-family: var(--fonte-titulo);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.5px;
  color: var(--branco);
  margin-bottom: 16px;
}

.footer__desc {
  font-size: 0.95rem;
  margin: 12px 0 8px;
}

.footer__slogan {
  font-style: italic;
  color: var(--laranja);
  font-size: 0.9rem;
}

.footer__title {
  font-family: var(--fonte-titulo);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--branco);
  margin-bottom: 16px;
}

.footer__links,
.footer__contatos {
  list-style: none;
}

.footer__links li,
.footer__contatos li {
  margin-bottom: 10px;
}

.footer__links a {
  transition: color 0.25s;
}

.footer__links a:hover {
  color: var(--laranja);
}

.footer__contatos li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
}

.footer__contatos a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.25s;
}

.footer__contatos a:hover {
  color: var(--laranja);
}

.footer__contatos svg {
  flex-shrink: 0;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================================
   WHATSAPP FLUTUANTE
   ============================================================ */
.zap-flutuante {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--verde-zap);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
}

.zap-flutuante.visivel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(37, 211, 102, 0.55);
  }
  70% {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25), 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ============================================================
   ANIMAÇÕES DE ENTRADA (Intersection Observer)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visivel {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .zap-flutuante.visivel {
    animation: none;
  }
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1024px) {
  .equipamentos__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .sobre__grid,
  .contato__grid {
    grid-template-columns: 1fr;
  }

  .sobre__grid {
    gap: 56px;
  }

  .sobre__visual {
    max-width: 520px;
    margin: 0 auto;
    width: calc(100% - 36px);
  }

  .sobre__badge {
    right: -8px;
  }

  .sobre__bgword {
    font-size: 10rem;
    opacity: 0.7;
  }

  .contato__grid {
    gap: 40px;
  }

  .contato__mapa-wrap {
    width: calc(100% - 16px);
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: left;
  }

  .footer__contatos li,
  .footer__contatos a {
    justify-content: flex-start;
  }

  .footer__bottom {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 56px 0;
  }

  .equipamentos__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .card__body {
    padding: 12px;
  }

  .card__title {
    font-size: 15px;
  }

  .card__btn {
    font-size: 0.78rem;
    padding: 9px 8px;
  }

  .diferenciais__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
  }

  .sobre__lista {
    grid-template-columns: 1fr;
  }

  .sobre__badge {
    padding: 10px 14px;
  }

  .contato__grid {
    grid-template-columns: 1fr;
  }

  .contato__mapa iframe {
    height: 380px;
  }

  .contato__endereco {
    position: static;
    margin-top: 14px;
    max-width: none;
    flex-wrap: wrap;
    box-shadow: none;
    border: 1px solid var(--cinza-borda);
  }

  .cta__actions .btn {
    width: 100%;
    max-width: 340px;
  }

  .hero__actions .btn {
    width: 100%;
    max-width: none;
  }

  .hero__badge {
    display: flex;
    width: 100%;
    justify-content: center;
  }
}
