/*  ==========================================================================
    Table of Contets
    ==========================================================================
    
    1.0 Common Styles
    2.0 Header Section
    3.0 Initial carousel
    4.0 About Section
    5.0 Service Section
    6.0 Carousel Section
    7.0 CTA Section
    14.0 Footer Section
    15.0 Scrool To Top

    ==========================================================================
    Portfolio Template Version 0.1
    ========================================================================== */

@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,500,600,700|Oswald:400,500,600,700');
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

/*  ==========================================================================
    Common Styles
    ========================================================================== */
* {
  padding: 0;
  margin: 0;
}

:root {
  --whatsapp: #4caf50;
  --background-color: #1DAA61;
  --dark-background: #0F6134;
  --light-blue: #dcecec;
  --primary-color: #fff;
  --secondary-color: #1daa61cd;
  --text-color: #000;
  --text-light: #f0f0f0;
  --dark-blue: #082e63;
  --blue: #28a1c5;
  --light-background: #4ccb84;
  --grey: #7f7f7f;
}

html {
  color-scheme: light;
}

body {
  background-color: var(--background-color);
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  line-height: 23px;
  color: #777;
  font-weight: 400;
  position: relative;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  color: #333;
}

h1 {
  font-size: 40px;
  line-height: 1.2;
  margin: 0 0 10px;
  color: var(--primary-color);
  letter-spacing: -0.05em;
}

h2 {
  font-size: 32px;
  color: var(--primary-color);
  margin: 0 0 10px;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

h3,
h4 {
  margin: 0 0 10px;
  line-height: 1.7;
  color: var(--primary-color);
  letter-spacing: -0.01em;
}

h3 {
  font-size: 18px;
}

h4 {
  font-size: 16px;
}

h5,
h6 {
  font-size: 14px;
  margin: 0 0 10px;
}

img {
  border: none;
  outline: none;
  max-width: 100%;
}

ul {
  display: block;
  list-style: none;
  padding: 0;
  margin: 0;
}

p {
  font-size: 15px;
  margin-bottom: 15px;
}

a,
a:hover {
  text-decoration: none;
}

a:focus {
  outline: 0;
  text-decoration: none;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #ddd !important;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  /* Firefox 18- */
  color: #ddd !important;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: #ddd !important;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #ddd !important;
}

button {
  border: none;
  background: none;
}

/* Helper Class */
.padding {
  padding: 100px 0;
}

.bg-white {
  background-color: var(--primary-color);
}

.mb-20 {
  margin-bottom: 20px;
}

.pd-15 {
  padding: 15px;
}

.pdl-80 {
  padding-left: 80px;
}

.align-center {
  text-align: center;
}

@-webkit-keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0)
  }

  100% {
    -webkit-transform: scale(1.0);
    opacity: 0;
  }
}

@keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  100% {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
    opacity: 0;
  }
}

/* Transition Effect */
a,
a:hover,
img,
.form-control,
.form-control:hover,
button {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

/* ==========================================================================
   Preloader Section
   ========================================================================== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.spinner-container {
  position: relative;
  width: 120px;
  height: 120px;
}

.spinner-background {
  width: 100%;
  height: 100%;
  border: 2px solid #e0e0e0;
  border-radius: 50%;
  position: absolute;
}

.spinner-main {
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
  border-top: 2px solid var(--background-color);
  border-radius: 50%;
  position: absolute;
  animation: spin 1.5s linear infinite;
}

.spinner-secondary {
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
  border-top: 2px solid var(--light-background);
  border-radius: 50%;
  position: absolute;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

#preloader img {
  position: absolute;
  height: 80px;
  width: auto;
}

/* ==========================================================================
   Header Section
   ========================================================================== */
.header-section {
  background-color: transparent;
  width: 100%;
  height: 80px;
  z-index: 999;
  position: fixed;
  left: 0;
  top: 0;
  padding: 10px 0;
}

.navbar-fixed-top.header-section {
  background-color: var(--light-blue);
  box-shadow: 0px 16px 28px 0px rgba(0, 0, 0, 0.05);
  height: 70px;
  border-bottom: 0;
  padding: 0;
  border-bottom: 1px solid var(--primary-color);
}

.navbar-fixed-top ul.nav>li>a {
  color: var(--text-color);
}

.navbar-fixed-top ul.nav>li>a:hover,
.navbar-fixed-top ul.nav>li>a:focus,
.navbar-fixed-top ul.nav>li.active>a {
  color: var(--secondary-color);
}

.logo-light,
.navbar-fixed-top .logo-light,
.logo-dark,
.header-section {
  transition: all 0.3s ease-in-out;
}

.navbar-brand {
  max-width: 2.8vw;
  min-width: 35px;
}

.navbar {
  border: medium none;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  margin: 0;
  position: relative;
  padding: 0;
}

/* Nav Menu */
#navbar {
  z-index: 999;
  padding: 0 15px;
}

ul.nav>li>a {
  color: var(--primary-color);
  font-family: 'Mulish', sans-serif;
  display: inline-block;
  vertical-align: middle;
  padding: 0 20px;
  letter-spacing: 1px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 70px;
  z-index: 1;
}

ul.nav>li>a:hover,
ul.nav>li>a:focus,
ul.nav>li>a.active {
  background: none;
  color: var(--primary-color);
  opacity: 1;
}

/*Mobile Menu */
.menu-wrap {
  position: relative;
}

.slicknav_menu {
  background: none;
  padding: 4px 0;
  display: none;
  width: 100%;
  position: absolute;
  right: 0;
  top: 0;
}

