/* Header */
#header {
  background: #323548;
  padding: 5px 0;
  height: 80px;
  transition: all 0.5s;
}

#header .logo h1 {
  font-size: 20px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
}

#header .navbar ul ul {
  background: #ffffff;
  border-radius: 6px;
  padding: 10px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#header .navbar ul ul li a {
  color: #333;
  padding: 10px 20px;
  font-size: 15px;
  display: block;
  transition: 0.3s;
}

#header .navbar ul ul li a:hover {
  background-color: #f3f3f3;
  color: #e65100;
}

/* Layout geral */
html, body { height: 100%; }
body { display: flex; flex-direction: column; }
#main { flex: 1; margin-top: 1rem; }
#action-cards h3 { margin-bottom: 30px; }

input[type=radio], input[type=checkbox]  {
  border: 0px;
  width: 22px;
  height: 22px;
  vertical-align: middle;
}

/* LANDING */
.consciencia-landing {
  min-height: calc(100vh - 160px);
  display: flex;
  align-items: center;
  background:rgba(255,255,255,0.92); 
  padding: 50px 0 60px 0;
}

.consciencia-landing__container {
  max-width: 780px;
  text-align: center;
}

.consciencia-landing__logo {
  max-width: 340px;
  width: 80%;
  height: auto;
  margin: 0 auto 12px auto;
  display: block;
}

.consciencia-landing__sub {
  color: rgba(255,255,255,0.92);
  font-weight: 600;
  margin-bottom: 8px;
}

.consciencia-landing__headline {
  color: #6a2c91;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin: 10px 0 30px 0;
  text-transform: uppercase;
}

.consciencia-cta {
  background: #6a2c91;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 14px;
  padding: 18px 24px;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(0,0,0,0.20);
  position: relative;
}

.consciencia-cta::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 18px;
  background: linear-gradient(90deg, #00d070, #17a2b8, #ef6603, #e03040);
  z-index: -1;
}

.consciencia-cta:hover {
  background: #ac1cff;
  color: #fff;
}

.consciencia-accordion {
  margin-top: 14px;
}

.consciencia-accordion__toggle {
  width: 100%;
  max-width: 420px;
  background: #6a2c91;
  color: rgba(255,255,255,0.95);
  border: none;
  box-shadow: 0 4px 12px rgba(106, 44, 145, 0.25);
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 700;
}

.consciencia-accordion__body {
  max-width: 420px;
  margin: 10px auto 0 auto;
  text-align: left;
  background: #6a2c91;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  padding: 14px 16px;
  color: rgba(255,255,255,0.95);
}


/* espaçamento superior da página Cartas Práticas */
.page-title-section {
    padding-top: 30px;   
    padding-bottom: 10px;
}

.page-title-section h2 {
    margin-bottom: 15px;
}

.page-title-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.page-title-icon {
    height: 42px;
}

.page-title-wrapper h2 {
    margin: 0;
    font-weight: 600;
}

.setup-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.10);
  padding: 18px 18px;
  margin-bottom: 16px;
}

.setup-title {
  font-weight: 800;
  margin-bottom: 6px;
}

.setup-subtitle {
  color: #666;
}

.setup-block {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 14px;
  height: 100%;
  background: #fafbfc;
}

.setup-block__title {
  font-weight: 800;
  margin-bottom: 10px;
  color: #2a2c39;
}

.setup-option {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 10px 10px;
  border-radius: 10px;
  cursor: pointer;
}

.setup-option:hover {
  background: rgba(239,102,3,0.08);
}

.setup-actions {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}

.consciencia-btn.btn-primary {
  background: #ef6603;
  border-color: #ef6603;
  font-weight: 800;
  border-radius: 12px;
  padding: 12px 18px;
}

.consciencia-btn.btn-primary:disabled {
  opacity: 0.55;
}

/* CARTA (ODS)           */
.action-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.10);
  overflow: hidden;
  margin: 18px auto 0 auto;
  max-width: 880px;
}

.action-card__header {
  padding: 14px 16px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.action-card__sdg-title {
  font-weight: 900;
  margin: 0;
  font-size: 16px;
  line-height: 1.2;
}

.action-card__ods-icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(255,255,255,0.12);
  padding: 6px;
}

.action-card__content {
  padding: 18px 16px 10px 16px;
  color: #444;
}

.action-card__content p {
  color: #555;
  font-size: 14px;
}

.action-card__content strong {
  color: #2a2c39;
}

.action-card__footer {
  padding: 12px 16px 16px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.level-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f2f3f7;
  color: #2a2c39;
  border: 1px solid #e6e8ef;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 800;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.9;
}

.brand-mark img {
  height: 26px;
  width: auto;
}

/* Botões da carta */
.action-card__btn {
  background: #ef6603;
  border: 1px solid #ef6603;
  color: #fff;
  font-weight: 800;
  border-radius: 10px;
  padding: 10px 12px;
}

.action-card__btn:hover {
  background: #fc8129;
  border-color: #fc8129;
  color: #fff;
}

.action-card__btn.secondary {
  background: transparent;
  border: 1px solid #e6e8ef;
  color: #2a2c39;
}

.action-card__btn.secondary:hover {
  background: #f7f8f9;
}

/* tabela critérios (mediador) */
.table.table-bordered.table-sm {
  font-size: 13px;
}