/**
* Governo do Estado do Rio Grande do Norte
* LGPD
* André Souza - arodriguesso@minsait.com
* 2024 May
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

:root {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
}

body {
  /* color: rgba(var(--color-primary-rgb), 1); */
  font-size: 1rem;
}

a {
  color: var(--color-links);
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  color: var(--color-links-hover);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}

#main {
  margin: 0;
}

::selection {
  background: var(--color-links);
  color: #fff;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/

section {
  padding: 3rem 0;
  overflow: hidden;
  scroll-margin-top: 70px;
}

.section-title {
  text-align: center;
  padding-bottom: 4rem;
}

.section-title h2 {
  font-size: 2rem;
  font-weight: 600;
  /* text-transform: uppercase; */
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 100px;
  height: 5px;
  background: var(--color-govrn-orange);
  /* background: linear-gradient(
    to right,
    #EE7E46 25%,
    #55B867 25% 50%,
    #FDD305 50% 75%,
    #0dabe1 75% 100%
  ); */
  bottom: 0;
  left: calc(50% - 50px);
}

.section-title p {
  margin-bottom: 0;
}

.border-bottom-orange {
  border-bottom: 5px solid var(--color-govrn-orange);
  padding-bottom: 4px;
}

.border-bottom-green {
  border-bottom: 5px solid var(--color-govrn-green);
  padding-bottom: 4px;
}

.border-bottom-yellow {
  border-bottom: 5px solid var(--color-govrn-yellow);
  padding-bottom: 4px;
}

.border-bottom-blue {
  border-bottom: 5px solid var(--color-govrn-blue);
  padding-bottom: 4px;
}

/*--------------------------------------------------------------
# features
--------------------------------------------------------------*/

section.features {
  padding: 6rem 0;
}

.features {
  background: var(--color-secondary-light);
}

.features .section-header h3 {
  color: var(--color-primary);
}

.features .card {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all ease-in-out 0.3s;
  height: 100%;
  border: 0 none;
  background: var(--color-white);
  box-shadow: 0px 0px 10px 1px rgba(110, 123, 131, 0.15);
  border-radius: 0.375rem;
}

.features .card:hover {
  box-shadow: 0px 0px 10px 1px rgba(110, 123, 131, 0.15);
  transition: all ease-in-out 0.3s;
}

.features i {
  font-size: 50px;
  margin: 1rem;
  color: var(--color-govrn-blue);
}

.features .card-link {
  color: var(--color-default);
  padding: 50px 15px;
  width: 100%;
  height: 100%;
}

.features .card-link:hover {
  color: var(--color-govrn-blue);
  background: #e1f2fc;
  border-radius: 0.375rem;
}

@media (max-width: 576px) {
  .features .card {
    width: 80%;
    margin: 0 auto;
  }
  .features .card-link {
    padding: 20px;
  }
  .features h5 {
    margin: 0;
    padding: 10px 0;
  }
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 20px;
  bottom: 20px;
  z-index: 99999;
  background: var(--color-primary);
  width: 50px;
  height: 50px;
  transition: all 0.4s;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2rem;
}

.scroll-top i {
  font-size: 1.2rem;
  line-height: 0;
}

.scroll-top:hover {
  background: var(--color-govrn-orange);
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Buttons 
--------------------------------------------------------------*/

/* Form Input Fields */
.form-control:active,
.form-control:focus,
.form-select:active,
.form-select:focus {
  outline: none;
  box-shadow: none;
  border-color: var(--color-black);
}

.btn:active,
.btn:focus {
  outline: none;
}

/* .btn.btn-primary {
  background-color: var(--color-secondary);
  color: var(--color-white);
  border-color: var(--color-secondary);
}

.btn.btn-primary:hover {
  background-color: var(--color-default);
  border-color: var(--color-default);
} */

.btn-govrn {
  --bs-btn-padding-x: 1rem;
  --bs-btn-color: #fff;
  --bs-btn-bg: #0dace3;
  --bs-btn-border-color: #0dace3;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #089dd8;
  --bs-btn-hover-border-color: #089dd8;
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #028bca;
  --bs-btn-active-border-color: #028bca;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #87ccf2;
  --bs-btn-disabled-border-color: #87ccf2;
  --bs-gradient: none;
  font-weight: 500;
}

.btn-govrn-outline {
  --bs-btn-padding-x: 1rem;
  --bs-btn-color: #028bca;
  --bs-btn-bg: transparent;
  --bs-btn-border-color: #028bca;
  --bs-btn-hover-color: #028bca;
  --bs-btn-hover-bg: rgba(135, 204, 242, 0.25);
  --bs-btn-hover-border-color: #028bca;
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: #028bca;
  --bs-btn-active-bg: rgba(135, 204, 242, 0.5);
  --bs-btn-active-border-color: #028bca;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #87ccf2;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #87ccf2;
  --bs-gradient: none;
  font-weight: 500;
}

.btn-govrn-border0 {
  --bs-btn-padding-x: 1rem;
  --bs-btn-color: #028bca;
  --bs-btn-bg: transparent;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: #028bca;
  --bs-btn-hover-bg: rgba(135, 204, 242, 0.25);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: #028bca;
  --bs-btn-active-bg: rgba(135, 204, 242, 0.5);
  --bs-btn-active-border-color: transparent;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #87ccf2;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: transparent;
  --bs-gradient: none;
  font-weight: 500;
}

.btn-extra-border,
.btn-extra-border:hover,
a.btn-extra-border:focus-visible,
a.btn-extra-border:focus {
  border: 15px var(--color-secondary-light) solid !important;
}

/*--------------------------------------------------------------
# Dropdown - Form
--------------------------------------------------------------*/

.drop-form {
  width: 400px;
  border: 0;
}

@media (max-width: 575.98px) {
  .drop-form {
    width: 100%;
  }
}

.drop-form .dropdown-header {
  font-weight: 600;
  font-family: var(--font-secondary);
  text-transform: uppercase;
  color: var(--color-primary);
  border-bottom: 1px var(--color-primary) solid;
  padding: 0 0 10px 0;
  margin: 1.75rem 0;
}

.drop-form .form-label {
  font-weight: 500;
  padding: 0;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/

.top-info {
  background: var(--color-primary);
  /* font-family: var(--font-primary); */
  padding: 9px 0;
}

.essencial-links,
.social-links {
  display: inline-flex;
  align-items: center;
}

.essencial-links .vr,
.social-links .vr {
  height: 30px;
  color: var(--color-secondary-dark);
  margin: 0 5px;
}

.essencial-links a,
.social-links a {
  color: var(--color-secondary-dark);
  /* text-transform: uppercase; */
  transition: 0.3s;
  padding: 4px;
  margin: 0 7px;
  font-size: 0.9rem;
  font-weight: normal;
}

.essencial-links button,
.social-links button {
  color: var(--color-secondary-dark);
  background: var(--color-primary);
  /* text-transform: uppercase; */
  border: 0;
  margin: 0 7px;
  padding: 4px;
  font-size: 0.9rem;
}

.essencial-links .dropdown-menu,
.social-links .dropdown-menu {
  padding: 0px;
  border: 1px var(--bs-gray-700) solid;
  border-radius: 0;
  z-index: 1021;
}

.essencial-links .dropdown-item,
.social-links .dropdown-item {
  padding: 10px 20px;
  text-align: start;
  margin: 0;
  border-bottom: 1px var(--bs-gray-700) solid;
  background: var(--color-primary);
}

.essencial-links .dropdown-item:hover,
.social-links .dropdown-item:hover {
  background-color: var(--bs-gray-700);
}

.essencial-links a:hover,
.social-links a:hover,
.essencial-links button:hover,
.social-links button:hover,
.essencial-links button:focus,
.social-links button:focus,
.essencial-links a:focus,
.social-links a:focus{
  color: var(--color-secondary-light);
}

/*--------------------------------------------------------------
# Accessibility - Focus-visible
--------------------------------------------------------------*/

footer a:focus-visible img,
footer a:focus-visible {
  box-shadow: 0 0 0 0.25rem #028bca;
  border: none;
  outline: none;
}

footer a:focus-visible img {
  display: block;
}

.social-links a:focus-visible,
.essencial-links a:focus-visible,
.social-links button:focus-visible,
.essencial-links button:focus-visible,
.card-link a:focus-visible,
a.card-link:focus-visible,
input.search-box:focus-visible,
a.btn-search-box:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(13, 172, 227, 1);
  border: none;
  outline: none;
  /* color: var(--color-secondary-light); */
}

.sidebar a:focus-visible,
.social-links .dropdown-menu button:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(13, 172, 227, 1) inset;
  border: none;
  outline: none;
}

a.scroll-top:focus-visible,
.breadcrumb a:focus-visible,
.tag:focus-visible,
ul.pagination a.page-link:focus-visible,
ul.pagination a.dropdown-item:focus-visible,
.tab-pane:focus-visible,
.tab-pane .list-service a:focus-visible,
a.btn-govrn:focus-visible,
.post-date button:focus-visible,
.evento-carousel-control:focus-visible,
.accordion-govrn-inverse button.accordion-button:focus-visible,
.accordion-govrn button.accordion-button:focus-visible,
.card-govrn a:focus-visible,
.navbar-brand a:focus-visible,
.single-post a:focus-visible { 
  box-shadow: 0 0 0 0.25rem rgba(13, 172, 227, 1);
  border: none;
  outline: none;
}

.banner-fixed a:focus-visible,
.services-card a:focus-visible,
.services-banner a:focus-visible,
.posts a:focus-visible,
.list-news .float-end a:focus-visible,
.list-news .post-title a:focus-visible,
.secondary-posts .card a:focus-visible,
.evento-carousel-wrapper a:focus-visible,
.evento-carousel-item-wrapper:focus-visible,
.events .evento-carousel-items a:focus-visible,
.list-eventos-section .row a:focus-visible,
.main-content .row a:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(13, 172, 227, 1);
  border: none;
  outline: none;
  display: block;
}