.slicknav_nav {
  background-color: var(--primary-color);
}

.slicknav_btn {
  background-color: transparent;
  margin: 17px 5px 19px;
}

.slicknav_nav .slicknav_row:hover,
.slicknav_nav .slicknav_row,
.slicknav_nav a,
.slicknav_nav a:hover {
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav a {
  padding: 10px 15px;
  margin: 0;
  color: #333;
}

.slicknav_nav a .caret {
  display: none;
}

.slicknav_nav ul {
  margin: 0;
}

.slicknav_nav ul li a {
  padding-left: 30px;
  font-size: 12px;
}

.slicknav_nav .slicknav_row:hover,
.slicknav_nav a:hover {
  background-color: transparent;
  color: #333;
}

.logo-com-nome {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-com-nome img {
  max-width: 35px;
  height: auto;
}

.nome-logo {
  font-size: 25px;
  color: var(--blue);
  font-family: 'Open Sans', sans-serif;
}

.nome-logo span {
  color: var(--secondary-color);
}

/* ==========================================================================
   Initial carousel
   ========================================================================== */

.initial-carousel {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.initial-carousel-slide {
  display: flex;
  width: calc(100% * 3);
  height: 100%;
  will-change: transform;
  transition: transform 1s ease-in-out;
}

.initial-carousel video {
  pointer-events: none;
  user-select: none;
}

.initial-carousel-slide img,
.initial-carousel-slide video {
  flex: 0 0 100%;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.initial-carousel-button {
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background-color: #0000001c;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  width: 4vw;
  height: 4vw;
  min-width: 30px;
  min-height: 30px;
  padding: 0%;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.initial-carousel-button.prev {
  left: 10px;
}

.initial-carousel-button.next {
  right: 10px;
}

.initial-carousel-button:hover {
  background-color: transparent;
}

.initial-carousel-button:focus {
  outline: none;
}

/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .initial-carousel {
    height: 50vh;
  }

  .initial-carousel-button {
    width: 6vw;
    height: 6vw;
  }

  .initial-carousel-button.prev {
    left: 3vw;
  }

  .initial-carousel-button.next {
    right: 3vw;
  }
}

/* Small Devices, Tablets */
@media only screen and (min-width: 767px) and (max-width: 991px) {
  .initial-carousel {
    height: 70vh;
  }

}

/* ==========================================================================
   About Section
   ========================================================================== */


@-moz-keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    -moz-transform: translateY(0);
  }

  40% {
    -moz-transform: translateY(-20px);
  }

  60% {
    -moz-transform: translateY(-10px);
  }
}

@-o-keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    -o-transform: translateY(0);
  }

  40% {
    -o-transform: translateY(-20px);
  }

  60% {
    -o-transform: translateY(-10px);
  }
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-20px);
  }

  60% {
    transform: translateY(-10px);
  }
}

.about-section {
  padding-top: 10%;
  padding-bottom: 5%;
}

.about-wrap {
  display: flex;
  align-items: center;
}

.about-content {
  padding-right: 40px;
}

.about-section h2 {
  color: var(--text-color);
}

.phone-about {
  position: relative;
  width: 40%;
  height: 600px;
}

.phone-content {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 290px;
  height: 100%;
}

.phone-content .img-phone {
  position: absolute;
  max-height: 100%;
  z-index: 1;
}

.phone-sobre-app {
  position: relative;
  z-index: 2;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 25px;
}

.message-left {
  align-self: flex-start;
  height: auto;
  width: 200px;
  margin-bottom: 5%;
  opacity: 1;
  transform: translateX(0%);
}

.message-right {
  align-self: flex-end;
  margin-bottom: 3%;
  opacity: 1;
  transform: translateX(0%);
}

.audio-message {
  height: auto;
  width: 220px;
  transition-delay: 0s;
}

.second-message {
  min-width: 150px;
  transition-delay: 0.2s;
}


@keyframes slideUpBoleta {
  from {
    margin-left: 0px;
    width: 200px;
    box-shadow: none;
  }

  to {
    margin-left: -20px;
    width: 220px;
    box-shadow: 0 0px 6px #00000061;
  }
}

.audio-blur {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: blur(0px);
  padding: 0px;
}

.evidence-audio {
  display: none;
  position: absolute;
  z-index: 2;
  bottom: 70px;
  right: 25px;
  height: auto;
  opacity: 0;
  animation: slideUp 2s ease-out forwards;
}

.evidence-audio img {
  width: 200px;
  height: auto;
  transition: transform 2s ease-out;
  transform: scale(2);
}

.evidence-audio.active img {
  transform: scale(1.8);
}

@keyframes slideDown {
  from {
    bottom: 250px;
    opacity: 1;
  }

  to {
    bottom: 70px;
    opacity: 0;
  }
}

@keyframes slideUp {
  from {
    bottom: 70px;
    opacity: 0;
  }

  to {
    bottom: 250px;
    opacity: 1;
  }
}

.animate-slide.visible {
  opacity: 1;
  transform: translateX(0);
}

.scrollable-container {
  display: flex;
  flex-direction: column-reverse;
  padding: 2px;
  max-height: 460px;
  max-width: 90%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow-y: scroll;
  overflow-x: hidden;
}

.scrollable-container::-webkit-scrollbar {
  width: 5px;
}

.scrollable-container::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

.scrollable-container::-webkit-scrollbar-track {
  background: var(--text-light);
}

.scrollable-container {
  overflow-y: scroll;
  scroll-behavior: smooth;
  /* Transição suave no scroll */
}

