/****** GLOBAL STYLES ******/

:root {
  --primary-color: #007AC2;
  --primary-color-light: #7EDAFF;

  --background-color: #D9EEFD;

  --secondary-color: #153852;
  --secondary-color-light: #007AC2;

  --dark-primary-color: #333333;
  --dark-secondary-color: #737373;

  --primary-color-button: #3FA9F5;

  --primary-filter: brightness(0) saturate(100%) invert(42%) sepia(98%) saturate(307%) hue-rotate(162deg) brightness(116%) contrast(109%);
  --secondary-filter: invert(17%) sepia(13%) saturate(4731%) hue-rotate(173deg) brightness(87%) contrast(87%);
}

.v-btn {
  background-color: var(--primary-color-button);
  border-color: var(--primary-color-button);
}

.v-btn.v-btn-outline:not(.active, :hover, :focus-visible) {
  color: var(--primary-color-button);
}

hr.separator {
  border: 1px solid #CCE6E6;
  margin: 1rem 0;
}

section {
  padding: 9.5rem 0;
}

/* TIPOGRAFIA */

h1 {
  font-weight: 600;
  font-size: 6.125rem;
  color: var(--secondary-color)
}

h2 {
  font-weight: 600;
  font-size: 3rem;
  color: var(--primary-color);
}

h3 {
  font-weight: 600;
  font-size: 2rem;
  color: var(--primary-color);
}

h4 {
  font-weight: 600;
  font-size: 1.5rem;
}

h5 {
  font-weight: 400;
  font-size: 26px;
}

p {
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fc-dark {
  color: var(--dark-primary-color);
}

.fc-dark-secondary {
  color: var(--dark-secondary-color);
}

.fc-secondary {
  color: var(--secondary-color);
}

.fc-primary {
  color: var(--primary-color);
}

.fs-28 {
  font-size: 28px;
}

.fs-22 {
  font-size: 22px;
}

.fs-20 {
  font-size: 20px;
}

.fs-18 {
  font-size: 18px;
}

.fs-16 {
  font-size: 16px;
}

.gap-4-5 {
  gap: 4.5rem;
}

.gap-16px {
  gap: 16px;
}

@media (max-width: 991.999px) {
  section {
    padding: 3.25rem 0;
  }

  h2 {
    font-size: 2rem;
  }
}

/* ajuste no tamanho das logos mobile */
@media screen and (min-width: 320px) and (max-width: 350px) {
  .header .logo {
    height: 15px;
  }

  .header .logo.lais {
    height: 15px;
  }

  .header .logo.vec {
    height: 15px;
  }
}

@media screen and (min-width: 351px) and (max-width: 375px) {
  .header .logo {
    height: 20px;
  }

  .header .logo.lais {
    height: 20px;
  }

  .header .logo.vec {
    height: 20px;
  }
}

/* ajuste no tamanho das logos mobile a partir de 376px até 600px */
@media screen and (min-width: 376px) and (max-width: 600px) {
  .header .logo {
    height: 30px;
  }

  .header .logo.lais {
    height: 20px;
  }

  .header .logo.vec {
    height: 20px;
  }
}

/****** END GLOBAL STYLES ******/

/****** first section ******/

section.initial_section {
  background: url(../../../images/v2/hero_image.svg) no-repeat center center;
  background-size: cover;

  padding: 4.375rem 0;
}

section.initial_section .title {
  max-width: 760px;
}

section.initial_section .new-star {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;

  width: 140px;
  height: 34px;

  background-image: url(../../../images/v2/hotsite/rectangle_blue.svg);
  background-repeat: no-repeat;
  background-size: cover;
}

section.initial_section .v-btn, section.initial_section .v-btn.v-btn-outline:not(.active, :hover, :focus-visible) {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}



.carousel-slider {

  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;

  gap: 1.5rem;

  overflow-x: scroll;
  scroll-snap-type: x mandatory;

  /* animacoes de transicao ao fazer scroll */
  scroll-behavior: smooth;
  scroll-snap-stop: always;
  scroll-snap-align: center;
  scroll-padding: 0 1.5rem;

  /* ocultar barra de scroll */
  scrollbar-width: none;
  -ms-overflow-style: none;  

  /* desabilitar a movimentação com o mouse */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

}

.carousel-slider::-webkit-scrollbar {
  display: none;
}

/* .carousel-slider__item.carousel-slider__item-first {
  display: inline;
  flex-shrink: 0;
  width: 414px;
  height: 452px;

  background: linear-gradient(270deg, #E1EEEE 30.43%, rgba(225, 238, 238, 0) 424.03%), #4DB3AF;
  border-radius: 8px;
  transform: rotate(-180deg);
}

.carousel-slider__item.carousel-slider__item-last {
  display: inline;
  flex-shrink: 0;
  width: 414px;
  height: 452px;

  background: linear-gradient(270deg, #E1EEEE 30.43%, rgba(225, 238, 238, 0) 424.03%), #4DB3AF;
  border-radius: 8px;
} */

.carousel-slider__item {
  scroll-snap-align: center;
  min-width: 900px;
  height: 110px;

  border-radius: 4px;
  background: rgba(217, 238, 253, 0.4);

  /* Shadow/Small */
  box-shadow: 0px 4px 8px 1px rgba(0, 0, 0, 0.08);
}

.carousel-slider__item-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;

  border: 1px solid var(--secondary-color);
  border-radius: 4px;

  background-color: transparent;
}

