/* @import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600&display=swap'); */

body {
    font-family: 'Open Sans', sans-serif;
    margin-top: 72px; /* fixed navbar height */
}

/**
Responsive root size
*/
html {
    font-size: 14px;
}

/* Small */
@media only screen and (min-width: 576px) {
    html {
    font-size: 16px;
      /* background-color: lightblue; */
    }
}

/**
Typography
*/

.display-3 {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 3.75rem; /*60px */
    line-height: 136%; /*82px*/

    /* Text/Black Primary */

    color: rgba(0, 0, 0, 0.87);
}

.display-2 {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 3rem; /*48px*/
    line-height: 135%; /*65px*/
    color: rgba(0, 0, 0, 0.87);
}



.display-1 {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 2.125rem; /*34px*/
    line-height: 136%; /*46px;*/

    /* Text/Black Primary */

    color: rgba(0, 0, 0, 0.87);
}

.headline-1 {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 1.5rem; /*24px*/
    line-height:  136%; /*33px*/

    /* Text/Black Primary */

    color: rgba(0, 0, 0, 0.87);

}

.title-1 {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 1.125rem; /*18px*/
    line-height: 136%; /*25px*/
    /* identical to box height */


    /* Text/Black Primary */

    color: rgba(0, 0, 0, 0.87);

}

.overline {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 0.625rem; /*10px*/
    font-size: 0.75rem; /*12px*/
    line-height: 140%; /*14px*/
    /* identical to box height */

    text-transform: uppercase;

    /* Text/Black Secondary */

    color: rgba(0, 0, 0, 0.54);
}

p, .body-1 {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 1rem; /*16px*/
    line-height: 162%; /*26px*/

    /* Text/Black Secondary */

    color: rgba(0, 0, 0, 0.54);
}

.body-2 {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 1rem; /*16px*/
    line-height: 162%; /*26px*/

    /* Text/Black Secondary */

    color: rgba(0, 0, 0, 0.54);
}

.caption {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 0.75rem; /*12px*/
    line-height: 133%; /*16px*/

    /* Text/Black Secondary */

    color: rgba(0, 0, 0, 0.54);
}




/**
Buttons
*/

.btn {
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 600;
    font-size: 0.875rem; /*14px*/
    line-height: 135%; /*19px*/
    display: inline-flex;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    /* color: #FFFFFF; */
}

/**
Sizes
 */

.btn-md {
    height: 2.375rem; /*38px*/
    padding: 0.375rem 0.9rem;
}

.btn-lg {
    height: 3rem; /*48px*/
    padding: 0.5rem 1.5rem;
}

/**
btn transparent
 */

.btn-transparent {
    color: rgba(0, 0, 0, 0.87);
    background-color: transparent;
    border-color: transparent;
}

.btn-transparent:hover {
    background-color: #00000033;
    border-color: transparent;
}

.btn-transparent:focus {
    background-color: #00000033;
    border-color: transparent;
    box-shadow: 0 0 0 0.25rem #00000088;
}

.btn-transparent:active {
    background-color: #00000055;
    border-color: transparent;
}

.btn-transparent:active:focus {
    box-shadow: 0 0 0 0.25rem #00000088;
}

/**
btn primary
 */

.btn-primary {
    color: #FFFFFF;
    background-color: #429693;
    border-color: #429693;
}

.btn-primary:hover {
    background-color: #73B1AF;
    border-color: #73B1AF;
}

.btn-primary:focus {
    background-color: #429693;
    border-color: #429693;
    /* background-color: #73B1AF;
    border-color: #73B1AF; */
    box-shadow: 0 0 0 0.25rem #42969388;
}

.btn-primary:active {
    background-color: #456b6a;
    border-color: #456b6a;
}

.btn-primary:active:focus {
    box-shadow: 0 0 0 0.25rem #42969388;
}

.btn-primary:disabled, .btn-primary.disabled {
    color: rgb(54 54 54);
    background-color: hsl(0deg 0% 58%);
    border-color: hsl(0deg 0% 58%);
}

/**
btn accent
 */
 
.btn-accent {
    color: #fff;
    background-color: #44B26A;
    border-color: #44B26A;
}

.btn-accent:hover {
    color: #fff;
    background-color: #44B26A;
    border-color: #44B26A;
}

.btn-accent:focus {
    color: #fff;
    background-color: #44B26A;
    border-color: #44B26A;
    box-shadow: 0 0 0 0.25rem #44B26A88;
}

.btn-accent:active {
    color: #fff;
    background-color: #2d7546;
    border-color: #2d7546;
}

.btn-accent:active:focus {
    box-shadow: 0 0 0 0.25rem #44B26A88;
}