#phone-about {
  display: none;
  justify-content: center;
  width: 40%;
}

#phone-about2 {
  display: none;
  justify-content: center;
  width: 40%;
}

#phone-about2 img,
#celular-boleta img,
#phone-about3 img,
#phone-about .phone-content {
  margin-left: 150%;
  opacity: 0;
  width: 290px;
  height: 100%;
  transition: margin-left 1s ease-out, opacity 1s ease-out;
}

#phone-about.show,
#phone-about2.show,
#celular-boleta.show,
#phone-about3.show {
  display: flex;
}

#phone-about .phone-content.animate {
  margin-left: -60%;
  opacity: 1;
}

#phone-about2 img.animate,
#celular-boleta img.animate,
#phone-about3 img.animate {
  margin-left: 0;
  opacity: 1;
}

#celular-boleta {
  display: none;
  justify-content: center;
  width: 40%;
}

#phone-about3 {
  display: none;
  justify-content: center;
  width: 40%;
}

/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) and (max-width: 767px) {

  #about {
    display: flex;
    flex-direction: column;
    position: relative;

  }

  .about-content,
  .phone-about {
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 0px;
  }

  #phone-about,
  .phone-about,
  #phone-about2,
  #celular-boleta,
  #phone-about3 {
    width: 100%;
    margin-top: 10%;
    height: 500px;
  }

  #phone-about .phone-content.animate,
  .phone-content,
  #phone-about2 img,
  #celular-boleta img,
  #phone-about3 img {
    width: 240px;
  }

  #phone-about .phone-content.animate {
    margin-left: -40%;
  }

  .evidence-audio.active img {
    transform: scale(1.4);
  }

  .scrollable-container {
    max-height: 380px;
  }

  .message-left {
    width: 150px;
  }
}

/* Small Devices, Tablets */
@media only screen and (min-width: 768px) and (max-width: 991px) {

  #about,
  .about-wrap {
    display: flex;
    flex-direction: column;
    position: relative;
  }

  .about-heading h2 {
    margin-top: -5%;
    margin-bottom: -20%;
  }

  .about-content {
    padding: 0px;
    width: 0px;
  }

  #phone-about,
  .phone-about,
  #phone-about2,
  #celular-boleta,
  #phone-about3 {
    margin-top: 5%;
    width: 50%;
    height: 500px;
  }

  #phone-about .phone-content.animate,
  .phone-content,
  #phone-about2 img,
  #celular-boleta img,
  #phone-about3 img {
    width: 240px;
  }

  #phone-about .phone-content.animate {
    margin-left: -35%;
  }

  .scrollable-container {
    max-height: 380px;
  }

  .message-left {
    width: 150px;
  }

}

/* medium screens */
@media only screen and (min-width: 992px) and (max-width: 1200px) {

  #about,
  .about-wrap {
    justify-content: center;
  }

  .about-content {
    display: flex;
    justify-content: center;
  }

  #phone-about,
  .phone-about,
  #phone-about2,
  #celular-boleta,
  #phone-about3 {
    width: 50%;
    margin-top: 8%;
    height: 500px;
  }

  #phone-about .phone-content.animate,
  .phone-content,
  #phone-about2 img,
  #celular-boleta img,
  #phone-about3 img {
    width: 240px;
  }

  .scrollable-container {
    max-height: 380px;
  }

  .message-left {
    width: 150px;
  }

}

/* medium screens */
@media only screen and (min-width: 992px) and (max-width: 1200px) {

  #about,
  .about-wrap {
    justify-content: center;
  }

  .about-content {
    display: flex;
    justify-content: center;
  }

  #phone-about,
  .phone-about,
  #phone-about2,
  #celular-boleta,
  #phone-about3 {
    width: 50%;
    height: 500px;
  }

  #phone-about .phone-content.animate,
  .phone-content,
  #phone-about2 img,
  #celular-boleta img,
  #phone-about3 img {
    width: 240px;
  }

  #phone-about .phone-content.animate {
    margin-left: -45%;
  }

  .scrollable-container {
    max-height: 380px;
  }

  .message-left {
    width: 150px;
  }

}

/* ==========================================================================
   onTax Flux
   ========================================================================== */
.container-flux-phone {
  padding-top: 10%;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  background-color: var(--primary-color);
  box-shadow: inset 0 10px 10px -10px var(--text-color);
  align-items: center;
}

.titulo-mensagem {
  font-family: 'Mulish', sans-serif;
  text-align: center;
  padding-bottom: 20px;
}

.linha-verde {
  color: var(--whatsapp);
  font-size: 40px;
  margin: 0;
}

.linha-verde strong {
  font-weight: 700;
}

.linha-azul {
  font-size: 35px;
  margin: 25px 0 0;
  background: linear-gradient(to right, #041740, #3371e6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  line-height: 1.2;
}

.linha-azul strong {
  font-weight: 700;
}

.phones-container-flux {
  display: flex;
  width: 70%;
  height: auto;
  justify-content: center;
  align-items: center;
  padding: 70px 0px 70px 0px;
}

#phone-left,
#phone-right {
  width: auto;
  height: 660px;
  margin: -3%;
}

.phone-flux {
  position: relative;
  height: 690px;
  width: auto;
}

.phone-content-flux {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 100%;
}

.phone-content-flux #phone-center {
  position: absolute;
  max-height: 100%;
  z-index: 1;
}