.carousel-slider__item-button img {
  width: 24px;
  height: 24px;

  filter: invert(17%) sepia(13%) saturate(4731%) hue-rotate(173deg) brightness(87%) contrast(87%);
}

.carousel-slider__item-button-subtext {
  font-size: 14px;
  font-weight: 400;
  color: var(--secondary-color);
}


.carousel-slider__item-button:hover {
  background-color: var(--primary-color-light);
}

.carousel-slider__item-button:active {
  background-color: var(--primary-color-light);
}

.carousel-slider__item-button:active img {
  filter: invert(50%);
}

/* mobile 320px */
/* mobile 600px */
@media screen and (min-width: 320px) and (max-width: 600px) {

  section.initial_section {
    padding: 3.25rem 0;
  }

  .carousel-slider__item {
    min-width: 300px;
    height: 320px;
  }

  .gap-4-5 {
    gap: 1.5rem;
  }

  h1 {
    font-size: 3.5rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  h4 {
    font-size: 1rem;
  }

  h5 {
    font-size: 0.875rem;
  }

  p {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }

  .carousel-slider {
    gap: 0.5rem;
  }
}

/* mobile 768px */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .carousel-slider__item {
    min-width: 600px;
    height: 130px;
  }
}

/* mobile 1024px */
@media screen and (min-width: 1024px) and (max-width: 1199px) {
  .carousel-slider__item {
    min-width: 750px;
    height: 110px;
  }

  h2 {
    font-size: 2.5rem;
  }
}

/* laptop => 1200px */
@media screen and (min-width: 1200px) {
  .carousel-slider__item {
    min-width: 900px;
    height: 110px;
  }
}

/********* END first section *********/

/********* second section *********/

section.introduction_section {
  background-color: var(--background-color);
}

