@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* { 
  box-sizing: border-box;
  font-family: Montserrat;
}

body {
  margin: 0;
}

.dropdown__menu__desktop a:hover {
  background-color: #f3f4f6; /* Tailwind's bg-gray-100 */
}

#mobile-menu {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease-in-out;
  position: absolute;
  background: white;
}

.dropdown__submenu {
  overflow: hidden;
  max-height: 0;
  background: white;
  padding-bottom: 0 !important;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}

#mobile-menu.show {
  max-height: 100vh;
  padding-bottom: 2rem;
}

#mobile-menu a:hover {
  background-color: #f3f4f6;
}

.dropdown__submenu.show {
  opacity: 1;
  max-height: 100vh;
}

.icon-transition {
    transition: transform 0.3s ease-in-out;
}

.icon-transition.open {
    transform: rotate(45deg);
}

.icon-transition.close {
    transform: rotate(0deg);
}

.nav-item:hover {
    background-color: #f3f4f6;
}

#img-hero {
  width: 300px;
  height: auto;
}

.logo img {
  width: 100px;
  height: auto;
}

.header-banner {
  padding-top:22.5px;
  padding-bottom:22.5px;
  color: #000;
  font-weight:100;
  background: white;
}

.topbar {
  margin:0 auto;
  display: flex;
}