/*--------------------------------------------------------------
# Alphabet-list - Acesso rápido - Órgãos do Governo
--------------------------------------------------------------*/

.org-gov .modal-header {
  background: var(--color-secondary);
  border: 0;
}

.org-gov .modal-title,
.org-gov .btn-close {
  font-family: var(--font-secondary);
  text-transform: uppercase;
}

.org-gov .list-group-item {
  display: inline-flex;
  align-items: center;
}

.org-gov ol h6 {
  font-size: 1.15rem;
  margin: 0 0 0 20px;
  padding: 10px 0;
}

/*--------------------------------------------------------------
# Header & Navbar
--------------------------------------------------------------*/

.govrnbar {
  height: 10px;
  display: block;
  background: linear-gradient(
    to right,
    #EE7E46 25%,
    #55B867 25% 50%,
    #FDD305 50% 75%,
    #0dabe1 75% 100%)
}

.govrn-orange {
  background: var(--color-govrn-orange);
}

.govrn-green {
  background: var(--color-govrn-green);
}

.govrn-yellow {
  background: var(--color-govrn-yellow);
}

.govrn-blue {
  background: var(--color-govrn-blue);
}

header {
  position: -webkit-sticky;
  position: sticky;
  top: -2px;
  z-index: 1020;
}

header[stuck] {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.logo-img {
  height: 4rem; 
  width: auto;
}

header[stuck] .logo-img {
  height: 3rem;
  transition: 0.4s;
}

.logo-text {
  margin: 0; /* Remove margens padrão */
  font-family: var(--font-secondary);
  font-weight: 300 !important;
  color: var(--color-primary);
}

header[stuck] .logo-text {
  font-size: 1.8rem;
  transition: 0.4s;
}
  
header[stuck] .navbar {
  padding: 0.75rem 0;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none; /* Remove sublinhado do link */
  color: inherit; /* Usa a cor padrão do texto */
}

@media (max-width: 575.98px) {
  .logo-img {
    height: 2rem;
    width: auto;
  }
  .logo-text {
    font-size: 1.5rem;
  }
  
  header[stuck] .logo-text {
    font-size: 1.5rem;
    transition: 0.4s;
  }

  header[stuck] .navbar {
    padding: 0.75rem 0;
  }

  header[stuck] .logo-img {
    height: 2rem;
    transition: 0.4s;
  }
}

.navbar {
  background-color: var(--color-white);
  padding: 1.25rem 0;
  font-weight: 500;
}

.navbar .navbar-nav li {
  margin-right: 1.25rem;
}

.navbar .navbar-nav li:last-child{
  margin-right: 0;
}

.navbar-nav .dropdown-menu {
  font-size: 1rem;
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/

.sidebar .dropdown-menu {
  border: 0;
  box-shadow: 0px 0px 20px 0px rgba(110, 123, 131, 0.2);
  border-radius: 0;
  padding: 0.5rem;
}

.sidebar .dropdown-menu li{
padding: 0;
margin: 0;
}

.sidebar .dropdown-item {
  background: none;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: calc(100% - 0.05rem);
}

.sidebar .navbar-nav a{
  color: var(--color-primary);
}

.sidebar .navbar-nav a:hover{
  color: var(--color-govrn-blue);
}

@media (max-width: 991.98px) {
  .sidebar {
    background-color: var(--color-govrn-blue);
  }

  .sidebar .dropdown-menu {
    box-shadow: none;
  }

  .sidebar .btn-close {
    background: transparent
      url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e")
      center/1em auto no-repeat;
  }

  .offcanvas.sidebar {
    width: 333px;
  }

  .offcanvas.sidebar,
  .offcanvas.sidebar .offcanvas-body {
    padding: 0;
  }

  .offcanvas.sidebar .offcanvas-header {
    padding: 30px 20px 40px 20px;
  }

  .offcanvas.sidebar .offcanvas-title {
    text-align: end;
    color: white;
    width: 100%;
    padding-right: 1rem;
  }

  .sidebar .brasao {
    width: 160px;
  }

  .sidebar .offcanvas-body a {
    display: block;
    color: #fff;
    transition: 0.3s;
    padding: 15px 20px;
  }
  
  .sidebar a:hover {
    text-decoration: underline;
    background: none;
  }

  .offcanvas.sidebar .navbar-nav a,
  .offcanvas.sidebar .navbar-nav a:hover {
    color: white;
  }

  .offcanvas.sidebar .navbar-nav a marker:hover{
    text-decoration: underline;
    color: black;
  }

  .offcanvas.sidebar .dropdown-menu {
    background-color: var(--color-links);
    border-radius: 0;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .offcanvas.sidebar .nav-item{
    border-bottom: 1px var(--color-links) solid;
    padding: 0;
    margin: 0;
  }

  .offcanvas.sidebar .dropdown-menu li{
    border-bottom: 1px #06a solid;
    padding: 0;
    margin: 0;
  }

  .offcanvas.sidebar .dropdown-menu li:last-child{
    border-bottom: 0;
  }
  
  .sidebar .accordion-flush .accordion-item {
    border: 0;
    border-bottom: 1px var(--color-links) solid;
    border-radius: 0;
  }
  
  .sidebar .accordion-header a,
  .sidebar .accordion-header button {
    background-color: var(--color-govrn-blue);
    color: #ffffff;
  }
  
  .sidebar .accordion-button {
    font-size: inherit;
  }
  
  .sidebar .accordion-button:hover {
    z-index: 2;
    text-decoration: underline;
  }
  
  .sidebar .accordion-button:focus {
    z-index: 3;
    border: 0;
    outline: none;
    box-shadow: none;
  }
  
  .sidebar .accordion-button:not(.collapsed) {
    color: #fff;
    font-weight: bold;
  }
  
  /* change accordion arrow color to white */
  .sidebar .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  }
  
  .sidebar .accordion-collapse {
    padding: 0;
    margin: 0;
    background-color: var(--color-links);
  }
  
  .sidebar .list-group-item {
    background-color: var(--color-links);
    padding: 0;
    margin: 0;
  }
  
  .sidebar .sidebar-info {
    margin: 30px 0;
    padding: 0 0 0 20px;
  }
  
  .sidebar .sidebar-info h6 {
    text-transform: uppercase;
    font-weight: bold;
    font-family: var(--font-secondary);
    color: var(--color-white);
  }
  
  .sidebar .sidebar-info img {
    max-width: 20px;
    margin-right: 10px;
  }
  
  .sidebar .sidebar-info a {
    padding: 15px 0 0 0;
  }
}

/*small devices */
@media (max-width: 576px) {
  .offcanvas.sidebar {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Search Section
--------------------------------------------------------------*/

.search {
  background: var(--color-govrn-blue);
  padding: 1rem;
}

.search-icon {
  width: 60px;
  height: 60px;
  font-size: 29px;
}

.search-box {
  border-radius: 40px;
  height: 60px;
  width: 100%;
  background: var(--color-secondary-light);
  padding: 0 75px 0 25px;
  border: none;
  outline: none;
  font-size: 1.25rem;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}

.search span {
  font-size: 21px;
  font-weight: 500;
  color: var(--color-white);
  margin-right: 1rem;
}

/* @media (min-width: 992px) {
  .search-box {
    width: 450px;
  }
} */

.btn-search-box {
  --bs-btn-padding-y: 1rem;
  --bs-btn-color: var(--color-govrn-blue);
  --bs-btn-bg: transparent;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--color-govrn-blue);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-focus-shadow-rgb: 25, 152, 176;
  width: 40px;
  height: 40px;
  font-size: 18px;
  font-weight: 500;
  margin-right: 12px;
  transition: 0.5s;
  display: flex;
  align-items: center;
}

.search:hover > .btn-search-box {
  background: var(--color-govrn-blue);
  color: #fff;
}

.search-mobile .offcanvas-title {
  font-family: var(--font-primary);
}

/* mobile */

@media (max-width: 400px) {
  .offcanvas-top.search-mobile {
    height: 200px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

:root {
  --hero-bg-image: url("../img/cover-egrn.jpg"); /* fallback padrão */
}

/* Hero Section */
.hero {
  width: 100%;
  height: 80vh;
  background: linear-gradient(45deg, rgb(36, 143, 209) 25%, rgba(255, 255, 255, 0) 65%), var(--hero-bg-image) top left no-repeat;
  background-size: cover;
}

@media (max-width: 992px) {
  .hero {
    background: linear-gradient(45deg, rgb(36, 143, 209) 25%, rgba(36, 143, 209, 0.8) 75%), var(--hero-bg-image) top 75% right 100% no-repeat;
    background-size: cover;
  }
}

.hero h1 {
  margin: 0;
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 64px;
  color: #fff;
}

.hero h2 {
  color: rgba(255, 255, 255, 0.8);
  margin: 10px 0 0 0;
  font-size: 1.5rem;
  line-height: 2.4rem;
}

.hero .btn-get-started {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 30px;
  color: #fff;
  border: 2px solid #fff;
}

.hero .btn-get-started:hover {
  background: var(--color-petrol-blue-lgpd);
  border: 2px solid var(--color-petrol-blue-lgpd);
  color: var(--color-white);
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (min-width: 1200px) {
  .hero {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  .hero {
    text-align: center;
  }

  .hero .container,
  .hero .container-fluid {
    padding-top: 0px;
  }

  .hero .animated {
    animation: none;
  }

  .hero .hero-img {
    text-align: center;
  }

  .hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 26px;
    line-height: 36px;
  }

  .hero h2 {
    font-size: 18px;
    line-height: 24px;
  }

  .hero .hero-img img {
    width: 60%;
  }
}

@media (max-width: 575px) {
  .hero .hero-img img {
    width: 80%;
  }
}

@media (max-width: 575px),
(max-height: 600px) {
  .hero {
    height: auto;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about {
  padding: 120px 0;
}

.about .content h3 {
  font-weight: 600;
  font-size: 32px;
}

/*--------------------------------------------------------------
# Services Card
--------------------------------------------------------------*/

section.services-card {
  padding: 6rem 0;
  background: var(--color-secondary-light);
}

.services-card .card {
  text-align: start;
  padding: 0.5rem;
  background: var(--color-white);
  border: none;
  border-radius: 10px;
  box-shadow: 0 5px 20px 0 rgba(68, 88, 144, 0.2);
  transition: all 0.3s ease-in-out;
  height: 100%;
}

.services-card .card:hover {
  transform: scale(1.05);
  /* background: #e1f2fc; */
}

.services-card .card i {
  color: var(--color-govrn-blue);
  font-size: 36px;
}

.services-card .card span i {
  color: inherit;
  font-size: inherit;
}

.services-card .card-title {
  padding: 0.75rem 0 1rem 0;
  margin: 0;
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 500;
}

.services-card .card-text {
  margin-bottom: 0;
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-size: 1.1rem;
  line-height: 1.6rem;
}

.services-card .badge{
  color: var(--color-govrn-orange);
  background-color: rgba(240, 127, 71, 0.2);
  padding: 0.25rem 0.75rem;
  border-radius: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  align-self: flex-start;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

/*--------------------------------------------------------------
# Services-banner
--------------------------------------------------------------*/

section.services-banner {
  padding: 7rem 0 1rem 0;
}


.services-banner,
.services-banner .card,
.services-banner .card-img {
  border: none;
  border-radius: 0;
}

.services-banner a {
  color: #fff;
}

.services-banner .card-title {
  text-transform: uppercase;
  font-weight: bold;
  font-family: var(--font-secondary);
}

.services-banner .card-img-overlay {
  display: flex;
  flex-direction: column;
  justify-content: end;
}

@media (max-width: 1199.98px) {
  .services-banner .card {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .services-banner .card {
    margin: 0 1rem 1.5rem 1rem;
  }
}

/*--------------------------------------------------------------
# Search Result
--------------------------------------------------------------*/

.nav-underline {
  border-bottom: 1px solid var(--bs-gray-500);
  margin-bottom: 3rem;
}

.nav-underline a {
  color: var(--color-default);
  padding-bottom: 15px;
}

.nav-underline a:hover {
  text-decoration: underline;
  color: var(--color-default);
}

.nav-underline a.active {
  font-weight: 600;
  color: var(--color-primary);
  border-bottom: 5px solid var(--color-govrn-blue);
}

/*--------------------------------------------------------------
# Swiper - gallery-post
--------------------------------------------------------------*/

.gallery-post {
  padding: 1rem 0 3rem 0;
}

.gallery-post-image .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.gallery-post-image .swiper-slide img,
.gallery-post-thumb .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper.gallery-post-image,
.swiper.gallery-post-thumb {
  margin: 0 auto;
}

.swiper-custom {
  --swiper-navigation-color: #fff;
  --swiper-pagination-color: #fff;
}

/*XS mobile*/
@media (max-width: 450px) {
  .swiper.gallery-post-image {
    height: 240px;
  }
  .swiper.gallery-post-thumb {
    height: 60px;
  }
}

@media (min-width: 451px) and (max-width: 575.98px) {
  .swiper.gallery-post-image {
    height: 320px;
  }
  .swiper.gallery-post-thumb {
    height: 80px;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .swiper.gallery-post-image {
    width: 580px;
    height: 386px;
  }
  .swiper.gallery-post-thumb {
    height: 80px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .swiper.gallery-post-image {
    width: 580px;
    height: 386px;
  }
  .swiper.gallery-post-thumb {
    height: 80px;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .swiper.gallery-post-image {
    width: 700px;
    height: 466px;
  }
  .swiper.gallery-post-thumb {
    height: 80px;
  }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
  .swiper.gallery-post-image {
    width: 740px;
    height: 493px;
  }
  .swiper.gallery-post-thumb {
    height: 80px;
  }
}

@media (min-width: 1400px) {
  .swiper.gallery-post-image {
    width: 760px;
    height: 506px;
  }
  .swiper.gallery-post-thumb {
    height: 80px;
  }
}

.gallery-post-thumb {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
  cursor: pointer;
}

.gallery-post-thumb .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
}

.gallery-post-thumb .swiper-slide-thumb-active {
  opacity: 1;
}

.gallery-post-caption {
  margin: 15px auto 5px auto;
  text-align: center;
  line-height: 24px;
}

/*--------------------------------------------------------------
# Posts Section
--------------------------------------------------------------*/

section.posts {
  padding: 6rem 0;
}

.posts .card,
.posts .card-img,
.posts .card-img-top {
  /*remove default card & img borders */
  border: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0
}
/* 
.posts h5 a {
  color: var(--color-govrn-blue);
}

.posts h5 a:hover {
  color: #1ab0cc;
} */

.posts .card-body,
.posts .card-img,
.secondary-posts .card-body {
  padding: 0;
  margin: 0;
}

.crop-adjust {
  object-fit: cover;
  object-position: 50% 50%;
}

/*XXL and up*/
@media (min-width: 1400px) {
  .posts .card-img-top {
    height: 289px;
  }
}

/*between XL and XXL*/
@media (max-width: 1399.98px) {
  .posts .card-img-top {
    height: 249px;
  }
}

/*between LG and XL*/
@media (max-width: 1199.98px) {
  .posts .card-img-top {
    height: 315px;
  }
}

/*between MD and LG*/
@media (max-width: 991.98px) {
  .posts .card-img-top {
    height: 235px;
  }
}

/*between SM and MD*/
@media (min-width: 500px) and (max-width: 767.98px) {
  .posts .card-img-top {
    height: 355px;
  }
}

/*between SM and MD*/
@media (min-width: 400px) and (max-width: 499.98px) {
  .posts .card-img-top {
    height: 305px;
  }
}

/*less than SM*/
@media (max-width: 399px) {
  .posts .card-img-top {
    height: 200px;
  }
}

.posts .card h6,
.secondary-posts .card h6 {
  text-transform: uppercase;
  font-weight: bold;
  font-family: var(--font-secondary);
  font-size: 1.1rem;
}

.posts .card-title a {
  font-weight: 500;
  font-size: 1.5rem;
}

/*--------------------------------------------------------------
# Accordion-govrn, Documents
--------------------------------------------------------------*/

section.documents {
  padding: 6rem 0;
  background: #dee2e6; /*--bs-gray-300*/
}

.accordion-govrn .accordion-item {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0 none;
  background: var(--color-white);
  box-shadow: 0px 0px 10px 1px rgba(110, 123, 131, 0.05);
  border-radius: 0.375rem;
}

.accordion-govrn .accordion-button:focus {
  border: none;
  box-shadow: none;
}

.accordion-govrn .accordion-button:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(13, 172, 227, 0.5);
  border: none;
  outline: none;
}

.accordion-govrn .accordion-button:not(.collapsed) {
  color: var(--color-white);
  background-color: var(--color-govrn-blue);
  box-shadow: none;
}

/*change accordion arrow color black to white*/
.accordion-govrn .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-govrn .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.hover-text-primary {
  transition: color 0.15s ease-in-out;
}

.hover-text-primary:hover {
  color: #0dabe1 !important; /* Azul do GOVRN */
}

.accordion-govrn .list-group-item a.hover-text-primary {
  transition: all 0.15s ease-in-out;
  text-decoration: none;
}

.accordion-govrn .list-group-item a.hover-text-primary:hover {
  color: var(--color-govrn-blue) !important;
  text-decoration: underline;
}

/*--------------------------------------------------------------
# Breadcrumb
--------------------------------------------------------------*/

.breadcrumb {
  margin-bottom: 35px;
  font-size: 1rem;
  padding: 2rem 0;
  min-height: 40px;
}

.breadcrumb .breadcrumb-item i{
  font-size: 1rem;
}

/*--------------------------------------------------------------
# Main Content - Single-post - Share
--------------------------------------------------------------*/

.main-content {
  padding: 3rem 0 5rem 0;
  color: var(--color-primary);
}

.main-content p.lead {
  margin-bottom: 0;
}

.post-title {
  color: var(--color-primary-dark);
  /* margin: 0.75rem 0; */
}

.post-category {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1rem;
  font-family: var(--font-secondary);
  color: var(--color-gray);
}

/* .main-content p.lead{
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--color-primary);
} */

.post-date {
  margin: 2rem 0 5rem 0;
  padding: 0.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.share,
.share button {
  display: inline-flex;
  align-items: center;
  height: 30px;
}

.share button {
  margin-left: 15px;
  border: 0;
  background: none;
}

.share button i {
  color: var(--color-links);
}

.share button i:hover {
  color: var(--color-links-hover);
}

.modal-share-link i {
  color: var(--color-govrn-blue);
}

.single-post {
  padding: 0;
  line-height: 1.8rem;
}

.single-post h1,
.single-post h2,
.single-post h3,
.single-post h4,
.single-post h5,
.single-post h6 {
  padding: 2.5rem 0 2rem 0;
  color: var(--color-cdc-dark-blue);
}

.single-post a {
  text-decoration: none;
}

.single-post a.btn {
  text-decoration: none;
}

.single-post blockquote {
  font-size: 1.3em;
  width: 70%;
  margin: 50px auto;
  font-family: Open Sans;
  font-style: italic;
  padding: 30px 30px 30px 75px;
  border-left: 8px solid var(--color-govrn-blue);
  line-height: 1.6;
  position: relative;
  color: var(--color-primary-light);
  background: var(--color-secondary-light);
}

@media (max-width: 600px) {
  .single-post blockquote {
    font-size: 1.3rem;
    width: 90%;
  }
}

.single-post blockquote::before {
  font-family: Arial;
  content: "\201C";
  color: var(--color-govrn-blue);
  font-size: 5em;
  position: absolute;
  left: 10px;
  top: -10px;
}

.single-post blockquote::after {
  content: "";
}

.single-post blockquote span {
  display: block;
  color: var(--color-default);
  font-style: normal;
  font-weight: bold;
  margin-top: 1em;
}

.post-footer {
  border-top: 1px var(--bs-gray-300) solid;
  padding: 2rem 0 1rem 0;
  margin-top: 5rem;
}

.tag {
  display: inline-block;
  color: var(--color-default);
  padding: 6px 9px;
  border: 1px var(--bs-gray-300) solid;
  border-radius: 5px;
  margin: 0 7px 10px 0;
  transition: 0.3s all ease;
  text-decoration: none;
}

.tag:hover,
.tag:focus {
  color: var(--color-default);
  border: 1px var(--color-default) solid;
}

/* TABLE-GOVRN  */

.table-govrn thead {
  background: var(--color-govrn-blue);
  color: var(--color-white);
}

/* CARD-GOVRN */

.card-govrn {
  border: none;
  background: var(--color-secondary-light);
  border-radius: 0;
}

.card-govrn i{
  font-size: 1rem;
}

.card-govrn .card-header {
  background: var(--color-govrn-blue);
  color: var(--color-white);
  font-family: var(--font-secondary);
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 0;
  padding: 1rem;
  font-size: 1.15rem;
}

.card-govrn .card-header i{
  font-size: 1.3rem;
}

.card-govrn .card-header h4 {
  padding: 0.5rem 0.5rem 0 0.5rem;
  color: var(--color-white);
  font-family: var(--font-secondary);
  text-transform: uppercase;
  font-weight: bold;
}

.card-govrn .card-header h6 {
  padding: 0 0.5rem 0.5rem 0.5rem;
  color: var(--color-white);
  font-family: var(--font-secondary);
  text-transform: uppercase;
}

.card-govrn .title {
  display: block;
  padding: 0;
  margin: 0;
  font-family: var(--font-secondary);
  font-weight: bold;
  text-transform: uppercase;
}

.card-govrn .list-group {
  padding: 10px;
}

.card-govrn .list-group-item {
  background: var(--color-secondary-light);
}

.card-govrn .list-group-item a {
  text-decoration: none;
}

.card-govrn .list-group-item a:hover {
  text-decoration: underline;
}

/*--------------------------------------------------------------
# Secondary-posts
--------------------------------------------------------------*/

.secondary-posts {
  background: var(--color-secondary-light);
  padding: 6rem 0;
}

.secondary-posts .section-header {
  position: relative;
  height: 20px;
  margin: 0 0 2.5rem 0;
}

.secondary-posts .card {
  background: none;
  border: none;
  margin: 0 0 1rem 0;
}

.secondary-posts .card-title {
  font-size: 1.3rem;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Pagination
--------------------------------------------------------------*/

ul.pagination {
  margin-bottom: 0;
}

.page-item a,
.page-item a:hover {
  text-decoration: none;
}

.page-link {
  border: 0;
  border-radius: 20rem;
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5px;
  color: var(--color-links);
  font-weight: 500;
}

.page-link:hover {
  z-index: 2;
  color: var(--color-white);
  background: var(--color-links-hover);
}

/*
.page-link:focus {
  z-index: 3;
  color: var(--color-links);
  background: transparent;
  outline: 0;
  box-shadow: 0 0 0 0.1rem black;
}*/

.page-link.active,
.active > .page-link {
  z-index: 3;
  color: var(--color-white);
  background: var(--color-govrn-orange);
}

.page-link.disabled,
.disabled > .page-link {
  color: var(--color-links);
  opacity: 0.5;
  pointer-events: none;
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
  border-radius: 20rem;
  width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-item .dropdown-menu {
  overflow: auto;
  min-width: 60px;
  min-height: 68px;
  max-height: 117px;
}

.page-item .dropdown-item {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*--------------------------------------------------------------
# List-news - List-service
--------------------------------------------------------------*/

.list-news {
  padding: 20px 0;
  margin: 20px 0 0 0;
}

.list-news .post-category {
  padding: 0;
  margin: 0 0 1rem 0;
}

.list-news .post-title {
  /* font-size: 1.6rem; */
  padding: 0 0 1.5rem 0;
  margin: 0;
}

.list-news a,
.list-news a:hover {
  text-decoration: none;
}

.list-news .thumbnail {
  width: 150px;
  height: 100px;
  margin: 0 0 20px 20px;
}

@media (max-width: 400px) {
  .list-news .thumbnail {
    width: 120px;
    height: 80px;
    margin: 0 0 20px 20px;
  }
}

.list-service p a {
  text-decoration: underline;
}

/* .list-service h5 a,
.list-news h5 a{
  font-size: 1.6rem;
  font-weight: 600;
} */

.tab-pane .list-news,
.tab-pane .list-service {
  padding: 0 0 1rem 0;
  margin: 0 0 2rem 0;
  border-bottom: 1px var(--bs-gray-200) solid;
}

/*--------------------------------------------------------------
# Banner Fixed 
--------------------------------------------------------------*/

section.banner-fixed {
  padding: 0 0 6rem 0;
  margin: 0;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.footer {
  overflow: hidden;
  background: var(--color-govrn-blue);
  color: var(--color-white);
  padding: 4rem 0 0 0;
}

.footer img {
  max-width: 180px;
}

.footer .social-links-footer a {
  text-align: center;
  display: inline-block;
  width: 3rem;
  height: 3rem;
  background-color: rgba(var(--color-white-rgb), 0.09);
  border-radius: 50%;
  color: var(--color-white);
  line-height: 3rem;
  margin: 0 3px;
}

.footer .social-links-footer i{
  font-size: 1.1rem;
}

.footer .social-links-footer a:hover {
  background-color: rgba(var(--color-white-rgb), 0.2);
}

.footer-legal {
  color: var(--color-dark);
  background: var(--color-govrn-yellow);
  padding: 1rem 0;
  margin: 3rem 0 0 0;
  font-weight: 400;
  text-align: center;
  font-size: 1rem;
}

.footer-legal a {
  color: var(--color-dark);
}

.footer-legal a:hover {
  color: var(--color-dark);
  text-decoration: underline;
}

/*--------------------------------------------------------------
# Spinner
--------------------------------------------------------------*/

.spinner-govrn {
  color: var(--color-govrn-blue);
}

/*--------------------------------------------------------------
# accordion-govrn, accordion-govrn-inverse
--------------------------------------------------------------*/

.accordion-govrn .accordion-item {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0 none;
  background: var(--color-white);
  box-shadow: 0px 0px 10px 1px rgba(110, 123, 131, 0.05);
  border-radius: 0.375rem;
}

.accordion-govrn-inverse .accordion-item:first-child {
  margin-top: 0;
}

.accordion-govrn-inverse .accordion-item {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0 none;
  background: var(--color-white);
  box-shadow: none;
  border-radius: 0.375rem;
}

.accordion-govrn .accordion-button:focus,
.accordion-govrn-inverse .accordion-button:focus {
  border: none;
  box-shadow: none;
}

.accordion-govrn .accordion-button:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(36, 143, 209, 0.5);
  border: none;
  outline: none;
}

.accordion-govrn .accordion-button:not(.collapsed) {
  color: var(--color-white);
  background-color: var(--color-govrn-blue);
  box-shadow: none;
}

.accordion-govrn-inverse .accordion-button:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(36, 143, 209, 0.5);
  border: none;
  outline: none;
}

.accordion-govrn-inverse .accordion-button:not(.collapsed) {
  color: var(--color-primary);
  background-color: var(--color-white);
  box-shadow: none;
}

.accordion-govrn-inverse .accordion-button h5 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-primary);
}

.accordion-govrn-inverse .accordion-button:after {
    order: -1;
    margin-left: 0; 
    margin-right: 0.5em;
}

/*change accordion arrow color black to white*/
.accordion-govrn .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-govrn .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
/*accordion-govrn-inverse*/
.accordion-govrn-inverse .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-govrn-inverse .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* BREADCRUMB-DOCS */

@media (max-width: 400px) {
  .breadcrumb-docs {
    display: flex;
    flex-direction: column;
  }

  .single-post {
    min-height: 30rem;
  }
}

.breadcrumb-docs .breadcrumb-item {
  padding: 0.5rem;
}

.breadcrumb-docs .breadcrumb-item:first-child {
  padding-left: 0;
}

.breadcrumb-docs .breadcrumb-item + .breadcrumb-item::before {
  font-family: "FontAwesome";
  content: "\f105";
  color: var(--color-secondary);
}

/* CARD-FOLDER */

.card-folder {
  position: relative;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.card-folder i {
  font-size: 13rem;
  color: var(--color-secondary-light);
}

.card-folder:hover i {
  color: #e1f2fc;
}

.card-folder:hover {
  transform: scale(1.05);
}

.card-folder .folder-title {
  position: absolute;
}

.card-folder .folder-title a {
  color: var(--color-primary);
  text-decoration: none;
  width: 13rem;
  height: 13rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem 0 1.5rem;
}

.card-folder .folder-title a:hover {
  color: var(--color-links);
  text-decoration: none;
}

.list-files a {
  text-decoration: none;
}

.list-files a:hover {
  color: var(--color-links-hover);
  text-decoration: underline;
}

/* LIST-DOCS */

.list-docs {
  padding: 1.5rem 0;
  border-bottom: 1px var(--bs-gray-300) solid;
}

.list-docs h5 {
  padding: 0;
  margin: 0;
}

.list-docs p {
  margin: 1rem 0 0 0;
  padding: 0;
}

.list-docs:last-child {
  border: 0;
}

/* LINK DESTAQUE  */

.link-destaque {
  background: var(--color-secondary-light);
  padding: 1.5rem;
  display: block;
  font-size: 1.1rem;
  border-inline-start: 10px var(--color-govrn-blue) solid;
}

.link-destaque i {
  color: var(--color-links);
  font-size: 1.4rem;
}

.link-destaque:hover i {
  color: var(--color-links-hover);
}

a.link-destaque {
  color: var(--color-pimary-dark);
}

a.link-destaque:hover {
  color: var(--color-black);
  text-decoration: underline;
}

/*--------------------------------------------------------------
# Events
--------------------------------------------------------------*/

section.events {
  padding: 6rem 0;
  background: #dee2e6; /*--bs-gray-300*/
}

.events .section-title {
  text-align: center;
  padding-bottom: 2.5rem; /*ajuste específico devido ao padding shadow dos cards*/
}

.events .evento-carousel-wrapper {
  position: relative;
  width: 96%;
  margin: 0 auto;
  padding-top: 0;
}

.evento-carousel-items {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  cursor: grab;
  padding: 1.5rem 0;
  
  /* Hide scrollbar */
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

/* Centralizar apenas quando tiver 3 ou menos cards */
.evento-carousel-items.centro {
  justify-content: center;
}

.evento-carousel-items::-webkit-scrollbar {
  display: none;
}

.evento-carousel-items.dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.evento-carousel-link {
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
  /* display: block; */
}

.evento-carousel-item-wrapper {
  /* width: 350px; */
  height: 420px;
  /* flex-shrink: 0; */
}

.evento-carousel-item {
  background-color: var(--color-white);
  border-radius: 0.375rem;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease-in-out;
  border: none;
  box-shadow: 0px 5px 20px 0px rgba(110, 123, 131, 0.15);
}

.evento-carousel-item:hover {
  transform: translateY(-5px);
  box-shadow: 0px 5px 30px 0px rgba(110, 123, 131, 0.25);
}

/* evento imagem */

.evento-image-container {
  width: 100%;
  height: 160px;
  overflow: hidden;
  background-color: var(--color-secondary-light);
  flex-shrink: 0;
  position: relative;
}

.evento-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}

.evento-carousel-item:hover .evento-image {
  transform: scale(1.05);
}

/* card body */

.evento-card-body {
  padding: 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
  min-height: 260px;
}

/* tags de status */

.evento-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  align-self: flex-start;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.evento-tag-aberto {
  background-color: rgba(86, 187, 105, 0.2);
  color: var(--color-govrn-green);
}

.evento-tag-fechado {
  background-color: rgba(240, 127, 71, 0.2);
  color: var(--color-govrn-orange);
}

.evento-tag-em-breve {
  background-color: rgba(13, 172, 227, 0.2);
  color: var(--color-govrn-blue);
}

.evento-tag-encerrado {
  background-color: rgba(108, 117, 125, 0.2);
  color: var(--color-primary-light);
}

.evento-tag-page {
  /* font-size: inherit !important; */
  align-self: auto !important;
}

/* título do evento */

.evento-card-title {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--color-primary);  
  /* Truncate after 2 lines */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* descrição do evento */

.evento-card-text {
  margin: 0;
  font-size: 1rem;
  color: var(--color-primary-light);
  line-height: 1.3;
  flex: 1;
  height: 4rem;  
  /* Truncate after 3 lines */
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* info */

.evento-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  padding-top: 0.5rem;  
  color: var(--color-primary-light);
  flex-wrap: wrap;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.evento-card-meta span i {
  font-size: 1rem;
  padding-right: 0.15rem;
}

/* Eventos control */

.evento-carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--color-govrn-blue);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.4s;
  outline: none;
  color: var(--color-white);
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); */
}

.evento-carousel-control:hover {
  background: var(--color-govrn-orange);
  color: #fff;
}

.evento-carousel-control:active {
  transform: translateY(-50%) scale(0.95);
}

.evento-carousel-prev {
  left: -1.8rem;
}

.evento-carousel-next {
  right: -1.8rem;
}

.evento-carousel-wrapper i{
  font-size: 1.2rem;
  line-height: 0;
  color: inherit;
  user-select: none;
}

/* events-carousel-wrapper mobile */

@media (max-width: 768px) {
  .evento-carousel-wrapper {
    width: 90%;
  }

  .evento-carousel-control {
    top: 47%;
    width: 40px;
    height: 40px;
  }
  
  .evento-carousel-prev {
    left: -1.3rem;
  }
  
  .evento-carousel-next {
    right: -1.3rem;
  }

  .evento-carousel-wrapper i {
  font-size: 1rem;
  }  
}