
	/* =========================================
   CTA PREMIUM - DEMOLIDORA INTERNACIONAL
========================================= */

.cta-premium {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* IMAGEM DE FUNDO PARALLAX */
.cta-premium-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transform: scale(1.05);
}

/* OVERLAY SOFISTICADO */
.cta-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(0,0,0,0.9) 20%,
    rgba(0,0,0,0.7) 50%,
    rgba(81,59,12,0.5) 100%
  );
  z-index: 2;
}

/* CONTEÚDO */
.cta-premium .cta-container {
  position: relative;
  z-index: 3;
  text-align: center;
}

/* TÍTULO */
.cta-premium-title {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* SUBTEXTO */
.cta-premium-text {
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* WRAPPER DOS BOTÕES */
.cta-premium-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* BOTÃO BASE */
.cta-btn-premium {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 38px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

/* BOTÃO WHATSAPP */
.cta-btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
}

/* BOTÃO EMPRESA */
.cta-btn-empresa {
  border: 2px solid rgba(255,255,255,0.6);
  color: #fff;
  background: transparent;
}

/* HOVER MODERNO */
.cta-btn-premium:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
	color: #fff;	
}

/* BRILHO NO HOVER */
.cta-btn-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: 0.5s;
}

.cta-btn-premium:hover::before {
  left: 100%;
}

/* HOVER ESPECÍFICO */
.cta-btn-empresa:hover {
  background: linear-gradient(135deg, #c8a96a, #513b0c);
  border-color: transparent;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .cta-premium-title {
    font-size: 24px;
  }

  .cta-premium-text {
    font-size: 16px;
  }

  .cta-premium-buttons {
    flex-direction: column;
    align-items: center;
  }
}
