/* Avisos (modais de aviso no site - estilo "Aviso de Férias") - espelho do _avisos.less */

.avisos-site {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  pointer-events: none;
}

.avisos-site .aviso-modal {
  pointer-events: auto;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.avisos-site .aviso-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.avisos-site .aviso-box {
  position: relative;
  display: flex;
  align-items: center;
  width: 520px;
  max-width: 100%;
  padding: 4rem 3rem 4rem 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  background: #ff632d;
  color: #fff;
  text-align: left;
}

.avisos-site .aviso-box.aviso-icon-warning { background: #ff632d; }
.avisos-site .aviso-box.aviso-icon-info { background: #2d7ab8; }
.avisos-site .aviso-box.aviso-icon-success { background: #42b073; }
.avisos-site .aviso-box.aviso-icon-default { background: #ff632d; }

.avisos-site .aviso-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 25px;
  height: 25px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.avisos-site .aviso-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.avisos-site .aviso-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  margin-right: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avisos-site .aviso-icon .fa {
  font-size: 70px;
  opacity: 0.95;
}

.avisos-site .aviso-content {
  flex: 1;
  min-width: 0;
}

.avisos-site .aviso-title {
  margin: 0 0 0.5rem;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}

.avisos-site .aviso-description {
  font-size: 1.5rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
}

.avisos-site .aviso-description p:last-child { margin-bottom: 0; }
.avisos-site .aviso-description strong { font-weight: 700; }

/* Banner de avisos na home (fixo antes de #categories) */
.avisos-banner-section {
  width: 100%;
  margin-top: 30px;
  margin-bottom: -3rem;
  border-radius: 5px;
  background: #ff632d;
  color: #fff;
}
.avisos-banner-section .common-limiter {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.avisos-banner-bar {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.avisos-banner-bar.aviso-icon-warning,
.avisos-banner-bar.aviso-icon-default { background: transparent; }
.avisos-banner-bar.aviso-icon-info,
.avisos-banner-bar.aviso-icon-success { background: transparent; color: inherit; }
.avisos-banner-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.avisos-banner-icon .fa {
  font-size: 2.5rem;
  opacity: 0.95;
  color: #fff;
}
.avisos-banner-content {
  flex: 1;
  min-width: 0;
  font-size: 1.5rem;
  line-height: 1.5;
}
.avisos-banner-content .avisos-banner-title { font-weight: 700; }
.avisos-banner-content .avisos-banner-description { color: rgba(255, 255, 255, 0.98); }
.avisos-banner-content .avisos-banner-title + .avisos-banner-description::before { content: ' '; }
.avisos-banner-content p:last-child { margin-bottom: 0; }
.avisos-banner-content strong { font-weight: 700; }