.phone-app-flux {
  position: relative;
  z-index: 2;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.scroll-message-2,
.scroll-message-1,
.scroll-message-left,
.scroll-message-right {
  margin-bottom: 5%;
}

.scroll-message-1 {
  max-height: 15px;
  width: auto;
}

.scroll-message-2 {
  max-height: 50px;
  width: auto;
}

.scroll-message-left {
  align-self: flex-start;
  opacity: 0;
  transform: translateX(-50%);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.scroll-message-right {
  align-self: flex-end;
  opacity: 0;
  transform: translateX(50%);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.scroll-message-3 {
  max-width: 175px;
  height: auto;
}

.scroll-message-4 {
  max-width: 230px;
}

.scroll-message-5 {
  max-width: 180px;
  height: auto;
}

.scroll-message-6 {
  max-width: 230px;
  margin-top: -4%;
}

.show-message {
  opacity: 1;
  transform: translateX(0%);
}

.scrollable-container-flux {
  padding: 15px 5px 0px 5px;
  max-height: 520px;
  max-width: 90%;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow-y: scroll;
  overflow-x: hidden;
}

.scrollable-container-flux::-webkit-scrollbar {
  width: 5px;
}

.scrollable-container-flux::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

.scrollable-container-flux::-webkit-scrollbar-track {
  background: var(--text-light);
}

.scrollable-container-flux {
  overflow-y: scroll;
  scroll-behavior: smooth;
  /* Transição suave no scroll */
}

.container-flux-phone h2 {
  font-size: 50px;
  color: var(--text-color);
}

.container-flux-phone .whatsapp-message-button {
  margin: 0px 0px 70px 0px;
}

/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .phones-container-flux {
    width: 95%;
    height: 500px;
  }

  #phone-center {
    height: 430px;
    width: auto;
  }

  .phone-flux {
    height: 430px;
    margin: 15px;
    width: auto;
  }

  .phone-content-flux {
    width: 210px;
  }

  #phone-left,
  #phone-right {
    width: auto;
    height: 380px;
    overflow: hidden;
    object-fit: cover;
  }

  .container-flux-phone h2 {
    font-size: 30px;
    padding: 5px;
    text-align: center;
  }

  .phone-app-flux {
    padding: 10px 5px 0px 5px;
  }

  .scrollable-container-flux {
    max-height: 335px;
    top: 50%;
    left: 50%;
  }

  .scroll-message-1 {
    max-height: 10px;
    width: auto;
  }

  .scroll-message-2 {
    max-height: 35px;
    height: auto;
  }

  .scroll-message-3 {
    max-height: 20px;
    width: auto;

  }

  .scroll-message-4,
  .scroll-message-6 {
    max-width: 160px;
  }

  .scroll-message-5 {
    max-width: 100px;
    height: auto;
  }

}


/* Small Devices, Tablets */
@media only screen and (min-width: 767px) and (max-width: 991px) {

  .phones-container-flux {
    width: 94%;
    height: 600px;
  }

  #phone-center {
    height: 530px;
    width: auto;
  }

  .phone-flux {
    height: 530px;
    margin: 15px;
    width: auto;
  }

  #phone-left,
  #phone-right {
    width: auto;
    height: 480px;
    margin: -7%;
  }

  .phone-content-flux {
    width: 255px;
  }

  .container-flux-phone h2 {
    font-size: 32px;
    text-align: center;
  }

  .scrollable-container-flux {
    padding: 10px 5px 0px 5px;
    max-height: 410px;
    top: 50%;
    left: 50%;
  }

  .scroll-message-1 {
    max-height: 13px;
    width: auto;
  }

  .scroll-message-2 {
    max-height: 42px;
  }

  .scroll-message-3 {
    max-height: 23px;

  }

  .scroll-message-4,
  .scroll-message-6 {
    max-width: 190px;
  }

  .scroll-message-5 {
    max-width: 100px;
  }

}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-section .about-heading p {
  color: var(--text-color);
}

.about-heading-container {
  min-width: 55vw;
  height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-heading {
  text-align: center;
  margin-bottom: 7vh;
}

.about-heading h2 {
  font-size: 4.5vw;
}

.benefits {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-section a {
  background-color: var(--background-color);
}

.about-section .whatsapp-message-button::before {
  border-top: 25px solid var(--background-color);
}

@media only screen and (min-width: 320px) and (max-width: 767px) {
  .about-heading {
    margin-bottom: 0vh;
  }

  .about-heading h2 {
    font-size: 30px;
  }

  .about-content {
    margin-top: -10%;
  }

  .about-heading-container {
    height: auto;
  }

  #about {
    height: 900px;
  }
}

/* medium screens */
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .about-heading h2 {
    margin-bottom: 0%;
  }

  .about-heading-container {
    min-width: 80vw;
  }

  .about-heading-container {
    height: auto;
  }

  #about {
    height: 1200px;
  }
}

/* medium screens */
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  #about {
    height: 1300px;
  }
}

/* ==========================================================================
   Carousel section
   ========================================================================== */
#products {
  background-color: var(--primary-color);
  position: relative;
  height: 60vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.carousel-section {
  position: relative;
  background-color: #f8f9fa;
  overflow: hidden;
}

.carousel-container {
  display: flex;
  align-items: center;
  padding-left: 30px;
  width: 100%;
  position: relative;
}

.carousel-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 30px;
}

