*,
*::before,
*::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

:root {
  --clr-dark-blue: #ca7b21;
  --clr-blue: #f49220;
  --clr-white: rgb(249, 249, 249);
  --clr-black: rgb(49, 49, 49);

  --shadow-xs: rgba(0, 0, 0, 0.1) 0px 0.25rem 0.375rem -0.0625rem,
    rgba(0, 0, 0, 0.06) 0px 0.125rem 0.25rem -0.0625rem;
  --shadow-md: rgba(0, 0, 0, 0.1) 0px 0.625rem 0.9375rem -0.1875rem,
    rgba(0, 0, 0, 0.05) 0px 0.25rem 0.375rem -0.125rem;
  --shadow-lg: rgba(0, 0, 0, 0.1) 0px 1.25rem 1.5625rem -0.3125rem,
    rgba(0, 0, 0, 0.04) 0px 0.625rem 0.625rem -0.3125rem;
  --shadow-xlg: rgba(0, 0, 0, 0.1) 0px 1.25rem 1.5625rem -0.3125rem,
    rgba(0, 0, 0, 0.04) 0px 0.625rem 0.625rem -0.3125rem;

  --fs-xs: clamp(1rem, 0.8846rem + 0.5128vw, 1.15rem);
  --fs-md: clamp(1.3125rem, 1.1797rem + 0.625vw, 1.625rem);
  --fs-lg: clamp(1.625rem, 1.4055rem + 1.0976vw, 2.1875rem);
  --fs-xlg: clamp(2.1875rem, 1.5234rem + 3.125vw, 3.75rem);
  --fs-xxlg: clamp(3rem, 2.2195rem + 3.9024vw, 5rem);

  --fs-small: clamp(1rem, 0.8846rem + 0.5128vw, 1.15rem);
  --fs-med: clamp(1.3125rem, 1.1797rem + 0.625vw, 1.625rem);
  --fs-lg: clamp(1.625rem, 1.4055rem + 1.0976vw, 2.1875rem);
  --fs-big: clamp(2.1875rem, 1.5234rem + 3.125vw, 3.75rem);

  --select-border: rgb(170, 170, 170);
  --select-focus: var(--clr-dark-blue);
  --select-arrow: var(--select-border);
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
}

img {
  display: block;
  margin: 0;
}

p {
  max-width: 50ch;
}

.btn {
  display: block;
  padding: 0.75rem 1.25rem;
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--clr-white);
  border-bottom-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
  background: #f49220;
  background: linear-gradient(
    180deg,
    #ad6e25 0%,
    #f49220 100%
  );
  border: 0;
  transition: filter 300ms cubic-bezier(0.33, 1, 0.68, 1);
}

.btn:hover {
  cursor: pointer;
  filter: saturate(1.35);
}

.btn:active {
  filter: saturate(1);
}

.alert {
  padding: 0.5em;
  font-size: 1rem;
  font-weight: 300;
  color: #c83030;
  text-align: center;
  background-color: #fff5f5;
  border: 0.125rem solid #c83030;
  border-radius: 0.5rem;
}

.is-hidden {
  display: none !important;
}

/* FORM */
.modal {
  /* background */
  position: fixed; /* Stay in place */
  top: 0;
  left: 0;
  z-index: 1000; /* Sit on top */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.9); /* Black w/ opacity */
}

.modal__image-wrapper {
  display: none;
  width: 50%;
  height: 90%;
}

.modal__image-wrapper img {
  object-fit: cover;
  height: 100%;
  border-top-left-radius: 0.5em;
  border-bottom-left-radius: 0.5em;
}

.form {
  position: relative;
  z-index: 1000;
  display: flex;
  align-items: center;
  height: 95%;
}

.form .wrapper {
  position: relative;
  width: 90%;
  max-width: 31.25rem;
  height: 100%;
  padding: 2.25rem;
  margin: 0 auto;
  overflow-y: auto;
  background-color: #fff;
  border-radius: 0.5em;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 0.3125em 0.9375em;
}

.btn--close {
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  max-width: 2rem;
  padding: 0;
  font-size: var(--fs-lg);
  color: var(--clr-black);
  background: none;
  box-shadow: none;
  animation: none;
}

.form h6 {
  margin-bottom: 0.5em;
  font-size: var(--fs-lg);
  text-align: left;
}

.form p {
  margin-bottom: 1.5em;
}

/* Style the input fields */
.form input {
  width: 100%;
  padding: 0.625rem;
  font-family: var(--ff-montserrat);
  font-size: 1.0625rem;
  border: 0.0625rem solid #aaaaaa;
  border-radius: 0.25rem;
}

.form__field-wrapper {
  margin-top: 1em;
}

.form select {
  width: 100%;
  padding: 0 1em 0 0;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  cursor: inherit;
  /* Additional resets for further consistency */
  background-color: transparent;
  border: none;
  outline: none;
  /* A reset of styles, including removing the default dropdown arrow */
  appearance: none;
}

