
/* Exemplo de estilos essenciais do tema Konviva Pulse para WordPress */

body {
  font-family: 'Inter', Arial, sans-serif;
  background: #f8f8fa;
  color: #222;
  margin: 0;
  padding: 0;
}

.site-header, .site-footer {
  background: #00003F;
  color: #fff;
}

.btn-primary {
  background: linear-gradient(90deg, #6000DD 0%, #00C2FF 100%);
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  padding: 0.75rem 2rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.04);
}
.btn-primary:hover {
  background: linear-gradient(90deg, #6000DD 0%, #0099cc 100%);
}

.main-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2rem;
}
.main-menu li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.main-menu li a:hover {
  color: #00C2FF;
}

/* HeroBanner slider (exemplo) */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s;
  z-index: 1;
}
.hero-slide.active {
  opacity: 1;
  z-index: 2;
}
.hero-next, .hero-prev {
  cursor: pointer;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  padding: 0.75rem;
  color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
.hero-next { right: 2rem; }
.hero-prev { left: 2rem; }

/* Modal exemplo */
.modal-proposta {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.modal-proposta.active {
  display: flex;
}
.modal-proposta .modal-content {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

/* Responsividade básica */
@media (max-width: 768px) {
  .main-menu {
    flex-direction: column;
    gap: 1rem;
    background: #00003F;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
  }
  .main-menu.open {
    display: flex;
  }
}
