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

section {
  padding: 9.5rem 0;
}


/* TIPOGRAFIA */

h1 {
  font-weight: 600;
  font-size: 72px;
  color: white;
}

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

h3 {
  font-weight: 600;
  font-size: 32px;
  color: var(--primary-color);
}

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

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

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

.fc-dark {
  color: #333333;
}

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

  h2 {
    font-size: 2rem;
  }
}



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

/* SECTION 1 */

section.initial-section {
  background-color: #E1EEEE;

  padding: 4.375rem 0;
}

section.initial-section h1 {
  font-size: 4.5em;
  font-weight: 600;

  color: var(--primary-color);
}

section.initial-section h5 {
  font-size: 1.625em;
  font-weight: 400;

  color: var(--primary-color);
}

section.initial-section p {
  font-size: 1.25em;
  font-weight: 400;

  color: var(--primary-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;

  pointer-events: 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;
  width: 1152px;
  height: 540px;

  border-radius: 8px;
}

.carousel-slider__item img {
  width: 1152px;
  height: 540px;
  object-fit: cover;

  border-radius: 8px;
}

.carousel-slider__item-title {
  font-weight: 600;
  font-size: 26px;

  color: var(--primary-color);
}

.carousel-slider__item-subtitle {
  font-weight: 400;
  font-size: 18px;

  color: var(--primary-color);
}

.carousel-slider__item-button {
  width: 48px;
  height: 48px;

  border: 1px solid #117B74;
  border-radius: 4px;

  background-color: transparent;
}

.carousel-slider__item-button:active {
  background-color: #117B74;
}

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

footer {
  background-color: var(--primary-background);
  padding: 60px 0;
}

/* responsividade smartphone */
@media screen and (max-width: 425px) {

  section.initial-section {
    padding: 2.5rem 0;
  }

  section.initial-section h1 {
    font-size: 2.5em;
  }

  section.initial-section h5 {
    font-size: 1.25em;
  }

  section.initial-section p {
    font-size: 1em;
  }

  .carousel-slider {
    gap: 1rem;
  }

  .carousel-slider__item.carousel-slider__item-first {
    width: 21rem;
    height: 157px;
  }

  .carousel-slider__item.carousel-slider__item-last {
    width: 21rem;
    height: 157px;
  }

  .carousel-slider__item {
    width: 21rem;
    height: 157px;
  }

  .carousel-slider__item img {
    width: 21rem;
    height: 157px;
  }

  .carousel-slider__item-title {
    font-size: 1.5em;
  }

  .carousel-slider__item-subtitle {
    font-size: 1em;
  }
}

/* responsividade tablet */
@media screen and (min-width: 426px) and (max-width: 991.999px) {

  section.initial-section {
    padding: 3.25rem 0;
  }

  section.initial-section h1 {
    font-size: 3em;
  }

  section.initial-section h5 {
    font-size: 1.5em;
  }

  section.initial-section p {
    font-size: 1.125em;
  }

  .carousel-slider {
    gap: 1.5rem;
  }

  .carousel-slider__item.carousel-slider__item-first {
    width: 414px;
    height: 200px;
  }

  .carousel-slider__item.carousel-slider__item-last {
    width: 414px;
    height: 200px;
  }

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

  .carousel-slider__item img {
    width: 600px;
    height: 300px;
  }

  .carousel-slider__item-title {
    font-size: 1.5em;
  }

  .carousel-slider__item-subtitle {
    font-size: 1.25em;
  }
}

/* responsividade desktop */
@media screen and (min-width: 992px) and (max-width: 1366px) {

  section.initial-section {
    padding: 3rem 0;
  }

  section.initial-section h1 {
    font-size: 3em;
  }

  section.initial-section h5 {
    font-size: 1.75em;
  }

  section.initial-section p {
    font-size: 1.25em;
  }

  .carousel-slider {
    gap: 2rem;
  }

  .carousel-slider__item.carousel-slider__item-first {
    width: 414px;
    height: 300px;
  }

  .carousel-slider__item.carousel-slider__item-last {
    width: 414px;
    height: 300px;
  }

  .carousel-slider__item {
    width: 800px;
    height: 400px;
  }

  .carousel-slider__item img {
    width: 800px;
    height: 400px;
  }

  .carousel-slider__item-title {
    font-size: 1.75em;
  }

  .carousel-slider__item-subtitle {
    font-size: 1.25em;
  }
}



/* END SECTION 1 */ 

/*SECTION 2*/

section.better-experience {
  background-color: #F0F7F7;
  overflow: hidden;
}

h2.better-experience__title {
  font-size: 48px;
}

.better-experience__card {
  position: absolute;
  top: 4%;
  left: 1%;
  z-index: 60;
  width: 262px;
  height: 120px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0px 16px 32px rgba(119, 189, 185, 0.25);
  backdrop-filter: blur(8px);
  border-radius: 4px;
}

.better-experience-image {
  width: inherit;
  position: relative;
  z-index: 50;
}

.better-experience__card-title {
  font-size: 16px;
  color: #008380;
}

.better-experience__card-content {
  font-size: 18px;
  font-weight: 500;
  color: #0B486B;
}

button.better-experience__button {
  position: absolute;
  z-index: 60;
  top: 50%;
  left: -3%;
  background-color: #008380;
  border-radius: 6px;
  border: none;
  font-size: 20px;
  font-weight: 600;
  color: white;
  cursor: default;
  padding: 1rem 1.5rem ;
}

.better-experience__blue-shadown {
  position: absolute;
  bottom: -60%;
  right: -27%;
}

.better-experience__modal {
  position: absolute;
  bottom: 57%;
  left: 75%;
  z-index: 60;
}


/*SECTION 4*/
.acessibility {
  background: #CCE6E6;
  padding: 2.5rem 0;
  overflow: hidden;
}

.acessibility-content {
  position: absolute;
  max-width: 550px;
  background: white;
  border-radius: 8px;
  z-index: 50;
  left: 10%;
  top: 20%;
}

.acessibility-img {
  margin-right: -22%;
}
/*SECTION 5*/

.appearance {
  background-image: url(/static/images/hotsite/aparencia-usabilidade.svg);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: unset;
}
.benefits-appearance {
  margin-top: 2rem;
}

.benefits-appearance li + li {
  margin-top: 3rem;
}

/*SECTION 6*/
section.user-experience {
  background-color: #F0F7F7;
}

@media (max-width: 1699.999px) {
  .appearance {
    background-size: 70% 80%;
    background-position: right center;
  }

  .acessibility-content {
    max-width: 500px;
  }
}

@media (max-width: 1400px) {
  .acessibility-content {
    left: -2%;
  }

  .acessibility-img {
    margin-right: -25%;
  }
}

@media (max-width: 1200px) {
  button.better-experience__button {
    top: 65%;
  }

  .acessibility-content {
    left: -5%;
  }

  .acessibility-img {
    margin-right: -45%;
  }
  
  .better-experience__blue-shadown {
    bottom: -70%;
    right: -40%;
  }
}

@media (max-width: 991.999px) {
  .user-experience-image {
    height: 100%;
    width: auto;
   -webkit-transform: translate(-10%, 0);
      -ms-transform: translate(-10%, 0);
          transform: translate(-10%, 0);
  }

  .done-for-you-image {
    position: relative;
    height: 100%;
    width: fit-content;
    left: 50%;

   -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  }

  /* SECTION 2 */

  section.better-experience {
    padding-bottom: 7.75rem;
  }

  .better-experience__blue-shadown {
    bottom: -50%;
    right: -50%;
  }

  h2.better-experience__title {
    font-size: 2rem;
  }

  .better-experience-image {
    max-height: 290px;

    aspect-ratio: 1/3;
    object-fit: cover;

    border-radius: 8px;
  }

  button.better-experience__button {
    top: 6%;
    left: 4%;

    font-size: 1rem;

    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .better-experience__card {
    top: unset;
    bottom: -20%;
    left: unset;
    right: 0.75rem;
  }

   /*SECTION 4*/
   .acessibility-content {
    width: 100%;

    position: static;

    margin: 0 auto;
  }
  
  .acessibility-img {
    margin-right: 0%;
    position: relative;
    width: 125%;
    right: 20%;
  }

  /*SECTION 5*/
  .appearance {
    background: none;
  }
}

@media (max-width: 767.999px) {

  /*SECTION 4*/
  .acessibility-content {
    width: 100%;

    position: static;

    margin: 0 auto;
  }

  .acessibility-img {
    margin-right: 0%;
    position: relative;
    width: 150%;
    left: unset;

    -webkit-transform: translate(-5%, 0);
    -ms-transform: translate(-5%, 0);
    transform: translate(-5%, 0);
  }
}

@media screen and (min-width: 1400px) {
  footer .container {
    max-width: 1128px;
  }
  
  footer {
    padding: 120px 0;
  }
}