.form__select-wrapper {
  display: grid;
  grid-template-areas: "select";
  align-items: center;
  width: 100%;
  padding: 0.625em;
  font-size: 1.25rem;
  line-height: 1.1;
  cursor: pointer;
  background-color: #fff;
  background-image: linear-gradient(to top, #f9f9f9, #fff 33%);
  border: 0.0625em solid var(--select-border);
  border-radius: 0.25em;
}

.form__select-wrapper:focus-within {
  border: 0.0625em solid var(--select-focus);
}

.form__select-wrapper::after {
  justify-self: end;
  width: 0.8em;
  height: 0.5em;
  clip-path: polygon(100% 0%, 0 0%, 50% 100%);
  content: "";
  background-color: var(--select-arrow);
}

select,
.form__select-wrapper::after {
  grid-area: select;
}

.form .btn--submit {
  max-width: 100%;
  margin-top: 1em;
}

.btn--transparent {
  background: transparent;
  border-radius: 0.5rem;
  border: 0.125rem solid var(--clr-white);
  transition: background-color 300ms cubic-bezier(0.33, 1, 0.68, 1);
}

.btn--transparent:hover {
  background-color: var(--clr-dark-blue);
}

.btn--transparent:active {
  background-color: var(--clr-dark-blue);
}

@media screen and (min-width: 56.25rem) {
  .modal__image-wrapper {
    display: block;
  }

  .form .wrapper {
    margin: 0;
    border-radius: 0;
    border-top-right-radius: 0.5em;
    border-bottom-right-radius: 0.5em;
  }
}

.s-center {
  width: 90%;
  max-width: 90rem;
  margin: 0 auto;
}

.only-tablet-up {
  display: none;
}

.clr-blue {
  color: var(--clr-blue);
}

.clr-dark-blue {
  color: var(--clr-dark-blue);
}

.f-700 {
  font-weight: 700;
}

.f-800 {
  font-weight: 800;
}

.f-900 {
  font-weight: 900;
}

.splide {
  width: 100%;
}

.splide__track {
  cursor: -webkit-grab;
  cursor: grab;
}

.splide__track:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.splide__arrow.splide__arrow {
  background: #fff0;
}

.splide__arrow.splide__arrow svg {
  width: 2em;
  height: 2em;
  fill: var(--clr-blue);
}

.splide__pagination.splide__pagination {
  bottom: 0.25em;
}

.splide__pagination__page.splide__pagination__page.is-active {
  background-color: var(--clr-dark-blue);
}

#progress-bar {
  --scrollAmount: 0%;
  position: fixed;
  top: 0;
  z-index: 99999;
  width: var(--scrollAmount);
  height: 0.625rem;
  border-radius: 3px;
  background-image: linear-gradient(
    120deg,
    var(--clr-blue) 0%,
    var(--clr-dark-blue) 100%
  );
  /*  background: linear-gradient(to right, #F24E1E var(--scrollAmount), transparent 0);
  width: 100%; */
}

.banner {
  display: none;
}
/* navbar */
.navbar {
  position: fixed;
  z-index: 100;
  top: 0.625rem;
  width: 100%;
  color: #000;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
  opacity: 0.95;
}

.navbar-container {
  display: flex;
  justify-content: space-around;
  height: 4rem;
  align-items: center;
}

.navbar input,
.navbar .hamburger-lines {
  display: none;
}

.menu-items {
  display: flex;
}

.logo {
  font-size: 2.3rem;
}

.menu-items li {
  list-style: none;
  margin-left: 1.5rem;
}

.navbar img {
  max-height: 4rem;
}

.navbar a {
  color: #444;
  text-decoration: none;
  font-weight: 500;
  transition: color 300ms cubic-bezier(0.33, 1, 0.68, 1);
}

.navbar a:hover {
  color: var(--clr-blue);
}

.navbar a:active {
  color: var(--clr-dark-blue);
}

@media (max-width: 48rem) {
  .navbar-container input[type="checkbox"],
  .navbar-container .hamburger-lines {
    display: block;
  }

  .navbar img {
    max-height: 3rem;
  }
  .navbar-container {
    display: block;
    position: relative;
    height: 4rem;
  }

  .navbar-container input[type="checkbox"] {
    position: absolute;
    display: block;
    height: 1.875rem;
    width: 1.5625rem;
    top: 1.25rem;
    left: 1.25rem;
    z-index: 5;
    opacity: 0;
    cursor: pointer;
  }

  .navbar-container .hamburger-lines {
    display: block;
    height: 1.25rem;
    width: 1.5625rem;
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .navbar-container .hamburger-lines .line {
    display: block;
    height: 0.125rem;
    width: 100%;
    border-radius: 0.625rem;
    background: var(--clr-dark-blue);
  }

  .navbar-container .hamburger-lines .line1 {
    transform-origin: 0% 0%;
    transition: transform 0.3s ease-in-out;
  }

  .navbar-container .hamburger-lines .line2 {
    transition: transform 0.2s ease-in-out;
  }

  .navbar-container .hamburger-lines .line3 {
    transform-origin: 0% 100%;
    transition: transform 0.3s ease-in-out;
  }

  .navbar .menu-items {
    padding-top: 100px;
    background: #fff;
    height: 100vh;
    max-width: 18.75rem;
    transform: translate(-150%);
    display: flex;
    flex-direction: column;
    margin-left: -2.5rem;
    padding-left: 2.5rem;
    transition: transform 0.5s ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0.0625rem 0.125rem 0px;
    overflow: scroll;
  }

  .navbar .menu-items li {
    margin-bottom: 1.8rem;
    font-weight: 500;
  }

  .logo {
    position: absolute;
    top: 0.625rem;
    right: 0.9375rem;
    font-size: 2.5rem;
  }

  .navbar-container input[type="checkbox"]:checked ~ .menu-items {
    transform: translateX(0);
  }

  .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
    transform: rotate(45deg);
  }

  .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
    transform: scaleY(0);
  }

  .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
    transform: rotate(-45deg);
  }
}
/* */
.container {
  position: relative;
}

