@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700&display=swap");

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter.ttc') format('ttc'),
}

@media only screen and (max-width: 600px) {
  html, body {
      width: 100%;
      max-width: 100%;
      overflow-x: hidden;
  }
}

:root {
  --purple: #762BDB;
  --yellow: #FAC527;
  --yellow-darker: #e5b323;
  --text-light: #FFFFFF;
  --text-dark: #202020;
  --text-gray: #969696;
  --border-color: #E4E4E7;
  --card-bg: rgba(227, 232, 239, 0.1);
}

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

body {
  font-family: 'Manrope', sans-serif;
  line-height: 1.2;
  color: var(--text-dark);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  justify-content: flex-start;
}

/* Generic stuff */

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

.xs-text-size {
  font-size: 14px;
}
.sm-text-size {
  font-size: 18px;
}

.lg-text-size {
  font-size: 30px;
}

.xl-text-size {
  font-size: 30px;
}

.xs-bold {
  font-weight: 600;
}
.sm-bold {
  font-weight: 400;
}
.md-bold {
  font-weight: 700;
}
.lg-bold {
  font-weight: 700;
}
.xl-bold {
  font-weight: 700;
}

.text-center {
  text-align: center;
}

.white-font {
  color: #FFFFFF;
  .white-font {
    color: #FFFFFF;
    line-height: 1.2;
}
}
.yellow-font {
  color: #F2BB32;
}
.dark-1-font {
  color: #333333;
}
.dark-2-font {
  color: #000000;
}
.gray-font {
  color: #667085;
}
.purple-font {
  color: #762BDB;
}

.bg-yellow {
  background-color: #F2BB32;
}
.bg-white {
  background-color: #FCFCFC;
}

.bg-purple {
  background-color: #762BDB;

}

.no-margin {
  margin: 15px;
  line-height: 1.1;
  text-align: left;
}

.auto-margin {
  margin-left: auto;
  margin-right: auto;
}

.small-logo {
  width: 55px;
  height: 55px;
}

.full-screen {
  height: 100vh;
}

.fit {
  width: fit-content;
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.justify-between {
  justify-content: space-between;
}

.self-end {
  align-self: end;
}

.self-center {
  align-self: center;
}

.justify-self-end {
  justify-self: end;
}
/* Generic stuff */

/* Header */
.header {
  background-color: var(--purple);
  color: var(--text-light);
  width: 100%;
  overflow: hidden;
  padding-bottom: 2rem;
  text-align: left; 
}


.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1340px;
  margin: 0 auto;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo {
  height: 80px;
  width: auto;
}

.brand {
  display: flex;
  flex-direction: column;
}

.brand h1 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.brand p {
  font-size: 0.7rem;
  letter-spacing: 0.5px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--text-light);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--yellow);
}

.nav-link.button {
  background-color: var(--yellow);
  color: var(--text-light);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.nav-link.button:hover {
  background-color: var(--yellow-darker);
  color: var(--text-light);
}

.mobile-menu {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  /* Inicialmente invisível */
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.3s, opacity 0.3s ease-in-out;
}

.mobile-menu.open {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}


.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--text-light);
  transition: all 0.3s ease;
}

/* Home stuff */
.home-title-container {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 2rem;
  padding-top: 50px;
  max-width: 1340px;
  margin: 0 auto;
}


.home-text-container {
  flex: 1;
  padding-right: 1rem;
  padding-top: 10rem;
  text-align: left;
}


.header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-light);
  text-align: left;
  align-self: flex-start;
}


.header h2 span {
  color: var(--yellow);
}

.header {
  text-align: left !important;
}


.header p { 
  font-size: 1rem;
  margin-bottom: 1.5rem;
  max-width: 600px;
  color: var(--text-light);
  text-align: left;
  align-self: flex-start;
}


.home-buttons-container {
  display: flex;
  gap: 1rem;
}

.button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
}

.button.primary {
  background-color: var(--yellow);
  color: var(--text-light);
}

.button.primary:hover {
  background-color: var(--yellow-darker);
}

.button.outline {
  border: 1px solid var(--text-light);
  color: var(--text-light);
}

.button.outline:hover {
  background-color: var(--text-light);
  color: var(--purple);
}

.home-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.home-image img {
  max-width: 120%;
  max-height: 1200px;
  padding-left: 10px;
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    flex-direction: column;
    background-color: var(--purple);
    width: 80%;
    height: 100vh;
    padding: 6rem 2rem 2rem;
    transition: all 0.3s ease;
    z-index: 20;
  }
  
  .main-nav.active {
    right: 0;
  }
  
  .menu-toggle {
    display: block;
    position: relative;
    z-index: 30;
  }
  
  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .home {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }
  
  .home-title-container{
    padding-right: 0;
    margin-bottom: 2rem;
    flex-direction: column;
  }

  .home-text-container {
    flex: 1;
    padding-right: 1rem;
    padding-top: 2rem;
    text-align: left;
}

