:root{
  --descubra-lgpd-orange:#FF7B16;
  --descubra-lgpd-blue:#578E9E;
  --descubra-lgpd-ink:#21343B;
  --descubra-lgpd-muted:#66777E;
  --descubra-lgpd-line:#E1E8EB;
  --descubra-lgpd-white:#FFFFFF;
}

.descubra-lgpd{
  position:fixed;
  left:22px;
  bottom:22px;
  z-index:999999;
  width:min(410px,calc(100vw - 44px));
  padding:20px;
  border:1px solid var(--descubra-lgpd-line);
  border-radius:18px;
  background:rgba(255,255,255,.98);
  color:var(--descubra-lgpd-ink);
  box-shadow:0 18px 54px rgba(24,46,55,.16);
  font-family:Inter,Roboto,"Segoe UI",Arial,sans-serif;
  opacity:0;
  transform:translateY(14px);
  transition:opacity .25s ease,transform .25s ease;
  overflow:hidden;
}

.descubra-lgpd.is-visible{
  opacity:1;
  transform:translateY(0);
}

.descubra-lgpd.is-leaving{
  opacity:0;
  transform:translateY(14px);
  pointer-events:none;
}

.descubra-lgpd__accent{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:4px;
  background:linear-gradient(90deg,var(--descubra-lgpd-orange),var(--descubra-lgpd-blue));
}

.descubra-lgpd__content{
  display:grid;
  grid-template-columns:46px minmax(0,1fr);
  gap:14px;
  align-items:start;
}

.descubra-lgpd__icon{
  width:46px;
  height:46px;
  display:grid;
  place-items:center;
  border-radius:14px;
  background:#FFF1E6;
  color:var(--descubra-lgpd-orange);
}

.descubra-lgpd__icon svg{
  width:25px;
  height:25px;
}

.descubra-lgpd__copy{
  min-width:0;
}

.descubra-lgpd__title{
  display:block;
  margin:1px 0 7px;
  color:var(--descubra-lgpd-ink);
  font-size:17px;
  font-weight:850;
  line-height:1.25;
}

.descubra-lgpd__message{
  margin:0;
  color:var(--descubra-lgpd-muted);
  font-size:14px;
  line-height:1.55;
}

.descubra-lgpd__links{
  display:flex;
  flex-wrap:wrap;
  gap:7px 14px;
  margin-top:10px;
}

.descubra-lgpd__links a{
  color:var(--descubra-lgpd-orange);
  font-size:12px;
  font-weight:800;
  text-decoration:none;
  transition:color .18s ease;
}

.descubra-lgpd__links a:hover,
.descubra-lgpd__links a:focus{
  color:var(--descubra-lgpd-blue);
  outline:none;
}

.descubra-lgpd__actions{
  display:grid;
  grid-template-columns:minmax(0,.8fr) minmax(0,1.2fr);
  gap:10px;
  margin-top:16px;
}

.descubra-lgpd__accept,
.descubra-lgpd__reject{
  -webkit-appearance:none!important;
  appearance:none!important;
  min-height:46px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  gap:8px!important;
  margin:0!important;
  padding:10px 16px!important;
  border-radius:12px!important;
  font:inherit!important;
  font-size:14px!important;
  font-weight:850!important;
  line-height:1.2!important;
  cursor:pointer!important;
  text-transform:none!important;
  letter-spacing:0!important;
  text-decoration:none!important;
  transition:background-color .18s ease,border-color .18s ease,color .18s ease,box-shadow .18s ease,transform .18s ease!important;
}

.descubra-lgpd__accept{
  border:1px solid var(--descubra-lgpd-orange)!important;
  background:var(--descubra-lgpd-orange)!important;
  background-color:var(--descubra-lgpd-orange)!important;
  color:#fff!important;
  box-shadow:0 8px 20px rgba(255,123,22,.20)!important;
}

.descubra-lgpd__accept svg{
  width:18px;
  height:18px;
}

.descubra-lgpd__accept:hover,
.descubra-lgpd__accept:focus,
.descubra-lgpd__accept:active{
  border-color:var(--descubra-lgpd-blue)!important;
  background:var(--descubra-lgpd-blue)!important;
  background-color:var(--descubra-lgpd-blue)!important;
  color:#fff!important;
  outline:none!important;
  box-shadow:0 8px 20px rgba(87,142,158,.22)!important;
  transform:translateY(-1px)!important;
}

.descubra-lgpd__reject{
  border:1px solid var(--descubra-lgpd-blue)!important;
  background:#fff!important;
  background-color:#fff!important;
  color:var(--descubra-lgpd-blue)!important;
  box-shadow:none!important;
}

.descubra-lgpd__reject:hover,
.descubra-lgpd__reject:focus,
.descubra-lgpd__reject:active{
  border-color:var(--descubra-lgpd-blue)!important;
  background:var(--descubra-lgpd-blue)!important;
  background-color:var(--descubra-lgpd-blue)!important;
  color:#fff!important;
  outline:none!important;
  box-shadow:0 8px 20px rgba(87,142,158,.18)!important;
  transform:translateY(-1px)!important;
}

@media(max-width:600px){
  .descubra-lgpd{
    left:12px;
    right:12px;
    bottom:12px;
    width:auto;
    padding:17px;
    border-radius:16px;
  }
  .descubra-lgpd__content{
    grid-template-columns:40px minmax(0,1fr);
    gap:12px;
  }
  .descubra-lgpd__icon{
    width:40px;
    height:40px;
    border-radius:12px;
  }
  .descubra-lgpd__title{font-size:16px}
  .descubra-lgpd__message{font-size:13px}
  .descubra-lgpd__actions{grid-template-columns:1fr 1fr;gap:8px}
  .descubra-lgpd__accept,.descubra-lgpd__reject{padding:10px 12px!important}
}

@media(prefers-reduced-motion:reduce){
  .descubra-lgpd,
  .descubra-lgpd__accept,
  .descubra-lgpd__reject{
    transition:none!important;
  }
}
