/* Estilos para o aviso de cookies */
.aviso-cookies {
  position: fixed;
  bottom: 0 !important; /* Começa escondido para o efeito de transição */
  left: 0;
  right: 0;
  width: 85% !important;
  background-color: #f8f9fa; /* Cor de fundo do aviso */
  margin: 1.5em auto;
  padding: 10px;
  box-shadow: 0 0 0.7rem  black;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  font-family: Arial, sans-serif;
  transition: bottom 0.5s ease-in-out; /* Animação suave */
  box-sizing: border-box; /* Garante que padding não afete a largura final */
  border-radius: 0.4rem;
}

.aviso-cookies p {
  margin: 0;
  font-size: 14px;
  color: #333; /* Cor do texto */
  flex-grow: 1;
  margin-right: 20px;
}

.aviso-cookies button {
  background-color: #007bff; /* Cor do botão */
  color: #fff; /* Cor do texto do botão */
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s;
}

/* Container da Grade */
.pastel-button-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    font-family: 'Roboto', sans-serif;
    padding: 20px;
    max-width: 1024px;
    margin: 30px auto;
}

/* Botão Pastel Green */
.pastel-green-button {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: #e8f5e9; /* Fundo Verde Pastel */
    color: #2e7d32; /* Texto Verde Escuro para leitura */
    border: 2px solid #c8e6c9; /* Borda Verde Menta */
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.8px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 6px rgba(46, 125, 50, 0.05);
    min-height: 130px;
}

/* Ícones */
.pastel-green-button i.material-icons {
    font-size: 40px;
    color: #4caf50;
    transition: transform 0.4s ease;
}

/* Hover Effects */
.pastel-green-button:hover {
    background-color: #c8e6c9;
    border-color: #a5d6a7;
    box-shadow: 0 8px 15px rgba(46, 125, 50, 0.15);
    transform: translateY(-5px);
}

/* Animação do Ícone no Hover */
.pastel-green-button:hover i.material-icons {
    transform: rotate(-10deg) scale(1.15);
}

/* Efeito Ripple (Ondulação) */
.ripple-green {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(46, 125, 50, 0.2);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.aviso-cookies button:hover {
  background-color: #0056b3; /* Cor do botão ao passar o mouse */
}