.home-image img {
  max-width: 150%;
  max-height: 800px;
  padding-inline-start:initial;
}
  
  .home h2 {
    font-size: 2rem;
  }
  
  .home-buttons {
    justify-content: center;
  }
  
  .button {
    width: 100%;
  }
  
  .home-buttons-container {
    flex-direction: column;
    gap: 1rem;
  }
}
/* Home stuff */


/* Enterprise Info stuff */

.enterprise-image {
  width: max-content;
  padding: 19px;
  height: fit-content;
  background-color: #762BDB;
  border-radius: 19px;
  margin-right: 19px;
}
.enterprise-image img {
  max-width: 44px;
  min-width: 44px;
  min-height: 44px;
  max-height: 44px;
}

.section-title {
  color: var(--yellow-darker);
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.3;
  padding-left: 10%;
  padding-right: 10%;
  text-align: center;
  margin-bottom: 1.5rem;
}
.section-text {
  color: var(--text-gray);
  font-size: 1.2rem;
  line-height: 1.6;
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2rem;
}

.enterprise-info {
  padding: 2rem 0;
  background: #fac527;
}

.enterprise-info-grid {
  display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
      margin-top: 2rem;
}

.enterprise-info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 12px;
  margin-bottom: 16px;
}

.enterprise-info-icon {
  aspect-ratio: 1;
  object-fit: contain;
  width: 60px;
  flex-shrink: 0;
  margin-top: 11px;
  border-radius: 20px;
}

.enterprise-info-content {
  display: flex;
  flex-direction: column;
}

.enterprise-info-title {
  color: rgb(255, 255, 255);
  font-size: 1rem;
  font-weight: 600;
}

.enterprise-info-description {
  color: rgb(255, 255, 255);
  font-size: 15px;
  font-weight: normal;
  line-height: 20px;
}

@media (min-width: 640px) {
  .enterprise-info-item{
    width: 48%;
  }
  
  .enterprise-info-icon {
    width: 70px;
  }
}

@media (min-width: 1300px) {
  .enterprise-info-item {
    width: 23%;
  }
}
/* Enterprise Info stuff */

/* Info Stuff */
.info-section {
  padding: 4rem 0;
  text-align: center;
}

.other-info-container {
  display: flex;
  flex-direction: column ;
  margin-bottom: 3rem;
}

.other-info-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 6rem;
}

.other-info-number{
  background-color: var(--yellow);
  color: var(--text-light);
  font-size: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.step-other-info-text-container {
  margin-top: 1.5rem;
  text-align: center;
}

.other-info-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fac527;
}

.other-info-desc {
  font-size: 1.1rem;
  color: var(--text-gray);
  margin-top: 1rem;
}