/**
btn outline primary
 */

.btn-outline-primary {
    color:#429693;
    border-color: #429693;
}

.btn-outline-primary:hover {
    border-color: #429693;
    color:#429693;
    background-color: #42969341;
}

.btn-outline-primary:focus {
    box-shadow: 0 0 0 0.25rem #42969388;
}

.btn-outline-primary:active {
    color:#429693;
    border-color: #429693;
    background-color: #42969371;
}

.btn-outline-primary:active:focus {
    box-shadow: 0 0 0 0.25rem #42969388;
}

/**
btn outline accent
 */

.btn-outline-accent {
    color:#44B26A;
    border-color: #44B26A;
}

.btn-outline-accent:hover {
    border-color: #44B26A;
    color:#44B26A;
    background-color: #44B26A41;
}

.btn-outline-accent:focus {
    box-shadow: 0 0 0 0.25rem #44B26A88;
}

.btn-outline-accent:active {
    color:#44B26A;
    border-color: #44B26A;
    background-color: #44B26A71;
}

.btn-outline-accent:active:focus {
    box-shadow: 0 0 0 0.25rem #44B26A88;
}


/**
Icon button
*/

.btn-icon {
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 600;
    font-size: 0.875rem; /*14px*/
    line-height: 135%; /*19px*/
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-transform: uppercase;
    border-radius: 100%;
    text-decoration: none;
    /* color: #FFFFFF; */
}

/**
Sizes
 */

.btn-icon.btn-md {
    height: 2.375rem; /*38px*/
    width: 2.375rem;
    /* padding: 0.375rem 0.9rem; */
}

.btn-icon.btn-lg {
    height: 3rem; /*48px*/
    padding: 3rem;
}

/**
btn transparent
 */

.btn-icon.btn-transparent {
    color: rgba(0, 0, 0, 0.87);
    background-color: transparent;
    border-color: transparent;
}

.btn-icon.btn-transparent:hover {
    background-color: #00000033;
    border-color: transparent;
}

.btn-icon.btn-transparent:focus {
    background-color: #00000033;
    border-color: transparent;
    box-shadow: 0 0 0 0.25rem #00000088;
}

.btn-icon.btn-transparent:active {
    background-color: #00000055;
    border-color: transparent;
}

.btn-icon.btn-transparent:active:focus {
    box-shadow: 0 0 0 0.25rem #00000088;
}

/**
btn primary
 */

.btn-icon.btn-primary {
    color: #FFFFFF;
    background-color: #429693;
    border-color: #429693;
}

.btn-icon.btn-primary:hover {
    background-color: #73B1AF;
    border-color: #73B1AF;
}

.btn-icon.btn-primary:focus {
    background-color: #73B1AF;
    border-color: #73B1AF;
    box-shadow: 0 0 0 0.25rem #42969388;
}

.btn-icon.btn-primary:active {
    background-color: #456b6a;
    border-color: #456b6a;
}

.btn-icon.btn-primary:active:focus {
    box-shadow: 0 0 0 0.25rem #42969388;
}

.btn-icon.btn-primary:disabled, .btn-icon.btn-primary.disabled {
    color: rgb(54 54 54);
    background-color: hsl(0deg 0% 58%);
    border-color: hsl(0deg 0% 58%);
}

/**
btn accent
 */
 
.btn-icon.btn-accent {
    color: #fff;
    background-color: #44B26A;
    border-color: #44B26A;
}

.btn-icon.btn-accent:hover {
    color: #fff;
    background-color: #44B26A;
    border-color: #44B26A;
}

.btn-icon.btn-accent:focus {
    color: #fff;
    background-color: #44B26A;
    border-color: #44B26A;
    box-shadow: 0 0 0 0.25rem #44B26A88;
}

.btn-icon.btn-accent:active {
    color: #fff;
    background-color: #2d7546;
    border-color: #2d7546;
}

.btn-icon.btn-accent:active:focus {
    box-shadow: 0 0 0 0.25rem #44B26A88;
}

/**
btn outline primary
 */

.btn-icon.btn-outline-primary {
    color:#429693;
    border-color: #429693;
}

.btn-icon.btn-outline-primary:hover {
    border-color: #429693;
    color:#429693;
    background-color: #42969341;
}

.btn-icon.btn-outline-primary:focus {
    box-shadow: 0 0 0 0.25rem #42969388;
}

.btn-icon.btn-outline-primary:active {
    color:#429693;
    border-color: #429693;
    background-color: #42969371;
}

.btn-icon.btn-outline-primary:active:focus {
    box-shadow: 0 0 0 0.25rem #42969388;
}

