/**
 * copyright 2023 geroncio.developer
 */





/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Fauna+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sacramento&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Allura&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald&display=swap');
@import url('https://fonts.cdnfonts.com/css/photograph-signature');
@import url('https://fonts.googleapis.com/css2?family=Kurale&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Afacad:ital,wght@0,400..700;1,400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&family=Kurale&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&family=Kurale&family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@font-face {
  font-family: 'Arialik';
  src: url('/assets/fonts/arialik.ttf') format('truetype');
  /* Adicione outros estilos de fonte, se necessário */
}

:root {

  /**
  * colors
  */

  /**
  * colors
  */

  --azul-piscina: rgb(0, 175, 239);
  --azul-claro: rgb(244, 247, 253);
  --azul-escuro: rgb(13, 33, 79);
  --azul_50: hsla(222, 71.7%, 18%, 0.7);
  --azul-evolt: #0166c0;
  --star-yellow: rgb(255, 191, 0);
  --amarelo-baby: #fdfd96;
  --verde-oliva: rgb(107, 117, 82);
  --verde-lima: rgb(129, 165, 3);
  --verde2: rgb(107, 117, 82);
  --verde3: #bdecb6;
  --marrom: #6c4d38;
  --marrom70: rgb(179, 139, 109);
  --pele: #cfb091;
  --banana: #fffbc9;
  --white: hsl(0, 0%, 100%);
  --black: hsl(0, 0%, 0%);
  --black_70: hsla(0, 0%, 0%, 0.7);
  --black_50: hsla(0, 0%, 0%, 0.5);
  --brancogelo: rgb(253, 253, 253);
  --cinza: rgb(222, 223, 218);
  --cinzaweb: rgb(240, 243, 250);
  --gray-web: hsl(0, 0%, 49%);
  --cultured-1: hsl(0, 0%, 97%);
  --cultured-2: hsl(60, 6%, 93%);


  /**
  * gradient color
  */

  --gradient: linear-gradient(to right, transparent 50%, var(--white_30) 100%);

  /**
   * typography
   */

  --ff-urbanist: 'Urbanist', sans-serif;

  --fs-1: 4.8rem;
  --fs-2: 4rem;
  --fs-3: 3.4rem;
  --fs-4: 2.4rem;
  --fs-5: 2rem;
  --fs-6: 1.8rem;
  --fs-7: 1.5rem;
  --fs-8: 1.4rem;
  --fs-9: 1.3rem;

  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;
  --fw-800: 800;

  /**
   * spacing
   */

  --section-padding: 35px;


  /**
  * shadow
  */

  --shadow-1: 0 8px 16px var(--black_15);
  --shadow-2: 0 4px 10px var(--black_5);

  /**
   * radius
   */

  --radius-3: 3px;


  /**
  * transition
  */

  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease;
  --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
  --cubic-out: cubic-bezier(0.33, 0.85, 0.4, 0.96);

}

/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


a,
img,
span,
input,
button,
ion-icon {
  display: block;
}


li {
  list-style: none
}

.span2 {
  font-size: 20px;
  color: var(--black);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  height: auto;
}

input,
button {
  background: none;
  /*Cor de todos os buttons padrão definido como nenhuma*/
  border: none;
  font: inherit;
}

input {
  width: 100%;
}



/* Mantém a cor de fundo branca para as opções da lista de sugestões */


input[type=number]::-webkit-inner-spin-button {
  all: unset;

}

button {
  cursor: pointer;
}

ion-icon {
  pointer-events: none;
  --ionicon-stroke-width: 25px;
}

html {
  font-family: var(--ff-urbanist);
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--azul-evolt);
  /*Cor do corpo principal*/
  color: var(--gray-web);
  font-size: 1.6rem;
  font-weight: var(--fw-500);
  line-height: 1.6;
  scroll-behavior: smooth;
  /* Adiciona o efeito de rolagem suave */
}



/* BARRA DE ROLAGEM BACKGROUND */


::-webkit-scrollbar {
  width: 10px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background-color: hsl(0, 0%, 95%);
}

::-webkit-scrollbar-thumb {
  background-color: var(--cinza);
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--cinza);
}


/* EFEITO BARRA UNDERLINE AO COLOCAR CURSOR SOBRE O TEXTO */

.has-before,
.has-after {
  position: relative;
  z-index: 1;

}

.has-before::before,
.has-after::after {
  content: "";
  position: absolute;
}





.blog-card .card-banner img {
  transition: var(--transition-2);
}

.blog-card:is(:hover, :focus-within) .card-banner img {
  transform: scale(1.2);
}

.blog-card .card-title {
  text-align: center;
  margin-block: 30px 20px;
  transition: var(--transition-1);
}

.blog-card .card-title:is(:hover, :focus) {
  color: var(--white);
}

.blog-card .btn-link {
  justify-content: center;
}



/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container {
  padding-inline: 15px;

}


.btn2 {
  font-weight: var(--fw-600);
  width: 100%;
  height: 30px;
  justify-content: center;
  display: flex;
  padding: 7.5px 10px;
  border-radius: var(--radius-3);
  transition: var(--transition-1);
}

.btn-primary-b2 {
  margin-top: 12px;
  width: 100%;
  height: 50px;
  background-color: #ffc222;
  display: flex;
  margin-left: -5px;
  justify-content: center;
  align-items: center;
  border-radius: 35px;
  font-size: 14px;
  box-shadow: var(--shadow-1);
  color: var(--white);
  cursor: pointer;
}

.img-card-person {
  width: 18px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffc222;
  cursor: pointer;
}

.img-card-person2 {
  width: 18px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.form-item {
  margin-bottom: 20px;

}

.form-item2 {
  display: flex;
  width: 270px;
  justify-content: center;
  margin-bottom: 30px;

}


.form-itembutt {
  display: flex;
  width: 270px;
  justify-content: start;
  margin-bottom: 30px;

}


.form-group {
  display: flex;
  margin-top: 5px;
  border-radius: 5px;
  border-bottom: 2px solid var(--cinzaweb);
  padding: 5px;
  padding-left: 15px;
  padding-right: 15px;
}


.form-control {
  text-align: left;
  width: 100%;
  margin-left: 10px;
  height: 40px;
  background: transparent;
  border-bottom: 0px solid var(--cinza);
  padding: 10px 5px;
  font-size: 14px;
  color: var(--black_70);
  outline: none;

}

input::placeholder {
  color: var(--gray-web);
  /* Defina a cor desejada aqui */
}

#inputEmail2::placeholder {
  color: var(--black);
  /* Defina a cor desejada aqui */
}

.col-12 {
  width: 100%;
}

.padd-15 {
  padding-left: 15px;
  padding-right: 15px;
}


.footer-2 {
  width: 100%;
  display: block;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  margin-block-end: 20px;
  padding-left: 10px;
  padding-right: 10px;

}

body {
  background-color: white;
  scroll-behavior: smooth;
  /* Adiciona o efeito de rolagem suave */
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  padding-top: 50px;

}





.footer-bottom2 {
  display: block;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-block-end: 20px;
}


.footer-bottom .wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  margin-block-end: 20px;
}



.copyright {
  font-size: 12px;
  color: white;
}


.nameform {
  font-size: 15px;
  font-weight: 700;
  color: var(--star-yellow);
}


.nameform2 {
  width: 140px;
  display: flex;
  justify-content: right;
  font-size: 12px;
  margin-top: 0px;
  font-weight: 500;
  color: #ffc222;
  cursor: pointer;
}

.nameform3 {
  display: flex;
  justify-content: right;
  font-size: 12px;
  margin-top: 0px;
  font-weight: 700;
  color: var(--black_70);
  cursor: pointer;
}


svg {
  width: 2.25em;
  display: none;
  margin-left: 35px;
  transform-origin: center;
  animation: rotate4 2s linear infinite;
}

circle {
  fill: none;
  stroke: var(--white);
  stroke-width: 2;
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  animation: dash4 1.5s ease-in-out infinite;
}

@keyframes rotate4 {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dash4 {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 90, 200;
    stroke-dashoffset: -35px;
  }

  100% {
    stroke-dashoffset: -125px;
  }
}






/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/