.carousel-item {
  flex: 0 0 340px;
  height: 390px;
  background-color: transparent;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.carousel-item img {
  width: 100%;
  height: 99%;
  border-radius: 50px;
}

.carousel-item p {
  margin-top: 15px;
  font-size: 15px;
  color: var(--text-color);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #00000033;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  width: 4vw;
  height: 4vw;
  min-width: 30px;
  min-height: 30px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
  z-index: 1;
}

.carousel-arrow-right {
  right: 2vw;
}

.carousel-arrow-left {
  left: 2vw;
  display: none;
}

.carousel-arrow:hover {
  background-color: transparent;
}

.carousel-arrow:focus {
  outline: none;
}

/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) and (max-width: 767px) {
  #products::before {
    background-attachment: scroll;
    position: absolute;
    width: 100%;
    height: 50vh;
    transform: translateZ(0);
  }

  .carousel-item {
    flex: 0 0 170px;
    height: 230px;
  }

  .carousel-item p {
    font-size: 13px;
  }

  .carousel-section {
    padding-top: 50px;
    padding-bottom: 50px;
    max-height: 50vh;
  }

  .carousel-container {
    padding-left: 20px;
  }
}

/* Small Devices, Tablets */
@media only screen and (min-width: 767px) and (max-width: 991px) {
  #products::before {
    background-attachment: scroll;
    position: absolute;
    width: 100%;
    height: 50vh;
    transform: translateZ(0);
  }

  .carousel-item {
    flex: 0 0 270px;
    height: 320px;
  }

  .carousel-item p {
    font-size: 13px;
  }

  .carousel-section {
    padding-top: 60px;
    padding-bottom: 60px;
    max-height: 50vh;
  }

  .carousel-container {
    padding-left: 30px;
  }
}

/* medium screens */
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  #products::before {
    background-attachment: scroll;
    position: absolute;
    width: 100%;
    height: 50vh;
    transform: translateZ(0);
  }

  .carousel-section {
    padding-top: 60px;
    padding-bottom: 60px;
    max-height: 50vh;
  }
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.footer-section {
  background-color: var(--dark-background);
  padding: 1rem 0;
  font-family: Arial, sans-serif;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.first-col {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.middle-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  text-align: center;
  gap: 10px;
}

.right-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  text-align: center;
  gap: 10px;
}

.contact-button {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background-color: var(--whatsapp);
  color: white;
  border-radius: 20px;
  font-size: 0.75rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.contact-button:hover {
  background-color: #21ba63;
}

.social-icons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.social-icon i {
  font-size: 1.7rem;
  color: var(--text-light);
  transition: transform 0.2s ease;
}

.social-icon i:hover {
  transform: scale(1.1);
}

.footer-content a,
.footer-content p {
  font-size: 1rem;
  color: var(--text-light);
  margin: 4px 0;
  text-decoration: none;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background-color: var(--text-light);
  margin: 20px 0;
}

.footer-bottom {
  text-align: center;
  font-size: 0.7rem;
  color: var(--text-light);
}

@media only screen and (min-width: 300px) and (max-width: 750px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .first-col,
  .middle-col,
  .certifications-container {
    width: 100%;
    margin: 0;
    align-items: center;
  }

  .middle-col {
    padding: 1rem 0;
  }

  .certifications-container {
    text-align: center;
  }

  .certifications-group {
    flex-wrap: wrap;
    justify-content: center;
  }

  .social-container {
    margin-bottom: 1rem;
  }
}

@media only screen and (min-width: 751px) and (max-width: 1200px) {
  .footer-content {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }

  .first-col {
    flex: 1;
    align-items: flex-start;
  }

  .middle-col {
    flex: 2;
    text-align: center;
    align-items: center;
    margin-left: 0;
  }

  .certifications-container {
    flex: 1;
    align-items: flex-end;
    text-align: right;
    margin-right: 0vw;
    margin-top: 0vh;
  }

  .certifications-group {
    justify-content: flex-end;
  }

  .social-container {
    justify-content: center;
    margin-bottom: 1rem;
  }
}

/* ==========================================================================
   Scroll To Top
   ========================================================================== */
#scroll-to-top {
  background-color: var(--primary-color);
  display: none;
  width: 45px;
  height: 45px;
  text-align: center;
  font-size: 14px;
  border-radius: 50%;
  line-height: 45px;
  color: #555;
  border: 1px solid #555555cf;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

#scroll-to-top:hover {
  background-color: #282828;
  color: var(--primary-color);
}

/***********************
========================
    4.  install buttons
========================
************************/
.whatsapp-message-button {
  display: flex;
  align-items: center;
  background-color: var(--background-color);
  color: white;
  font-size: 20px;
  font-weight: bold;
  padding: 16px 24px;
  border-radius: 3px;
  text-decoration: none;
  position: relative;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: fit-content;
}

.whatsapp-message-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  color: var(--primary-color);
}

.whatsapp-message-button:active {
  transform: scale(1);
}

.whatsapp-message-button::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0px;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 25px solid var(--background-color);
  transform: rotate(40deg);
}

.whatsapp-message-button span {
  display: inline-block;
  text-align: center;
}

.container-flux-phone .whatsapp-message-button,
.service-section .whatsapp-message-button,
.cta-section .whatsapp-message-button,
.sidebar .whatsapp-message-button {
  color: var(--background-color);
  background-color: var(--primary-color);
  border: 2px solid var(--background-color);
}

.container-flux-phone .whatsapp-message-button::before,
.service-section .whatsapp-message-button::before,
.cta-section .whatsapp-message-button::before,
.sidebar .whatsapp-message-button::before {
  display: none;
}

/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .whatsapp-message-button {
    font-size: 15px;
    padding: 10px 20px;
    justify-self: center;
  }
}