/**
btn outline accent
 */

.btn-icon.btn-outline-accent {
    color:#44B26A;
    border-color: #44B26A;
}

.btn-icon.btn-outline-accent:hover {
    border-color: #44B26A;
    color:#44B26A;
    background-color: #44B26A41;
}

.btn-icon.btn-outline-accent:focus {
    box-shadow: 0 0 0 0.25rem #44B26A88;
}

.btn-icon.btn-outline-accent:active {
    color:#44B26A;
    border-color: #44B26A;
    background-color: #44B26A71;
}

.btn-icon.btn-outline-accent:active:focus {
    box-shadow: 0 0 0 0.25rem #44B26A88;
}


/**
Footer
*/

#footer {
    background: #011915;
}

/**
Header
*/

#header.navbar {
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
    min-height: 72px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16), 0px 3px 6px rgba(0, 0, 0, 0.23);
}

#header .navbar-nav {
  width: 100%;
  justify-content: space-between;
}

#header .nav-link {
    font-size: 14px;
    font-weight: 600;
    /* Text/Black Secondary */

    color: rgba(0, 0, 0, 0.54);
}


/**
Hero Banner
*/
#hero {
    background-color: #F1F1F1;
    position: relative;
}

#hero .sr-carousel {
  background-color: #F1F1F1;;
  position: absolute;
  height: 100%;
  width: 100%;
}

#hero .sr-carousel-item {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  /* background-color: rgb(0, 0, 0); */
  background-size: cover;
  background-position: center;
  color: white;
  align-items: center;
  justify-content: center;
  display: flex;
  /* visibility: hidden; */
  transition: 1s opacity ease-in;
  opacity: 0;
}

#hero .sr-carousel-item.current {
  /* background-color: red; */
  z-index: 1;
  /* visibility: visible; */
  opacity: 1;
}

#hero .sr-carousel-item::after {
    content: "";
    background: rgba(255, 255, 255, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

#hero .container {
    position: relative;
    z-index: 3;
}


/**
O que fazemos
*/

#oquefazemos {
    background-color: #FFF;
}

#oquefazemos iframe {
    max-width: 100%;
    width:100%;
    height: 315px;
}

/* Small */
@media only screen and (min-width: 576px) {
    #oquefazemos iframe {
        height: 523px;
    }
}




/**
Para usinas
*/


#parausinas {
    background-color: #FFF;
}

#parausinas .list-checks {
    /* background: red; */
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: normal;
    font-size: 1rem; /*16px*/;
    line-height: 162%; /*26px*/
    /* Text/Black Secondary */

    color: rgba(0, 0, 0, 0.54);

    list-style-type: "\2714\0020";
    padding-left: 1.2em;

}

#parausinas .list-checks li {
    margin-bottom: 1.5rem; /*24px*/
}

#parausinas .content {
    /* background: red; */
    max-width: 100%;
}



#parausinas .sr-carousel {
  background-color: #F1F1F1;
  position: relative;
  height: 18.75rem; /*300px*/
  border: 0.75rem solid rgb(255, 255, 255);
  /* height: 200px;
  width: 300px; */
}

#parausinas .sr-carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: rgb(0, 0, 0);
  background-size: cover;
  background-position: center;
  color: white;
  align-items: center;
  justify-content: center;
  display: flex;
  /* visibility: hidden; */
  transition: 1s opacity ease-in;
  opacity: 0;
}

#parausinas .sr-carousel-item.current {
  /* background-color: red; */
  z-index: 1;
  /* visibility: visible; */
  opacity: 1;
}

/* .sr-carousel-item::after {
    content: "";
    background: rgba(255, 255, 255, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
} */

/* Lg */
@media only screen and (min-width: 992px) {
    #parausinas .content {
        /* background: blue; */
        max-width: 100%;
        width: 428px;
    }

    #parausinas .sr-carousel {
        height: 798px;
    }
}




/**
Para fornecedores
*/

#parafornecedores {
    background-color: #FFF;
}

#parafornecedores .list-checks {
    /* background: red; */
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: normal;
    font-size: 1rem; /*16px*/;
    line-height: 162%; /*26px*/
    /* Text/Black Secondary */

    color: rgba(0, 0, 0, 0.54);

    list-style-type: "\2714\0020";
    padding-left: 1.2em;

}

#parafornecedores .list-checks li {
    margin-bottom: 1.5rem; /*24px*/
}

#parafornecedores .content {
    /* background: red; */
    max-width: 100%;
}


#parafornecedores .sr-carousel {
  background-color: #F1F1F1;
  position: relative;
  height: 18.75rem; /*300px*/
  border: 0.75rem solid rgb(255, 255, 255);
  /* height: 200px;
  width: 300px; */
}