.img-responsive {
  margin: auto;
  max-width: 100%;
}
.max {
  max-width: 100%;
}
.yt-container {
  position:relative;
  padding-bottom:56.25%;
  padding-top:0px;
  height:0;
  overflow:hidden;
  max-width: 100%;
  z-index: 1; /* Garante que o texto esteja na frente do vídeo */
}

.yt-container span {
font-weight: 1000;
font-size: 3rem;
color: #f49220;
text-align: center;
z-index: 1; /* Garante que o texto esteja na frente do vídeo */
}
.spanh {
  font-weight: 900;
  font-size: 6.4rem;
  color: #f49220;
  text-align: center;

  z-index: 1; /* Garante que o texto esteja na frente do vídeo */
}
  .pplus {
    font-weight: 900;
    font-size: 2.4rem;
    color: #f49220;
    text-align: center;
  
    z-index: 1; /* Garante que o texto esteja na frente do vídeo */
}

.child {

  /* Centralizar na vertical e na horizontal */
  text-align: center;
  max-width: 50%;

}

.marca-dagua {
  position: absolute; 
  width:100%;
margin: 0;
left: 25%;
right: auto;
top: 25%;
    z-index: 1; /* Garante que o texto esteja na frente do vídeo */
}

  .marca-dagua p {
    text-align: center;
  }
  .marca-dagua h1 {
    text-align: center;
  }

.flex {
  display: flex;
}

.flex--column {
  flex-direction: column;
}

#myVideo {
  position: absolute;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover; /* Para garantir que o vídeo cubra toda a área disponível */
  z-index: -1; /* Coloca o vídeo atrás do conteúdo de texto */
}

/* Add some content at the bottom of the video/page */
.content {
  position: fixed;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #f1f1f1;
  width: 100%;
  padding: 20px;
}

/* Style the button used to pause/play the video */
#myBtn {
  width: 200px;
  font-size: 18px;
  padding: 10px;
  border: none;
  background: #000;
  color: #fff;
  cursor: pointer;
}

#myBtn:hover {
  background: #ddd;
  color: black;
}

/* s-hero */
.s-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 90vh;
  padding: 1rem 0;
  text-align: center;
}

.s-hero--video {
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.s-hero h1 {
  font-size: 2.75rem;
  line-height: 1.1;
  font-weight: 900;
  color: var(--clr-blue);
  margin-bottom: 1rem;
}

.s-hero p {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--clr-dark-blue);
  margin-bottom: 2rem;
}

.s-hero picture {
  display: none;
  border-radius: 1.25rem;
}

.s-hero .btn {
  margin: 0 auto;
}
/* */

/* s-reforma */
.s-reforma {
  padding: 2rem 0;
  font-size: var(--fs-md);
  font-weight: 800;
  text-align: center;
  color: var(--clr-white);
  background-color: var(--clr-blue);
}

.s-reforma p {
  margin: 0 auto;
}
/* */

/* s-sua-casa */
.s-sua-casa {
  padding: 4rem 0;
}

.s-sua-casa .flex-wrapper {
  display: flex;
  flex-direction: column-reverse;
  gap: 1.5rem;
}

.s-sua-casa h2 {
  margin-bottom: 2rem;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--clr-black);
}

.s-sua-casa .wrapper h2 {
  display: none;
}

.s-sua-casa img {
  max-width: 100%;
  align-self: center;
}

.s-sua-casa p {
  font-size: 1.125rem;
  color: var(--clr-dark-blue);
}

.s-sua-casa p:nth-child(1) {
  margin-bottom: 0.5rem;
}

.s-sua-casa .btn {
  margin-top: 1.5rem;
}
/* */

/* s-vida-melhor */
.s-vida-melhor {
  position: relative;
  z-index: 2;
  padding: 2rem 0 2.5rem 0;
  color: var(--clr-white);
  text-transform: uppercase;
  background: #f49220;
  background: linear-gradient(
    180deg,
    #ad6e25 0%,
    #f49220 100%
  );
}

