
/*
Theme Name: Creatvs
Author: Max
Version: 1.0
*/

.bg-purple-custom {
  background-color: #9753E6;
}

.bg-orange-custom {
  background-color: #F3A532
}

.bg-blue-custom {
  background-color: #449FE1
}

.button-home {
  background-color: #F3A532;
  border: none;
  border-radius: 5px;
  padding: 40px 40px;
  margin: 10px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  color: white;
  transition: background-color 0.3s ease;
}


.fundo-hero-loja {
  background-image: url('../img/bg-loja.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 400px;
}
.fundo-hero-catalogo {
  background-image: url('../img/lagoa.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 400px;
}

.fundo-hero-aprenda {
  background: #449FE1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 400px;

  /* Flexbox para centralizar o conteúdo verticalmente */
  display: flex;
  align-items: center; 
  color: white; /* Garante que os textos (Aprenda, etc) fiquem brancos e legíveis sobre o azul */
}

/* Ajuste opcional para o botão não sumir no fundo azul */
.fundo-hero-aprenda .btn-primary {
  background-color: #ffffff;
  color: #449FE1;
  border-color: #ffffff;
  font-weight: bold;
}

.fundo-hero-aprenda .btn-primary:hover {
  background-color: #f0f0f0;
  color: #337ab7;
}


.btn-filtro {
  background-color: transparent;
  color: #ff0000; /* Cor do texto (Vermelho igual ao seu original) */
  border: 2px solid #ff0000; /* Borda grossa personalizada */
  border-radius: 30px; /* Bordas bem arredondadas (estilo pílula) */
  padding: 8px 20px;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* Efeito ao passar o mouse nos botões */
.btn-filtro:hover {
  background-color: #ff0000;
  color: #ffffff;
  border-color: #d10000;
  transform: translateY(-2px); /* Leve efeito de flutuar */
  box-shadow: 0 4px 8px rgba(255, 0, 0, 0.2);
}

/* Estilização customizada para o botão do WhatsApp */
.btn-whatsapp-custom {
    background-color: #2fff2f !important;
    border-color: #2fff2f !important;
    color: #000000 !important; /* Texto em preto para dar contraste com o verde neon */
    transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Efeito ao passar o mouse */
.btn-whatsapp-custom:hover {
    background-color: #1ed71e !important; /* Um verde um pouco mais escuro ao passar o mouse */
    border-color: #1ed71e !important;
    color: #000000 !important;
    transform: scale(1.03); /* Leve efeito de crescimento */
}