:root {
  --roxo-principal: #6d2c91;
  --roxo-claro: #b374d4;
  --roxo-escuro: #3f1a5f;
  --branco: #ffffff;
}

body {
  background-color: #ffffff;
  color: #212529;
}

.main-content {
  background-color: var(--roxo-principal) !important;
  color: var(--branco) !important;
  border-radius: 16px;
  padding: 3rem 2rem;
  max-width: 1100px;
  margin: -50px auto 3rem auto;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
}

.hero-banner {
  height: 100vh;
  background: url('image/internet-residencial.webp') center center / cover no-repeat;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

/* Animação suave */
.hero-overlay .text-center {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.3s;
}
/* Cards */
.card {
  background-color: var(--branco);
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
}

.card .card-title {
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.card .card-text {
  font-size: 0.95rem;
  color: #333;
}

/* Botão */
.btn-cibertec {
  background-color: var(--roxo-claro);
  border: none;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.btn-cibertec:hover {
  background-color: var(--roxo-escuro);
  color: #fff;
}
.text-cibertec{
    color: var(--roxo-escuro);
}
.cobertura{
    border-radius: 10px;
}

.accordion-item {
  border: none;
  border-radius: 8px;
  margin-bottom: 0.5rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.accordion-header .accordion-button {
  background-color: var(--roxo-claro);
  color: #fff;
  font-weight: 500;
  border: none;
}

.accordion-button:not(.collapsed) {
  background-color: var(--roxo-escuro);
  color: #fff;
  box-shadow: none;
}

.accordion-button:focus {
  border: none;
  box-shadow: none;
}

.accordion-body {
  background-color: #ffffff;
  color: #333;
}
.central_assinante_web {
  text-decoration: none;
  
  background-color: #fff;
  color: var(--roxo-principal);

  border: 2px solid var(--roxo-escuro);
  padding: 12px 12px;
  border-radius: 10px;

  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 2000;
  transition: background-color 0.3s ease, color 0.3s ease;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px; /* Se tiver ícone + texto */
}

.central_assinante_web:hover,:focus {
  background-color: var(--roxo-claro);
  color: var(--roxo-escuro);
}
.whatsapp {
  text-decoration: none;
  
  background-color: #25D366;
  color: #fff;

  border: 2px solid #ffffff;
  padding: 12px 12px;
  border-radius: 10px;

  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 2000;
  transition: background-color 0.3s ease, color 0.3s ease;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px; /* Se tiver ícone + texto */
}
.whatsapp:hover,:focus {
  background-color: #fff;
  color: #25D366;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero-banner {
    height: 90vh;
  }
  .hero-overlay {
    padding: 1rem;
    text-align: center;
  }
  .hero-overlay h1 {
    font-size: 1.8rem;
  }
  .hero-overlay p {
    font-size: 1rem;
  }
}
