body {
  overflow-x: hidden;
}

/* Botões */
.btn-primary-green {
  background-color: var(--edupay-primria);
  border: none;
  color: #000;
  font-weight: 600;
}

.btn-outline-dark {
  border: 1px solid #000;
  color: #000;
}

/* Hover states */
.btn-primary-green:hover {
  background-color: #72e600;
  color: #000;
}

.btn-outline-dark:hover {
  background-color: #000;
  color: #fff;
}

.btn-outlined {
  position: relative;
  background: transparent;
  padding: 4px 11px;
  border-radius: 8px;
  border: 2px solid var(--edupay-secundaria, #aee20c);
  color: var(--edupay-dark);

  cursor: pointer;
}

/* Hover effect */
.btn-outlined:hover {
  background-color: rgba(174, 226, 12, 0.1);
}

/* Focus state for accessibility */
.btn-outlined:focus {
  outline: none;
}

.btn-outlined:focus::before {
  border-color: #45e200;
}

/* fonts */
.title {
  font-family: Montserrat, sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 24px;
}
.label {
  text-align: justify;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
}
.section-title {
  color: var(--edupay-dark);
  font-family: Montserrat, sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.4;
  position: relative;
  display: inline-block;
}
.section-subtitle {
  color: var(--edupay-dark);
  font-family: Inter, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
  margin: 0 auto;
}

.feature-title {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--edupay-dark);
  font-family: Montserrat, sans-serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.feature-text {
  color: var(--edupay-tercearia);
  text-align: justify;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px; /* 160% */
}

.separator {
  width: 70%;
  max-width: 514px;
  border-radius: 10px;
  height: 10px;
  background: var(--edupay-gradiente);
}
.separator-grey{
  width: 100%;
  margin-top: 2rem;
  height: 1px;
  background: #D9DBE9;
}

@media (max-width: 1280px) {

  .title{
    font-size: 30px;
  }
  .label{
    font-size: 22px;
    line-height: 28px;
  }
  
}

/* Navegação */
.logo {
  height: 40px;
}

.nav-link {
  text-wrap: nowrap;
  color: #000;
  margin: 0 1rem;
  border-radius: 8px;
  border: 2px solid transparent;
}

.nav-link:hover {
  border: 2px solid var(--edupay-secundaria, #aee20c);
  color: var(--edupay-dark);
}

.download{
  cursor: pointer;
  transition: transform 0.3s ease;
  max-width: 220px;
}
.download:hover{
  transform: translateY(-5px);

}

/* Section 1 */
.section1 {
  background: url("./assets/image-section1.png");
  background-repeat: no-repeat;
  background-size: 90vh;
  background-position: 100% 100%;
  position: relative;
  overflow: hidden;
  height: 75vh;
  padding-top: 80px;
}

.section1-content {
  height: 100%;
}

.content-text {
  padding-right: 50px;
}
.image-section1 {
  position: relative;
  right: 0;
}
.text-section1 {
  width: 60%;
}
@media (max-width: 1280px) {
  .section1{
    background-size: 75vh;
  }
  
}

/* Media Queries */
@media (max-width: 991px) {
  .section1 {
    padding-top: 40px;
    background-size: contain;
  }

  .content-text {
    padding-right: 15px;
    text-align: center;
    margin-bottom: 40px;
  }

  .image-section1 img {
    position: static;
    right: 0;
    top: auto;
    transform: none;
    max-width: 100%;
  }

  .d-flex.gap-3 {
    justify-content: center;
  }
  .text-section1 {
    width: 100%;
  }
}

@media (max-width: 700px) {
  .section1 {
    height: 95vh;
  }
}

/* Section 2 Styles */
.section2 {
  padding: 80px 0;
  background-color: #fff;
}

.feature-item {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 20px;
  border-radius: 16px;
  transition: transform 0.3s ease;
}

.feature-content {
  flex: 1;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

.feature-image img {
  max-width: 100%;
  height: auto;
}

Media Queries @media (max-width: 991px) {
  .section2 {
    padding: 60px 0;
  }

  .feature-item {
    text-align: center;
    margin-bottom: 40px;
  }

  .feature-title {
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }

  .feature-image img {
    max-width: 80%;
  }
}

@media (min-width: 992px) {
  .feature-item {
    flex-direction: row;
    align-items: center;
  }

  .feature-content {
    flex: 0 0 60%;
  }

  .feature-image {
    flex: 0 0 40%;
  }
}
/* Section 3 Styles */
.section3 {
  padding: 80px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.section3 .section-title {
  margin-bottom: 24px;
}

.dashboard-container {
  position: relative;
  margin-top: 60px;
  padding: 20px;
}

.dashboard-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.dashboard-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

/* Decorative elements */
.decoration-circle {
  position: absolute;
  border-radius: 50%;
  background-color: var(--edupay-primria);
  opacity: 0.1;
  z-index: 1;
}

.decoration-circle-1 {
  width: 200px;
  height: 200px;
  top: -50px;
  left: -100px;
}

.decoration-circle-2 {
  width: 300px;
  height: 300px;
  bottom: -100px;
  right: -150px;
}

/* Media Queries */
@media (max-width: 768px) {
  .section3 {
    padding: 60px 0;
  }

  .dashboard-container {
    margin-top: 40px;
  }

  .decoration-circle {
    display: none;
  }
}

@media (min-width: 769px) and (max-width: 1199px) {
  .decoration-circle-1 {
    width: 150px;
    height: 150px;
    top: -30px;
    left: -50px;
  }

  .decoration-circle-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: -100px;
  }
}
/* Section 4 Styles */
.section4 {
  padding: 80px 0;
  background-color: #fff;
}

.section4 .section-subtitle {
  margin-bottom: 48px;
}

.testimonials-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--edupay-gradiente);
  padding: 24px;
  border-radius: 16px;
  color: #fff;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
  position: relative;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-image {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

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

.author-name {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.author-role {
  font-size: 14px;
  opacity: 0.8;
  margin: 0;
}

/* Hover Effects */
.testimonial-card {
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

/* Media Queries */
@media (max-width: 768px) {
  .section4 {
    padding: 60px 0;
  }

  .testimonials-container {
    padding: 0 20px;
  }

  .testimonial-text {
    font-size: 15px;
  }
}

@media (min-width: 992px) {
  .testimonial-card {
    padding: 32px;
  }

  .testimonial-text {
    font-size: 18px;
  }
}
/* Section 5 Styles */
.section5 {
  padding: 80px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.contact-description {
  text-align: justify;
  max-width: 800px;
  margin: 0 auto;
  color: var(--edupay-dark);
}

.contact-form {
  position: relative;
  /*background: #fff;*/
  padding: 40px;
  /*border-radius: 16px;*/
  /*box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);*/
  z-index: 1;
}

.form-group {
  margin-bottom: 1rem;
}

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

.form-control {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 0.75rem;
  width: 100%;
  transition: border-color 0.2s;
}

.form-control:focus {
  border-color: var(--edupay-primria);
  box-shadow: 0 0 0 2px rgba(127, 255, 0, 0.1);
  outline: none;
}
#necessidade {
  height: 330px;
  resize: none; /* Prevents user resizing */
}

/* Footer Styles */
.footer {
  background-color: var(--edupay-offwhite);
  padding: 80px 0 40px;
  border-top: 1px solid #eee;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.footer-description {
  color: #666;
  font-size: 14px;
  margin-bottom: .5rem;
}

.footer-title {
  color: var(--edupay-dark);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #666;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--edupay-primria);
}

.language-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 2rem;
}

.globe-icon {
  width: 16px;
  height: 16px;
}

.form-select {
  border: 1px solid #e0e0e0;
  font-size: 14px;
  padding: 4px 8px;
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.copyright {
  color: #666;
  font-size: 14px;
  margin: 0;
}

.footer-bottom-links {
  color: var(--edupay-dark);
  font-size: 14px;
  margin: 0;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: transparent;
  transition: background-color 0.2s;
}

.social-link img {
  width: 16px;
  height: 16px;
}

/* Media Queries */
@media (max-width: 768px) {
  .section5 {
    padding: 60px 0;
  }

  .contact-form {
    padding: 20px;
  }

  .footer {
    padding: 60px 0 30px;
  }

  .social-links {
    justify-content: center;
    margin-top: 20px;
  }

  .copyright {
    text-align: center;
  }
}

/* Form Validation Styles */
input:invalid,
textarea:invalid {
  border-color: initial;
}
.form-control:invalid:focus {
  box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.1);
}
input:invalid:focus,
textarea:invalid:focus {
  border-color: red;
}

/* Mantém a borda normal quando o campo está vazio */
input:invalid:not(:focus):placeholder-shown,
textarea:invalid:not(:focus):placeholder-shown {
  border-color: initial;
}

/* Estilo para campos válidos */
input:valid,
textarea:valid {
  border-color: green;
}

/* Decorative Elements */
.section5::before,
.section5::after {
  content: "";
  position: absolute;
  background-color: var(--edupay-secundaria);
  opacity: 0.1;
  border-radius: 50%;
  z-index: 0;
}

.section5::before {
  width: 900px;
  height: 900px;
  left: -350px;
  top: 360px;
}

.section5::after {
  width: 300px;
  height: 300px;
  right: -150px;
  bottom: -150px;
}


.services {
  padding: 4rem 0;
}

.services-container {
  max-width: 1200px;
  margin: 0;
  padding: 0 1rem;
}

.services-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

.services-header h2 {
  font-size: 2rem;
  color: #333;
}

/* Swiper styles */
.swiper-pagination{
  display: none;
}

.service-card {
  width: 229px;
  height: 193px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px -2px 4px 0px #B9CDE3;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}


.service-card img {
  width: 120px;
  height: 120px;
}

.service-card h3 {
  color: #333;
  font-size: 14px;
}
.footer-card-carrossel{
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--edupay-secundaria);
  width: 100%;
  height: 55px;
  border-radius:  0  0 10px 10px;
}

.footer-card-carrossel h3{
  margin: 0 40px;
}

/* About section */

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.about-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.green-bar {
  width: 80px;
  height: 12px;
  transform: rotate(90deg);
  border-radius: 12px;
  background: var(--edupay-gradiente);
}

.meet-image{
  object-fit: cover;
  max-width: 70%;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.label-about{
  color: var(--edupay-tercearia, #304755);
  text-align: justify;
  font-family: Inter, sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px;
}

.about-images {
  position: relative;
}

.tablet-image img {
  width: 100%;
  border-radius: 8px;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
  }

  .team-images {
    position: static;
    margin-top: 1rem;
  }
}