.hero-container-width {
  width:90%;
  max-width:1000px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-img {
  overflow-clip-margin: content-box;
  overflow: clip;
}

.container-width {
  width:95%;
  margin:0 auto;
}

.logo-container {
  float:left;
  width:25%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  width:150px;
  color:#1E423D;
  font-size:18px;
  font-weight: 800;
}

.menu-item {
  float:right;
  font-size:16px;
  color:#000;
  font-weight:600;
  transition: color 0.2s ease;
}

.lead-title {
  margin-bottom:30px;
  font-size:48px;
  font-weight: 600;
}

.sub-lead-title {
  max-width:1000px;
  line-height:30px;
  margin-bottom:30px;
  color:#000;
  font-size: 30px;
}

.hero-btn {
    font-size:16px;
    text-align:center;
    font-weight: 700;
    background-color:#3BB641;
    border-radius:30px;
    transition:all 0.5s ease;
    padding-left: 2rem;
    padding-right: 2rem;
}

.cards-card-btn {
    font-size:16px;
    text-align:center;
    font-weight: 700;
    background-color:#9155a7;
    border-radius:30px;
    transition:all 0.5s ease;
    padding-left: 2rem;
    padding-right: 2rem;
}

.cards-card-btn:hover {
    background-color:#dda4f2;
}

.hero-btn:hover {
    background-color:#3bb6418f;
}

.lead-btn {
    margin-top:15px;
    padding:10px;
    width:150px;
    min-height:30px;
    font-size:16px;
    text-align:center;
    font-weight: 700;
    background-color:#3BB641;
    color: white;
    border-radius:30px;
    transition:all 0.5s ease;
    cursor:pointer;
}

.lead-btn:hover {
    background-color:#3bb6418f;
}

.lead-btn:active {
    color:#fff;
}

.flex-sect {
    background-color: #F5F1FF;
    padding: 100px 0;
}

.flex-title {
    margin-bottom:15px;
    font-size:2em;
    text-align:center;
    font-weight:700;
    color:#555;
    padding:5px;
}

.flex-desc {
    margin-bottom:55px;
    font-size:1em;
    color:rgba(0, 0, 0, 0.5);
    text-align:center;
    padding:5px;
}

.cards {
    display:flex;
    justify-content: center;
    gap: 3rem;
    flex-flow:wrap;
}

.card {
    background-color:white;
    height:370px;
    width:350px;
    margin:50px 0;
    border-radius: 8px;
    transition: box-shadow 0.5s ease, transform 0.5s ease, height 0.5s ease, margin 0.5s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(-15px);
    margin: 20px 0;
    height: 430px;
}

.card:hover .icon-purple {
    transform: scale(1.1);
}

.card-header {
    height: 195px;
    background: #F5F1FF;
    overflow: hidden;
    transition: height 0.5s ease;
}

.card-header img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.card:hover .card-header {
    height: 255px;
}

.icon-purple {
    background: #bbb5ce;
    color: #4f4768;
    transition: transform 0.5s ease;
}

.card:hover .icon-purple {
    transform: scale(1.1);
}

.card-body {
    padding:15px 15px 5px 15px;
    color:#555;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size:1.4em;
    margin-bottom:5px;
    transition: color 0.5s ease;
}

.card:hover .card-title {
    color: #9155a7;
    font-weight: 600;
}

.card-sub-title {
    color:#b3b3b3;
    font-size:1em;
    margin-bottom:15px;
}

.card-desc {
    font-size:0.85rem;
    line-height:17px;
    margin-bottom: 1.5rem;
    color: black;
    font-weight: 400;
}

.am-sect {
    padding-top:100px;
    padding-bottom:100px;
}

.img-phone {
    float:left;
}

.am-container {
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    justify-content:space-around;
}

.am-content {
    float:left;
    padding:7px;
    width:490px;
    color:#444;
    font-weight:100;
    margin-top:50px;
}

.am-pre {
    padding:7px;
    color:#b1b1b1;
    font-size:15px;
}

.am-title {
    padding:7px;
    font-size:25px;
    font-weight:400;
}

.am-desc {
    padding:7px;
    font-size:17px;
    line-height:25px;
}

.am-post {
    padding:7px;
    line-height:25px;
    font-size:13px;
}

.bg-green {
    background-color: #F0F9F2;
}

.bg-purple {
    background-color: #F5F1FF;
}

.bg-purple-light {
    background-color: #f9f7ff;
}

.hero-sect {
    background-color:#F0F9F2;
    display: flex;
    justify-content: space-around;
    padding: 4rem 3rem 1rem;
}

.carousel-image {
    width: 100%;
}

.blk-sect {
    padding-top:100px;
    padding-bottom:100px;
    background-color:#F0F9F2;
}

.blk-title {
    color:#000;
    font-size:30px;
    text-align:center;
    margin-bottom:15px;
    font-weight:700;
}

.blk-desc {
    color:#000;
    font-size:18px;
    text-align:center;
    max-width:700px;
    margin:0 auto;
    font-weight:300;
}

.price-cards {
    margin-top:70px;
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    justify-content:space-around;
}

.price-card-cont {
    width:300px;
    padding:7px;
    float:left;
}

.price-card {
    margin:0 auto;
    min-height:350px;
    background-color:#d983a6;
    border-radius:5px;
    font-weight:100;
    color:#fff;
    width:90%;
}

.pc-title {
    font-weight:100;
    letter-spacing:3px;
    text-align:center;
    font-size:25px;
    background-color:rgba(0, 0, 0, 0.1);
    padding:20px;
}

.pc-desc {
    padding:75px 0;
    text-align:center;
}

.pc-feature {
    color:rgba(255,255,255,0.5);
    background-color:rgba(0, 0, 0, 0.1);
    letter-spacing:2px;
    font-size:15px;
    padding:10px 20px;
}

.pc-feature:nth-of-type(2n) {
    background-color:transparent;
}

.pc-amount {
    background-color:rgba(0, 0, 0, 0.1);
    font-size:35px;
    text-align:center;
    padding:35px 0;
}

.pc-regular {
    background-color:#da78a0;
}

.pc-enterprise {
    background-color:#d66a96;
}

.footer-under {
    background-color:#312833;
    padding-bottom:100px;
    padding-top:100px;
    min-height:500px;
    color:#eee;
    position:relative;
    font-weight:100;
}

.copyright {
    background-color:rgba(0, 0, 0, 0.15);
    color:rgba(238, 238, 238, 0.5);
    bottom:0;
    padding:1em 0;
    position:absolute;
    width:100%;
    font-size:0.75em;
}

.made-with {
    float:left;
    width:50%;
    padding:5px 0;
}

.foot-social-btns {
    display:none;
    float:right;
    width:50%;
    text-align:right;
    padding:5px 0;
}

.footer-container {
    display:flex;
    flex-wrap:wrap;
    align-items:stretch;
    justify-content:space-around;
}

.foot-list {
    float:left;
    width:200px;
}

.foot-list-title {
    font-weight:400;
    margin-bottom:10px;
    padding:0.5em 0;
}

.foot-list-item {
    color:rgba(238, 238, 238, 0.8);
    font-size:0.8em;
    padding:0.5em 0;
}

.foot-list-item:hover {
    color:rgba(238, 238, 238, 1);
}

.foot-form-cont {
    width:300px;
    float:right;
}

.foot-form-title {
    color:rgba(255,255,255,0.75);
    font-weight:400;
    margin-bottom:10px;
    padding:0.5em 0;
    text-align:right;
    font-size:2em;
}

.foot-form-desc {
    font-size:0.8em;
    color:rgba(255,255,255,0.55);
    line-height:20px;
    text-align:right;
    margin-bottom:15px;
}

.sub-input {
    width:100%;
    margin-bottom:15px;
    padding:7px 10px;
    border-radius:2px;
    color:#fff;
    background-color:#554c57;
    border:none;
}

.sub-btn {
    width:100%;
    margin:15px 0;
    background-color:#785580;
    border:none;
    color:#fff;
    border-radius:2px;
    padding:7px 10px;
    font-size:1em;
    cursor:pointer;
}

.sub-btn:hover {
    background-color:#91699a;
}

.sub-btn:active {
    background-color:#573f5c;
}

.bdg-sect {
    padding-top:100px;
    padding-bottom:100px;
    background-color:#fafafa;
}

.bdg-title {
    text-align:center;
    font-size:2em;
    margin-bottom:55px;
    color:#555555;
}

.badges {
    padding:20px;
    display:flex;
    justify-content:space-around;
    align-items:flex-start;
    flex-wrap:wrap;
}

.badge {
    width:290px;
    background-color:white;
    margin-bottom:30px;
    box-shadow:0 2px 2px 0 rgba(0, 0, 0, 0.2);
    border-radius:3px;
    font-weight:100;
    overflow:hidden;
    text-align:center;
}

.badge-header {
    height:115px;
    background-image:url("/assets/images/demos/bg-gr-v.png"), url("/assets/images/demos/work-desk.jpg");
    background-position:left top, center center;
    background-attachment:scroll, fixed;
    overflow:hidden;
}

.badge-name {
    font-size:1.4em;
    margin-bottom:5px;
}

.badge-role {
    color:#777;
    font-size:1em;
    margin-bottom:25px;
}

.badge-desc {
    font-size:0.85rem;
    line-height:20px;
}

.badge-avatar {
    width:100px;
    height:100px;
    border-radius:100%;
    border:5px solid #fff;
    box-shadow:0 1px 1px 0 rgba(0, 0, 0, 0.2);
    margin-top:-75px;
    position:relative;
}

.badge-body {
    margin:35px 10px;
}

.badge-foot {
    color:#fff;
    background-color:#a290a5;
    padding-top:13px;
    padding-bottom:13px;
    display:flex;
    justify-content:center;
}

.badge-link {
    height:35px;
    width:35px;
    line-height:35px;
    font-weight:700;
    background-color:#fff;
    color:#a290a5;
    display:block;
    border-radius:100%;
    margin:0 10px;
}

.box-shadow-card {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .foot-form-cont {
      width:400px;
    }

    .carousel-sect {
      display: none !important;
    }

    .foot-form-title {
      width:autopx;
    }
    
    .rodape {
      display: none !important;
    }

}

@media (max-width: 480px) {
    .foot-lists {
        display:none;
    }

    .image-hero {
        display: none !important;
    }

    .xs\:mb-0{margin-bottom:0px !important}
}

/*SlideShow -------------------------------*/

/* Slideshow container */
.slideshow-container {
    position: relative;
}

.mySlides {
    display: none;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    position: relative;
    bottom: 40px;
    display: inline-block;
    transition: background-color 0.6s ease;
}
  
.active, .dot:hover {
    background-color: #717171;
}

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}
  
