/* siqueira_compressores_vs/assets/css/style.css */

/* Definições Globais e Variáveis de Cor */
:root {
    --color-brand-yellow: #ffc400; /* Cor Padrão */
    --color-brand-dark-blue: #192437; /* Cor Padrão */
}

body { 
    font-family: 'Inter', sans-serif;
}

/* Classes para Cores Dinâmicas */
.footer-bg {
     background-color: var(--color-brand-dark-blue);
}
.brand-yellow {
    background-color: var(--color-brand-yellow);
}

/* Estilo do Link de Navegação Ativo */
.nav-link-active {
    border-bottom: 3px solid var(--color-brand-yellow);
    color: #1a202c; /* Cor de texto mais escura para destaque */
    font-weight: 700;
}

/* Padrão de Fundo para a Página "Sobre" */
.custom-bg-pattern {
    background-image: url('https://www.transparenttextures.com/patterns/clean-gray-paper.png');
    background-color: #f7fafc;
}

/* Estilos para o Botão do WhatsApp */
.Btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 55px;
  height: 55px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition-duration: 0.3s;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
  background-color: #00d757;
}

.sign {
  width: 100%;
  transition-duration: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sign svg {
  width: 35px;
  height: 35px;
}

.sign svg path {
  fill: white;
}
.text {
  position: absolute;
  right: 0%;
  width: 0%;
  opacity: 0;
  color: white;
  font-size: 1.2em;
  font-weight: 600;
  transition-duration: 0.3s;
}

.Btn:hover {
  width: 180px;
  border-radius: 40px;
  transition-duration: 0.3s;
}

.Btn:hover .sign {
  width: 30%;
  transition-duration: 0.3s;
  padding-left: 10px;
}

.Btn:hover .text {
  opacity: 1;
  width: 70%;
  transition-duration: 0.3s;
  padding-right: 10px;
}
.Btn:active {
  transform: translate(2px, 2px);
}