/* ==========================================================================
   Animation Bottom
   ========================================================================== */

@keyframes slide-in-bottom {
  from {
    transform: translateY(50%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.animate-from-bottom {
  opacity: 0;
  transform: translateY(50%);
  transition: opacity 0.5s, transform 0.5s;
}

.animate-from-bottom.visible {
  opacity: 1;
  transform: translateY(0);
  animation: slide-in-bottom 0.7s ease-out;
}

/* ==========================================================================
   Audio 
   ========================================================================== */

.wrapper-audio {
  display: flex;
  position: relative;
  background-color: transparent;
  align-items: center;
  justify-content: start;
  gap: 10px;
  width: fit-content;
}

.container-audio {
  display: flex;
  align-items: center;
  gap: 20px;
  width: fit-content;
  margin: auto;
}

.microphone-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  position: relative;
  flex-shrink: 0;
}

.microphone-drawing {
  width: 100%;
  height: 100%;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke: var(--text-color);
}

.circle-outline {
  stroke-dasharray: 282.6;
  stroke-dashoffset: 282.6;
  animation: drawCircle 0.7s linear forwards, pulseCircle 2s ease-in-out infinite 1s;
  stroke: var(--background-color);
  transform-origin: center;
}

.microphone-outline {
  stroke-dasharray: 150;
  stroke-dashoffset: 150;
  animation: drawMicrophone 0.5s linear 0.2s forwards;
  fill: none;
}

.microphone-outline.fill {
  fill: var(--text-color);
}

.base-outline {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: drawBase 0.5s linear 0.2s forwards;
  opacity: 0;
}

.stand-outline {
  stroke-dasharray: 10;
  stroke-dashoffset: 10;
  animation: drawStand 0.5s linear 0.2s forwards;
}

.stand-base {
  stroke-dasharray: 15;
  stroke-dashoffset: 15;
  animation: drawStandBase 1s linear 0.2s forwards;
}

.fill-circle {
  fill: var(--background-color);
  stroke: var(--background-color);
  stroke-width: 0.1;
  animation: fillCircle 2s ease-in-out infinite 1s;
  transform-origin: center;
}

.text-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 45vw;
  overflow: visible;
  margin-left: 5px;
  position: relative;
}

.animated-text {
  display: block;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  line-height: 1.5;
  font-size: 2vw;
  color: var(--text-color);
  min-height: 5em;
  align-content: center;
}

@keyframes drawCircle {
  to {
    stroke-dashoffset: 0;
    stroke: var(--background-color);
  }
}

@keyframes drawMicrophone {
  0% {
    stroke-dashoffset: 150;
    opacity: 0;
  }

  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes drawBase {
  0% {
    stroke-dashoffset: 100;
    opacity: 0;
  }

  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes drawStand {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes drawStandBase {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes fillCircle {

  0%,
  100% {
    r: 45;
    fill-opacity: 1;
  }

  50% {
    r: 50;
    fill-opacity: 0.8;
  }
}

@keyframes pulseCircle {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

@media only screen and (min-width: 320px) and (max-width: 767px) {
  .microphone-container {
    width: 40px;
    height: 40px;
  }

  .circle-outline {
    stroke-dasharray: 141.3;
    stroke-dashoffset: 141.3;
  }

  .microphone-outline {
    stroke-dasharray: 75;
    stroke-dashoffset: 75;
  }

  .base-outline {
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
  }

  .stand-outline {
    stroke-dasharray: 5;
    stroke-dashoffset: 5;
  }

  .animated-text {
    font-size: 3.5vw;
  }

  .text-container {
    max-width: 60vw;
  }
}

@media only screen and (min-width: 767px) and (max-width: 991px) {
  .initial-carousel {
    height: 70vh;
  }

  .about-heading,
  .about-heading h2 {
    margin: 0vh;
  }

  .about-content {
    width: auto;
  }

  .about-heading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-height: 40vh;
  }
}

.global-sound-waves {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.global-sound-waves .sound-wave {
  width: 4px;
  background-color: var(--background-color);
  margin: 0 2px;
  height: 12px;
  animation: globalWaveAnimation 1s infinite;
  opacity: 0.8;
}

.global-sound-waves .sound-wave:nth-child(1) {
  animation-delay: 0s;
}

.global-sound-waves .sound-wave:nth-child(2) {
  animation-delay: 0.2s;
}

.global-sound-waves .sound-wave:nth-child(3) {
  animation-delay: 0.4s;
}

.global-sound-waves .sound-wave:nth-child(4) {
  animation-delay: 0.6s;
}

.global-sound-waves .sound-wave:nth-child(5) {
  animation-delay: 0.8s;
}

@keyframes globalWaveAnimation {
  0% {
    height: 12px;
  }

  50% {
    height: 30px;
  }

  100% {
    height: 12px;
  }
}

@media only screen and (min-width: 320px) and (max-width: 767px) {
  .global-sound-waves .sound-wave {
    width: 3px;
  }

  @keyframes globalWaveAnimation {
    0% {
      height: 7px;
    }

    50% {
      height: 15px;
    }

    100% {
      height: 7px;
    }
  }
}

/* ==========================================================================
   Beneficts 
   ========================================================================== */

section.card-section {
  background-color: var(--primary-color);
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.title {
  text-align: center;
  margin-bottom: 40px;
}

.title h2 {
  font-size: 28px;
  color: #333;
  font-weight: 400;
}

.title .on {
  color: #2196f3;
  font-weight: bold;
}

.title .zap {
  color: #4caf50;
  font-weight: bold;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 960px;
  width: 100%;
}

.card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
}

.card img {
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
}

.card p {
  font-size: 15px;
  color: #333;
}

/* Responsividade */
@media (max-width: 950px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-section {
  background-color: #f8f9fa;
  padding: 50px 20px;
  text-align: center;
}

.faq-container {
  max-width: 750px;
  margin: auto;
}

.faq-container h2 {
  color: var(--text-color);
}

.faq-item {
  background: white;
  margin-bottom: 10px;
  border-radius: 8px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.faq-question {
  width: 100%;
  padding: 15px;
  font-size: 18px;
  text-align: left;
  border: none;
  background: white;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-color);
  text-decoration: none;
}

.faq-question:focus {
  outline: none;
}

.faq-answer {
  display: none;
  padding: 15px;
  font-size: 16px;
  text-align: left;
  border-top: 1px solid #ddd;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-answer ul {
  padding-left: 20px;
}

.faq-answer li {
  margin: 5px 0;
}

.faq-question .icon {
  font-size: 20px;
}

/* ==========================================================================
   Portal
   ========================================================================== */
.portal {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.portal-top,
.portal-bottom {
  width: 100%;
  position: relative;
}

.portal-top {
  height: 60vh;
  background-color: var(--light-blue);
  z-index: 1;
}

.portal-top h2 {
  color: var(--dark-blue);
  padding-top: 7vh;
  padding-left: 2vw;
  font-size: 35px;
}

.portal-top-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  bottom: 10%;
  right: 25%;
}

.portal-top-right p {
  text-align: center;
  color: var(--grey);
  font-size: 20px;
  line-height: 2;
}

.portal-button {
  display: inline-block;
  text-align: center;
  margin-top: 15px;
  align-items: center;
  background-color: var(--primary-color);
  color: var(--dark-blue);
  font-size: 15px;
  font-weight: bold;
  padding: 10px 24px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: fit-content;
}

.portal-button:hover {
  color: var(--grey);
  transform: scale(1.05);
}

.portal-button:active {
  transform: scale(1);
}

.portal span {
  font-weight: bold;
}

.portal-center {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-120%, -20%);
  z-index: 5;
}

#computer {
  z-index: 7;
  position: relative;
}

.portal-center img {
  max-width: 90%;
  height: auto;
  object-fit: contain;
}

.portal-bottom {
  height: 30vh;
  background-color: var(--primary-color);
  z-index: 1;
  display: flex;
  justify-content: center;
}

.screen-carousel {
  display: flex;
  position: absolute;
  top: 4, 9%;
  left: 21%;
  width: 65%;
  height: 20vw;
  overflow: hidden;
  z-index: 6;
  border-radius: 10px;
  pointer-events: none;
}

.carousel-img {
  all: unset;
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: fill;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel-img.active {
  opacity: 1;
}

@media only screen and (min-width: 300px) and (max-width: 750px) {
  .portal {
    overflow: hidden;
    position: relative;
  }

  .portal-top {
    text-align: center;
    padding: 5vh 5vw;
    height: 60vh;
    position: relative;
    z-index: 2;
  }

  .portal-top h2 {
    font-size: 1.8rem;
    padding: 0;
  }

  .portal-top-right {
    position: static;
    margin-top: 2vh;
  }

  .portal-center {
    position: absolute;
    top: 23%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .portal-center img {
    margin-top: 15px;
    max-width: 80%;
    height: auto;
  }

  .portal-bottom {
    flex-direction: column;
    padding: 10vh 0 4vh;
    height: auto;
    position: relative;
    z-index: 1;
  }

  .portal-benefits {
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
  }

  .portal-benefits .col {
    width: 90%;
    margin-bottom: 2rem;
  }

  .portal-icon {
    z-index: 6;
    margin-top: -20px;
    width: 30vw;
    height: auto;
    max-width: none;
    object-fit: contain;
  }

  .portal-benefits h3 {
    font-size: 1.2rem;
    margin-top: 0;
  }

  .portal-benefits p {
    font-size: 0.9rem;
  }

  .portal-button {
    margin-top: 0;
  }
}

@media only screen and (min-width: 751px) and (max-width: 1200px) {
  .portal {
    overflow: hidden;
    position: relative;
  }

  .portal-top {
    text-align: center;
    padding: 5vh 5vw;
    height: 50vh;
    position: relative;
    z-index: 2;
  }

  .portal-top p {
    font-size: 2rem;
  }

  .portal-top h2 {
    font-size: 2.8rem;
    padding: 0;
  }

  .portal-top-right {
    position: static;
    text-align: center;
    margin-top: 2vh;
  }

  .portal-center {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .portal-center img {
    max-width: 80%;
    height: auto;
  }

  .portal-benefits .col {
    width: 90%;
    padding: 0;
  }

  .portal-icon {
    width: 20vw;
    height: auto;
    max-width: none;
    object-fit: contain;
  }

  .portal-benefits h3 {
    font-size: 1.2rem;
    margin-top: 10px;
  }

  .portal-benefits p {
    font-size: 0.9rem;
  }
}

/* ==========================================================================
   Price
   ========================================================================== */
.price-section {
  background-color: var(--primary-color);
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
  padding: 20px;
}


.title-price {
  max-width: fit-content;
  color: var(--text-color);
  margin: 30px;
}

.title-price h2 {
  color: var(--text-color);
  font-size: 2.7rem;
}

.cards-part-mes,
.cards-part-tri,
.cards-part-ano {
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  margin: 20px auto;
  gap: 30px;
}

.card-price {
  background-color: transparent;
  text-align: center;
  padding: 20px;
  width: 330px;
  transition: 0.4s ease-in;
  display: flex;
  flex-direction: column;
  border: 2px solid #000;
  border-radius: 10px;
  flex: 1 1 330px;
}

.card-inner {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-content {}

.card-price:hover {
  transform: translateY(-20px);
}

.title>h1 {
  color: var(--secondary-color);
  font-size: 1.8rem;
}

.title>p {
  color: var(--text-color);
  font-size: 0.8rem;
}

.price {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.price>h2 {
  color: rgba(182, 182, 182, 0.719);
  font-size: 1.3rem;
  position: relative;
  display: inline-block;
}

.price>h2::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  border-top: 0.5px solid rgba(182, 182, 182);
  transform: translateY(-50%);
}

.price>h1 {
  color: var(--secondary-color);
  font-size: 1.7rem;
  margin: 3px auto;
}

.price>p {
  color: rgb(161, 161, 161);
}

.text-card {
  text-align: left;
  margin: 20px 20px;
}

.content-text {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.content-text img {
  width: 18px;
  height: 18px;
  margin-top: 5px;
  margin-right: 10px;
  filter: invert(52%) sepia(89%) saturate(400%) hue-rotate(95deg);
}

.content-text p {
  margin: 5px 0;
  color: var(--text-color);
}

.btn-choice {
  margin-top: auto;
  padding-top: 20px;
}

.btn-choice button {
  bottom: 0;
  width: 90%;
  padding: 10px 0;
  border-radius: 10px;
  border: none;
  margin-top: auto;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-choice button:hover {
  background-color: var(--secondary-color);
}

.hidden {
  display: none !important;
}

.cards-part-mes {
  display: flex;
}

.cards-part-tri,
.cards-part-ano {
  display: none;
}

.toggle-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.toggle-container p {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin: 0;
}

.three-toggle {
  display: flex;
  background-color: #ddd;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.toggle-option {
  flex: 1;
  padding: 10px 20px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  color: #333;
  border-radius: 30px;
}

.toggle-option.active {
  background-color: rgba(76, 175, 80, 0.3);
  /* verde mais suave/transparente */
  color: #2e7d32;
  /* um verde escuro bonito pra legibilidade */
}

.toggle-option:focus {
  outline: none;
}

/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .title-price h2 {
    width: 97vw;
    font-size: 30px;
  }

  .cards-part {
    margin: 5px auto;
  }

  .card-price {
    padding: 15px;
    margin: 10px;
  }

  .title>p {
    color: var(--text-color);
    font-size: 0.8rem;
  }

  .price {
    margin-top: 10px;
  }

  .price>h1 {
    margin: 0px auto;
  }

  .text-card {
    margin: 5px 5px;
  }

}

/* ==========================================================================
   Sidebar
   ========================================================================== */
.sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 40vw;
  height: 100%;
  background-color: var(--secondary-color);
  box-shadow: -4px 0 10px rgba(0, 0, 0, 0.2);
  padding: 20px;
  transition: right 0.3s ease-in-out;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.sidebar p {
  font-size: 20px;
  color: var(--primary-color);
  padding-top: 30px;
}

.sidebar .close-btn {
  color: var(--primary-color);
  position: absolute;
  top: 3vh;
  right: 3vh;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

.close-btn:focus {
  outline: none;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s;
  z-index: 999;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Ativar a aba lateral */
.sidebar.active {
  right: 0;
}

.qr-code {
  width: 300px;
  height: auto;
  margin-bottom: 10px;
}

@media only screen and (min-width: 320px) and (max-width: 767px) {

  .sidebar {
    width: 80vw;
  }

}

@media only screen and (min-width: 767px) and (max-width: 991px) {

  .sidebar {
    width: 60vw;
  }

}

/* ==========================================================================
  Cookies
   ========================================================================== */
#cookie-banner {
  z-index: 1000;
  position: fixed;
  bottom: 2vh;
  left: 50%;
  transform: translateX(-50%);
  width: fit-content;
  background: #ffffff8e;
  backdrop-filter: blur(12px);
  color: var(--text-color);
  padding: 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  border-radius: 10px;
}

#cookie-banner span {
  margin-right: 20px;
}

#cookie-banner div {
  display: flex;
  gap: 10px;
}

#cookie-banner button {
  padding: 12px 25px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 16px;
}

#cookie-banner .aceptar {
  border: none;
  background: var(--dark-background);
  color: var(--primary-color);
}

#cookie-banner .btn-outline-success {
  border-color: var(--dark-background);
  color: var(--dark-background);
}

#cookie-banner .btn-outline-success:hover {
  background-color: transparent;
}

@media only screen and (min-width: 320px) and (max-width: 767px) {
  #cookie-banner {
    width: 90vw;
    flex-direction: column;
    text-align: center;
  }

  #cookie-banner span {
    margin-bottom: 15px;
    margin-right: 0;
  }

  #cookie-banner div {
    justify-content: center;
    gap: 10px;
  }
}

/* ==========================================================================
   Factura 
   ========================================================================== */
.colaboradores-section {
  padding: 60px 20px;
  background: #f5f7fa;
  text-align: center;
}

.colaboradores-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #333;
}

.logo-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logos-track {
  display: flex;
  width: fit-content;
  animation: scroll-loop 20s linear infinite;
}

.logos-track img {
  height: 60px;
  margin: 0 40px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.logos-track img:hover {
  filter: grayscale(0%);
}

@keyframes scroll-loop {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}