:root {
  --color-primary: #7c68e1;
  --color-secondary: #ee5a29;
  --color-main: #198576;
  --color-background: #00ffab;
  --color-black: #000000;
  --color-white: #ffffff;
  --color-grey-dark: #32373C;
  --color-grey-mid: #646464;
  --color-grey-light: #E1EBFA;
  --color-purple: #7c39e3;
  --color-green: #00bf82;
  --color-orange: #ee5a29;
  --color-background-2: #e5fff7;
  --color-cabaz-controlado: #CBF0E9;
  --color-cabaz-controlado-text: #403D41;
}


/* RESET */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}


/* GLOBAL */

body {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  line-height: 1.3;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1370px;
  margin: 0 auto;
  padding: 0 30px;
}

.section {
  padding: 100px 0;
  background-color: var(--color-white);
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  text-align: center;
}

.column {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 33%;
          flex: 1 0 33%;
  max-width: 33%;
  padding: 0 15px;
  margin-bottom: 20px;
}

.color-red {
  color: var(--color-secondary) !important;
}

h1 {
  font-family: "atrament-web", sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 106px;
  line-height: 1;
}

h2 {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 48px;
  line-height: 1.3;
}

h3 {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 42px;
  line-height: 1.2;
}

h4 {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 32px;
  line-height: 1.3;
}

h5 {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 24px;
  line-height: 1.3;
}

p {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 22px;
  line-height: 1.3;
}


/* HEADER */

header {
  background-color: var(--color-background);
  padding: 30px 0;
}

.header-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.logo img {
  height: auto;
  width: 218px;
  /*margin-right: 0px;*/
}

.logo-preco-fresco {
  height: auto;
  width: 218px !important;
  margin: 0px 0px 3px 30px;
  border-left: 1px solid var(--color-primary);
  padding-left: 30px;
}

/*.logo-preco-fresco img {
  height: auto;
  width: 192px !important;
  margin-right: 0px !important;
}*/

button.rounded {
  border-radius: 30px;
  padding: 12px 20px 12px 20px;
  font-family: "atrament-web", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  border: none;
  cursor: pointer;
  margin: 0 8px;
  height: auto;
  text-transform: uppercase;
}

button.icone-outline {
  border-radius: 30px;
  padding: 12px 20px 12px 20px;
  font-family: "atrament-web", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  border: none;
  cursor: pointer;
  margin: 0 8px;
  height: auto;
  text-transform: uppercase;
}

button.rounded:hover {
  background-color: var(--color-primary);
  border: 2px solid var(--color-primary);
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

button.outline {
  background-color: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

button.icone-outline {
  background-color: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

button.outline:hover,
button.icone-outline:hover {
  color: var(--color-white);
}

button.primary {
  background-color: var(--color-primary);
  color: var(--color-background);
  padding: 22px 40px 22px 40px;
  border-radius: 50px;
  font-family: "atrament-web", sans-serif;
  font-size: 42px;
  line-height: 1;
  font-weight: 700;
  border: none;
  cursor: pointer;
  margin: 30px 0;
  text-transform: uppercase;
}

button.primary:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

button.rounded .icon {
  position: relative;
  bottom: -2px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

button.rounded .icon img {
  width: 18px !important;
  height: 17px !important;
}

button.rounded:hover .icon img {
  -webkit-filter: brightness(3);
          filter: brightness(3);
}

.hero {
  background-color: var(--color-background);
  padding: 20px 0 0 0;
}

.hero-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 740px;
}

.hero-text {
  width: 100%;
  max-width: 700px;
  margin: 40px 0 0 0;
}

.hero-text h1 {
  margin-bottom: 10px;
  color: var(--color-primary);
  text-align: left;
}

.hero-text h2 {
  margin-bottom: 20px;
  color: var(--color-secondary);
}

.hero-text p {
  margin-bottom: 25px;
  margin-top: 35px;
  color: var(--color-primary);
}

.hero-content .hero-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end !important;
      -ms-flex-align: end !important;
          align-items: flex-end !important;
}

.hero-image {
  padding-left: 60px;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  display: block;
  max-height: 1130px;
}


/* SECTION APP */

.column img {
  width: 100%;
  max-width: 250px;
  height: auto;
}

.column p {
  margin-top: 20px;
  margin-left: 0px;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  color: var(--color-black);
}

.section h2 {
  color: var(--color-primary);
  margin: 0 0 40px 0;
}

.section h3 {
  color: var(--color-secondary);
  font-family: "atrament-web", sans-serif;
  font-weight: 900;
  margin: 10px 0 60px 0;
}

.section p {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 50px;
  max-width: 820px;
}

.section button.rounded {
  border-radius: 50px;
  padding: 15px 30px 15px 30px;
  font-size: 32px;
  margin: 20px 0 0px 0;
  text-transform: uppercase;
}

.section button.rounded:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
  border-color: var(--color-secondary);
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.title-product {
  margin-bottom: 20px !important;
}


/* SLIDER */

.slider {
  position: relative;
  overflow: hidden;
  background-color: transparent;
  -webkit-transition: background-color 0.5s ease-in-out;
  -o-transition: background-color 0.5s ease-in-out;
  transition: background-color 0.5s ease-in-out;
  width: 100%;
}

.slider.animate {
  -webkit-transition: background-color 0.5s ease-in-out;
  -o-transition: background-color 0.5s ease-in-out;
  transition: background-color 0.5s ease-in-out;
}

.slider-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  -o-transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.slide {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: background-color 0.5s ease-in-out;
  -o-transition: background-color 0.5s ease-in-out;
  transition: background-color 0.5s ease-in-out;
  padding-top: 100px;
}

.slide .slide-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--color-white);
  padding: 0 20px;
  width: 100%;
  max-width: 1370px;
  margin: 0 auto;
}