.s-vida-melhor h2 {
  font-weight: 400;
  font-size: 1.5rem;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.s-vida-melhor span {
  font-size: 110%;
  font-weight: 800;
}

.s-vida-melhor .btn {
  margin: 0 auto;
}
/* */

/* s-recebe */
.s-recebe {
  position: relative;
  background: black;
}

.s-recebe > img {
  position: absolute;
  width: 100%;
  height: 120%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  object-fit: cover;
  opacity: 0.5;
  pointer-events: none;
}

.s-recebe .s-center {
  position: relative;
  z-index: 2;
  padding: 2rem 0 3rem 0;
}

.s-recebe .above-title {
  display: block;
  text-align: center;
  color: var(--clr-blue);
}

.s-recebe h2 {
  font-size: 2rem;
  text-align: center;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 3rem;
  color: white;
}

.s-recebe .cards {
  display: grid;
  grid-template-columns: 1;
  grid-template-rows: 6;
  justify-items: center;
  row-gap: 3rem;
  margin-bottom: 3rem;
}

.s-recebe .cards__card {
  position: relative;
  max-width: 25rem;
  width: 90%;
  padding: 1rem 1rem 1.25rem 1rem;
  color: var(--clr-white);
  border-radius: 1rem;
  background: #f49220;
  background: linear-gradient(
    180deg,
    #ad6e25 0%,
    #f49220 100%
  );
  transition: filter 300ms cubic-bezier(0.33, 1, 0.68, 1);
}

.s-recebe .cards__card:hover {
  filter: saturate(1.5);
}

.s-recebe .cards__card span {
  position: absolute;
  top: -5%;
  left: 45%;
  transform: translateY(-5%);
  padding: 0.5em 1.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--clr-black);
  background-color: var(--clr-blue);
  border-radius: 1rem;
  pointer-events: none;
}

.s-recebe .cards__card img {
  max-width: 7rem;
  margin-top: -4rem;
}

.s-recebe .cards__card h3 {
  margin-bottom: 0.25rem;
}

.s-recebe .btn {
  margin: 0 auto;
}
/* */

/* s-antes-depois */
.s-antes-depois {
  position: relative;
  z-index: 2;
  padding: 2rem 0;
}

.s-antes-depois h2 {
  font-size: 1.5rem;
  text-align: center;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.s-antes-depois .splide {
  max-width: 71.25rem !important;
  margin: 0 auto;
}

.splide__arrow.splide__arrow svg {
  width: 4em;
  height: 4em;
}

.s-antes-depois .splide__slide .is-active {
  width: 80%;
}

/* .s-antes-depois .splide_slide .is-prev {
  margin-right: -12.5%;
}

.s-antes-depois .splide_slide .is-next {
  margin-left: -12.5%;
} */

.s-antes-depois .antes-depois-item {
  display: flex;
  justify-content: center;
}

.s-antes-depois .antes-depois-item .wrapper {
  width: 50%;
  box-shadow: var(--shadow-md);
  border-radius: 1rem;
}

.s-antes-depois .antes-depois-item img {
  width: 100%;
  max-height: 14rem;
  height: 100%;
  object-fit: cover;
}

.s-antes-depois .antes-depois-item .wrapper:nth-child(1) img {
  border-top-left-radius: 1rem;
}

.s-antes-depois .antes-depois-item .wrapper:nth-child(2) img {
  border-top-right-radius: 1rem;
}

.s-antes-depois .antes-depois-item p {
  padding: 1rem 0;
  font-size: 1.5rem;
  font-weight: 800;
  text-align: center;
  color: var(--clr-white);
  background-color: var(--clr-blue);
}

.s-antes-depois .antes-depois-item .wrapper:nth-child(1) p {
  border-bottom-left-radius: 1rem;
}

.s-antes-depois .antes-depois-item .wrapper:nth-child(2) p {
  border-bottom-right-radius: 1rem;
}

.s-antes-depois .btn {
  max-width: 30rem;
  margin: 0 auto;
  margin-top: 1.5rem;
}
/* */

/* s-um-dia */
.s-um-dia {
  padding: 3rem 0;
  text-align: center;
  font-weight: 900;
  color: var(--clr-white);
  background: #f49220;
  background: linear-gradient(
    180deg,
    #ad6e25 0%,
    #f49220 100%
  );
}

.s-um-dia h2 {
  max-width: 58ch;
  margin: 0 auto;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.s-um-dia .btn {
  margin: 0 auto;
  color: var(--clr-blue);
  letter-spacing: 0.02em;
  background: rgb(215, 251, 255);
  background: linear-gradient(
    90deg,
    rgba(215, 251, 255, 1) 0%,
    rgba(249, 249, 249, 1) 100%
  );
}
/* */

/* s-como-funciona */
.s-como-funciona {
  padding-top: 2rem;
}

.s-como-funciona h2 {
  color: var(--clr-blue);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.25rem;
  margin-bottom: 2rem;
  text-align: center;
}

.s-como-funciona .tablet-up {
  display: none;
}

.s-como-funciona > .cards {
  max-width: 30rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  flex-direction: column;
  justify-items: center;
  column-gap: 0.5rem;
  row-gap: 2rem;
}

.s-como-funciona .cards__card {
  max-width: 10rem;
  text-align: center;
  line-height: 1.1;
  color: var(--clr-dark-blue);
  border-radius: 0.5rem;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
}

.s-como-funciona .card__upper {
  padding: 1rem 0.75rem 0.75rem 0.75rem;
}

.s-como-funciona > .cards__card {
  margin: 0 auto;
  margin-top: 2rem;
}

.s-como-funciona .cards__card img {
  max-width: 100%;
  max-height: 5rem;
  margin: 0 auto;
  border-bottom: 1px solid rgba(49, 49, 49, 0.15);
  margin-bottom: 0.75rem;
}

.s-como-funciona .card__lower {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--clr-white);
  background-color: var(--clr-dark-blue);
  padding: 0.75rem;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

/* s-planos */
.s-planos {
  padding: 4rem 0;
}

.s-planos .above-title {
  display: block;
  text-align: center;
  color: var(--clr-blue);
}

.s-planos h2 {
  margin-top: -0.25rem;
  margin-bottom: 1rem;
  font-size: 1.875rem;
  text-align: center;
  font-weight: 400;
  color: var(--clr-black);
}

.s-planos h2 span {
  font-weight: 700;
}

.s-planos .slider-wrapper {
  max-width: 26rem;
  padding: 1rem 1.25rem;
  margin: 0 auto;
  margin-bottom: 1.5rem;
  font-size: 0.75rem;
  text-align: center;
  border: 1px solid rgba(49, 49, 49, 0.15);
  box-shadow: rgba(0, 0, 0, 0.15) 0px 0.1875rem 0.5rem;
  border-radius: 0.5rem;
}

.s-planos .slider-wrapper p:nth-child(1) {
  font-weight: 600;
}

.s-planos .slider-wrapper p:nth-child(2) {
  font-size: 0.625rem;
  text-align: center;
  max-width: 100%;
}

.s-planos .slider-wrapper span {
  display: block;
  font-size: 4rem;
  font-weight: 700;
  color: var(--clr-blue);
}

.s-planos #sliderQtAmbientes {
  -webkit-appearance: none;
  appearance: none;
  max-width: 12rem;
  width: 100%;
  height: 0.25rem;
  border-radius: 0.5rem;
  background: #d3d3d3;
  outline: none;
  opacity: 0.7;
  -webkit-transition: 0.2s;
  transition: opacity 0.2s;
}

.s-planos #sliderQtAmbientes::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--clr-dark-blue);
  cursor: pointer;
}