section.introduction_section .main-image {
  background-image: url(../../../images/v2/hotsite/woman-working-using-digital-tablet\ 1.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 542px;
}

section.introduction_section .v-btn-gestao {
  height: 58px;
  padding: 12px 24px;

  position: absolute;
  top: 45%;
  left: 96%;
  transform: translate(-50%, -50%);
}

section.introduction_section .card {
  border-radius: 4px;
  border: 1px solid var(--bs-white);
  background: rgba(255, 255, 255, 0.80);

  box-shadow: 0px 16px 32px 0px rgba(119, 189, 185, 0.25);

  width: 262px;
  height: 120px;

  padding: 16px;

  position: absolute;
  top: 25%;
  left: 0;
  transform: translate(-50%, -50%);
}

section.introduction_section .modal-feedback {
  width: 250px;
  height: 198px;

  background-color: #fff;
  box-shadow: 0px 16px 32px 0px rgba(119, 189, 185, 0.25);

  position: absolute;
  top: 15%;
  left: 92%;
  transform: translate(-50%, -50%);
}

/* laptop 1440px */
@media screen and (max-width: 1440px) {
  section.introduction_section .card {
    left: 5%;
  }
}

/* laptop 1200px */
@media screen and (max-width: 1200px) {
  section.introduction_section .card {
    left: 10%;
  }
}

/* mobile 768px */
@media screen and (min-width: 768px) and (max-width: 1023px) {

  section.introduction_section {
    /* padding-bottom: 8rem; */
  }

  section.introduction_section .main-image {
    height: 400px;
  }

  section.introduction_section .card {
    width: 200px;
    height: 160px;
    left: 20%;
    top: 54%;
  }

  section.introduction_section .modal-feedback {
    width: 200px;
    height: 200px;

    top: 73%;
    left: 75%;
  }

  section.introduction_section .v-btn-gestao {
    top: 100%;
    left: 90%;
  }
}

/* mobile */
@media screen and (min-width: 320px) and (max-width: 767px) {

  section.introduction_section {
    /* padding-bottom: 15rem; */
  }

  section.introduction_section .main-image {
    height: 550px;
  }

  section.introduction_section .card {
    left: 50%;
    top: 41%;
  }

  section.introduction_section .cards {
    overflow: hidden;
  }

  section.introduction_section .modal-feedback {
    width: 200px;
    height: 200px;

    top: 73%;
    left: 60%;
  }

  section.introduction_section .v-btn-gestao {
    display: none;
  }
}

/********* END second section *********/

/********* third section - for you *********/

section.for_you_section {
  background-color: var(--bs-white);
  overflow-x: hidden;
}

section.for_you_section .background_rectangle {
  border-radius: 8px 0px 0px 8px;
  background: linear-gradient(90deg, #D9EEFD 0%, #FFF 45%);

  width: 100%;
  height: 720px;
}

section.for_you_section .background_ellipse {
  background: radial-gradient(60.93% 50% at 50% 50%, rgba(126, 218, 255, 0.50) 0%, rgba(126, 218, 255, 0.13) 54%, rgba(255, 255, 255, 0.00) 100%);
  filter: blur(61.5px);

  width: 736px;
  height: 736px;
}

section.for_you_section .card {
  width: 480px;
  height: 240px;
  padding: 24px;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;

  border-top: 4px solid var(--primary-color);
  box-shadow: 0px 4px 8px 1px rgba(0, 0, 0, 0.08);
}

section.for_you_section .background_rectangle .card-outside {
  top: 5%;
}

section.for_you_section .rectangle {
  border-radius: 4px;
  border: 1px solid var(--grayscale-grayscale-000, #FFF);
  background: rgba(255, 255, 255, 0.20);

  box-shadow: 0px 16px 32px 0px rgba(119, 189, 185, 0.25);
  backdrop-filter: blur(8px);

  display: flex;
  justify-content: center;
  align-items: center;
}

section.for_you_section .rectangle_1 {
  width: 172px;
  height: 172px;

  background: linear-gradient(0deg, #FFF 0%, #FFF 0.01%, rgba(255, 255, 255, 0.00) 100%);

  position: absolute;
  top: 5%;
  left: 85%
}

section.for_you_section .rectangle_2 {
  width: 320px;
  height: 320px;
  padding: 16px;

  position: absolute;
  top: 50%;
  right: 94%;
  transform: translate(50%, -50%);
  backdrop-filter: none;
}

section.for_you_section .rectangle_2 img {
  backdrop-filter: blur(8px);
}

section.for_you_section .rectangle_3 {
  width: 172px;
  height: 172px;

  background: linear-gradient(0deg, #FFF 0%, #FFF 0.01%, rgba(255, 255, 255, 0.00) 100%);

  position: absolute;
  top: 25%;
  left: 94%
}

@media screen and (max-width: 1200px) {
  section.for_you_section .rectangle_2 {
    right: 90%;
  }
}

/* laptop 1440px */
@media screen and (max-width: 1440px) and (min-width: 1200px) {
  section.for_you_section .rectangle_2 {
    right: 85%;
  }
}

/* laptop 1200px */
@media screen and (max-width: 1200px) and (min-width: 1024px) {
  section.for_you_section .rectangle_2 {
    display: none;
  }

  section.for_you_section .card {
    width: 400px;
    height: 265px;
  }
}


/* mobile 768px */
@media screen and (min-width: 768px) and (max-width: 1023px) {

  section.for_you_section {
    /* padding-top: 8rem; */
  }

  section.for_you_section .background_rectangle {
    height: auto;
    padding-bottom: 1rem;
  }

  section.for_you_section .background_ellipse {
    display: none;
  }

  section.for_you_section .card {
    width: 300px;
    height: 320px;
  }

  section.for_you_section .rectangle_1 {
    width: 150px;
    height: 150px;
  }

  section.for_you_section .rectangle_3 {
    width: 150px;
    height: 150px;
  }

}

/* mobile */
@media screen and (min-width: 320px) and (max-width: 767px) {

  section.for_you_section {
    /* padding-top: 15rem; */
  }

  section.for_you_section .background_rectangle {
    height: auto;
    padding-bottom: 1rem;
  }

  section.for_you_section .background_ellipse {
    display: none;
  }

  section.for_you_section .rectangle_1 {
    display: none;
  }

  section.for_you_section .rectangle_2 {
    display: none;
  }

  section.for_you_section .rectangle_3 {
    display: none;
  }

  section.for_you_section .card {
    width: 250px;
    height: 320px;
  }

}

/********* END third section - for you *********/

/********* fourth section - acessibility *********/

section.acessibility_section {
  background-color: var(--background-color);

  padding-top: 5rem;

  /* não colocar overflow: hidden; */
}

section.acessibility_section .acessibility_image {
  background-image: url(../../../images/v2/hotsite/acessibility_image.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  height: 400px;
}

section.acessibility_section .rectangle {
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.20);

  box-shadow: 0px 16px 32px 0px rgba(119, 189, 185, 0.25);
  backdrop-filter: blur(8px);

  display: flex;
  justify-content: center;
  align-items: center;
}

section.acessibility_section .rectangle_1 {
  width: 172px;
  height: 172px;

  background: linear-gradient(0deg, #FFF 0%, #FFF 0.01%, rgba(255, 255, 255, 0.00) 100%);

  position: absolute;
  top: 44%;
  left: 92%;
  transform: translate(-50%, -50%); 
}

section.acessibility_section .rectangle_2 {
  width: 172px;
  height: 172px;

  background: linear-gradient(0deg, #FFF 0%, #FFF 0.01%, rgba(255, 255, 255, 0.00) 100%);

  position: absolute;
  bottom: 10%;
  right: 85%;
  transform: translate(-50%, -50%); 

  backdrop-filter: none;
}

section.acessibility_section .circle_1 {
  position: absolute;
  top: 0;
  right: 0;
}

section.acessibility_section .circle_2 {
  position: absolute;
  bottom: 0;
  left: 56px;
} 

section.acessibility_section .circle_2 img {
  transform: scaleX(-1) scaleY(-1);
}

/* laptop 1440px */
@media screen and (max-width: 1440px) and (min-width: 1200px) {
  section.acessibility_section .rectangle_1 {
    left: 90%;
  }

  section.acessibility_section .rectangle_2 {
    right: 80%;
  }
}

/* laptop 1200px */
@media screen and (max-width: 1200px) and (min-width: 1024px) {
  section.acessibility_section .rectangle_1 {
    left: 85%;
  }

  section.acessibility_section .rectangle_2 {
    right: 75%;
  }
}

/* mobile 768px */
@media screen and (min-width: 768px) and (max-width: 1023px) {

  section.acessibility_section {
    /* padding-bottom: 8rem; */
  }

  section.acessibility_section .acessibility_image {
    height: 415px;
  }

  section.acessibility_section .rectangle_1 {
    display: none;
  }

  section.acessibility_section .rectangle_2 {
    display: none;
  }

}

/* mobile */
@media screen and (min-width: 320px) and (max-width: 767px) {

  section.acessibility_section {
    /* padding-bottom: 15rem; */
  }

  section.acessibility_section h3 {
    font-size: 1.5rem;
  }

  section.acessibility_section .acessibility_image {
    height: 680px;
  }

  section.acessibility_section .rectangle_1 {
    display: none;
  }

  section.acessibility_section .rectangle_2 {
    display: none;
  }

}

/********* END fourth section - acessibility *********/

/********* fifth section - usuability *********/

section.usuability_section {
  background-color: var(--bs-white);
  overflow-x: hidden;
}

section.usuability_section .usuability_image {
  background-image: url(../../../images/v2/hotsite/usuability_image.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* tablet 768px */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  section.usuability_section {
    /* padding-top: 8rem; */
  }
}

/* mobile */
@media screen and (min-width: 320px) and (max-width: 767px) {
  section.usuability_section {
    /* padding-top: 15rem; */
  }
}

/********* END fifth section - usuability *********/

/********* sixth section - user experience *********/

section.user_experience_section {
  background-image: url(../../../images/v2/hotsite/user_experience_image.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  
  height: 669px;
}

section.user_experience_section .main_card {
  position: absolute;
  top: 36%;
  left: 30%;
  transform: translate(-50%, -50%);

  z-index: 3;

  width: 456px;
}

/* table 768px */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  section.user_experience_section .main_card {
    width: 400px;
  }
}

/* mobile */
@media screen and (min-width: 320px) and (max-width: 767px) {
  section.user_experience_section .main_card {
    width: 300px;
    left: 50%;
  }
}

/********* END sixth section - user experience *********/

.custom-footer {
  background-color: var(--background-color);
}

.avaliation {
  width: auto;
  height: 256px;

  border-radius: 100%;
  background: radial-gradient(60.93% 50% at 50% 50%, rgba(126, 218, 255, 0.50) 0%, rgba(126, 218, 255, 0.13) 54%, rgba(255, 255, 255, 0.00) 100%);
}

.avaliation .avaliation-image {
  width: 88px;
  min-width: 88px;
  height: 88px;
  min-height: 88px;

  border-radius: 100%;
}

.avaliation .avaliation-image.image-1 {
  background-image: url(../../../images/v2/hotsite/avaliation_image_1.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.avaliation .avaliation-image.image-2 {
  background-image: url(../../../images/v2/hotsite/avaliation_image_2.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