.slide1 { background-color: var(--color-purple); }
.slide2 { background-color: var(--color-orange); }
.slide3 { background-color: var(--color-green); }
.slide4 { background-color: var(--color-orange); }

.slide-image {
  width: 100%;
  max-width: 700px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.slide-image img {
  display: block;
  width: 100%;
  max-width: 600px;
  height: auto;
}

.slide-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 20px 20px 80px 20px;
  width: 100%;
  max-width: 540px;
}

.title-font {
  font-family: "atrament-web", sans-serif;
  font-weight: 900;
  font-size: 54px;
}

.slide-text h3 {
  margin-bottom: 20px;
  color: var(--color-background);
}

.slide-text p {
  margin-bottom: 10px;
  margin-top: 20px;
  font-weight: 500;
}

.prev-slide,
.next-slide {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 18px;
  width: 45px;
  height: 45px;
  color: var(--color-white);
  background-color: transparent;
  border: 2px solid var(--color-white);
  border-radius: 50%;
  cursor: pointer;
  padding: 10px;
  z-index: 1;
  opacity: 0.5;
}

.prev-slide:hover,
.next-slide:hover {
  opacity: 1;
}

.prev-slide {
  left: 3vw;
}

.next-slide {
  right: 3vw;
}

button.outline-white {
  background-color: transparent;
  border: 2px solid var(--color-white);
  color: var(--color-white);
  margin: 0;
  margin-bottom: 10px;
  margin-top: 20px;
}

.title-carousel {
  position: sticky;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  color: var(--color-white);
  z-index: 99 !important;
  text-align: center;
}


/* NEW SECTION */

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

.new-section .container {
  max-width: 1370px;
  margin: 0 auto;
  padding: 0 30px;
}

.new-section .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
}

.new-section .column {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 50%;
          flex: 1 0 50%;
  max-width: 50%;
  padding: 0 15px;
  text-align: left;
  margin-bottom: 0;
}

.new-section .col-text {
  padding: 100px 60px 0 0;
  width: 100%;
  max-width: 100%;
}