.s-planos .slider-wrapper .wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.5rem;
  font-size: 0.625rem;
  text-align: left;
}

.s-planos .slider-wrapper img {
  max-width: 1rem;
}

.s-planos .planos {
  display: none;
}

.plano {
  max-width: 25rem;
  margin: 0 auto;
  border: 1px solid rgba(49, 49, 49, 0.15);
  border-radius: 0.5rem;
  border-bottom-right-radius: 3rem;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 0.1875rem 0.5rem;
}

.plano--mobile + .plano--mobile {
  margin-top: 2rem;
}

.s-planos .plano--mobile:nth-child(1) .tabela h3 {
  background-color: var(--clr-dark-blue);
}

.plano,
.plano > h3 {
  border-top-right-radius: 3rem;
  border-top-left-radius: 0.5rem;
}

.plano > h3 {
  font-size: 1.75rem;
}

.plano .wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.plano .linhas {
  padding: 0 0.25rem 0.5rem 0.25rem;
}

.plano .linha {
  display: grid;
  grid-template-columns: 20% 60% 20%;
  align-items: center;
  text-align: left;
  font-size: 0.625rem;
  padding: 0.25rem 0;
}

.plano .linha + .linha {
  border-top: 1px solid rgba(49, 49, 49, 0.15);
}

.plano > h3 {
  padding: 2rem 0 2rem 0;
  color: var(--clr-white);
  font-weight: 900;
  text-align: center;
  background-color: var(--clr-black);
}

.plano .tabela h3 {
  padding: 0.5rem 0;
  font-weight: 700;
  text-align: center;
  color: var(--clr-white);
  background-color: var(--clr-blue);
}

.plano .check {
  max-width: 1.5rem;
}

.plano .help {
  max-width: 1rem;
  justify-self: flex-end;
}

.plano .valores {
  font-size: 0.75rem;
  text-align: center;
}

.plano .valores .upper {
  padding: 1rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--clr-white);
  background-color: var(--clr-blue);
}

.plano .valores .upper p:nth-child(1) {
  text-decoration: line-through;
  text-decoration-color: var(--clr-black);
}

.plano .valores .upper p:nth-child(2) {
  font-size: 1.25rem;
}

.plano .valores .upper span {
  font-weight: 700;
}

.plano .valores .descricao {
  padding: 2rem 0;
}

.plano .valores .ambiente {
  padding: 0.25rem 0;
  font-size: 0.675rem;
  color: #14532d;
  background-color: #dcfce7;
}

.plano .valores .ambiente span {
  font-weight: 700;
}

.plano .valores .pix {
  padding: 2rem 0;
}

.plano .valores .ou {
  position: relative;
}

.plano .valores .ou::before {
  position: absolute;
  content: "";
  width: 3rem;
  height: 1px;
  background-color: var(--clr-black);
  top: 70%;
  left: 20%;
  transform: translate(-25%, -50%);
}