@media (min-width: 350px) {

  .agendaimage {

    width: 100%;
    height: 100px;
    margin-top: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('/assets/images/evoltwhite.webp');
    background-repeat: no-repeat;
    background-size: 200px;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-position-x: center;
    animation: shoes 1s ease infinite alternate;
    transition: all .5s ease-in;
  }

  .container_flex {
    display: flex;
    margin-top: -20px;
    justify-content: space-between;
    align-items: center;
  }

  .container_flex2 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
    padding-right: 30px;
    padding-left: 30px;
  }

  .container_flex3 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 30px;
    padding-right: 30px;
    padding-left: 30px;
  }

  .circlediv1 {

    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fd4b4b;
    border-radius: 50%;
    cursor: pointer;
  }

  .circlediv2 {

    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #16cd36;
    border-radius: 50%;
    cursor: pointer;
  }

  .circlediv3 {

    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #4eb3fd;
    border-radius: 50%;
    cursor: pointer;
  }


  .linhadiv {
    width: 100%;
    height: 1px;
    background-color: gray;
  }

  .linhatext {
    color: gray;
    font-size: 14px;
    width: auto;
  }

  .lembrardemim {
    display: flex;
    width: 200px;
    gap: 10px;
    justify-content: flex-start;
    align-items: center;
  }

  .progressdiv {
    width: 100%;
    height: 60px;
    padding-top: 10px;
    display: none;
    align-items: center;
    justify-content: center;
  }

  #svgprogress2 {

    justify-content: right;
    margin-top: -30px;
    padding-right: 50px;
  }

  .loading {
    border: 4px solid var(--azul-evolt);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border-right-color: transparent;
    animation: rot 1s linear infinite;

  }

  .loading2 {
    border: 4px solid black;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border-right-color: transparent;
    animation: rot 1s linear infinite;

  }



  @keyframes rot {
    100% {
      transform: rotate(360deg);
    }

  }



  /* Estilos para o modal personalizado */
  .modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
  }

  .modal-content {
    background-color: #fff;
    border-radius: 5px;
    display: flex;
    width: 330px;
    height: auto;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 10px;
    text-align: center;
    position: relative;
  }

  .modal-content img {
    width: 100px;
    height: 60px;
    margin-top: -10px;
    justify-content: center;
    align-items: center;
    display: flex;
    background-size: 80px;
    background-repeat: no-repeat;
  }

  .modal-content span {
    color: var(--azul-evolt);
    text-align: justify;
    padding-left: 20px;
    padding-right: 0px;
    padding-top: 5px;
    font-size: 14px;
    width: 100%;
  }

  .modal-content button {
    color: var(--white);
    text-align: justify;
    display: flex;
    margin-left: 20px;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 10px;
    padding-top: 3px;
    margin-bottom: 10px;
    border-radius: 5px;
    font-size: 14px;
    background-color: var(--azul-evolt);
  }

  #fecharstatus {
    margin-left: 10px;
    padding-left: 10px;
    padding-right: 10px;
  }

  #confirmarstatus {
    background-color: transparent;
    border: 1.5px solid var(--azul-evolt);
    color: var(--azul-evolt);
  }

  #confirmarstatus:hover {
    background-color: var(--azul-evolt);
    border: 0px solid var(--azul-evolt);
    color: var(--white);
  }


  #fecharcadastro {
    margin-left: 10px;
    padding-left: 10px;
    padding-right: 10px;
  }

  #confirmarcadastro {
    background-color: transparent;
    border: 1.5px solid var(--azul-evolt);
    color: var(--azul-evolt);
  }

  #confirmarcadastro:hover {
    background-color: var(--azul-evolt);
    border: 0px solid var(--azul-evolt);
    color: var(--white);
  }

  .flex {
    display: flex;
    width: 100%;
    gap: -10px;
  }

  .close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px;
    cursor: pointer;
  }



  .containeradmin {
    width: 100%;
    height: auto;
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    background-position: center;
    background-size: 100%;
  }


  .logincontainer {
    width: 100%;
    display: flex;
    justify-content: center;


  }


  .logincontainer2 {
    width: 100%;
    height: auto;
    display: flex;
    padding-top: 40px;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    border-radius: 10px;
    border: 0px solid var(--white);
  }

  .logincontainer2-2 {
    width: 100%;
    height: auto;
    background-color: var(--white);
    padding-left: 10px;
    padding-right: 10px;
    box-shadow: var(--shadow-2);
  }

  .logincontainer3 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 140px;
    margin-top: 50px;
  }

  .logincontainer3-2 {
    display: block;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
  }



  @keyframes shoes {
    from {
      top: 48%;
    }

    to {
      top: 52%;
    }
  }

  /** ################################################################################################### */

  .image-carousel {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
  }


  .div1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: 100%;
    z-index: 1;
    /* Z-index menor para a primeira div */
  }

  /* Estilo da segunda div */
  .div2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.15);
    /* Cor de fundo da div2 */
    z-index: 2;
    /* Z-index maior para a segunda div */
  }



  .carousel-slide {
    display: flex;
    transition: transform 1s ease-in-out;
  }

  .carousel-slide img {
    width: 100%;
    height: 100vh;
    object-fit: cover;



  }

  #imagem1 {
    object-position: 55% center;
  }

  #imagem2 {
    object-position: 47% center;
  }

  #imagem3 {
    object-position: 48% center;
  }

  button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    padding: 10px;
    cursor: pointer;
  }

  #computer {
    height: 100vh;
    display: none;
  }






  #prevBtn {
    left: 10px;
  }

  #nextBtn {
    right: 10px;
  }


  .buttonnext {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: white;
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: 2px solid white;
    border-radius: 30px;
  }



  /**#################################################################################################*/

  .headerfalse {
    width: 100%;
    height: 100px;
    padding-left: 20px;
    justify-content: left;
    align-items: end;
    background-color: rgba(0, 0, 0, 0.05);
    display: flex;
  }

  .headerfalse2 {
    width: 100%;
    height: 30px;
    margin-top: -10px;
    margin-bottom: -20px;
    padding-left: 20px;
    justify-content: left;
    align-items: end;
    background-color: transparent;
    display: block;
  }

  .headercont1 {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    font-size: 6px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
    justify-content: right;
    gap: 5px;
  }

  .headerdiv {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .linktell {
    cursor: pointer;
  }

  .linktell:hover {
    color: #ffc222;
  }


  .imgcardicone {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 8px;
    width: 40px;
    height: 16px;
  }

  .headercont2 {
    width: 100%;
    height: 30px;
    font-size: 12px;
    gap: 10px;
    padding-right: 10px;
    display: flex;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
    align-items: center;
    justify-content: right;
  }

  .containerfalse {
    width: 100%;
    display: flex;
    height: 80px;
  }

  .navbarfalse {
    width: 100%;
    height: 80px;
    display: none;
    justify-content: right;
    align-items: center;

  }

  .navbarlistfalse {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 300px;
    padding-right: 30px;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 15px;
    letter-spacing: 1px;
    /* ESPAÇO ENTRE AS LETRAS*/

  }


  .navbarlistfalse .navbar-link:hover {
    color: #ffc222;
  }

  /* efeito barra link navbar */
  .navbarfalse .navbar-link::after {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1.5px;
    background-color: var(--white);
    transition: var(--transition-1);
    transform: scaleX(0);
    transform-origin: left;
  }

  .navbarfalse .navbar-link:is(:hover, :focus)::after {
    transform: scaleX(1);
  }

  .cursor {
    cursor: pointer;
  }


  .social-link-header {
    width: 230px;
    height: 80px;
    padding-right: 30px;
    display: flex;
    justify-content: right;
    align-items: center;
    gap: 20px;
  }


  .social-link-b {
    color: var(--verde-oliva);
    width: 40px;
    height: 35px;
    margin-top: -3px;
    justify-content: center;
    display: flex;
    background-color: var(--background);
    border-radius: 10px;
    font-size: 25px;
    padding: 5px;
    cursor: pointer;
    box-shadow: var(--shadow-1);
  }

  .social-link-b-2 {
    color: var(--white);
    width: 40px;
    height: 35px;
    justify-content: center;
    display: flex;
    background-color: var(--background);
    border-radius: 10px;
    font-size: 25px;
    padding: 5px;
    cursor: pointer;
    box-shadow: var(--shadow-1);
  }

  .social-link-header .social-link-b-2:hover {
    color: #ffc222;
    width: 40px;
    height: 35px;
    justify-content: center;
    display: flex;
    background-color: var(--background);
    border-radius: 10px;
    font-size: 25px;
    padding: 5px;
    cursor: pointer;
    box-shadow: var(--shadow-1);
  }

  .logoevolt {
    width: 160px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .titlelogiconcontainer {
    width: 150px;
    height: 80px;
    color: white;
  }

  .titleiconelog {
    width: 100%;
    height: 53px;
    display: flex;
    justify-content: right;
    font-size: 45px;
    font-weight: 500;
    font-family: "Kurale", serif;
    font-style: normal;
  }

  .subtitleiconelog {
    width: 100%;
    display: flex;
    justify-content: right;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;


  }

  .corpcarrocont {
    width: 100%;
    height: 60vh;
    display: flex;
    align-items: end;
    color: white;
  }

  .corpcarro {
    height: auto;
    padding-left: 60px;
    padding-right: 60px;
    padding-bottom: 50px;
    color: white;
  }

  .boxabout {
    display: block;
    width: 100%;
    height: 1000px;
    background-color: transparent;
  }

  .block {
    display: block;
    min-height: 100px;
  }

  .block #fechar {
    height: 25px;
    margin-top: 30px;
  }

  .boxabout2 {
    display: flex;
    width: 100%;
    padding: 20px;
    height: 1000px;
    background-color: #fdfd96;
  }

  .about1 {
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0px;
    background-image: url('/assets/images/project-2.webp');
    background-repeat: no-repeat;
    border-radius: 40px;
    background-size: 800px;
    z-index: 10px;
    position: relative;
  }

  .about2 {
    width: 100%;
    height: 600px;
    z-index: 10px;
  }

  .corptext1 {
    font-size: 15px;
    font-weight: bold;
    font-family: "Prompt", sans-serif;
    letter-spacing: 7px;
    font-style: normal;
  }

  .corptext2 {
    font-size: 50px;
    font-weight: bold;
    letter-spacing: 7px;
    font-family: "Prompt", serif;
    font-style: normal;
    line-height: 1.4;
  }

  .corptext3 {
    width: 90%;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    font-style: normal;
  }


  .titleaboutdiv {
    width: 100%;
    display: flex;
    justify-content: center;
    font-family: 'Arialik', sans-serif;
    font-size: 90px;
    margin-top: -25px;
    color: #ffc222;
    opacity: 0.3;
    animation: bounce 7s infinite;
  }


  @keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
      transform: translateY(0);
    }

    40% {
      transform: translateY(-20px);
    }

    60% {
      transform: translateY(-10px);
    }
  }

  .subtitleaboutdiv {
    width: 100%;
    display: flex;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-size: 35px;
    color: #ffc222;
    letter-spacing: 3px;
    margin-top: -70px;
  }

  .buttonabout {
    width: 180px;
    height: 40px;
    margin-top: 30px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    background-color: #ffc222;
    border-radius: 30px;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
    cursor: pointer;
  }

  .buttonabout:hover {
    background-color: black;
  }

  #textlermais {
    display: none;
  }

  #textlermais2 {
    display: none;
  }

  #textlermais3 {
    display: none;
  }

  .coprtextaboutdiv {
    font-size: 12px;
    width: 100%;
    padding-right: 0px;
    margin-bottom: 10px;
    text-align: justify;
    color: black;
    /*text-indent: 40px; /* ou o valor desejado */
  }

  .coprtextprojectdiv {
    font-size: 12px;
    width: 100%;
    padding-right: 30px;
    margin-bottom: 10px;
    text-align: justify;
    color: black;
    /*text-indent: 40px; /* ou o valor desejado */
  }

  #about {
    height: 1050px;
  }



  .boxabout2 {
    display: flex;
    width: 100%;
    height: 600px;
    border-radius: 40px;
    background-color: white;
  }

  .divaboutbackground {
    position: absolute;
    background-color: #ffc222;
    width: 300px;
    margin-top: 100px;
    height: 400px;

    border-radius: 20px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  }

  .empty {
    border: 1px solid red;
  }

  .divabout1image {
    position: absolute;
    width: 300px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    background-image: url('/assets/images/about6.webp');
    background-repeat: no-repeat;
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
    background-size: 500px;
    z-index: 10px;
    position: relative;
  }


  .footer_plub {
    width: 100%;
    height: 120px;
    z-index: 100;
    margin-bottom: -20px;
    padding-top: 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }

  .footer-div1 {
    width: 50%;
    height: 50px;
    margin-top: -60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 20px;
    ;
  }

  #fecharnovo4{
    margin-top: 10px;
    margin-left: 90px;
  }

  .imgfooter-div1 {
    width: 120px;
    height: 50px;
    margin-top: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 0px;
    background-image: url('/assets/images/growatt.webp');
    background-repeat: no-repeat;
    background-size: 120px;
  }

  .footer-div2 {
    width: 50%;
    height: 50px;
    margin-top: -70px;
    margin-left: -60px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .imgfooter-div2 {
    width: 120px;
    height: 50px;
    margin-top: 20px;
    margin-left: -50px;
    background-image: url('/assets/images/deye.webp');
    background-repeat: no-repeat;
    background-size: 110px;
  }

  .footer-div3 {
    width: 50%;
    height: 50px;
    margin-top: -60px;
    margin-left: -20px;
    background-repeat: no-repeat;
    background-size: 210px;
  }

  .imgfooter-div3 {
    width: 200px;
    height: 50px;
    margin-top: 0px;
    margin-left: 60px;
    background-image: url('/assets/images/canadian.webp');
    background-repeat: no-repeat;
    background-size: 180px;
  }


  .footer-div4 {
    width: 50%;
    height: 50px;
    margin-top: -60px;
    margin-left: -10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .imgfooter-div4 {
    width: 120px;
    height: 50px;
    margin-top: 15px;
    margin-left: 0px;
    background-image: url('/assets/images/risen.webp');
    background-repeat: no-repeat;
    background-size: 80px;
  }

  .container_background {
    width: 100%;
    height: 100vh;
    background-color: white;
    position: absolute;
    display: flex;

  }

  .back1 {
    width: 100%;
    height: 100vh;
    position: relative;
  }

  .banner1 {
    position: absolute;
    width: 100%;
    height: 100vh;
    background-image: url('/assets/images/back1.webp');
    background-repeat: no-repeat;
    background-position: center;
    object-fit: cover;
    background-size: 190%;
  }

  #computer_container {
    height: 100vh;
    position: absolute;
    display: flex;
    align-items: center;

  }

  .text_tilogin {
    width: 100%;
    display: flex;
    margin-bottom: 40px;
    justify-content: center;
    font-size: 32px;
    color: var(--black_70);
    font-family: 'Oswald', sans-serif;

  }

  input::placeholder {
    color: black;
  }

  .form-group {
    display: flex;
    margin-top: -15px;
    border-radius: 5px;
    border-bottom: 0px solid var(--cinzaweb);
    padding: 5px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .logincontainer2 {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: flex;
    padding-top: 40px;
    padding-bottom: 50px;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    border-radius: 10px;
    border: 0px solid var(--white);
  }

  .logincontainer2-2 {
    width: 85%;
    height: auto;
    background-color: white;
    box-shadow: var(--shadow-2);
  }

  #container_caixa {
    background-color: white;
    box-shadow: 18px 18px 10px rgba(0, 0, 0, 0.15);
    /* Box shadow na borda direita e inferior */
    margin-top: 0px;
  }



  .boxservices2 {
    display: flex;
    width: 100%;
    height: auto;
    min-height: 80vh;
    margin-top: 10px;
    margin-bottom: 0px;
    border-radius: 0px;
    background-color: rgba(0, 0, 0, 0.7);
  }

  #titleservicesdiv {
    width: 100%;
    display: flex;
    justify-content: center;
    font-family: "Allura", sans-serif;
    font-weight: 400;
    margin-top: 50px;
    font-size: 40px;
    letter-spacing: 1px;
    margin-left: 0px;
    color: #ffffff;
    opacity: 1;
    animation: none;
  }

  .servicecontainerdiv {
    width: 100%;
    height: 270px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding-top: 40px;
    padding-left: 0px;
    padding-right: 0px;
  }

  .servicecont1 {
    width: 45%;
    height: 200px;
    border-radius: 20px;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.3);
    background-color: rgba(0, 0, 0, 0.1);
    perspective: 1000px;
    transition: transform 1.6s;
    transform-style: preserve-3d;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);

  }


  #servicecont1:hover {
    background-color: transparent;
    background-image: url('/assets/images/produto-off_1.webp');
    background-repeat: no-repeat;
    background-position: 0%;
    background-size: 180px;
    color: white;
    transform: rotateY(180deg);
  }

  #servicecont2:hover {
    background-color: transparent;
    background-image: url('/assets/images/residencial.webp');
    background-repeat: no-repeat;
    background-position: 0%;
    background-size: 300px;
    color: white;
    transform: rotateY(180deg);
  }

  #servicecont3:hover {
    background-color: transparent;
    background-image: url('/assets/images/bomba.webp');
    background-repeat: no-repeat;
    background-position: 0%;
    background-size: 200px;
    color: white;
    transform: rotateY(180deg);
  }

  #servicecont4:hover {
    background-color: transparent;
    background-image: url('/assets/images/lampada.webp');
    background-repeat: no-repeat;
    background-position: 0%;
    background-size: 200px;
    color: white;
    transform: rotateY(180deg);
  }

  #servicecont5:hover {
    background-color: transparent;
    background-image: url('/assets/images/limparsolar.webp');
    background-repeat: no-repeat;
    background-position: 0%;
    background-size: 300px;
    color: white;
    transform: rotateY(180deg);
  }


  #servicecont6:hover {
    background-color: transparent;
    background-image: url('/assets/images/instalacaoplaca.webp');
    background-repeat: no-repeat;
    background-position: 0%;
    background-size: 300px;
    color: white;
    transform: rotateY(180deg);
  }

  .servicecont1:hover .titleservices {
    background-color: #ffc222;
    opacity: 0.3;
    margin-top: 0x;
    height: 200px;
    border-radius: 20px;
    color: transparent;
    z-index: 10;
  }

  .servicecont1:hover .subtitleservices {
    color: transparent;
    font-weight: 600;
    transform: rotateY(-180deg);
  }

  .servicecont1:hover .imageservices {
    transform: rotateY(-180deg);
    display: none;
  }

  .imageservices {
    width: 100%;
    height: 80px;
    background-size: 80px;
    display: flex;
    justify-content: center;

  }



  #services1 {
    background-image: url('/assets/images/offgrid.webp');
    background-repeat: no-repeat;
    background-position: 50%;
    width: 100%;


  }



  #services2 {
    background-image: url('/assets/images/ongrid2.webp');
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 65px;
    width: 100%;


  }



  #services3 {
    background-image: url('/assets/images/solarwater.webp');
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 85px;
    width: 100%;


  }

  #services4 {
    background-image: url('/assets/images/ligthingsolar.webp');
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 55px;
    width: 100%;


  }

  #services5 {
    background-image: url('/assets/images/limpeza.webp');
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 55px;
    width: 100%;


  }

  #services6 {
    background-image: url('/assets/images/instalacao.webp');
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 45px;
    width: 100%;


  }

  .titleservices {
    width: 100%;
    display: flex;
    justify-content: center;
    font-size: 13px;
    font-weight: bold;
    color: #ffc222;
  }

  .subtitleservices {
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: justify;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 10px;
    font-size: 11px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
  }


  .project1 {
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0px;
    background-image: url('/assets/images/about.webp');
    background-repeat: no-repeat;
    background-size: 800px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 10px;
    position: relative;
    /* Adicionando posição relativa para utilizar 'top' */
    /*animation: shoes 2s ease infinite alternate;*/
  }

  .titleprojectdiv {
    width: 370px;
    font-family: 'Arialik', sans-serif;
    font-size: 60px;
    margin-top: -5px;
    color: black;
    opacity: 0.3;
  }

  .subtitleprojectdiv {
    width: 370px;
    display: flex;
    justify-content: left;
    font-family: 'Oswald', sans-serif;
    font-size: 35px;
    font-weight: bold;
    color: black;
    letter-spacing: 3px;
    margin-top: -50px;
  }

  .projectdivnumber {

    max-width: 200px;
    line-height: 1em;
    display: flex;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: bold;
    color: black;
    letter-spacing: 3px;
    margin-top: 0px;
  }

  .projectdivnumber2 {

    max-width: 200px;
    line-height: 1em;
    display: flex;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: bold;
    color: #ffc222;
    letter-spacing: 3px;
    margin-top: 0px;
  }

  .project2 {
    width: 100%;
    height: 500px;
    padding-left: 50px;
    z-index: 10px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  }


  .buttonproject {
    width: 150px;
    height: 40px;
    margin-top: 30px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    background-color: black;
    border-radius: 0px;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
    cursor: pointer;
  }


  .footerproject-div1 {
    width: 40%;
    height: 100px;
    margin-top: -80px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 0px;
    margin-bottom: -40px;
    gap: 10px;
  }


  .flexprojectspoints {
    display: flex;
    margin-top: 20px;
  }

  .imageprojectspoints {
    width: 50px;
    height: 50px;
    background-image: url('/assets/images/capacity_img.webp');
    background-repeat: no-repeat;
    background-position: 0%;
    margin-right: 10px;
  }



  .textprojects {
    font-size: 20px;
    color: black;
  }

  .subtextprojects {
    font-size: 15px;
    margin-top: -8px;
  }

  .flexproject1 {
    display: flex;
    width: 0px;
    flex: 1;
  }


  #planning {
    margin-top: 500px;
    height: 90vh;
  }

  .containerplanning {
    width: 100%;
    height: 100vh;
  }

  .titleplanningdiv {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    color: black;
    font-size: 25px;
    font-weight: 500;
  }

  .subtitleplanningdiv {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    color: rgba(0, 0, 0, 0.4);
    font-size: 16px;
    margin-top: -10px;
    font-weight: 500;
  }

  .slide-framer {
    overflow: hidden;
    height: 100vh;
    width: 98%;
    overflow-x: auto;
    scroll-behavior: smooth;
    transition: scroll-left 1s ease-in-out;
    /* Tempo de 1 segundo e função de easing suave */
    /* Enable horizontal scrollbar */

  }

  .scrollcontainerbuttonpromo {
    width: 100%;
    height: auto;
    position: absolute;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40vh;
    padding-left: 0px;
    padding-right: 0px;
    z-index: 10;
  }

  .buttonnextpromo {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 80px;
    color: #ffc222;
    width: 60px;
    height: 80px;
    background-color: transparent;
    border: 0px solid #ffc222;
    border-radius: 30px;
    cursor: pointer;
  }

  .divflexpromocao {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    width: 2180%;
    height: auto;
    overflow: hidden;
    list-style: none;
    padding-left: 30px;
    padding-right: 30px;
    margin-top: 30px;
    transition: 0.3s ease-in-out;
    position: relative;
  }



  .divflexpromocao>* {
    display: inline-block;
    width: 100%;
  }


  .div1promocao {
    width: 100%;
    height: 75vh;
    background-color: white;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid #ffc222;
    padding: 30px;
    padding-top: 30px;

  }

  .div2promocao {
    width: 100%;
    height: 85vh;
    background-color: #ffc222;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2);
    padding: 30px;
    padding-top: 80px;
  }

  .divcheckpromocao2 {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 5px;
    font-size: 18px;
    margin-top: 10px;
    color: white;
  }

  .divcheckpromocao2 p {
    color: white;
    display: flex;
    gap: 5px;
  }

  .divcheckpromocao2 p span {
    color: black;
    cursor: pointer;
  }

  .titlepromocao1 {
    color: black;
    font-size: 16px;
    font-weight: 400;
  }

  .valorpromocao1 {
    color: black;
    font-weight: 600;
    font-size: 18px;
    margin-top: 0px;
  }

  .valorpromocao3 {
    color: black;
    font-weight: 600;
    font-size: 38px;
    margin-top: 10px;
  }

  .simulepromocao {
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 30px;
    cursor: pointer;
    border-radius: 40px;
    border: 1px solid #ffc222;
    color: #ffc222;
    width: 100%;
    height: 50px;
    transition: 0.3s ease-in-out;
  }

  .simulepromocao:hover {
    scale: 1.03;
  }



  .titlepromocao2 {
    color: white;
    font-size: 16px;
    font-weight: 400;
  }

  .valorpromocao2 {
    color: white;
    font-weight: 600;
    font-size: 38px;
    margin-top: 10px;
  }

  .simulepromocao2 {
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 30px;
    cursor: pointer;
    border-radius: 40px;
    border: 1px solid white;
    color: #ffc222;
    width: 100%;
    height: 50px;
    transition: 0.3s ease-in-out;
  }


  .simulepromocao2:hover {
    scale: 1.03;
  }


  .divmoeny {
    display: flex;
    justify-content: left;
    align-items: center;
    color: #ffc222;
    gap: 5px;
  }

  .divmoeny2 {
    display: flex;
    justify-content: left;
    align-items: center;
    color: black;
    gap: 5px;
  }

  .divcheckpromocao {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    margin-top: 10px;
    color: #ffc222;
  }

  .divcheckpromocao p {
    color: black;
    display: flex;
    gap: 5px;
  }

  .divcheckpromocao p span {
    color: #ffc222;
    cursor: pointer;
  }


  #calculator {
    height: 170vh;
    margin-top: 100px;
    display: flex;
    width: 100%;
    background-image: url('/assets/images/negociacao2.webp');
    background-repeat: no-repeat;
    background-size: 100%;
  }

  .calculatorcontainer {
    display: flex;
    width: 100%;
    height: 80vh;
    background-color: black;
    opacity: 0.4;
    position: absolute;
  }

  .calculatorcontainer2 {
    display: block;
    width: 100%;
    height: 100vh;
    background-color: transparent;
    position: absolute;
  }

  .titlesimulediv {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    text-align: center;
    color: black;
    font-size: 30px;
    padding-left: 50px;
    padding-right: 50px;
    font-weight: 500;
  }


  #modalcaixa{
    display: none;
  }

  #modalcaixa .modal-content{
    display: flex;
    width: 350px;
    height: auto;
  }

  #modalcaixa .modal-content span{
    display: flex;
    width: 100%;
    padding-right: 20px;
    padding-bottom: 20px;
    height: auto;
  }

  #modalcaixa .modal-content button{
    display: flex;
    padding-right: 20px;
    padding-bottom: 20px;
    margin-top: 80px;
    height: 30px;
  }

  #modalcaixa .modal-content #formcash{
    width: 80%;
    border: 1px solid var(--azul-evolt);
  }

  #modalcaixa .modal-content #fecharnovo3{
    margin-left: 0px;
  }

  #modalcaixa .modal-content #fecharnovo4{
    margin-left: 70px;
  }

  #modalcaixa .modal-content .flex{
    display: flex;
    width: 100%;
    padding-right: 20px;
    padding-bottom: 0px;
    margin-top: 0px;
    height: 60px;
  }






  




  .caixaspan{
    width: 20px;
  }

  .containersimuling {
    width: 100%;
    height: 70vh;
    display: flex;
    justify-content: center;
    margin-left: -50px;
    align-items: center;
    background-color: transparent;
  }

  .containersimuletitle {
    width: 250px;
    height: 280px;
    text-align: justify;
    color: white;
    font-weight: 100;
    font-size: 15px;
    padding-left: 10px;
    margin-top: -100px;
    border-left: 3px solid #ffc222;
  }

  .containercalculadorarealsimule {
    width: 100%;
    height: 85vh;
    margin-left: 0%;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    background-color: white;
    position: relative;
    top: 100px;
    /* Posiciona a div filha 100px abaixo do topo */
    opacity: 0;
    /* Oculta a div filha inicialmente */
    transition: top 1s ease-in-out, opacity 0.5s ease-in-out;
    /* Define a transição para a animação */
  }

  #containersimuling2.ativa #containercalculadorarealsimule {
    top: 0;
    /* Posiciona a div filha no topo da div container */
    opacity: 1;
    /* Mostra a div filha */
  }

  .simulediv1 {
    width: 100%;
    height: 60vh;
    padding: 20px;

    background-color: #ffc222;
  }


  .caixacont0-flex {
    width: 100%;
    height: auto;
    gap: 20px;
    display: block;
    margin-bottom: -30px;

  }

  .row2-flex {
    width: 100%;
    display: block;
    height: auto;
  }

  .div-filha {
    height: auto;
    margin-bottom: 20px;
    margin-top: 0px;
    border-radius: 100px;
    padding-top: 0px;
    border: 1px solid white;

  }

  .nameform {
    font-size: 10.5px;
    font-weight: 700;
    margin-left: 15px;
    color: black;
  }

  .inputcontrol {
    text-align: left;
    width: 100%;
    margin-left: 0px;
    padding-left: 5px;
    height: 30px;
    background: transparent;
    border-bottom: 0px solid var(--cinza);
    font-size: 13px;
    color: black;
    outline: none;

  }

  .img-card {
    margin-top: 10px;
    color: black;
  }

  .flex-div {
    display: flex;
    gap: 5px;

  }

  .flex-div span {
    color: black;
    font-weight: 700;
  }

  .dropdown {

    position: relative;
    display: inline-block;
  }

  .dropdown .dropbtn {
    width: 180px;
    height: 40px;
    display: flex;
    justify-content: left;
    align-items: center;
    background-color: transparent;
    color: black;
    padding: 10px;
    margin-top: 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
  }


  .divmoeny {
    display: flex;
    justify-content: left;
    align-items: center;
    color: #ffc222;
    gap: 5px;
  }

  .divmoeny3 {
    display: flex;
    justify-content: right;
    align-items: center;
    color: rgba(0, 0, 0, 0.8);
    font-weight: 300;
    font-size: 12px;
    gap: 5px;
  }

  .pequeno{
    font-size: 10px;
  }

  .divmoeny2 {
    display: flex;
    justify-content: left;
    align-items: center;
    color: black;
    gap: 5px;
  }

  .divmoeny4 {
    display: flex;
    justify-content: right;
    align-items: center;
    color: black;
    gap: 5px;
  }

  .dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    width: 100px;
    font-size: 12px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
  }

  .font-small {
    font-size: 12px;
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.7);
    display: inline-flex;
  }

  .font-small2 {
    font-size: 12px;
    margin-top: -8px;
    color: rgba(255, 255, 255, 0.7);
    display: inline-flex;
  }

  .font-small span {
    font-size: 12px;
    height: 20px;
    margin-left: 5px;
    padding-left: 3px;
    padding-right: 3px;
    margin-right: 5px;
    font-weight: 600;
    color: black;
    background-color: #ffc222;
  }

  a {
    cursor: pointer;
  }

  .font-small2 span {
    font-size: 12px;
    height: 20px;
    margin-left: 5px;
    padding-left: 3px;
    padding-right: 3px;
    margin-right: 5px;
    font-weight: 600;
    color: black;
    background-color: #ffc222;
  }

  /* Defina a altura máxima e adicione scroll */
  .scrollbar {
    max-height: 300px;
    /* Defina a altura máxima desejada */
    overflow-y: auto;
    /* Adicione scroll vertical quando necessário */
  }

  .dropdown-content a {
    color: black;
    padding: 6px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s;
  }

  .atendimento {
    font-size: 13px;
    width: 70px;
    white-space: nowrap;
    font-weight: 500;
    color: white;
  }

  #simulevalor {
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    margin-top: 20px;
    margin-bottom: 0px;
    width: 100%;
    gap: 5px;
  }

  .propagandasorteiotile {
    color: rgba(0, 0, 0, 1);
    font-size: 20px;
    margin-top: 10px;
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
    font-weight: 400;
    line-height: 0.9;
  }

  .buttoncalcularsimule {
    background-color: black;
    color: white;
    border-radius: 30px;
    width: 100px;
    height: 30px;
    margin-top: 7vh;
    margin-left: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  }

  .buttonsalvarsimule {
    background-color: transparent;
    color: black;
    border: 1px solid black;
    border-radius: 30px;
    width: 100px;
    height: 27px;
    margin-top: 0.1vh;
    margin-left: 68%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;

  }

  .simulediv2 {
    width: 100%;
    height: 33vh;
    visibility: hidden;
  }

  .descontoporcent {
    background-color: black;
    color: white;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    visibility: hidden;
    align-items: center;
    font-size: 10px;
    margin-top: -20px;
    border-radius: 10px;
  }

  .empty {
    border: 1px solid red;
  }

  .titlesimuletitle {
    font-size: 50px;
    font-weight: 500;
    text-align: left;
    margin-bottom: 10px;
    color: white;
    letter-spacing: 0px;
    line-height: 0.9;
  }

  .containersimuling2 {
    width: 100%;
    height: 100hv;
    display: flex;
    padding-top: 10vh;

    justify-content: left;
    background-color: transparent;
  }

  #valorprojparcelado {
    color: black;
    font-size: 20px;
  }

  #valorprojfinanciado {
    color: black;
    font-size: 20px;
  }

  #valorfinanciadodiv {

    padding-left: 20px;
    margin-top: 40px;
    margin-bottom: -20px;
  }


  #valorparceladodiv {
    justify-content: center;
    margin-top: 5px;
    margin-left: -20px;
    margin-bottom: 30px;
  }

  #div9 {
    margin-top: 40px;
    flex: 1;
  }

}