#parafornecedores .sr-carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: rgb(0, 0, 0);
  background-size: cover;
  background-position: center;
  color: white;
  align-items: center;
  justify-content: center;
  display: flex;
  /* visibility: hidden; */
  transition: 1s opacity ease-in;
  opacity: 0;
}

#parafornecedores .sr-carousel-item.current {
  /* background-color: red; */
  z-index: 1;
  /* visibility: visible; */
  opacity: 1;
}

/* .sr-carousel-item::after {
    content: "";
    background: rgba(255, 255, 255, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
} */

/* Lg */
@media only screen and (min-width: 992px) {
    #parafornecedores .content {
        /* background: blue; */
        max-width: 100%;
        width: 428px;
    }

    #parafornecedores .sr-carousel {
        height: 798px;
    }
}


/**
Como Funciona
*/

#comofunciona {
    background-color: #F8F8F8;
}

#comofunciona iframe {
    max-width: 100%;
    width:100%;
    height: 315px;
}

#comofunciona .thumb {
    /* background: red; */
}

#comofunciona .thumb img {
    border-radius: 4px;
}

/* Small */
@media only screen and (min-width: 576px) {
    #comofunciona iframe {
        height: 523px;
    }
}


/**
Áreas de Atuação
*/

#areasatuacao {
    background-color: #E1EDEF;
}

#areasatuacao .icon-area {
    width: 174px;
    height: 174px;
}






/**
Catálogo
*/

#catalogo {
    background-color: #AAAAAA;
    position: relative;
    height: 680px;
    /* min-height: 80vh; */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-shadow: 0px 4px 4px #000000c2;
}

@media (min-width: 768px) {
    #catalogo {
        height: 610px;
    }
}

@media (min-width: 1200px) {
    #catalogo {
        height: 630px;
    }
}

#catalogo .sr-carousel {
  position: absolute;
  height: 100%;
  width: 100%;
}

#catalogo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 22.68%);
}

#catalogo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 22.68%);
}

#catalogo .sr-carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    /* background: hsla(176, 47%, 37%, 0.27); */
    background: hsl(176deg 47% 23% / 56%);
}

#catalogo .sr-carousel-item {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-size: cover;
  background-position: center;
  color: white;
  align-items: center;
  justify-content: center;
  display: flex;
  /* visibility: hidden; */
  transition: 1s opacity ease-in;
  opacity: 0;
}

#catalogo .sr-carousel-item.current {
  z-index: 1;
  /* visibility: visible; */
  opacity: 1;
}

#catalogo .bottom-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    gap: 10px;
    z-index: 3;
}

#catalogo .bottom-pagination .pagination-prev,
#catalogo .bottom-pagination .pagination-next {
    color: rgb(255 255 255 / 87%);
    border-radius: 50%;
    aspect-ratio: 1;
}

#catalogo .bottom-pagination .pagination-prev:hover,
#catalogo .bottom-pagination .pagination-next:hover {
    color: #ffffff;
}

#catalogo .pagination {
  display: flex;
  list-style-type: none;
  margin: 0;
}

#catalogo .pagination-button {
    width: 10px;
    height: 10px;
    border: none;
    padding: 0;
    margin: 5px;
    border-radius: 100%;
    background-color: rgba(255, 255, 255, 0.87);
    opacity: 0.3;
}

#catalogo .pagination-button.active {
    opacity: 1;
}

#catalogo .card {
    width: 100%;
    background-color: transparent;
    border: none;
}

#catalogo .card-body {
    padding: 0 3rem; 
}

#catalogo #cardTitle {
    color: rgb(255 255 255 / 87%);
}

#catalogo #cardTopics {
    color: rgb(255 255 255 / 70%);
}

#catalogo .sr-carousel-text-item {
  /* z-index: 0; */
  /* visibility: hidden; */
  /* transition: 1s opacity ease-in; */
  /* opacity: 0; */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
}

#catalogo .icon {
    background-color: white;
    border-radius: 100%;
    box-shadow: 0px 4px 4px #000000;
    aspect-ratio: 1;
    width: 96px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#catalogo .container {
    position: relative;
    z-index: 3;
    /* height: 100%; */
}

#catalogo .list-default {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: normal;
    font-size: 1rem; /*16px*/;
    line-height: 162%; /*26px*/
    /* Text/Black Secondary */

    color: rgba(0, 0, 0, 0.54);
    margin-top: 1rem;
}


/**
JSF error messages
*/

.message-container {
    position: fixed;
    width: 100%;
    top: 72px;
    z-index: 10;
}