.plano .valores .ou::after {
  position: absolute;
  content: "";
  width: 3rem;
  height: 1px;
  background-color: var(--clr-black);
  top: 70%;
  right: 5%;
  transform: translate(-25%, -50%);
}

.plano .cartao {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0;
  text-align: left;
  font-size: 0.75rem;
}

.plano .cartao img {
  max-width: 1.5rem;
  margin-left: 0.25rem;
}

.plano .btn {
  margin: 0 auto;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.5rem;
}
/* */

/* info */
.info {
  position: relative;
  max-width: 25rem;
  margin: 0 auto;
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  font-size: 0.75rem;
  border: 1px solid rgba(49, 49, 49, 0.15);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 0.1875rem 0.5rem;
  border-radius: 0.5rem;
}

.info img {
  position: absolute;
  max-width: 1.5rem;
  top: 0%;
  left: 0%;
  transform: translate(-50%, -50%);
}

/* */

/* s-faq */
.s-faq {
  padding: 2rem 0;
}

.s-faq h2 {
  font-size: 1.75rem;
  text-align: center;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.accordion-container {
  max-width: 56.25rem;
  margin: 0 auto;
}

.ac {
  box-shadow: var(--shadow-xs);
  border-radius: 0.5rem;
}

.ac li + li {
  padding-top: 0.35rem;
}

.ac .ac-header.ac-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.25rem;
  padding: 1rem;
}

.ac-header img {
  max-width: 2rem;
  height: 100%;
}

.ac .ac-trigger.ac-trigger {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--clr-blue);
}

.ac .ac-trigger.ac-trigger::after {
  color: var(--clr-black);
}

.ac .ac-trigger.ac-trigger:focus {
  color: var(--clr-blue);
}

.ac .ac-trigger.ac-trigger {
  padding: 0;
}

.ac .ac-trigger span {
  max-width: 90%;
  display: inline-block;
}

.ac .ac-text {
  padding: 0 1.5rem 1.5rem 1.5rem;
  font-size: 0.875rem;
}

.ac p {
  max-width: 100%;
}

footer {
  padding: 2rem;
  font-size: 0.875rem;
  background-color: #1d1d1d;
  color: var(--clr-white);
}
footer a {
  color: white;
  text-decoration: none;
  font-weight: 700;
}

footer .s-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

footer img {
  max-width: 5rem;
}

/* */
@media screen and (max-width: 37.5rem) {

  .pplus {
    font-weight: 900;
    font-size: 1rem;
    color: #f49220;
    text-align: center;
  
    }

  .yt-container {
    position:relative;
    height:0;
    max-width: 100%;
    padding-top:30px;
    padding-bottom:56.25%;
    margin-top: 50px;
    background-image: url("./images/gasosa-1.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow:hidden;
  }
  .yt-container span {
  font-weight: 1000;
  font-size: 0.6rem;
  color: #f49220;
  text-align: center;

  }
.spanh {
    font-weight: 900;
    font-size: 1.4rem;
    color: #f49220;
    text-align: center;
  
    }
  

  .btn {
    display: block;
    padding: 0.75rem 1.25rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--clr-white);
    border-bottom-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
    background: #f49220;
    background: linear-gradient(
      180deg,
      #ad6e25 0%,
      #f49220 100%
    );
    border: 0;
    transition: filter 300ms cubic-bezier(0.33, 1, 0.68, 1);
    margin: 1rem;
  }


}

@media screen and (min-width: 37.5rem) {
  .only-phone {
    display: none;
  }


  .only-tablet-up {
    display: block;
  }

  /* s-hero */
  .s-hero .s-center {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    margin-top: 6rem;
  }

  .s-hero h1 {
    max-width: 12ch;
    font-size: 3.5rem;
  }

  .s-hero p {
    max-width: 35ch;
  }

  .s-hero .btn {
    font-size: 1.75rem;
  }

  .s-hero picture {
    position: relative;
    z-index: 2;
    display: block;
    max-width: 15rem;
    width: 40%;
    margin-bottom: 1.5rem;
  }

  .s-hero img {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 1rem;
  }

  .s-hero picture::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 90%;
    top: -10%;
    right: -15%;
    border-radius: 1rem;
    background: #f49220;
  background: linear-gradient(
    180deg,
    #ad6e25 0%,
    #f49220 100%
  );
  }
  /* */

  /* s-sua-casa */
  .s-sua-casa .flex-wrapper {
    gap: 1.5rem;
  }

  .s-sua-casa h2 {
    margin-bottom: 1rem;
  }

  .s-sua-casa img {
    align-self: flex-start;
    max-width: 20rem;
    width: 100%;
  }

  .s-sua-casa .btn {
    margin-top: 2.75rem;
  }
  /* */

  /* s-recebe */
  .s-recebe {
    background: black;
  }

  .s-recebe > img {
    display: block;
  }
  .s-recebe .cards {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 1fr);
    column-gap: 0.75rem;
  }

  .s-recebe .cards__card {
    max-width: 100%;
    width: 100%;
  }

  /* s-antes-depois */
  .s-antes-depois h2 {
    margin-bottom: 2rem;
  }

  /* s-planos */
  .plano .items__item p {
    font-size: 1rem;
  }
}

