@import url('https://fonts.googleapis.com/css2?family=Delius&display=swap');
.font-1 {
  font-family: "Roboto", system-ui, -apple-system, sans-serif;
}
.font-2 {
  font-family: "Delius", cursive;
  font-weight: 700;
}
.topbar {
  background-color: #333;
  font-family: "Roboto";
  font-size: 12px;
}
.topbar .inner {
  padding: 5px 0px;
}
.topbar .inner * {
  color: #bfbfbf;
}
.topbar .inner a {
  margin-right: 6px;
}
.topbar .inner a:hover {
  color: #fff;
}
.topbar .inner a:hover i {
  color: #fff;
}
.topbar .access-drop {
  background-color: #333;
}
.cfe-header {
  background: linear-gradient(135deg, #B3D353 0%, #02684C 100%);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 100;
}
.footer {
  margin-top: 30px;
  background: linear-gradient(135deg, #02684C 0%, #B3D353 100%);
  padding: 20px 15px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}
.footer a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}
.footer a:hover {
  color: #fff;
}
.footer-sticky.sticky-fixed {
  position: fixed;
  bottom: 0px !important;
  width: 100%;
}
.cfe-container {
  padding: 24px 16px;
}
@media (min-width: 960px) {
  .cfe-container {
    padding: 24px 0;
  }
}
.cfe-section-title {
  font-family: "Delius", cursive;
  font-weight: 700;
  font-size: 22px;
  color: #02684C;
  margin: 0 0 16px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid #e0e6d3;
}
.cfe-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  border: 1px solid #e0e6d3;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cfe-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.cfe-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.cfe-badge.cfe-badge--success {
  background: #d1fae5;
  color: #065f46;
}
.cfe-badge.cfe-badge--danger {
  background: #fee2e2;
  color: #991b1b;
}
.cfe-badge.cfe-badge--info {
  background: #dbeafe;
  color: #1e40af;
}
.cfe-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.15s ease;
}
.cfe-btn.cfe-btn--primary {
  background: #02684C;
  color: #fff;
}
.cfe-btn.cfe-btn--primary:hover {
  background: #015138;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(2, 104, 76, 0.25);
}
.cfe-btn.cfe-btn--success {
  background: #27ae60;
  color: #fff;
}
.cfe-btn.cfe-btn--success:hover {
  background: #146c43;
}
.cfe-btn.cfe-btn--ghost {
  background: transparent;
  color: #02684C;
  border: 1px solid #e0e6d3;
}
.cfe-btn.cfe-btn--ghost:hover {
  background: #f7f9ed;
  border-color: #02684C;
}
.cfe-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.cfe-form .cfe-field {
  margin-bottom: 16px;
}
.cfe-form .cfe-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #212529;
  margin-bottom: 6px;
}
.cfe-form .cfe-field input, .cfe-form .cfe-field select, .cfe-form .cfe-field textarea {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #e0e6d3;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.cfe-form .cfe-field input:focus, .cfe-form .cfe-field select:focus, .cfe-form .cfe-field textarea:focus {
  outline: none;
  border-color: #2ecc71;
  box-shadow: 0 0 0 3px rgba(63, 81, 181, 0.1);
}
.cfe-message {
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 16px;
  font-size: 14px;
}
.cfe-message.cfe-message--success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
}
.cfe-message.cfe-message--info {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1e40af;
}
.cfe-message.cfe-message--warning {
  background: #fffbeb;
  border: 1px solid #fde68a;
  color: #92400e;
}
.cfe-sidebar .cfe-sidebar-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  color: #212529;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.15s ease;
}
.cfe-sidebar .cfe-sidebar-link:hover {
  background: #f7f9ed;
  color: #02684C;
  text-decoration: none;
}
.cfe-sidebar .cfe-sidebar-link.cfe-sidebar-link--active {
  background: #02684C;
  color: #fff;
}
.cfe-sidebar .cfe-sidebar-link.cfe-sidebar-link--active:hover {
  background: #015138;
  color: #fff;
}
.cfe-course-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid #e0e6d3;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.cfe-course-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}
.cfe-course-card .cfe-course-image-link {
  display: block;
  text-decoration: none;
}
.cfe-course-card .cfe-course-image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  background: linear-gradient(135deg, #e8ece3 0%, #dce2d3 100%);
}
.cfe-course-card .cfe-course-image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.cfe-course-card .cfe-course-image-wrapper:hover img {
  transform: scale(1.05);
}
.cfe-course-card .cfe-course-blank-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8ece3 0%, #dce2d3 100%);
}
.cfe-course-card .cfe-course-image-overlay {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
}
.cfe-course-card .cfe-course-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.cfe-course-card .cfe-course-title {
  font-family: "Delius", cursive;
  font-weight: 700;
  font-size: 18px;
  color: #02684C;
  margin: 0 0 14px 0;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cfe-course-card .cfe-course-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
  flex-grow: 1;
}
.cfe-course-card .cfe-course-meta-item {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #6c757d;
  line-height: 1.4;
}
.cfe-course-card .cfe-course-btn {
  align-self: flex-start;
  padding: 8px 18px;
  font-size: 13px;
  border-radius: 20px;
  margin-top: auto;
}
.curso .item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  border: 1px solid #e0e6d3;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.curso .item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.curso .item:hover img {
  opacity: 1;
}
.curso .item .ins {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 0px;
  padding: 6px 12px;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.curso .item .ins.aberta {
  background: #27ae60;
  color: #fff;
}
.curso .item .ins.fechada {
  background: #e74c3c;
  color: #fff;
}
.curso .item img {
  transition: all 0.2s ease;
  opacity: 0.85;
  width: 100%;
  display: block;
}
.curso .item .blank_img {
  height: 180px;
  width: 100%;
  background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
}
.curso .item .info {
  padding: 16px;
  font-family: "Roboto", system-ui, -apple-system, sans-serif;
}
.curso .item .info .nome {
  font-weight: 600;
  font-size: 18px;
  color: #02684C;
  margin-bottom: 6px;
  line-height: 1.3;
}
.curso .item .info .inicio, .curso .item .info .local {
  color: #6c757d;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}
.cfe-course-hero {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}
.cfe-course-hero .cfe-course-hero-bg {
  position: relative;
  width: 100%;
  padding-top: 30%;
  overflow: hidden;
}
.cfe-course-hero .cfe-course-hero-bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cfe-course-hero .cfe-course-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(2, 104, 76, 0.3) 0%, rgba(2, 104, 76, 0.85) 100%);
}
.cfe-course-hero .cfe-course-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  color: #fff;
}
.cfe-course-hero .cfe-course-hero-content h1 {
  font-family: "Delius", cursive;
  font-weight: 700;
  font-size: 36px;
  color: #fff;
  margin: 12px 0 8px 0;
  line-height: 1.2;
}
.cfe-course-hero .cfe-course-hero-content .cfe-course-hero-sub {
  font-size: 16px;
  opacity: 0.9;
  margin: 0;
  font-weight: 500;
}
.cfe-meta-section {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #e0e6d3;
}
.cfe-meta-section:last-child {
  border-bottom: none;
}
.cfe-meta-section .cfe-meta-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(179, 211, 83, 0.15);
  border-radius: 8px;
  font-size: 14px;
}
.cfe-formacao-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid #e0e6d3;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.cfe-formacao-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}
.cfe-formacao-card .cfe-formacao-header {
  padding: 20px 20px 14px;
  border-bottom: 1px solid #e0e6d3;
}
.cfe-formacao-card .cfe-formacao-title {
  font-family: "Delius", cursive;
  font-weight: 700;
  font-size: 17px;
  color: #02684C;
  margin: 0 0 6px 0;
  line-height: 1.3;
}
.cfe-formacao-card .cfe-formacao-desc {
  font-size: 13px;
  color: #6c757d;
  margin: 0;
  line-height: 1.4;
}
.cfe-formacao-card .cfe-formacao-body {
  padding: 16px 20px;
  flex-grow: 1;
}
.cfe-formacao-card .cfe-formacao-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #212529;
  margin-bottom: 8px;
  line-height: 1.4;
}
.cfe-formacao-card .cfe-formacao-content {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #e0e6d3;
  font-size: 14px;
  color: #6c757d;
  line-height: 1.5;
}
.cfe-formacao-card .cfe-formacao-footer {
  padding: 14px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.cfe-qrcode-block {
  margin-top: 12px;
  padding: 14px;
  background: #f7f9ed;
  border-radius: 12px;
  width: 100%;
}
.cfe-qrcode-block .cfe-qrcode-label {
  font-size: 11px;
  font-weight: 600;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.cfe-qrcode-block .cfe-qrcode-img {
  border-radius: 10px;
  max-width: 160px;
  display: block;
  margin-bottom: 8px;
}
.cfe-course-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cfe-course-list-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid #e0e6d3;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cfe-course-list-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .cfe-course-list-item {
    flex-direction: column;
    gap: 16px;
  }
}
.cfe-course-list-image {
  flex-shrink: 0;
  width: 280px;
  border-radius: 12px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .cfe-course-list-image {
    width: 100%;
  }
}
.cfe-course-list-image a {
  display: block;
  text-decoration: none;
}
.cfe-course-list-image img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.cfe-course-list-image:hover img {
  transform: scale(1.05);
}
.cfe-course-list-image .cfe-course-list-blank {
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8ece3 0%, #dce2d3 100%);
}
.cfe-course-list-image .cfe-course-list-blank span {
  font-size: 40px;
  opacity: 0.3;
  color: #02684C;
}
.cfe-course-list-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.cfe-course-list-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.cfe-course-list-type {
  font-size: 12px;
  font-weight: 600;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.cfe-course-list-title {
  font-family: "Delius", cursive;
  font-weight: 700;
  font-size: 20px;
  color: #02684C;
  margin: 0 0 10px 0;
  line-height: 1.3;
}
.cfe-course-list-title a {
  color: #02684C;
  text-decoration: none;
}
.cfe-course-list-title a:hover {
  color: #015138;
}
.cfe-course-list-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 12px;
}
.cfe-course-list-meta-item {
  font-size: 13px;
  color: #6c757d;
  display: flex;
  align-items: center;
  gap: 6px;
}
.cfe-course-list-desc {
  font-size: 14px;
  color: #6c757d;
  line-height: 1.6;
  margin: 0 0 16px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cfe-course-list-btn {
  align-self: flex-start;
  padding: 8px 18px;
  font-size: 13px;
  border-radius: 20px;
  margin-top: auto;
}
.cfe-field-hint {
  font-size: 12px;
  color: #6c757d;
  margin-top: 6px;
}
.cfe-checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #212529;
}
.cfe-checkbox-wrapper input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  padding: 0;
  accent-color: #02684C;
  flex-shrink: 0;
  flex-grow: 0;
  align-self: flex-start;
  margin-top: 2px;
}
.cfe-checkbox-wrapper label {
  cursor: pointer;
  line-height: 1.4;
  margin: 0;
}
.cfe-checkbox-wrapper a {
  color: #02684C;
  text-decoration: underline;
}
.cfe-checkbox-wrapper a:hover {
  color: #015138;
}
.cfe-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
  padding: 20px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e0e6d3;
  flex-wrap: wrap;
}
.cfe-pagination-prev, .cfe-pagination-next {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  color: #02684C;
  transition: background 0.15s ease;
}
.cfe-pagination-prev:hover, .cfe-pagination-next:hover {
  background: #f7f9ed;
  color: #02684C;
}
.cfe-pagination-disabled {
  color: #6c757d;
  cursor: default;
}
.cfe-pagination-disabled:hover {
  background: transparent;
  color: #6c757d;
}
.cfe-pagination-pages {
  display: flex;
  align-items: center;
  gap: 4px;
}
.cfe-pagination-page {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: #212529;
  transition: background 0.15s ease, color 0.15s ease;
}
.cfe-pagination-page:hover {
  background: #f7f9ed;
  color: #02684C;
}
.cfe-pagination-page.cfe-pagination-active {
  background: #02684C;
  color: #fff;
}
.cfe-pagination-page.cfe-pagination-active:hover {
  background: #015138;
  color: #fff;
}
.cfe-pagination-dots {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #6c757d;
}
.cfe-event-detail .cfe-meta-label {
  font-size: 12px;
  font-weight: 600;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.cfe-event-detail .cfe-meta-value {
  font-size: 15px;
  font-weight: 500;
  color: #212529;
  margin-bottom: 16px;
}
.cfe-event-detail .cfe-sidebar-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e0e6d3;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.cfe-event-detail .cfe-content-block {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e0e6d3;
  padding: 28px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.cfe-event-detail .cfe-content-block h4 {
  font-family: "Delius", cursive;
  font-weight: 700;
  font-size: 18px;
  color: #02684C;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e0e6d3;
}
body, html {
  font-family: "Roboto", system-ui, -apple-system, sans-serif;
  background-color: #f7f9ed;
  color: #212529;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto", system-ui, -apple-system, sans-serif;
  font-weight: 600;
  color: #02684C;
}
a {
  color: #02684C;
}
a:hover {
  color: #015138;
}
hr {
  border: none;
  border-top: 1px solid #e0e6d3;
  margin: 20px 0;
}
.uk-container {
  max-width: 1200px;
}