@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}

/* SlideShow */

/*FAQ -------------------------------*/
.faq {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    padding: 2rem 2rem 6rem 2rem !important;
    background: #F0F9F2 !important;
}
  
.title-section-Faq {
    height: auto !important;
    display: flex !important;
    margin: 0 auto 1rem !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 10px !important;
}
  
#title-section-Faq  {
    font-size: 1rem !important;
    text-align: center !important;
}
  
details {
    width: 100% !important;
    min-height: 5px !important;
    max-width: 700px !important;
    padding: 10px 20px 10px 20px !important;
    margin: 0 auto !important;
    position: relative !important;
    font-size: 1rem !important;
    border: 1px solid rgba(0,0,0,.1) !important;
    border-radius: 5px !important;
    box-sizing: border-box !important;
    transition: all .3s !important;
    background-color: white;
}
  
details + details {
    margin-top: 20px !important;
}
  
details[open] {
    min-height: 50px !important;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05) !important;
}
  
details p {
    font-weight: 300 !important;
    font-size: 0.9rem !important;
    text-align: left !important;
    padding-top: 0.6rem !important;
}
  
summary {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    font-weight: 500 !important;
    cursor: pointer !important;
}
  
summary:focus {
    outline: none !important;
}
  
summary:focus::after {
    content: "" !important;
    height: 100% !important;
    width: 100% !important;
    display: block !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    box-shadow: 0 0 0 2px var(--blue-light) !important;
    border-radius: 10px !important;
}
  
summary::-webkit-details-marker {
    display: none !important;
}
  
.control-icon {
    fill: var(--blue-dark2) !important;
    transition: .3s ease !important;
    pointer-events: none !important;
}
  
.control-icon-close {
    display: none !important;
}
  
details[open] .control-icon-close {
    display: initial !important;
    transition: .3s ease !important;
}
  
details[open] .control-icon-expand {
    display: none !important;
}

.hover-click:hover {
    cursor: pointer;
}

.hover-text-green:hover {
    color: #22c55e ;
}

.pdf-link {
    color: #337ab7;
}

.pdf-link:hover {
    color: #75b7f1;
}

/* Form contratar */


.form-input-plan {
    display: grid;
    justify-content: center;
}