@media screen and (min-width: 43.75rem) {
  .s-como-funciona > .cards {
    display: none;
    max-width: 40rem;
    grid-template-columns: repeat(3, 1fr);
  }

  .s-como-funciona .tablet-up {
    display: block;
  }

  .s-como-funciona .tablet-up .cards {
    max-width: 50rem;
    margin: 0 auto;
    display: grid;
    grid-template-rows: 1fr 1fr;
  }

  .s-como-funciona .cards .wrapper {
    display: flex;
    justify-content: center;
    gap: 3rem;
  }

  .s-como-funciona .cards .wrapper:nth-child(1) {
    margin-bottom: 2rem;
  }

  .s-como-funciona .cards .cards__card {
    position: relative;
    height: max-content;
  }

  .s-como-funciona .cards .cards__card + .cards__card::before {
    position: absolute;
    content: "";
    width: 3rem;
    height: 0.25rem;
    right: 100%;
    top: 50%;
    transform: translate(0%, -50%);
    background-color: var(--clr-blue);
  }

  .s-como-funciona > .cards__card {
    display: none;
  }
}

@media screen and (min-width: 56.25rem) {
  /* s-hero */
  .s-hero .s-center {
    flex-direction: row;
    justify-content: space-evenly;
    margin-top: 0;
    text-align: left;
  }

  .pplus {
    font-weight: 900;
    font-size: 1rem;
    color: #f49220;
    text-align: center;
  
    }


  .s-hero .wrapper {
    width: 50%;
  }

  .s-hero h1 {
    line-height: 0.95;
  }

  .s-hero p {
    max-width: 30ch;
  }

  .s-hero picture {
    max-width: 27rem;
    width: 50%;
    height: 50%;
    align-self: flex-end;
    margin: 0;
  }

  .s-hero img {
    width: 100%;
  }

  .s-hero .btn {
    margin: 0;
  }
  /* */

  /* s-sua-casa */
  .s-sua-casa h2 {
    margin-bottom: 2rem;
    text-align: center;
  }

  .s-sua-casa .flex-wrapper {
    flex-direction: row;
    justify-content: center;
    gap: 4rem;
  }

  .s-sua-casa p {
    max-width: 30ch;
    text-align: justify;
  }

  .s-sua-casa .btn {
    margin-left: auto;
    margin-right: auto;
  }
  /* s-como-funciona */
  .s-como-funciona .tablet-up .cards {
    max-width: 71.25rem;
  }

  .s-como-funciona .cards .wrapper {
    gap: 6rem;
  }

  .s-como-funciona .cards .cards__card + .cards__card::before {
    width: 6rem;
  }

  /* s-antes-depois */
  .s-antes-depois h2 {
    font-size: 2rem;
    max-width: 30ch;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 2rem;
  }

  /* s-vida-melhor */
  .s-vida-melhor .s-center {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .s-vida-melhor h2 {
    width: 40%;
    text-align: left;
  }

  .s-vida-melhor span {
    font-size: 125%;
    font-weight: 900;
  }

  .s-vida-melhor .btn {
    margin: 0;
  }

  /*s-planos */
  .s-planos .plano--mobile {
    display: none;
  }

  .s-planos .planos {
    display: block;
  }

  .s-planos .planos {
    max-width: 70rem;
    margin: 0 auto;
  }

  .s-planos .wrapper-planos {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .planos {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 0.1875rem 0.5rem;
    border-radius: 2rem;
  }

  .planos .header {
    display: grid;
    grid-template-columns: 25% 50% 25%;
    padding: 1rem 0 0.75rem 0;
    text-align: center;
    color: var(--clr-white);
    background: var(--clr-black);
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem;
  }

  .wrapper-planos .plano:nth-child(1) {
    border-bottom-left-radius: 2rem;
  }

  .wrapper-planos .plano:nth-child(2) {
    border-bottom-right-radius: 2rem;
  }

  .plano .tabela h3 {
    font-size: 1.5rem;
  }

  .plano .linha {
    grid-template-columns: 10% 80% 10%;
    padding: 0.5rem;
    font-size: 0.75rem;
  }

  .plano .valores {
    font-size: 0.875rem;
  }

  .plano .valores .upper {
    font-size: 1rem;
  }

  .plano .valores .upper p:nth-child(2) {
    font-size: 1.75rem;
  }

  .plano .valores .pix {
    padding: 2rem 0 1rem 0;
  }

  .plano .cartao {
    justify-content: center;
  }

  .plano .cartao p {
    max-width: 20ch;
  }

  .s-planos .wrapper-planos .plano:nth-child(1) .tabela h3,
  .s-planos .wrapper-planos .plano:nth-child(1) .upper,
  .s-planos .wrapper-planos .plano:nth-child(1) .btn {
    background: var(--clr-dark-blue);
  }

  .plano {
    max-width: 100%;
    box-shadow: none;
    border-radius: 0;
  }

  .plano .btn {
    font-size: 1rem;
  }

  .info {
    max-width: 30rem;
    font-size: 0.875rem;
    margin-top: 3rem;
  }

  .banner {
    position: fixed;
    z-index: 10;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 1rem 0;
    background: var(--clr-dark-blue);
    color: var(--clr-white);
  }

  .banner .wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 40%;
    font-size: 0.875rem;
  }

  .banner .wrapper p {
    max-width: 30ch;
  }

  #timer {
    font-size: 2.5rem;
    font-weight: 100;
    color: white;
  }

  #timer div {
    display: inline-block;
    padding: 0.25rem 1rem;
    background: #222222;
    border-radius: 0.5rem;
    border: 2px solid #222222;
  }

  #timer p {
    text-align: center;
  }

  #timer div span:nth-child(2) {
    color: #ffffff;
    display: block;
    text-align: center;
    font-size: 0.35em;
    font-weight: 400;
  }

  .banner .wrapper .btn {
    max-width: 15rem;
    font-size: 1rem;
    background: #d82626;
    border-radius: 0.5rem;
  }

  .banner .wrapper .btn:active {
    filter: saturate(0.9);
  }

  .banner img {
    max-width: 30%;
    max-height: 5rem;
    margin-right: 1.5rem;
  }
}

