@charset "utf-8";

/**
*------------------------------------------------------------------------------
* THEME-STYLES.CSS
*------------------------------------------------------------------------------
* @Template	SKY - J5
* @authors     SKYTRAILS
*------------------------------------------------------------------------------
*/
 
/*
  COLORS
*/
:root {
    --primary-color:      #523D66;
    --secondary-color:    #FF8066;
    --tertiary-color:     #4686F4;
    --dark-color:         rgb(33, 37, 41);
    --grey-dark-color:    rgb(108, 117, 125);
    --grey-color:         lightgray;
    --grey-light-color:   #E9E7E3;
    --light-color:        rgb(248, 249, 250);
    --color-link:         rgb(248, 249, 250);
    --color-hover:        rgb(248, 249, 250);
    --heading-color:      var(--primary-color);
    --salmao:             #FF7F6B;
    --salmao-:            #ff7d56;
    --color-white:        #FFF;
    --color-marfim:       #e9e7e3;

    --link-color: #6A9DF6;
    --link-color-rgb: 13, 110, 253;
    --link-hover-color: #4686F4;
    --link-hover-color-rgb: 10, 88, 202;
    --link-decoration: underline;
  }

:root{
  /* FONTS */
  --font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-monospace: SFMono-Regular, Menlo, Monaco, "Consolas", "Liberation Mono", "Courier New", monospace;
  --font-1: 'Amulya', "Segoe UI", sans-serif;
  --font-2: 'Satoshi', 'Poppins', "Verdana", sans-serif;
  --font-3: "consolas", monospace;
  --font-text:  'Amulya', "Segoe UI", sans-serif;
  --font-title: 'Satoshi', 'Poppins', "Verdana", sans-serif;
  --heading-font-family: 'Arial';
  --heading-font-style: inherit;
  --heading-line-height: 1.4;
  --heading-letter-spacing: 0px;
  --h1-size: 40px;
  --h2-size: 32px;
  --h3-size: 28px;
  --h4-size: 24px;
  --h5-size: 20px;
  --h6-size: 16px;
  
  /* BODY */
  --body-bg: #F2F0ED;
  --body-color: var(--primary-color);
  --body-font-family: 'Amulya', "Segoe UI", sans-serif;
  --body-font-size: clamp(1.02rem, 1vw + 0.5rem, 1.15rem);
  --body-font-weight: 400;
  --body-font-style: normal;
  --body-line-height: 1.45;
  --body-letter-spacing: 0px;
  --body-text-align: inherit;
}
@media (min-width: 768px) {
  :root {
    --body-line-height: 1.6;
  }
}

  /*font-size: calc(1.375rem + 1.5vw);*/
  .font-1{
    font-family: var(--font-1);
  }
  .font-2{
    font-family: var(--font-2);
  }
  
  *, ::after, ::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  @media (prefers-reduced-motion: no-preference) {
    :root {
      scroll-behavior: smooth;
    }
  }
  html{
    scroll-behavior: smooth;
    scroll-padding-top: 7rem;
  }
  body {
    margin: 0;
    color:            var(--body-color);
    font-family:      var(--body-font-family);
    font-size:        var(--body-font-size);
    font-weight:      var(--body-font-weight);
    line-height:      var(--body-line-height);
    text-align:       var(--body-text-align);
    background-color: var(--body-bg);
    -webkit-text-size-adjust:100%;
    -webkit-tap-highlight-color:rgba(0,0,0,0);
   }
   
  /*Os modals no backoffice Necessitam disto para apresentar
  o body dentro do iframe sem scroll*/
  body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    text-rendering: auto;
   }
   body {
    background-image: -webkit-gradient(linear, left top, left bottom, 
                      from(hsla(60, 11%, 95%, 0.94)), to(hsla(60, 11%, 95%, 0.94))), 
                      url("img/noise.webp"), 
                      -webkit-gradient(linear, left top, left bottom, from(#f4f4f1), to(#f4f4f1));                
    background-image: linear-gradient(180deg, hsla(60, 12%, 98%, 0.94), hsla(60, 12%, 98%, 0.94)), 
                      url("img/noise.webp"), 
                      linear-gradient(180deg, #f5f5f4, #f5f5f4);
    background-position: 0px 0px, 0px 0px, 0px 0px;
    background-size: auto, 128px, auto;
  }
  
/*BOOTSTRAP A*/
  a {
    color: rgba(var(--link-color-rgb), var(--link-opacity, 1));
    text-decoration: underline;
  }
  a:hover {
    --link-color-rgb: var(--link-hover-color-rgb);
  }
  
  a:not([href]):not([class]), a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none;
  }


  a{
   text-decoration: none;
   background-color: transparent;
  }
  a {
    color: #224faa;
    text-decoration: underline;
  }
  a:focus, a:hover {
    color: #424077;
  }
  
  p {
    margin-top: 0;
    margin-bottom: 1rem;
  }
  h3, .h3 {
    font-family: var(--font-1);
    font-size: var(--h3-size);
    line-height: 1.3;
  }
  h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6 .h6 {
    font-style: inherit;
    font-weight: 700;
    letter-spacing: -0.2px;
    margin: 10px 0 20px 0;
    color: var(--heading-color);
  }
  h1 a, h2 a, h3 a, h4 a, h5 a, h6 a{
    color: var(--body-color);
    text-decoration: none;
  }
  h1, .h1 {
    font-size: calc(1.375rem + 1.5vw);
  }
  @media (min-width: 1200px) {
    h1, .h1 {
      font-size: 2.5rem;
    }
  }
  
  h2, .h2 {
    font-size: calc(1.325rem + 0.9vw);
  }
  @media (min-width: 1200px) {
    h2, .h2 {
      font-size: 2rem;
    }
  }
  
  h3, .h3 {
    font-size: calc(1.3rem + 0.6vw);
  }
  @media (min-width: 1200px) {
    h3, .h3 {
      font-size: 1.75rem;
    }
  }
  
  h4, .h4 {
    font-size: calc(1.275rem + 0.3vw);
  }
  @media (min-width: 1200px) {
    h4, .h4 {
      font-size: 1.5rem;
    }
  }
  
  h5, .h5 {
    font-size: 1.25rem;
  }
  
  h6, .h6 {
    font-size: 1rem;
  }
.big-h{
  font-size: 2rem;
  font-family: 'Satoshi', 'Barlow', Arial, sans-serif;
  font-size: clamp(1.2rem, 3.4vw + 1rem, 4rem);
  font-weight: 700;
  line-height: 1.1em;
}
  .big-h + *{
  margin-top: 3em;
}  
  
hr {
  margin: 1rem 0;
  color: inherit;
  border: 0;
  border-top: var(--border-width) solid;
  opacity: 0.25;
}
ul{
  list-style-type: none;
  margin: 0;
  padding: 0;
}
dl, ol, ul {
  margin-top: 0;
  margin-bottom: 1rem;
}
ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

/*==============================================/
   TEXTO DOS ARTIGOS
*/
.entry-page {
  max-width: 1376px;
  padding-bottom: 90px;
  margin: 0 auto;
}
.pag-eventos .entry-page {
  max-width: 1300px;
}
.article dl,
.article ol, 
.article ul {
  padding-left: 1rem;
  margin-bottom: 1rem;
  list-style-type: disc;
}
.article li{
  padding-left: .2rem;
}
.article a{
  text-decoration:underline;
}
.article a.btn{
  text-decoration:none;
}
.article .pagenavigation a{
  text-decoration:none;
}
.article ul{
  list-style-type: disc;
  line-height: 1.4;
  padding-left: 1.3rem;
}
.article ul li {
  margin-bottom: .6rem;
}
.bottom-b .content ul{
  list-style-type: none !important;
  line-height: inherit;
  padding-left: inherit;
}
.bottom-b .content ul li {
  margin-bottom: inherit;
}

/*==============================================*/

abbr[title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}
address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

dt {
    font-weight: 700;
  }
  
  dd {
    margin-bottom: 0.5rem;
    margin-left: 0;
  }
  
  blockquote {
    margin: 0 0 1rem;
  }
  
  b,
  strong {
    font-weight: bolder;
  }
  
  small, .small {
    font-size: 0.875em;
  }
  
  mark, .mark {
    padding: 0.1875em;
    color: var(--highlight-color);
    background-color: var(--highlight-bg);
  }
  
  sub,
  sup {
    position: relative;
    font-size: 0.75em;
    line-height: 0;
    vertical-align: baseline;
  }
  
  sub {
    bottom: -0.25em;
  }
  
  sup {
    top: -0.5em;
  }
pre,
code,
kbd,
samp {
  font-family: var(--font-monospace);
  font-size: 1em;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 0.875em;
  color: var(--code-color);
  word-wrap: break-word;
}
a > code {
  color: inherit;
}

kbd {
  padding: 0.1875rem 0.375rem;
  font-size: 0.875em;
  color: var(--body-bg);
  background-color: var(--body-color);
  border-radius: 0.25rem;
}
kbd kbd {
  padding: 0;
  font-size: 1em;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: var(--secondary-color);
  text-align: left;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: .9rem;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}
select:disabled {
  opacity: 1;
}

[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
  display: none !important;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}
button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
fieldset {
  margin-bottom: 2em;
}

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}
@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
legend + * {
  clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

::file-selector-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

iframe {
  border: 0;
}

summary {
  display: list-item;
  cursor: pointer;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.display-1 {
  font-size: calc(1.625rem + 4.5vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-1 {
    font-size: 5rem;
  }
}

.display-2 {
  font-size: calc(1.575rem + 3.9vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-2 {
    font-size: 4.5rem;
  }
}

.display-3 {
  font-size: calc(1.525rem + 3.3vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-3 {
    font-size: 4rem;
  }
}

.display-4 {
  font-size: calc(1.475rem + 2.7vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-4 {
    font-size: 3.5rem;
  }
}

.display-5 {
  font-size: calc(1.425rem + 2.1vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-5 {
    font-size: 3rem;
  }
}

.display-6 {
  font-size: calc(1.375rem + 1.5vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-6 {
    font-size: 2.5rem;
  }
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}
.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.initialism {
  font-size: 0.875em;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.blockquote > :last-child {
  margin-bottom: 0;
}

.blockquote-footer {
  margin-top: -1rem;
  margin-bottom: 1rem;
  font-size: 0.875em;
  color: #6c757d;
}
.blockquote-footer::before {
  content: "— ";
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-thumbnail {
  padding: 0.25rem;
  background-color: var(--body-bg);
  border: var(--border-width) solid var(--border-color);
  border-radius: var(--border-radius);
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

.figure-caption {
  font-size: 0.875em;
  color: var(--secondary-color);
}



/*////////////////////////////////////////////////////////////////////////

/ PEDRO'S CRAZY RULES (Verificar)
////////////////////////////////////////////////////////////////////////*/
.view-categories main > div,
.view-featured main > div,
.view-category main > div,
.view-article main > div {
  /* max-width: 1140px; */
  padding-right: 0;
  padding-left: 0;
  margin-right: auto;
  margin-left: auto;
}
.wrapper-fluid .container {
  max-width: 100% !important;
}
/* .container .container {
  width: 100% !important;
  padding-right: 0;
  padding-left: 0;
}
.container-component .container {
  width: 100%;
  padding-right: 0;
  padding-left: 0;
} */
.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.full-width {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding-left: 8px;
  padding-right: 8px;
}
.center-text,
.text-center {
  text-align: center;
}
.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}
div[class*="txt-col"] {
  column-count: 1;
  column-gap: 2.5em;
}
.img-100{
  width: 100%;
}
.img-cover{
  object-fit: cover;
}
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}
.modal iframe {
width:100%;
}
.position-sticky {
  position: sticky !important;
}
.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020;
}
.visible {
  visibility: visible !important;
}
.visually-hidden {
  visibility: hidden;
  position: absolute;
}
.float-end {
  float: right !important;
}
:target{
  outline: 0px solid rgb(212, 53, 53);
  outline-offset: 5px;
}