.new-section .col-image {
  padding: 100px 0 60px 0;
  width: 100%;
  max-width: 640px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.new-section h1 {
  font-size: 106px;
  line-height: 1;
  color: var(--color-secondary);
  margin-bottom: 20px;
  text-align: left;
}

.new-section h2 {
  font-size: 44px;
  line-height: 1.3;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.new-section p {
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 20px;
}

.new-section .column p {
  background-image: none;
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.new-section .column p::before {
  content: none;
  background-image: none;
}

.new-section img,
.new-section video {
  display: block;
  width: 100%;
  max-width: 900px;
  height: auto;
}

.new-section video {
  margin-bottom: 2.5em;
}

.new-section button.outline {
  margin: 0;
  margin-bottom: 10px;
  margin-top: 20px;
}

.new-section button.rounded {
  border-radius: 50px;
  padding: 15px 30px 15px 30px;
  font-size: 32px;
  margin: 20px 0 60px 0;
  text-transform: uppercase;
}

.new-section button.rounded:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
  border-color: var(--color-secondary);
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}


/* SECTION TITLE */

.section-title {
  background-color: var(--color-background);
  color: var(--color-primary);
  padding: 60px 0;
  
}

.section-title h4 {
  color: var(--color-primary);
}


/* FOOTER */

footer {
  background-color: var(--color-grey-dark);
  color: var(--color-white);
  padding: 40px 0;
}

footer .container {
  max-width: 1370px;
  margin: 0 auto;
  padding: 0 30px;
}

footer .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -15px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  text-align: center;
}

footer h5 {
  color: var(--color-white);
  margin: 0 0 20px 0;
}

footer p {
  color: var(--color-grey-dark);
  margin: 0 0 0 0;
}

footer p a {
  color: var(--color-white);
  font-size: 24px;
  font-weight: 600;
  text-decoration: none;
}

footer p a:hover {
  text-decoration: underline;
}

footer .column {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 25%;
          flex: 1 0 25%;
  max-width: 50%;
  padding: 0 15px;
  margin-bottom: 0px;
}

footer .column:first-child {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 25%;
          flex: 1 0 25%;
  max-width: 50%;
  padding: 0 15px;
  margin-bottom: 0px;
  text-align: left;
}

footer .column:last-child {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 25%;
          flex: 1 0 25%;
  max-width: 25%;
  padding: 0 15px;
  margin-bottom: 0px;
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .column p {
  margin-top: 0;
  margin-left: 0;
  text-align: left;
  font-size: 20px;
  font-weight: 400;
  color: var(--color-white);
}

footer .column p::before {
  content: "";
  display: inline-block;
  background-image: none;
  margin-left: 0;
  margin-top: 0;
}

.store-button  {
  width: 100%;
  max-width: 160px;
  height: auto;
  max-height: 42px;
}

.store-button img {
  width: 160px;
  height: auto;
  margin: 10px 15px;
}

.store-button img:hover {
  background-color: var(--color-black);
  border-radius: 5px;
}

footer button.outline-white {
  margin-bottom: 10px;
  margin-top: 10px;
}

footer button.rounded:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.social-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 28px;
}

.social-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 46px;
  height: 46px;
  border: 2px solid var(--color-white);
  border-radius: 50%;
  font-size: 20px;
  color: var(--color-white);
  background-color: transparent;
  margin: 0 5px;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.social-button:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.copyright {
  background-color: var(--color-grey-light);
  color: var(--color-grey-dark);
  padding: 30px 0;
  font-size: 14px;
  font-weight: 600;
}

.copyright .container {
  max-width: 1370px;
  margin: 0 auto;
  padding: 0 30px;
}

.copyright .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin: 0 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  text-align: right;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.copyright .column {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 50%;
          flex: 1 0 50%;
  max-width: 100%;
  padding: 0 0px;
  margin-bottom: 0;
}

.copyright .column p {
  color: var(--color-grey-mid);
  margin-top: 0px;
  margin-left: 0px;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0px;
}

.copyright a {
  color: var(--color-grey-mid);
  margin: 0 5px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
  text-transform: uppercase;
  text-decoration: none;
}

.copyright a:hover {
  color: var(--color-grey-dark);
  text-decoration: underline;
}


/* INSTALAR APP - THANK YOU PAGE */

header.instalar-app {
  background-color: var(--color-white);
  padding: 30px 0;
}

.logo-deco-pro-teste img {
  width: 100%;
  max-width: 280px;
}

.hero-instalar-app {
  background-color: var(--color-white);
  padding: 20px 0 100px 0;
}

.hero-instalar-app .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin: 0 0;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hero-instalar-app .column {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30%;
          flex: 0 0 30%;
  max-width: 30%;
  padding: 0;
  margin-bottom: 20px;
}

.hero-instalar-app .column:nth-child(2) {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  max-width: 40%;
}

.hero-instalar-app .column img,
.hero-instalar-app .column video {
  width: 100%;
  max-width: 520px;
  height: auto;
  margin: 0 auto;
  padding: 0 50px;
}

.hero-text-instalar-app {
  padding-top: 0px;
}

.hero-text-instalar-app h4,
.hero-text-instalar-app p {
  text-align: left;
}

.hero-text-instalar-app h4 {
  color: var(--color-secondary);
}

.hero-text-instalar-app p {
  font-weight: 600;
  font-size: 22px;
  color: var(--color-primary);
}

.qrcode-col {
  width: 100%;
}

.qrcode-col .qrcode-image img {
  width: 100%;
  max-width: 200px;
  padding: 0 !important;
}

.qrcode-col p {
  font-weight: 600;
  font-size: 18px;
  color: var(--color-primary);
  padding: 0 50px;
}

/*.hero-instalar-app .buttons  {
  padding-top: 30px;
}*/

.hero-instalar-app button.rounded .icon {
  position: relative;
  bottom: -1px;
  left: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.hero-instalar-app button.icone-outline {
  background-color: var(--color-primary);
  border: 2px solid var(--color-primary);
  color: var(--color-white);
}

.hero-instalar-app button.icone-outline:hover {
  background-color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
  color: var(--color-white);
}

.cabaz-controlado {
  background-color: var(--color-cabaz-controlado);
  display: none; /*alteração 31-01-2024*/
}

.cabaz-controlado .container {
  max-width: 1370px;
  margin: 0 auto;
  padding: 0 30px;
}

.cabaz-controlado .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cabaz-controlado .column {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 50%;
          flex: 1 0 50%;
  max-width: 50%;
  padding: 0 15px;
  text-align: left;
  margin-bottom: 0;
}

.cabaz-controlado .col-text {
  padding: 100px 0px 100px 0;
  width: 100%;
  max-width: 100%;
}

.cabaz-controlado .col-image {
  padding: 100px 0 100px 0;
  width: 100%;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.cabaz-controlado button.outline {
  margin: 0;
  margin-bottom: 10px;
  margin-top: 20px;
}

.cabaz-controlado button.rounded {
  border-radius: 50px;
  padding: 15px 30px 15px 30px;
  font-size: 32px;
  margin: 20px 0 60px 0;
  text-transform: uppercase;
}

.cabaz-controlado button.rounded:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
  border-color: var(--color-secondary);
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.cabaz-btn {
  background-color: var(--color-primary) !important;
  color: var(--color-white) !important;
  border: 2px solid var(--color-primary) !important;
  margin: 40px 0 40px 0 !important;
}

.cabaz-btn:hover {
  background-color: var(--color-secondary) !important;
  color: var(--color-white) !important;
  border: 2px solid var(--color-secondary) !important;
}

.cabaz-controlado img {
  display: block;
  width: 100%;
  max-width: 400px;
  height: auto;
}

.cabaz-controlado h4 {
  font-weight: 600;
  font-style: normal;
  color: var(--color-cabaz-controlado-text);
  max-width: 540px;
}

.link-cabaz {
  font-weight: 700;
  text-decoration: none;
  color: var(--color-cabaz-controlado-text);
}

.link-cabaz:hover {
  text-decoration: underline;
}

.buttons-app-desktop {
  display: none; /*alteração 31-01-2024*/
}

.buttons-app-mobile {
  display: none;
}


/* TEXT PAGE */

.text-page {
  background-color: var(--color-white);
}

.text-page .container {
  max-width: 1370px;
  margin: 0 auto;
  padding: 100px 30px;
}

.text-page .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.text-page .column {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 50%;
          flex: 1 0 50%;
  max-width: 50%;
  padding: 0 15px;
  text-align: left;
  margin-bottom: 30px;
}

.text-page .col-text {
  /*padding: 100px 0px 100px 0;*/
  width: 100%;
  max-width: 100%;
}

.text-page .col-image {
  padding: 100px 0 100px 0;
  width: 100%;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.text-page h3 {
  line-height: 1.3;
  color: var(--color-primary);
  margin-bottom: 30px;
  max-width: 1080px;
}

.text-page h4 {
  line-height: 1.3;
  color: var(--color-black);
  margin-bottom: 20px;
}

.text-page h5 {
  line-height: 1.3;
  color: var(--color-black);
  margin-bottom: 20px;
}

.text-page p {
  text-align: left;
  margin-bottom: 20px;
  font-size: 18px;
}

.text-link {
  font-weight: 700;
  text-decoration: none;
  color: var(--color-cabaz-controlado-text);
}

.text-link:hover {
  text-decoration: underline;
}

.text-page ul {
  margin-bottom: 20px;
  padding: 0 20px;
  font-size: 18px;
}

.text-page li {
  margin-bottom: 10px;
}

.bold-underline {
  font-weight: 600 !important;
  text-decoration: underline !important;
}

table {
  border-collapse: collapse;
  width: 100%;
}

table p {
  text-align: center !important;
  font-size: 16px !important;
}

th {
  border: 1px solid #dddddd;
  text-align: center;
  padding: 15px;
  background-color: var(--color-primary);
  color: var(--color-white);
}

td {
  border: 1px solid #dddddd;
  text-align: center;
  padding: 15px;
}

tr:nth-child(even) {
  background-color: #f2f2f2;
}

h1 {
  text-align: center;
}


/* RESPONSIVE */

@media screen and (max-width: 1365px) {
  h1 {
    font-size: 92px;
    line-height: 1;
  }

  .new-section h1 {
    font-size: 92px;
  }
  
  h2 {
    font-size: 42px;
    line-height: 1.3;
  }

  .new-section h2 {
    font-size: 40px;
  }

  h3 {
    font-size: 36px;
    line-height: 1.3;
  }

  .title-font {
    font-size: 42px;
  }

  h4 {
    font-size: 32px;
    line-height: 1.3;
  }
  
  p {
    font-size: 20px;
    line-height: 1.3;
  }

  .column p {
    margin-top: 20px;
    font-size: 18px;
  }

  .section p {
    font-size: 18px;
  }

  .hero-text {
    max-width: 660px;
  }

  button.primary {
    padding: 15px 35px 15px 35px;
    border-radius: 50px;
    font-size: 32px;
    margin: 30px 0;
  }

  .slide-image {
    max-width: 50vw;
  }

  .slide-text {
    max-width: 480px;
  }

  .hero-content {
    height: 660px;
  }

  .hero-image img {
    max-height: 660px;
  }

}

@media screen and (max-width: 1199px) {
  h1 {
    font-size: 76px;
    line-height: 1;
  }

  .new-section h1 {
    font-size: 76px;
  }
  
  h2 {
    font-size: 36px;
    line-height: 1.3;
  }

  .new-section h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 34px;
    line-height: 1.2;
  }

  .title-font {
    font-size: 36px;
  }

  h4 {
    font-size: 30px;
    line-height: 1.3;
  }
  
  p {
    font-size: 18px;
    line-height: 1.3;
  }

  .text-page ul {
    font-size: 16px;
    line-height: 1.3;
  }

  .column p {
    margin-top: 20px;
    font-size: 16px;
  }

  .section p {
    font-size: 16px;
  }

  .hero-text {
    max-width: 520px;
  }

  .hero-content {
    height: 650px;
  }

  .hero-image img {
    max-height: 680px;
  }

  button.primary {
    font-size: 28px;
  }

  .new-section button.rounded {
    font-size: 28px;
  }

  .section button.rounded {
    font-size: 28px;
  }

  .cabaz-controlado button.rounded {
    font-size: 28px;
  }

  .slide-image {
    max-width: 50vw;
  }

  .slide-text {
    max-width: 390px;
  }

  .text-page .container {
    padding: 70px 30px;
  }

}

@media screen and (max-width: 1079px) {
  h1 {
    font-size: 72px;
    line-height: 1;
  }

  .new-section h1 {
    font-size: 72px;
  }
  
  h2 {
    font-size: 32px;
    line-height: 1.3;
  }

  .new-section h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 28px;
    line-height: 1.3;
  }

  .title-font {
    font-size: 34px;
  }
  
  p {
    font-size: 18px;
    line-height: 1.3;
  }

  .hero-text {
    max-width: 480px;
  }

  .hero-content {
    height: 600px;
  }

  .buttons {
    margin-top: 0px;
    margin-left: -8px;
  }

  button.primary {
    font-size: 24px;
  }

  .new-section button.rounded {
    font-size: 24px;
  }

  .section button.rounded {
    font-size: 24px;
  }

  .cabaz-controlado button.rounded {
    font-size: 24px;
  }

  .slide-image {
    max-width: 48vw;
  }

  .slide-text {
    max-width: 380px;
  }

  footer .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    margin: 0px 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  footer .column {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
    max-width: 100%;
    padding: 0 0;
    margin-bottom: 30px;
    text-align: center;
  }

  footer .column:first-child {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
    max-width: 100%;
    padding: 0 0;
    margin-bottom: 30px;
    text-align: center;
  }

  footer .column:last-child {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
    max-width: 100%;
    padding: 0 15px;
    margin-bottom: 0px;
    text-align: center;
  }

  footer .column p {
    text-align: center;
    margin-bottom: 0;
  }

  .hero-instalar-app .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0 0;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .hero-instalar-app .column {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
    padding: 0;
    margin-bottom: 30px;
  }

  .hero-instalar-app .column:nth-child(2) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }

  .qrcode-col {
    display: none;
  }

  .hero-text-instalar-app h4, 
  .hero-text-instalar-app p {
    text-align: center;
    max-width: 600px;
    margin-bottom: 30px;
  }

  .hero-instalar-app .column img, .hero-instalar-app .column video {
    max-width: 420px !important;
  }

  .buttons-app-desktop {
    display: none !important;
  }
  
  .buttons-app-mobile {
    display: block !important;
    padding: 20px 0 10px 0 !important;
  }

  button.rounded .icon img {
    padding: 0;
  }

  .text-page .container {
    padding: 50px 30px;
  }

  /*.text-page .col-text {
    padding: 70px 0px 70px 0;
  }
  
  .text-page .col-image {
    padding: 70px 0 70px 0;
  }*/

}

@media screen and (max-width: 989px) {
  .hero {
    padding: 10px 0 0 0;
  }

  h1 {
    font-size: 62px;
    line-height: 1;
  }

  .hero-text h1 {
    margin-bottom: 10px;
  }

  .new-section h1 {
    font-size: 62px;
  }
  
  h2 {
    font-size: 28px;
    line-height: 1.3;
  }

  .hero-text h2 {
    margin-bottom: 20px;
  }

  .new-section h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 28px;
    line-height: 1.3;
  }

  .title-font {
    font-size: 30px;
  }

  h4 {
    font-size: 26px;
    line-height: 1.3;
  }

  p {
    font-size: 16px;
    line-height: 1.3;
  }

  .hero-text p {
    margin-bottom: 10px;
    margin-top: 20px;
  }

  .hero-text {
    max-width: 410px;
  }

  .hero-content {
    height: 580px;
  }

  button.primary {
    padding: 15px 30px 15px 30px;
    font-size: 22px;
    margin: 25px 0;
  }

  .new-section button.rounded {
    font-size: 22px;
  }

  .section button.rounded {
    font-size: 22px;
  }

  .cabaz-controlado button.rounded {
    font-size: 22px;
  }

  .slide {
    padding-top: 70px;
  }

  .slide-image {
    max-width: 46vw;
  }

  .slide-text {
    max-width: 380px;
  }

  .new-section img,
  .new-section video {
    max-width: 50vw;
  }

  .new-section .col-text {
    padding: 100px 20px 50px 0;
  }

  .new-section video {
    margin-bottom: 3.5em;
  }

  .copyright {
    padding: 40px 0;
  }

  .copyright .row {
    margin: 0 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .copyright .column p {
    margin-top: 0px;
    margin-left: 0px;
    text-align: center;
    margin-bottom: 0px;
  }

  .links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 30px;
  }

  .logo-deco-pro-teste img {
    display: none;
  }

  .hero-instalar-app .buttons {
    padding-top: 0px;
    margin-top: 0;
  }

  .cabaz-controlado .col-text {
    padding: 70px 0px 0px 0;
    width: 100%;
    max-width: 600px;
    text-align: center;
  }

  .cabaz-controlado .col-image {
    padding: 0px 0 70px 0;
    width: 100%;
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .cabaz-controlado .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .cabaz-controlado button.rounded {
    margin: 20px 0;
  }

  .cabaz-controlado h4 {
    max-width: 100%;
  }

  .registar {
    display: none;
  }

  .entrar {
    padding: 10px 12px 12px 12px !important; 
  }

  .text-entrar {
    display: none;
  }
  
}

@media screen and (max-width: 799px) {
  h1 {
    font-size: 72px;
    line-height: 1;
  }

  .new-section h1 {
    font-size: 72px;
  }

  h2 {
    font-size: 32px;
    line-height: 1.3;
  }

  .new-section h2 {
    font-size: 32px;
  }

  .text-page h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 28px;
    line-height: 1.3;
  }

  .text-page h3 {
    font-size: 24px;
    line-height: 1.3;
    max-width: 100%;
  }

  .section h3 {
    font-size: 32px;
  }

  .title-font {
    font-size: 52px;
    padding-top: 30px;
  }

  h4 {
    font-size: 26px;
    line-height: 1.3;
  }

  .text-page h4 {
    font-size: 20px;
    line-height: 1.3;
  }

  .text-page h5 {
    font-size: 18px;
    line-height: 1.3;
  }

  h5 {
    font-size: 20px;
    line-height: 1.3;
  }

  p {
    font-size: 18px;
    line-height: 1.3;
  }

  .column p {
    margin-top: 0px;
    margin-bottom: 10px;
    margin-left: 0px;
    text-align: center;
    font-size: 16px;
  }

  .header-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        /*-ms-flex-direction: column;
            flex-direction: column;*/
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: center;
  }

  .buttons {
    margin-top: 20px;
  }

  .buttons .terminar-secao {
    position: absolute;
    right: 20px ;
    top: 30px;
    margin-top: 0 !important;
  }

  .hero {
    padding: 0;
  }

  .hero-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
  }

  .hero-text {
    width: 100%;
    max-width: 799px;
  }

  .hero-content .hero-image {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .hero-image {
    padding-left: 0px;
    text-align: center;
  }

  .hero-image img {
    max-width: 100%;
    height: auto;
    display: block;
    max-height: calc(100vh - 380px);
  }

  .column {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
    max-width: 100%;
  }

  .section {
    padding: 70px 0;
  }

  footer {
    padding: 40px 0 ;
  }

  .slide .slide-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding: 0 20px;
    height: -webkit-fill-available;
  }

  .slide-text {
    padding: 30px 50px 0 50px;
    text-align: center;
    max-width: 90%;
  }

  .slider-container {
    display: block;
    max-height: 90vh; /* Defina a altura fixa desejada aqui */
    overflow: hidden;
  }

  .new-section .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .new-section .col-text {
    padding: 70px 0px 0 0;
    width: 100%;
    max-width: 100%;
  }

  .new-section .col-image {
    padding: 30px 0 30px 0;
    width: 100%;
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .new-section button.rounded {
    margin: 20px 0;
  }

  .section button.rounded {
    margin: 20px 0;
  }

  .slide-image {
    max-width: 80vw;
  }

  footer .column p {
    font-size: 16px;
  }

  footer p a {
    font-size: 20px;
  }

  .hero-instalar-app {
    background-color: var(--color-white);
    padding: 0px 0 30px 0;
  }

  .title-carousel {
    margin: 0px 0;
    padding: 0 40px;
  }

  .entrar {
    position: absolute !important;
    right: 22px !important;
    top: 30px !important;
  }

  .logo img {
    height: auto;
    width: 196px;
    margin-right: 0px;
  }

  .logo-preco-fresco {
    height: auto;
    width: 192px !important;
    margin: 0px 0px 3px 30px;
  }

  .hero-text {
    margin: 0px 0 0 0;
  }

  .new-section video {
    max-width: 80vw;
  }

  .text-page .container {
    padding: 20px 15px 50px 15px;
  }

  /*.text-page .col-text {
    padding: 20px 0px 50px 0;
  }
  
  .text-page .col-image {
    padding: 20px 0 50px 0;
  }*/

  table p {
    text-align: center !important;
    font-size: 15px !important;
  }

  .text-page p {
    text-align: left;
  }

  th {
    padding: 8px;
  }
  
  td {
    padding: 8px;
  }

}