@media screen and (min-width: 75rem) {
  /* s-hero */
  .s-hero .wrapper {
    width: 30%;
  }
  /* */

  .pplus {
    font-weight: 900;
    font-size: 1rem;
    color: #f49220;
    text-align: center;
  
    }


  /* s-sua-casa */
  .s-sua-casa .flex-wrapper {
    gap: 7rem;
  }

  .s-sua-casa .wrapper {
    width: 30%;
  }

  .s-sua-casa h2 {
    font-size: 3rem;
    max-width: 15ch;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 3rem;
  }

  .s-sua-casa p {
    max-width: 35ch;
    font-size: 1.25rem;
    text-align: justify;
  }

  .s-sua-casa img {
    max-width: 27rem;
    width: 100%;
    scale: 1.25;
  }

  .s-sua-casa .btn {
    font-size: 1.5rem;
    margin-top: 4rem;
  }
  /* */

  /* s-recebe */
  .s-recebe .s-center {
    padding: 5rem 0;
  }

  .s-recebe h2 {
    font-size: 3rem;
    max-width: 15ch;
    margin: 0 auto 2rem auto;
    color: white;
  }

  .s-recebe .cards {
    max-width: 60rem;
    gap: 0.75rem;
    margin: 0 auto 3rem auto;
  }

  .s-recebe .cards__card {
    display: flex;
    align-items: center;
  }

  .s-recebe .cards__card span {
    left: 30%;
    padding: 0.5em 1.75em;
    text-align: center;
    top: -5%;
  }

  .s-recebe .cards__card img {
    max-width: 30%;
    margin: 0;
  }
  /* */

  /* .s-antes-depois */
  .s-antes-depois {
    padding-bottom: 4rem;
  }

  .s-antes-depois .splide {
    margin: 0 auto;
    margin-bottom: 2rem;
  }
  /* */

  /* s-como-funciona */
  .s-como-funciona h2 {
    margin-bottom: 3rem;
  }

  .s-como-funciona .cards__card {
    max-width: 14rem;
  }

  .s-como-funciona .cards__card h3 {
    font-size: 1.55rem;
  }

  .s-como-funciona .cards__card img {
    max-height: 6rem;
  }

  .s-como-funciona .cards .wrapper:nth-child(1) {
    margin-bottom: 3rem;
  }

  /* s-planos */
  .s-planos {
    padding-top: 6rem;
  }

  .s-planos .header {
    font-size: 1.5rem;
  }

  .s-planos .header h3:nth-child(2) {
    font-size: 1.375rem;
    align-self: flex-end;
  }

  .s-planos .slider-wrapper p:nth-child(1) {
    font-size: 1rem;
  }

  .s-planos .slider-wrapper > p:nth-child(2) {
    margin-top: 0.25rem;
    font-size: 0.75rem;
  }

  .s-planos h2 {
    margin-bottom: 1rem;
    font-size: 2.25rem;
  }

  .plano .btn {
    margin-top: 2.5rem;
    font-size: 1.25rem;
  }

  .ac-trigger.ac-trigger.ac-trigger {
    font-size: 1rem;
    font-weight: 600;
  }

  footer {
    padding-bottom: 9rem;
  }
  footer a {
    color: white;
    text-decoration: none;
    font-weight: 700;
  }

  footer img {
    max-width: 8rem;
  }
}

@media screen and (min-width: 1000px) {
.pplus {
  font-weight: 900;
  font-size: 1.6rem;
  color: #f49220;
  text-align: center;

  }
}
@media screen and (max-width: 650px) {
  .pplus {
    font-weight: 900;
    font-size: 1rem;
    color: #f49220;
    text-align: center;
  
    }
  }
  @media screen and (max-width: 500px) {
    .pplus {
      font-weight: 900;
      font-size: 0.7rem;
      color: #f49220;
      text-align: center;
    
      }
    }