.form-input-plan input {
    margin: 0 0 23px 0;
    width: 750px;
}

.label-inputs {
    display: block;
    font-weight: 600;
    font-size: 16px;
    float: none;
    line-height: 1.3;
    margin: 0 0 4px 0;
    padding: 0;
    word-break: break-word;
    word-wrap: break-word;
}

.label-inputs-required {
    color: #ff0000;
    font-weight: 400;
}

.checked-input-partner {
    width: auto !important;
    margin: 0 10px 0 3px !important;
}

.checkbox-label-span {
    color: #2d2d2d;
    display: inline;
    vertical-align: baseline;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    word-break: break-word;
}

.card-spacing-register-plan {
    margin: 0 300px;
}

a {
  color: black;
  font-weight: 600;
  text-decoration: none;
}

.button-input-plano {
    font-size: 1rem;
    margin: 0 0 80px;
}

.tooltip-custom {
    position: relative;
    display: inline-block;
    cursor: help;
}

.tooltip-custom .label-inputs {
    cursor: help;
}
  
.tooltip-custom .checkbox-label-span {
    cursor: help;
}
  
.tooltip-custom .checked-input-partner {
    cursor: help;
}
  
.tooltip-custom .tooltiptext {
    visibility: hidden;
    width: 40%;
    background-color: #4D90CA;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 1rem;
    
    /* Position the tooltip */
    position: absolute;
    z-index: 1;
    top: 100%;
    left: 10%;
    margin-left: -60px;
}
  
.tooltip-custom:hover .tooltiptext {
    visibility: visible;
}

.file-input-container {
    margin-top: 10px;
}
.file-input-container label {
    display: block;
    margin-bottom: 5px;
}
.file-input-container input[type="file"] {
    padding: 5px;
}

/* Style the input elements and the submit button */
input[type="text"],
input[type="date"],
input[type="number"],
input[type="email"],
input[type="submit"],
textarea {
  width: auto;
  padding: 12px !important;
  margin: 8px 0 !important;
  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

.form-input-plan input {
    margin: 0 0 23px 0;
    width: 750px;
}

label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
}

/* Form contratar */

/* Dropdown */


.dropdown {
    min-width: 15em;
    position: relative;
    padding: 10px 0;
    margin-bottom: 15px;
}

.dropdown * {
    box-sizing: border-box;
}

.select {
  background: #fff;
  color: #000000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px #3f3f3f solid;
  border-radius: 0.5em;
  padding: 0.7em 1em;
  cursor: pointer;
  transition: background 0.3s;
  min-height: 48px;
  max-width: 750px;
}

.select:hover {
  border-color: #3783c6;
}

.caret {
  width: 0;
  height: 0;
  border-bottom: 5px solid transparent;
  border-top: 5px solid transparent;
  border-left: 6px solid #000000;
  transition: 0.3s;
}

.caret-rotate {
  transform: rotate(90deg);
}

.menu-dropdown {
  list-style: none;
  padding: 0em 0.5em;
  background: #ffffff;
  box-shadow: 0 0.5em 1em rgba(0, 0, 0, 0.2);
  border-radius: 0.5em;
  color: #334155;
  position: absolute;
  top: 4.5em;
  left: 0;
  width: 100%;
  max-width: 750px;
  height: 0;
  transition: 300ms cubic-bezier(0.77, 0, 0.18, 1);
  z-index: 1;
  overflow-y: scroll;
}

.menu-dropdown::-webkit-scrollbar {
  width: 8px;
}

.menu-dropdown::-webkit-scrollbar-track {
  background: #dfdfdf;
}

.menu-dropdown::-webkit-scrollbar-thumb {
  background: #727272;
}

.menu-dropdown::-webkit-scrollbar-thumb:hover {
  background: #9e9e9e;
}

.menu-dropdown li {
  padding: 0.7em;
  margin: 0.3em 0;
  border-radius: 0.5em;
  cursor: pointer;
}

.menu-dropdown li:hover {
  background: #e9ecef;
}

.active-dropdown {
  background: #eef2ff !important;
  color: #3783c6 !important;
}

.text-fade-in {
  animation: textFade 300ms ease-out;
}

.menu-open {
  border: 1px #383838 solid;
  height: auto;
}

/* Dropdown */

/* Form Contato */

.card-spacing-register {
    padding-top: 50px;
    padding-bottom: 50px;
}

.title__h1 {
    font-size: 2.5em;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 0.5em;
}

.form-input {
  display: grid;
  justify-content: center;
}

.form-input input {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

.title_launch {
  font-size: 1.5em;
  color: var(--darkBlue);
  font-weight: 300;
  line-height: 1.3;
  display: flex;
  margin: 2rem;
  margin-bottom: 0.5em;
  justify-content: center;
}

/* Form Contato */