@media screen and (max-width: 640px) {
  .logo {
    display: flex;
    flex-direction: column;
  }

  .logo-preco-fresco {
    height: auto;
    width: 220px ;
    margin: 20px 0px 0px 0px;
    border-left: none;
    padding-left: 0px;
  }

  /*.terminar-secao {
    position: absolute;
    right: 22px ;
    top: 30px;
  }*/
  
}

@media screen and (max-width: 540px) {
  h1 {
    font-size: 50px;
    line-height: 1;
  }

  .new-section h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 22px;
    line-height: 1.2;
  }

  .new-section h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
    line-height: 1.2;
  }

  .title-font {
    font-size: 40px;
    padding-top: 30px;
  }

  h4 {
    font-size: 22px;
    line-height: 1.2;
  }

  h5 {
    font-size: 20px;
    line-height: 1.2;
  }

  p {
    font-size: 16px;
    line-height: 1.3;
  }

  .header-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .hero {
    padding: 0;
  }

  .hero-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
  }

  .hero-text {
    width: 100%;
    max-width: 799px;
  }

  .hero-content .hero-image {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .hero-image {
    padding-left: 0px;
    text-align: center;
  }

  .hero-image img {
    max-width: 100%;
    height: auto;
    display: block;
    max-height: calc(100vh - 380px);
  }

  .hero .primary {
    margin: 20px 0 30px 0;
    width: 100%;
  }

  button.primary {
    font-size: 20px;
  }

  .new-section button.rounded {
    font-size: 20px;
  }

  .section button.rounded {
    font-size: 20px;
  }

  .cabaz-controlado button.rounded {
    font-size: 20px;
  }

  button.rounded {
    font-size: 16px;
  }

  button.rounded .icon img {
    width: 16px !important;
    height: 15px !important;
  }

  button.rounded .icon {
    bottom: -2px;
  }

  .store-button img {
    max-width: 140px;
  }

  .section h2 {
    margin: 0 10px 40px 10px;
  }

  .column p::before {
    width: 14px;
    height: 14px;
    margin-top: -3px;
  }

  .slide-text {
    padding: 30px 20px 0 20px;
  }

  .slide {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .new-section img {
    max-width: 100%;
  }

  .cabaz-controlado img {
    max-width: 100%;
  }

  footer button.outline-white {
    margin-bottom: 10px;
    margin-top: 10px;
  }

  .section h3 {
    margin: 10px 0 40px 0;
  }

  .title-carousel {
    margin: 0px 0;
    padding: 0 25px;
  }

  .slide {
    padding-top: 50px;
  }

  .slider-container {
    max-height: 70vh; /* Defina a altura fixa desejada aqui */
  }

  .prev-slide, .next-slide {
    top: 55%;
  }

  header.instalar-app {
    padding: 30px 0 10px 0;
  }

}

@media screen and (max-width: 480px) {
  .slider-container {
    max-height: 92vh; /* Defina a altura fixa desejada aqui */
  }

  /*.terminar-secao {
    position: relative;
    right: 0;
    top: 5px;
  }*/

  table p {
    font-size: 13px !important;
  }

}

@media screen and (max-width: 420px) {
  .slider-container {
    max-height: 81vh; /* Defina a altura fixa desejada aqui */
  }

}

@media screen and (max-width: 440px) and (max-height: 740px) {
  .slider-container {
    max-height: 90vh; /* Defina a altura fixa desejada aqui */
  }

}

@media screen and (max-width: 411px) and (max-height: 820px) {
  .slider-container {
    max-height: 92vh; /* Defina a altura fixa desejada aqui */
  }

}

@media screen and (max-width: 390px) {
  h1 {
    font-size: 45px;
    line-height: 1;
  }

  .new-section h1 {
    font-size: 45px;
  }

  .slide-text {
    padding: 25px 0px 0 0px;
  }

  button.outline-white {
    margin-bottom: 0px;
    margin-top: 20px;
  }

  .title-font {
    font-size: 36px;
    padding-top: 20px;
  }

  .slider-container {
    max-height: 75vh; /* Defina a altura fixa desejada aqui */
  }

}

@media screen and (max-width: 390px) and (max-height: 844px) {
  .slider-container {
    max-height: 85vh; /* Defina a altura fixa desejada aqui */
  }

}

@media screen and (max-width: 375px) {
  .slider-container {
    max-height: 93vh; /* Defina a altura fixa desejada aqui */
  }

}

@media screen and (max-width: 360px) {
  h1 {
    font-size: 42px;
    line-height: 1;
  }

  .new-section h1 {
    font-size: 42px;
  }

  .hero-image img {
    max-height: calc(100vh - 300px);
  }

  .social-button {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  .slide {
    padding-top: 30px;
  }

  .slider-container {
    max-height: 81vh; /* Defina a altura fixa desejada aqui */
  }

  .prev-slide, .next-slide {
    top: 60%;
  }

  button.outline-white {
    margin-bottom: 5px;
    margin-top: 15px;
  }

  button.icone-outline {
    margin: 8px 8px;
  }

  .entrar {
    margin: 0px !important;
  }

  /*.logo img {
    width: 210px;
  }*/

}

@media screen and (max-width: 360px) and (max-height: 720px) {
  .slider-container {
    max-height: 100vh; /* Defina a altura fixa desejada aqui */
  }

}

@media screen and (max-width: 340px) and (max-height: 680px) {
  .slider-container {
    max-height: 100vh; /* Defina a altura fixa desejada aqui */
  }

}

@media screen and (max-width: 1023px) and (max-height:599px) and (orientation: landscape) {
  .hero-content {
    height: auto;
  }

  .slider-container {
    display: block;
    max-height: 250vh;
    overflow: hidden;
  }

  .hero-image img {
    max-height: 80vw;
  }

}


/* ANIMATION */

.zoom-in {
  -webkit-animation-name: zoomIn;
          animation-name: zoomIn;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }

}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }

}