/* Lgpd */

.lgpd-fixed {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999999999;
  
  width: 380px;
  max-width: calc(100% - 40px);
  height: auto;
  
  background: var(--biaunno-white, #ffffff);
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--biaunno-gray-lighter, #dfe6e9);
  
  font-family: var(--font-secondary, "Roboto", sans-serif);
  display: none;
  overflow: hidden;
}

.lgpd-fixed__content {
  padding: 1.5rem;
  font-size: 0.95rem;
  color: var(--biaunno-gray, #636e72);
  line-height: 1.6;
}

.lgpd-fixed__content p {
  margin-bottom: 1rem;
  color: var(--biaunno-dark, #2d3436);
  font-weight: 500;
}

.lgpd-fixed__content p a {
  color: var(--biaunno-red, #e63946);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.lgpd-fixed__content p a:hover {
  color: var(--biaunno-red-dark, #c92a35);
  border-bottom-color: var(--biaunno-red-dark, #c92a35);
}

/* Botão Principal */
.lgpd-fixed .btn-lgpd {
  display: block;
  width: 100%;
  padding: 0.8rem 1.5rem;
  margin-top: 1rem;
  
  font-family: var(--font-primary, "Montserrat", sans-serif);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.5px;
  
  background-color: var(--biaunno-red, #e63946);
  color: var(--biaunno-white, #ffffff);
  border: 2px solid var(--biaunno-red, #e63946);
  border-radius: 50px; /* Estilo pílula igual ao menu */
  
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.lgpd-fixed .btn-lgpd:hover {
  background-color: transparent;
  color: var(--biaunno-red, #e63946);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}

/* Botões secundários ou links extras dentro do container */
.lgpd-fixed button:not(.btn-lgpd) {
  color: var(--biaunno-gray, #636e72);
  font-weight: 600;
  text-decoration: underline;
  background-color: transparent;
  border: none;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.lgpd-fixed button:not(.btn-lgpd):hover {
  color: var(--biaunno-red, #e63946);
}

/* Estados de Exibição */
.lgpd-fixed-block {
  display: block;
  animation: slideInUp 0.5s ease forwards;
}

.lgpd-fixed-hidden {
  display: none;
}

/* Animação de entrada */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsividade */
@media (max-width: 640px) {
  .lgpd-fixed {
    width: auto;
    left: 15px;
    right: 15px;
    bottom: 15px;
    margin: 0;
  }

  .lgpd-fixed__content {
    padding: 1.25rem;
    font-size: 0.9rem;
  }

  .lgpd-fixed .btn-lgpd {
    padding: 0.7rem 1rem;
    font-size: 0.85rem;
  }
}