.lintec-cookie-consent{
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas: "icon content" "button button";
  gap: 12px 14px;
  width: min(420px, calc(100vw - 44px));
  padding: 18px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  background: #0e0e0e;
  color: #ffffff;
  box-shadow: 0 22px 60px rgba(0,0,0,.24);
}

.lintec-cookie-consent[hidden]{
  display: none !important;
}

.lintec-cookie-consent__icon{
  grid-area: icon;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fabb00;
  color: #0e0e0e;
  font-size: 20px;
}

.lintec-cookie-consent__content{
  grid-area: content;
}

.lintec-cookie-consent__content strong{
  display: block;
  margin-bottom: 4px;
  color: #ffffff;
  font-size: 17px;
  font-weight: 900;
}

.lintec-cookie-consent__content p{
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: 14px;
  line-height: 1.5em;
}

.lintec-cookie-consent__content a{
  color: #fabb00;
  font-weight: 800;
  text-decoration: underline;
}

.lintec-cookie-consent__button{
  grid-area: button;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  background: #fabb00;
  color: #0e0e0e;
  font-weight: 900;
  cursor: pointer;
  transition: all .25s ease;
}

.lintec-cookie-consent__button:hover{
  background: #ffffff;
}

/* Ajustes responsivos Lintec v21 - popup de privacidade */
@media (max-width: 575px){
  .lintec-cookie-consent{
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px 12px;
    padding: 14px;
    border-radius: 18px;
  }

  .lintec-cookie-consent__icon{
    width: 38px;
    height: 38px;
    font-size: 17px;
  }

  .lintec-cookie-consent__content strong{
    font-size: 15px;
  }

  .lintec-cookie-consent__content p{
    font-size: 13px;
    line-height: 1.45em;
  }

  .lintec-cookie-consent__button{
    min-height: 42px;
    font-size: 14px;
  }
}