@media (min-width: 500px) {

  #planning {
    height: 100vh;
    margin-top: 0px;
  }

  #slideframer::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background-color: transparent;
    /* Cor do fundo da thumb (parte móvel da barra de rolagem) */
  }

  #slideframer::-webkit-scrollbar-track {
    border-radius: 8px;
    background-color: transparent;
    /* Cor do fundo da track (parte fixa da barra de rolagem) */
  }

  #calculator {
    height: 100vh;
    margin-top: 100px;
    display: flex;
    width: 100%;
    background-image: url('/assets/images/negociacao.webp');
    background-repeat: no-repeat;
    background-size: 100%;
  }

  .calculatorcontainer {
    display: flex;
    width: 100%;
    height: 100vh;
    background-color: black;
    opacity: 0.3;
    position: absolute;
  }

  .calculatorcontainer2 {
    display: flex;
    width: 100%;
    height: 100vh;
    background-color: transparent;
    position: absolute;
  }

  .titlesimulediv {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    text-align: center;
    color: black;
    font-size: 30px;
    padding-left: 50px;
    padding-right: 50px;
    font-weight: 500;
  }

  .containersimuling {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
  }

  .containersimuletitle {
    width: 250px;
    height: 280px;
    text-align: justify;
    color: white;
    font-weight: 100;
    font-size: 12px;
    padding-left: 10px;
    margin-top: -100px;
    border-left: 3px solid #ffc222;
  }

  .containercalculadorarealsimule {
    width: 420px;
    height: 85vh;
    margin-left: 10%;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    background-color: white;
    position: relative;
    top: 100px;
    /* Posiciona a div filha 100px abaixo do topo */
    opacity: 0;
    /* Oculta a div filha inicialmente */
    transition: top 1s ease-in-out, opacity 0.5s ease-in-out;
    /* Define a transição para a animação */
  }

  #containersimuling2.ativa #containercalculadorarealsimule {
    top: 0;
    /* Posiciona a div filha no topo da div container */
    opacity: 1;
    /* Mostra a div filha */
  }

  .simulediv1 {
    width: 100%;
    height: 67vh;
    padding: 20px;

    background-color: #ffc222;
  }

  .caixacont0-flex {
    width: 100%;
    height: auto;
    gap: 20px;
    display: block;
    margin-bottom: -30px;

  }

  .row2-flex {
    width: 100%;
    display: block;
    height: auto;
  }

  .div-filha {
    height: auto;
    margin-bottom: 10px;
    margin-top: 0px;
    border-radius: 100px;
    padding-top: 0px;
    border: 1px solid white;

  }

  .nameform {
    font-size: 10.5px;
    font-weight: 700;
    margin-left: 15px;
    color: black;
  }

  .inputcontrol {
    text-align: left;
    width: 100%;
    margin-left: 0px;
    padding-left: 5px;
    height: 30px;
    background: transparent;
    border-bottom: 0px solid var(--cinza);
    font-size: 13px;
    color: black;
    outline: none;

  }

  .img-card {
    margin-top: 10px;
    color: black;
  }

  .flex-div {
    display: flex;
    gap: 5px;

  }

  .flex-div span {
    color: black;
    font-weight: 700;
  }

  .dropdown {

    position: relative;
    display: inline-block;
  }

  .dropdown .dropbtn {
    width: 180px;
    height: 40px;
    display: flex;
    justify-content: left;
    align-items: center;
    background-color: transparent;
    color: black;
    padding: 10px;
    margin-top: 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
  }

  .dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    width: 100px;
    font-size: 12px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
  }

  .font-small {
    font-size: 12px;
    margin-top: 30px;
    color: black;
    display: inline-flex;
  }

  .font-small2 {
    font-size: 12px;
    margin-top: -8px;
    color: black;
    display: inline-flex;
  }

  .font-small span {
    font-size: 12px;
    height: 20px;
    margin-left: 5px;
    padding-left: 3px;
    padding-right: 3px;
    margin-right: 5px;
    font-weight: 600;
    color: black;
    background-color: #ffc222;
  }

  a {
    cursor: pointer;
  }

  .font-small2 span {
    font-size: 12px;
    height: 20px;
    margin-left: 5px;
    padding-left: 3px;
    padding-right: 3px;
    margin-right: 5px;
    font-weight: 600;
    color: black;
    background-color: #ffc222;
  }

  /* Defina a altura máxima e adicione scroll */
  .scrollbar {
    max-height: 300px;
    /* Defina a altura máxima desejada */
    overflow-y: auto;
    /* Adicione scroll vertical quando necessário */
  }

  .dropdown-content a {
    color: black;
    padding: 6px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s;
  }

  .atendimento {
    font-size: 13px;
    width: 70px;
    white-space: nowrap;
    font-weight: 500;
    color: white;
  }

  #simulevalor {
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    margin-top: 20px;
    margin-bottom: 0px;
    width: 100%;
    gap: 5px;
  }

  #div9 {
    margin-top: 20px;
    flex: 1;
  }

  #sim3 {
    flex: 1;
    /* Ocupa três vezes o espaço */
    cursor: none;
  }

  #sim4 {
    flex: 0.9;
    /* Ocupa o espaço normal */
  }

  .propagandasorteiotile {
    color: rgba(0, 0, 0, 1);
    font-size: 20px;
    margin-top: 10px;
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
    font-weight: 400;
    line-height: 0.9;
  }

  .buttoncalcularsimule {
    background-color: black;
    color: white;
    border-radius: 30px;
    width: 100px;
    height: 30px;
    margin-top: 7vh;
    margin-left: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  }

 


  

  

  .buttonsalvarsimule {
    background-color: transparent;
    color: black;
    border: 1px solid black;
    border-radius: 30px;
    width: 100px;
    height: 27px;
    margin-top: 0.1vh;
    margin-left: 68%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;

  }

  .simulediv2 {
    width: 100%;
    height: 30vh;
    visibility: hidden;
  }

  .descontoporcent {
    background-color: black;
    color: white;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    visibility: hidden;
    align-items: center;
    font-size: 10px;
    margin-top: -20px;
    border-radius: 10px;
  }

  .empty {
    border: 1px solid red;
  }

  .titlesimuletitle {
    font-size: 50px;
    font-weight: 500;
    text-align: left;
    margin-bottom: 10px;
    color: white;
    letter-spacing: 0px;
    line-height: 0.9;
  }

  .containersimuling2 {
    width: 100%;
    height: 100hv;
    display: flex;
    padding-top: 10vh;

    justify-content: left;
    background-color: transparent;
  }

  .container_flex {
    display: flex;
    margin-top: -20px;
    justify-content: space-between;
    align-items: center;
  }

  .container_flex2 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
    padding-right: 0px;
    padding-left: 0px;
  }

  .container_flex3 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 30px;
    padding-right: 0px;
    padding-left: 0px;
  }

  #container_caixa {
    background-color: white;
    box-shadow: 18px 18px 10px rgba(0, 0, 0, 0.15);
    /* Box shadow na borda direita e inferior */
    margin-top: 0px;
  }

  #computer_container {
    height: 100vh;
    position: absolute;
    display: flex;
    align-items: center;

  }

  .container_background {
    width: 100%;
    height: 100vh;
    background-color: white;
    position: absolute;
    display: flex;

  }

  .back1 {
    width: 100%;
    height: 100vh;
    position: relative;
  }

  .banner1 {
    position: absolute;
    width: 100%;
    height: 100vh;
    background-image: url('/assets/images/back1.webp');
    background-repeat: no-repeat;
    background-position: center;
    object-fit: cover;
    background-size: 120%;
  }

  #login_computer {
    display: flex;
    justify-content: left;
  }

  .opaco {
    width: 100%;
    height: 100vh;
    background-color: var(--azul-evolt);
    position: absolute;
    opacity: 0.8;
  }

  .opaco2 {
    width: 100%;
    height: 100vh;
    background-color: transparent;
    position: absolute;
    z-index: 30px;
    opacity: 1;
  }

  .back2 {
    width: 50%;
    height: 100vh;
    background-color: white;
  }



  #top {
    background-color: white;
  }

  .logincontainer3 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 200px;
    margin-top: 50px;
  }

  .logincontainer3-2 {
    display: block;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100px;
  }

  .agendaimage {

    width: 100%;
    height: 200px;
    margin-top: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('/assets/images/evoltwhite.webp');
    background-repeat: no-repeat;
    background-size: 300px;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-position-x: center;


  }

  .container_00 {
    position: relative;
    margin-left: 50%;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    /* ajuste conforme necessário */
    height: 100vh;
    /* ajuste conforme necessário */
  }

  .circle {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;

  }

  .circle3 {
    width: 200px;
    /* ajuste o tamanho conforme necessário */
    height: 200px;
    /* ajuste o tamanho conforme necessário */
    background-color: #fbf8fc;
  }

  .circle2 {
    width: 300px;
    /* ajuste o tamanho conforme necessário */
    height: 300px;
    /* ajuste o tamanho conforme necessário */
    background-color: #e9e9e9;
  }

  .circle1 {
    width: 450px;
    /* ajuste o tamanho conforme necessário */
    height: 450px;
    /* ajuste o tamanho conforme necessário */
    background-color: white;
    border: 2px solid #e9e9e9;
  }

  .progressdiv {
    width: 100%;
    height: 60px;
    padding-top: 10px;
    display: none;
    align-items: center;
    justify-content: center;
  }

  #svgprogress2 {

    justify-content: right;
    margin-top: -30px;
    padding-right: 70px;
  }

  .loading {
    border: 4px solid var(--azul-evolt);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border-right-color: transparent;
    animation: rot 1s linear infinite;

  }

  .loading2 {
    border: 4px solid black;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border-right-color: transparent;
    animation: rot 1s linear infinite;

  }

  #loadingsimule {
    border: 4px solid black;
  }

  .text_plub {
    width: 100%;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 20%;
  }



  .text2 {
    width: auto;
    height: 200px;

  }

  .font_text2 {
    color: white;
    width: 100%;
    padding-right: 40%;
    padding-left: 30px;
    font-size: 16px;
    text-align: justify;
  }

  .footer_plub {
    width: 100%;
    height: 100px;
    margin-bottom: 0px;
    flex-wrap: nowrap;
    z-index: 100;
    padding-top: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }

  .footer-div1 {
    width: 100%;
    height: 100px;
    margin-top: -60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 20px;

  }

  .imgfooter-div1 {
    width: 180px;
    height: 50px;
    margin-top: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 0px;
    background-image: url('/assets/images/growatt.webp');
    background-repeat: no-repeat;
    background-size: 190px;
  }

  .footer-div2 {
    width: 100%;
    height: 100px;
    margin-top: -70px;
    margin-left: -60px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .imgfooter-div2 {
    width: 150px;
    height: 50px;
    margin-top: 20px;
    margin-left: -50px;
    background-image: url('/assets/images/deye.webp');
    background-repeat: no-repeat;
    background-size: 180px;
  }

  .footer-div3 {
    width: 100%;
    height: 100px;
    margin-top: -60px;
    margin-left: -20px;
    background-repeat: no-repeat;
    background-size: 210px;
  }

  .imgfooter-div3 {
    width: 290px;
    height: 50px;
    margin-top: 25px;
    margin-left: 0px;
    background-image: url('/assets/images/canadian.webp');
    background-repeat: no-repeat;
    background-size: 280px;
  }


  .footer-div4 {
    width: 100%;
    height: 100px;
    margin-top: -60px;
    margin-left: -10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .imgfooter-div4 {
    width: 170px;
    height: 50px;
    margin-top: 15px;
    margin-left: -50px;
    background-image: url('/assets/images/risen.webp');
    background-repeat: no-repeat;
    background-size: 140px;
  }

  .logo_opaco {
    width: 100%;
    height: 100px;
    margin-top: 20px;
    margin-left: 20px;
    background-image: url('/assets/images/evoltwhite.webp');
    background-repeat: no-repeat;
    background-size: 120px;
    z-index: 10px;
  }

  .logoicone {
    width: 100%;
    height: 100px;
  }

  .nameform2 {
    width: 180px;
    display: flex;
    justify-content: right;
    font-size: 10px;
    margin-top: 0px;
    font-weight: 700;
    color: #ffc222;
    cursor: pointer;
  }

  .btn2 {
    font-weight: var(--fw-600);
    width: 100%;
    height: 30px;
    justify-content: center;
    display: flex;
    padding: 7.5px 10px;
    border-radius: var(--radius-3);
    transition: var(--transition-1);
  }

  .btn-primary-b2 {
    margin-top: 12px;
    width: 100%;
    height: 40px;
    background-color: #ffc222;
    display: flex;
    margin-left: -5px;
    justify-content: center;
    align-items: center;
    border-radius: 35px;
    font-size: 14px;
    box-shadow: var(--shadow-1);
    color: var(--white);
    cursor: pointer;
  }

  .form-control {
    text-align: left;
    width: 220px;
    margin-left: 10px;
    height: 40px;
    background: transparent;
    border-bottom: 0px solid var(--cinza);
    padding: 10px 5px;
    font-size: 12px;
    color: var(--black_70);
    outline: none;

  }

  input::placeholder {
    color: var(--black_70);
    /* Defina a cor desejada aqui */
  }

  .img-card-person {
    width: 18px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffc222;
    cursor: pointer;
  }



  .img-card-person2 {
    width: 18px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
  }

  .text_tilogin {
    width: 100%;
    display: flex;
    margin-bottom: 40px;
    justify-content: center;
    font-size: 32px;
    color: var(--black_70);
    font-family: 'Oswald', sans-serif;

  }



  .form-group {
    display: flex;
    margin-top: -10px;
    border-radius: 5px;
    border-bottom: 0px solid white;
    padding: 3px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .logincontainer2 {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: flex;
    padding-top: 40px;
    padding-bottom: 50px;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    border-radius: 10px;
    border: 0px solid var(--white);
  }

  .logincontainer2-2 {
    width: 85%;
    height: auto;
    background-color: white;
    box-shadow: var(--shadow-2);
  }


  /** ################################################################################################### */

  .image-carousel {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
  }

  #about {
    height: 700px;
  }


  .div1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: 100%;
    z-index: 1;
    /* Z-index menor para a primeira div */
  }

  /* Estilo da segunda div */
  .div2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.15);
    /* Cor de fundo da div2 */
    z-index: 2;
    /* Z-index maior para a segunda div */
  }


  #div1about {
    background-color: var(--azul-evolt);
    height: 50vh;
  }

  #div2about {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px;
    background-color: rgba(0, 0, 0, 0.05);
  }

  .boxabout {
    display: flex;
    width: 100%;
    height: 500px;
    border-radius: 40px;
    background-color: transparent;

  }

  .titleaboutdiv {
    width: 370px;
    font-family: 'Arialik', sans-serif;
    font-size: 140px;
    margin-top: -25px;
    color: #ffc222;
    opacity: 0.3;
  }

  .subtitleaboutdiv {
    width: 370px;
    display: flex;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-size: 55px;
    color: #ffc222;
    letter-spacing: 3px;
    margin-top: -100px;
  }

  .buttonabout {
    width: 180px;
    height: 40px;
    margin-top: 30px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    background-color: #ffc222;
    border-radius: 30px;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
    cursor: pointer;
  }

  .buttonabout:hover {
    background-color: black;
  }

  #textlermais {
    display: none;
  }

  #textlermais2 {
    display: none;
  }

  #textlermais3 {
    display: none;
  }

  .coprtextaboutdiv {
    font-size: 13.5px;
    width: 100%;
    padding-right: 50px;
    margin-bottom: 10px;
    text-align: justify;
    /*text-indent: 40px; /* ou o valor desejado */
  }



  .boxabout2 {
    display: flex;
    width: 100%;
    height: 600px;
    border-radius: 40px;
    background-color: white;
  }

  .divaboutbackground {
    position: absolute;
    background-color: #ffc222;
    width: 300px;
    margin-top: 100px;
    height: 400px;
    border-top-left-radius: 20px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  }

  .divabout1image {
    position: absolute;
    width: 300px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    background-image: url('/assets/images/about6.webp');
    background-repeat: no-repeat;
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
    background-size: 500px;
    z-index: 10px;
    position: relative;
  }

  .about1 {
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0px;
    background-image: url('/assets/images/project-2.webp');
    background-repeat: no-repeat;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 0px;
    border-top-left-radius: 40px;
    border-top-right-radius: 0px;
    background-size: 800px;

    z-index: 10px;
    position: relative;
    /* Adicionando posição relativa para utilizar 'top' */
    /*animation: shoes 2s ease infinite alternate;*/
  }

  @keyframes shoes {
    from {
      top: 0%;
    }

    to {
      top: 5%;
    }
  }

  .about2 {
    width: 100%;
    padding-left: 50px;
    z-index: 10px;
  }


  .carousel-slide {
    display: flex;
    transition: transform 1s ease-in-out;
  }

  .carousel-slide img {
    width: 100%;
    height: auto;
  }

  button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    padding: 10px;
    cursor: pointer;
  }

  #prevBtn {
    left: 10px;
  }

  #nextBtn {
    right: 10px;
  }


  .buttonnext {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: white;
    width: 60px;
    height: 60px;
  }

  .buttonnext:hover {
    background-color: #ffc222;
  }

  .colorinicio {
    color: #ffc222;
  }

  .headerfalse {
    width: 100%;
    height: 100px;
    padding-left: 20px;
    justify-content: left;
    align-items: end;
    background-color: rgba(0, 0, 0, 0.05);
    display: flex;
  }

  .headerfalse2 {
    width: 100%;
    height: 30px;
    margin-top: -10px;
    margin-bottom: -20px;
    padding-left: 20px;
    justify-content: left;
    align-items: end;
    background-color: transparent;
    display: flex;
  }

  .headercont1 {
    width: 70%;
    height: 10px;
    display: flex;
    align-items: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
    justify-content: left;
    gap: 20px;
  }

  .headerdiv {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .linktell:hover {
    color: #ffc222;
  }

  .imgcardicone {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 8px;
    width: 40px;
    height: 16px;
  }

  .headercont2 {
    width: 30%;
    height: 10px;
    font-size: 12px;
    gap: 20px;
    padding-right: 30px;
    display: flex;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
    align-items: center;
    justify-content: right;
  }

  .containerfalse {
    width: 100%;
    display: flex;
    height: 80px;
  }

  .navbarfalse {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: right;
    align-items: center;

  }

  .navbarlistfalse {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 300px;
    padding-right: 30px;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 15px;
    letter-spacing: 1px;
    /* ESPAÇO ENTRE AS LETRAS*/

  }


  .navbarlistfalse .navbar-link:hover {
    color: #ffc222;
  }

  /* efeito barra link navbar */
  .navbarfalse .navbar-link::after {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1.5px;
    background-color: var(--white);
    transition: var(--transition-1);
    transform: scaleX(0);
    transform-origin: left;
  }

  .navbarfalse .navbar-link:is(:hover, :focus)::after {
    transform: scaleX(1);
  }

  .cursor {
    cursor: pointer;
  }

  #modalcaixa .modal-content{
    display: flex;
    width: 400px;
    height: auto;
  }
  .social-link-header {
    width: 230px;
    height: 80px;
    padding-right: 30px;
    display: flex;
    justify-content: right;
    align-items: center;
    gap: 20px;
  }


  .social-link-b {
    color: var(--verde-oliva);
    width: 40px;
    height: 35px;
    margin-top: -3px;
    justify-content: center;
    display: flex;
    background-color: var(--background);
    border-radius: 10px;
    font-size: 25px;
    padding: 5px;
    cursor: pointer;
    box-shadow: var(--shadow-1);
  }

  .social-link-b-2 {
    color: var(--white);
    width: 40px;
    height: 35px;
    justify-content: center;
    display: flex;
    background-color: var(--background);
    border-radius: 10px;
    font-size: 25px;
    padding: 5px;
    cursor: pointer;
    box-shadow: var(--shadow-1);
  }

  .social-link-header .social-link-b-2:hover {
    color: #ffc222;
    width: 40px;
    height: 35px;
    justify-content: center;
    display: flex;
    background-color: var(--background);
    border-radius: 10px;
    font-size: 25px;
    padding: 5px;
    cursor: pointer;
    box-shadow: var(--shadow-1);
  }

  .logoevolt {
    width: 200px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .titlelogiconcontainer {
    width: 100px;
    height: 80px;
    color: white;
  }

  .titleiconelog {
    width: 100%;
    height: 53px;
    display: flex;
    justify-content: right;
    font-size: 45px;
    font-weight: 500;
    font-family: "Kurale", serif;
    font-style: normal;
  }

  .subtitleiconelog {
    width: 100%;
    display: flex;
    justify-content: right;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;


  }

  .corpcarrocont {
    width: 100%;
    height: 75vh;
    display: flex;
    align-items: end;
    color: white;
  }

  .corpcarro {
    height: auto;
    padding-left: 120px;
    padding-right: 120px;
    padding-bottom: 50px;
    color: white;
  }

  .corptext1 {
    font-size: 25px;
    font-weight: bold;
    font-family: "Prompt", sans-serif;
    letter-spacing: 7px;
    font-style: normal;
  }

  .corptext2 {
    font-size: 115px;
    font-weight: bold;
    letter-spacing: 7px;
    font-family: "Prompt", serif;
    font-style: normal;
    line-height: 1.4;
  }

  .corptext3 {
    width: 70%;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 1px;
    font-style: normal;
  }


  .boxservices2 {
    display: flex;
    width: 100%;
    height: auto;
    min-height: 100vh;
    margin-top: 10px;
    margin-bottom: 0px;
    border-radius: 0px;
    background-color: rgba(0, 0, 0, 0.7);
  }

  .boxproject2 {
    display: flex;
    width: 100%;
    height: auto;
    min-height: 100vh;
    margin-top: 0px;
    margin-bottom: 0px;
    border-radius: 0px;
    background-color: white;
  }

  #titleservicesdiv {
    width: 100%;
    display: flex;
    justify-content: center;
    font-family: "Allura", sans-serif;
    font-weight: 400;
    margin-top: 50px;
    font-size: 40px;
    letter-spacing: 1px;
    margin-left: -20px;
    color: #ffffff;
    opacity: 1;
    animation: none;
  }

  .servicecontainerdiv {
    width: 100%;
    height: 200px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding-top: 30px;
    padding-left: 50px;
    padding-right: 100px;
  }

  .servicecont1 {
    width: 27%;
    height: 200px;
    border-radius: 20px;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.3);
    background-color: rgba(0, 0, 0, 0.1);
    perspective: 1000px;
    transition: transform 1.6s;
    transform-style: preserve-3d;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);

  }

  #servicecont1:hover {
    background-color: transparent;
    background-image: url('/assets/images/produto-off_1.webp');
    background-repeat: no-repeat;
    background-position: 0%;
    background-size: 300px;
    color: white;
    transform: rotateY(180deg);
  }

  #servicecont2:hover {
    background-color: transparent;
    background-image: url('/assets/images/residencial.webp');
    background-repeat: no-repeat;
    background-position: 0%;
    background-size: 330px;
    color: white;
    transform: rotateY(180deg);
  }

  #servicecont3:hover {
    background-color: transparent;
    background-image: url('/assets/images/bomba.webp');
    background-repeat: no-repeat;
    background-position: 0%;
    background-size: 330px;
    color: white;
    transform: rotateY(180deg);
  }

  #servicecont4:hover {
    background-color: transparent;
    background-image: url('/assets/images/lampada.webp');
    background-repeat: no-repeat;
    background-position: 0%;
    background-size: 330px;
    color: white;
    transform: rotateY(180deg);
  }

  #servicecont5:hover {
    background-color: transparent;
    background-image: url('/assets/images/limparsolar.webp');
    background-repeat: no-repeat;
    background-position: 0%;
    background-size: 330px;
    color: white;
    transform: rotateY(180deg);
  }


  #servicecont6:hover {
    background-color: transparent;
    background-image: url('/assets/images/instalacaoplaca.webp');
    background-repeat: no-repeat;
    background-position: 0%;
    background-size: 330px;
    color: white;
    transform: rotateY(180deg);
  }

  .servicecont1:hover .titleservices {
    background-color: #ffc222;
    opacity: 0.3;
    margin-top: 0x;
    height: 200px;
    border-radius: 20px;
    color: transparent;
    z-index: 10;
  }

  .servicecont1:hover .subtitleservices {
    color: transparent;
    font-weight: 600;
    transform: rotateY(-180deg);
  }

  .servicecont1:hover .imageservices {
    transform: rotateY(-180deg);
    display: none;
  }

  .imageservices {
    width: 100%;
    height: 80px;
    background-size: 80px;
    display: flex;
    justify-content: center;

  }



  #services1 {
    background-image: url('/assets/images/offgrid.webp');
    background-repeat: no-repeat;
    background-position: 50%;
    width: 100%;


  }



  #services2 {
    background-image: url('/assets/images/ongrid2.webp');
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 65px;
    width: 100%;


  }



  #services3 {
    background-image: url('/assets/images/solarwater.webp');
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 85px;
    width: 100%;


  }

  #services4 {
    background-image: url('/assets/images/ligthingsolar.webp');
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 55px;
    width: 100%;


  }

  #services5 {
    background-image: url('/assets/images/limpeza.webp');
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 55px;
    width: 100%;


  }

  #services6 {
    background-image: url('/assets/images/instalacao.webp');
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 45px;
    width: 100%;


  }

  .titleservices {
    width: 100%;
    display: flex;
    justify-content: center;
    font-size: 15px;
    font-weight: bold;
    color: #ffc222;
  }

  .subtitleservices {
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: justify;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 10px;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
  }


  .project1 {
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0px;
    background-image: url('/assets/images/about.webp');
    background-repeat: no-repeat;
    background-size: 800px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 10px;
    position: relative;
    /* Adicionando posição relativa para utilizar 'top' */
    /*animation: shoes 2s ease infinite alternate;*/
  }

  .titleprojectdiv {
    width: 370px;
    font-family: 'Arialik', sans-serif;
    font-size: 100px;
    margin-top: -25px;
    color: black;
    opacity: 0.3;
  }

  .subtitleprojectdiv {
    width: 370px;
    display: flex;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-size: 45px;
    font-weight: bold;
    color: black;
    letter-spacing: 3px;
    margin-top: -70px;
  }

  .projectdivnumber {

    max-width: 200px;
    line-height: 1em;
    display: flex;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-size: 30px;
    font-weight: bold;
    color: black;
    letter-spacing: 3px;
    margin-top: 0px;
  }

  .projectdivnumber2 {

    max-width: 200px;
    line-height: 1em;
    display: flex;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-size: 30px;
    font-weight: bold;
    color: #ffc222;
    letter-spacing: 3px;
    margin-top: 0px;
  }

  .project2 {
    width: 100%;
    height: auto;
    padding-left: 50px;
    z-index: 10px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  }


  .buttonproject {
    width: 150px;
    height: 40px;
    margin-top: 30px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    background-color: black;
    border-radius: 0px;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
    cursor: pointer;
  }


  .footerproject-div1 {
    width: 100%;
    height: 100px;
    margin-top: -60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 20px;
    gap: 10px;
  }


  .flexprojectspoints {
    display: flex;
    margin-top: 20px;
  }

  .imageprojectspoints {
    width: 50px;
    height: 50px;
    background-image: url('/assets/images/capacity_img.webp');
    background-repeat: no-repeat;
    background-position: 0%;
    margin-right: 10px;
  }



  .textprojects {
    font-size: 20px;
    color: black;
  }

  .subtextprojects {
    font-size: 15px;
    margin-top: -8px;
  }

  .flexproject1 {
    display: flex;
    width: 0px;
    flex: 1;
  }

  .coprtextprojectdiv {
    font-size: 13.5px;
    width: 100%;
    padding-right: 50px;
    margin-bottom: 10px;
    text-align: justify;
    /*text-indent: 40px; /* ou o valor desejado */
  }


  #projectnumcidade {
    font-size: 36px;
    font-weight: bold;
    transition: all 0.2s ease-in-out;
  }

  #projectnumcidade.animacao {
    transform: scale(1);
  }

  #projectnumAgente {
    font-size: 36px;
    font-weight: bold;
    transition: all 0.2s ease-in-out;
  }

  #projectnumAgente.animacao {
    transform: scale(1);
  }

  #projectnumfinal {
    font-size: 36px;
    font-weight: bold;
    transition: all 0.2s ease-in-out;
  }

  #projectnumfinal.animacao {
    transform: scale(1);
  }

  #projectnumproposta {
    font-size: 35px;
    font-weight: bold;
    transition: all 0.2s ease-in-out;
  }

  #projectnumproposta.animacao {
    transform: scale(1);
  }


  .containerplanning {
    width: 100%;
    height: 100vh;
  }

  .titleplanningdiv {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    color: black;
    font-size: 40px;
    font-weight: 500;
  }

  .subtitleplanningdiv {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    color: rgba(0, 0, 0, 0.4);
    font-size: 22px;
    margin-top: -10px;
    font-weight: 500;
  }

  .slide-framer {
    overflow: hidden;
    height: 100vh;
    width: 98%;
    overflow-x: auto;
    scroll-behavior: smooth;
    transition: scroll-left 1s ease-in-out;
    /* Tempo de 1 segundo e função de easing suave */
    /* Enable horizontal scrollbar */

  }

  .dragging {
    cursor: grab;
    user-select: none;
  }

  .scrolling {
    transition: none !important;
    /* Desativa a transição durante a mudança de scroll */
  }

  .scrollcontainerbuttonpromo {
    width: 100%;
    height: auto;
    position: absolute;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40vh;
    padding-left: 0px;
    padding-right: 0px;
    z-index: 10;
  }

  .divflexpromocao {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    width: 780%;
    height: auto;
    overflow: hidden;
    list-style: none;
    padding-left: 30px;
    padding-right: 30px;
    margin-top: 30px;
    transition: 0.3s ease-in-out;
    position: relative;
  }



  .divflexpromocao>* {
    display: inline-block;
    width: 33%;
  }

  .div1promocao {
    width: 33%;
    height: 75vh;
    background-color: white;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid #ffc222;
    padding: 30px;
    padding-top: 30px;

  }

  .div2promocao {
    width: 33%;
    height: 85vh;
    background-color: #ffc222;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2);
    padding: 30px;
    padding-top: 80px;
  }


  #divkit200 {
    display: block;
  }

  #divkit300 {
    display: block;
  }

  #divkit400 {
    display: block;
  }

  #divkit500 {
    display: block;
  }

  #divkit600 {
    display: block;
  }

  #divkit700 {
    display: block;
  }

  #divkit800 {
    display: block;
  }

  .slide-content {
    width: 33.34%;
    height: 90vh;
    display: flex;
    align-items: center;
    padding: 40px;
  }

  .card-wrapper {
    width: 100%;
    height: 80vh;
    display: flex;
    align-items: center;
    gap: 30px;
  }

  .swipperbottom {
    margin-top: 90vh;
    width: 100%;
    margin-left: -450px;
    display: flex;
    justify-content: center;
  }

  .slide-container {

    width: 100%;
    height: 100vh;
    padding: 40px;
    display: flex;
    align-items: center;
  }

  .card {

    height: 70vh;
  }




  .divmoeny {
    display: flex;
    justify-content: left;
    align-items: center;
    color: #ffc222;
    gap: 5px;
  }

  .divmoeny3 {
    display: flex;
    justify-content: right;
    align-items: center;
    color: rgba(0, 0, 0, 0.8);
    font-weight: 300;
    gap: 5px;
  }

  .divmoeny2 {
    display: flex;
    justify-content: left;
    align-items: center;
    color: black;
    gap: 5px;
  }

  .divmoeny4 {
    display: flex;
    justify-content: right;
    align-items: center;
    color: black;
    gap: 5px;
  }

  #valorparceladodiv {
    justify-content: center;
    margin-top: 5px;
    margin-left: -20px;
    margin-bottom: 0px;
  }

  .divcheckpromocao {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 5px;
    font-size: 18px;
    margin-top: 10px;
    color: #ffc222;
  }


  #divcheck1200 {
    margin-top: 30px;
  }

  #divcheck1300 {
    margin-top: 30px;
  }

  #divcheck1400 {
    margin-top: 30px;
  }

  #divcheck1500 {
    margin-top: 30px;
  }

  .divcheckpromocao p {
    color: black;
    display: flex;
    gap: 5px;
  }

  .divcheckpromocao p span {
    color: #ffc222;
    cursor: pointer;
  }

  .divcheckpromocao2 {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 5px;
    font-size: 18px;
    margin-top: 10px;
    color: white;
  }

  .divcheckpromocao2 p {
    color: white;
    display: flex;
    gap: 5px;
  }

  .divcheckpromocao2 p span {
    color: black;
    cursor: pointer;
  }

  .titlepromocao1 {
    color: black;
    font-size: 16px;
    font-weight: 400;
  }

  .valorpromocao1 {
    color: black;
    font-weight: 600;
    font-size: 14px;
    margin-top: 0px;
  }

  .valorpromocao3 {
    color: black;
    font-weight: 600;
    font-size: 38px;
    margin-top: 10px;
  }

  .simulepromocao {
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    margin-top: 20px;
    cursor: pointer;
    border-radius: 40px;
    margin-bottom: 0px;
    border: 1px solid #ffc222;
    color: #ffc222;
    width: 100%;
    height: 50px;
    transition: 0.3s ease-in-out;
  }

  .simulepromocao:hover {
    scale: 1.03;
  }



  .titlepromocao2 {
    color: white;
    font-size: 16px;
    font-weight: 400;
  }

  .valorpromocao2 {
    color: white;
    font-weight: 600;
    font-size: 38px;
    margin-top: 10px;
  }

  

  .simulepromocao2 {
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    margin-top: 20px;
    cursor: pointer;
    border-radius: 40px;
    margin-bottom: 0px;
    border: 1px solid white;
    color: #ffc222;
    width: 100%;
    height: 50px;
    transition: 0.3s ease-in-out;
  }


  #valorprojparcelado {
    color: black;
    font-size: 20px;
  }

  #valorprojfinanciado {
    color: black;
    font-size: 20px;
  }

  #valorfinanciadodiv {

    padding-left: 20px;
    margin-top: 10px;
    margin-bottom: -20px;
  }


  .simulepromocao2:hover {
    scale: 1.03;
  }

  #divkit200 {
    transition: all 0.5s ease-in-out;
  }

  #divkit500 {
    left: 100% !important;
    transition: all 0.5s ease-in-out;
  }

  #divkit600 {
    left: 100% !important;
    transition: all 0.5s ease-in-out;
  }


  .box-carrossel {
    width: 300px;
    margin: 10% auto;
    position: relative;
    background: #fff;
    box-shadow: 0 0 5px 1px black;
    overflow: hidden;
  }

  .carrossel {
    width: 1000%;
    background: #fff;
    float: left;
    list-style: none;
  }

  .carrossel .item {
    float: left;
    width: 300px;
    background: #2E9ABE;
  }

  .buttonnextpromo {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 80px;
    color: #ffc222;
    width: 80px;
    height: 80px;
    background-color: transparent;
    border: 0px solid var(--azul-evolt);
    border-radius: 30px;
    cursor: pointer;
  }

}