.step-image-container {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.other-info-image {
  width: 100%;
  max-width: 327px;
  max-height: 327px;
  aspect-ratio: 1;
  object-fit: contain;
}
/* Info Stuff */


/* Plans stuff */
.plan-card {
  margin-bottom: 80px;
  background-color: white;
  padding: 30px;
  border-radius: 10px;
}

.plan-card h3 {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 12px;
}

.plan-card img{
  width: 14px; 
  height: 24px; 
  margin-top: 7px; 
  margin-right: 3px;
}

.plan-button-1{
  cursor: pointer;

  font-weight: bold;
  font-size: 16px;
  color: #6727BD;
  padding: 13px 59px;
  border-radius: 10px;
  border: 1px solid;
  border-color: #762BDB;

}
.plan-button-1 a {
  color: #6727BD;
}
.plan-button-2 a{
  color: white !important;

}
.plan-button-2{
  cursor: pointer;

  font-weight: bold;
  font-size: 16px;
  color: white !important;
  padding: 13px 59px;
  border-radius: 10px;
  border: 1px solid;
  background-color: #762BDB;
  border-color: #762BDB;

}
.enterprise-info-stamp {
  color: #ffffff;
  font-weight: 600;
  background-color: #FAC527;
  border-radius: 24px;
  padding: 5px 5px;
  margin-top: 20px;
  margin-bottom: 29px;
}

@media only screen and (max-width: 600px) {
  .plan-cards-container {
      flex-direction: column;
  }
  .plan-card {
    margin-bottom: 0;
  }
  .plans-h1{
    margin-top: 0 !important;
  }
}
/* Plans stuff */

/* FORM  Stuff*/
.two-column-section {
  max-width: 1200px; 
  padding: 2rem 1rem; 
  margin: 4rem auto 0 auto; 
}

.two-columns {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.column {
  width: 100%;
}

.column-title {
  color: #fac527;
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 2rem;
  text-align: center;
}


.semi-lua { 
  position: absolute;
  z-index: 1;
  transform: translateX(-50%);
  left: 50%;
  top: 20%; 
}

.num-info-container { 
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin-bottom: 138px;
  margin-top: 80px;
  border-radius: 24px;
  padding-left: 2rem;
  padding-right: 2rem; 
  max-width: 1200px; 
  margin-left: auto; 
  margin-right: auto; 
}


.num-cards-container{
  z-index:3; 
  position: relative; 
  gap: 40px;
  padding-bottom: 18px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.process-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  object-fit: cover;
}

.process-title {
  color: #fac527;  
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}

.process-description {
  color: var(--text-gray);
  font-size: 1rem;
  margin-top: 1rem;
  text-align: center;
}

.process-divider {
  border-top: 1px solid #E3E8EF;
  margin: 1.5rem 0;
  width: 100%;
}

.contact-form-container {
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.contact-form-title {
  color: #fac527;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 1rem;
}

.contact-form-subtitle {
  color: var(--text-dark);
  font-size: 0.9375rem;
  text-align: center;
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.file-input {
  display: none;
}

.custom-file-button {
  color: black;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  display: inline-block;
  border: 3px solid #E1E9F0; 
  width: 90%;
}

.file-name {
  margin-left: 10px;
  font-style: italic;
  color: #555;
}


.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #D1D5DB;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-family: inherit;
}

.form-submit-button {
  background-color: var(--yellow);
  color: white;
  font-weight: 500;
  font-family: inherit;
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  margin-top: 1rem;
  transition: background-color 0.3s ease;
}

.form-submit-button:hover {
  background-color: var(--yellow-darker);
}

.form-disclaimer {
  color: var(--text-gray);
  font-size: 0.8125rem;
  text-align: center;
  margin-top: 1rem;
}

.mobile-info {
  display: none;
}

@media only screen and (max-width: 600px) {
  .web-info {
    display: none;
  }
  .mobile-info {
    display: flex;
  }
  .num-info-container {
    border-radius: 0px;
    padding: 0px 0px !important;
    padding-bottom: 0px;
    height: 1150px;
    border-radius: 0px;
    margin-bottom: 0;
  }
  .mobile-num-info-h1{
    margin-top: 80px;
    margin-bottom: 100px !important;
    padding: 0px;

  }
  .semi-lua{
      top: 200px;
      width: 500px;
      height: 600px;
      position: absolute;
      z-index: 1;
      transform: translateX(-50%);
      left: 50%;
  }
  .num-cards-container{
    flex-direction: column;
  }

}
/* FORM  Stuff*/


/* Faq stuff */

#faq {
  position: relative;
  z-index: 3;
}

.faq-container {
  margin-top: 24px;
}

.faq-card {
  margin-top: 20px;
  background-color: white;
  border-radius: 20px;
}

.faq-card-content {
  padding: 24px;
  width: 720px;
}

.toggle-text {
  max-height: 0; 
  overflow: hidden; 
  transition: max-height 0.3s ease, opacity 0.1s ease; 
  opacity: 0; 
  margin-top: 10px; 
  line-height: 30px;
}

.toggle-text.visible {
  max-height: 200px; 
  opacity: 1; 
}

.toggle-icon {
  cursor: pointer; 
  transition: transform 0.1s ease; 
}

.toggle-header {
  cursor: pointer; 
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media only screen and (max-width: 600px) {
  .faq-card-content{
      max-width: 360px;

  }
  .faq-card {
      max-width: 360px;

  }
  .faq-subtitle {
      max-width: 360px;
  }
}
/* Faq stuff */


/* Comments stuff */

.comments-desc {
  color: var(--text-gray);
  font-size: 1.2rem;
  line-height: 1.6;
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2rem;
}

.comments-title {
color: var(--yellow-darker);
font-size: 2.2rem;
font-weight: 600;
line-height: 1.3;
padding-left: 10%;
padding-right: 10%;
text-align: center;
margin-bottom: 1.5rem;
}

.comments-container {
  overflow: hidden;
  display: flex;
  justify-content: flex-start;
  align-items: unset;
  gap: 2rem;
  padding: 1rem;
  background-color: var(--yellow);
  border-radius: 24px;
  max-width: 1200px;
  margin: 10px auto;

}

.comment-card {
flex: 0 0 auto; 
width: 100%; 
scroll-snap-align: start;
box-sizing: border-box;
padding: 1rem;
}

.person-info-container {
display: flex;
margin-top: 21px;
}

.person-info-container img {
margin-right: 16px !important;
width: 43px;
height: 43px;
border-radius: 100%;
}

@media only screen and (min-width: 601px) {
.comment-card {
  width: calc(50% - 1rem); 
}
}

@media only screen and (max-width: 600px) {
.comments-container {
  width: 100%;
  border-radius: 0;
  margin: 0 auto;
  margin-top: 50px;
}
.swiper-slide {
  width: 372px !important;
}

/* .desc-swiper{
  width: 250px !important;
  height: 120px;
}
.person-info-container {
  margin-top: 40px;
} */

.swiper-container-web.swiper-initialized.swiper-horizontal.swiper-ios.swiper-backface-hidden{
  margin-left: -10px;
}

.comment-card {
  width: 100%;
}
}

/* Comments stuff */

/* About us stuff */

.about-container {
  display: grid;
  grid-template-columns: minmax(auto,438px) minmax(auto,438px) auto;
  gap: 25px;
  padding-bottom: 55px;
  padding-top: 55px;
}

.about-container .pill-button {
  border-radius: 145px;
  background-color: #FAC527;
  width: fit-content;
  padding: 5px 5px;
}

.about-container .card-container {
  background-color: #6727BD;
  padding: 24px 22px;
  border-radius: 24px;
  max-width: 438px;
}

.about-container .contact-card-container {
  border-radius: 24px;
  padding: 24px 24px;
}

.about-container .contact-card-container h6{
  line-height: 19px;
}

.about-container .policy-card-container {
  margin-top: 26px;
  border-radius: 26px;
  padding: 48px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-items: center;
  gap: 40px;
}

.about-container .whatsapp-card {
  width: fit-content;
  padding-left: 21px;
  padding-right: 21px;
  padding-top: 15px;
  padding-bottom: 15px;
  border-radius: 13px;
}

.about-container .social-medias-card {
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 42px 24px;
  border-radius: 24px;
}

.about-container .logos-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.mobile-about-logos{
  display: none;
}

@media only screen and (max-width: 600px) {
  .contact-card-container{
    margin: 36px 10px;
  }
  .about-container{
    gap: 0px;
    flex-direction: column-reverse;
    display: flex;
    align-items: center;
    justify-items: center;
  }

  .policy-card-container{
    display: none !important;

  }
  .web-about-logos {
    display: none;
  }
  .mobile-about-logos {
    margin-top: 56px;
    display: flex;
  }
  .mobile-about-logos .logos-container{
    margin: 0px 10px;
    display: flex;
    flex-direction: row;
  }
  
  .about-container .social-medias-card {
    padding: 24px 42px;
  }
  .mobile-none{
    display: none !important;
  }
  .text-button-about{
    display: none;
  }

  .about-container .card-container {
    margin-top: 0px !important;
    background-color: transparent;
  }
  .last-about-p{
    margin-bottom: 56px;

  }
}

/* About us stuff */


/* Generic responsiv */

@media (min-width: 768px) {
  .section-title {
    color: var(--yellow-darker);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    padding-left: 30%;
    padding-right: 30%;
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .section-text {
    color: var(--text-gray);
    font-size: 1.2rem;
    line-height: 1.6;
    text-align: center;
    max-width: 680px;
    margin: 0 auto 2rem;
  }
  
  .other-info-container {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }
  .other-info-container.second-other-info {
    flex-direction: row-reverse !important;

  }
  
  .other-info-card {
    flex-direction: row;
    align-items: flex-start;
    max-width: 572px;
  }
  
  .other-info-text-container {
    margin-left: 1.5rem;
    margin-top: 0;
    text-align: left;
  }
  
  .other-info-image-container {
    width: fit-content;
    margin-top: 0;
  }
  
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
  

  .two-columns {
    display: flex;
    flex-direction: row;
    gap: 3rem; 
    align-items: flex-start;
    justify-content: space-between; 
}
  
  .column {
    width: 50%;
  }
  
  .column-title {
    text-align: left;
  }
  
  .process-step {
    flex-direction: row;
    align-items: flex-start;
  }
  
  .process-title, 
  .process-description {
    text-align: left;
  }
  
  .testimonials-grid {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .testimonial-card {
    width: 31%;
  }
  
}


/* Swiper js */
.swiper-container {
  width: 450px;
  height: 300px; 
  margin: 0 auto;
  overflow: hidden;
}

.swiper-slide {
  border: 0px !important;
  border-color: #FCFCFC;
  border-radius: 8px;
  background-color: #fff;
  border: 1px solid #ccc; 
  padding: 20px; 
  box-sizing: border-box;
  position: relative; 
  z-index: 2; 
  margin-bottom: 50px; 
  width: 382px ;
}

.desc-swiper {
  width: 342px; height: 80px;
}

.swiper-pagination-bullet-active {
  background-color: #FAC527 !important;
}

/* Swiper js */


