* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-bg: #061233;
  --text-color: #061233;
  --accent-color: #0849c1;
  --max-width: 1440px;
  --heading-font: "Exo", Arial, sans-serif;
  --body-font: "Montserrat", Arial, sans-serif;
}

body {
  background-color: #ffffff;
  color: var(--text-color);
  padding-top: 134px;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 6%;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.gradient-text {
  background-image: linear-gradient(to right, #9ba8c3, #eaf1ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
}

.hero-wrapper {
  background-color: var(--primary-bg);
  color: white;
  width: 100%;
}

.primary-button-header {
  background-color: var(--accent-color);
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 16px;
  text-decoration: none;
  font-weight: 500;
  font-family: var(--body-font);
  transition: background-color 0.3s ease;
}

.primary-button-header:hover {
  background-color: #0c5bb8;
}

.header {
  background-color: var(--primary-bg);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.fixed-header {
  position: fixed;
  background-color: var(--primary-bg);
  box-shadow: 0 8px 8px 0px rgba(0, 0, 0, 0.25);
  animation: slideDown 0.5s ease;
}

@keyframes slideDown {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 6%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo-img {
  height: 50px;
}

.navbar {
  display: flex;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
  padding: 0;
  margin: 0;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--body-font);
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--accent-color);
}

.hamburger-menu {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  color: white;
  font-size: 32px;
}

.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--primary-bg);
  z-index: 1000;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);

  max-height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out, opacity 0.3s ease-in-out,
    visibility 0.3s ease-in-out;
}

.mobile-nav.active {
  max-height: 500px;
  opacity: 1;
  visibility: visible;
}

.mobile-nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  transform: translateY(-10px);
  transition: transform 0.3s ease-out 0.1s;
}

.mobile-nav.active .mobile-nav-menu {
  transform: translateY(0);
}

.mobile-nav-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  transition-delay: calc(0.05s * var(--item-index, 0));
}

.mobile-nav.active .mobile-nav-item {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav-item:nth-child(1) {
  --item-index: 1;
}

.mobile-nav-item:nth-child(2) {
  --item-index: 2;
}

.mobile-nav-item:nth-child(3) {
  --item-index: 3;
}

.mobile-nav-item:nth-child(4) {
  --item-index: 4;
}

.mobile-nav-item:nth-child(5) {
  --item-index: 5;
}

.mobile-nav-link {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--body-font);
  display: block;
  padding: 15px 20px;
  text-align: center;
  transition: background-color 0.3s ease;
}

.mobile-nav-link:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

@media (max-width: 1024px) {

  .navbar,
  .primary-button-header {
    display: none;
  }

  .hamburger-menu {
    display: block;
  }

  .header-container {
    justify-content: space-between;
  }
}

.hero {
  display: flex;
  align-items: center;
  padding: 0;
  gap: 100px;
  color: white;
  overflow: hidden;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero h1 {
  font-size: 64px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 20px;
  font-family: var(--heading-font);
}

.hero p {
  font-size: 24px;
  text-align: start;
  font-weight: 400;
  line-height: normal;
  font-family: var(--body-font);
  margin-bottom: 20px;
}

.hero-buttons {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.primary-button {
  background-color: var(--accent-color);
  display: flex;
  align-items: center;
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 500;
  transition: background-color 0.3s ease;
  font-family: var(--body-font);
  border: none;
  font-size: 18px;
  font-weight: 500;
  font-family: var(--body-font);
  cursor: pointer;
}

.primary-button:hover {
  background-color: #0c5bb8;
}

.secondary-button {
  width: fit-content;
  background-color: #ffffff1a;
  display: flex;
  align-items: center;
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 500;
  font-family: var(--body-font);
  border: 2px solid #ffffff33;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.secondary-button:hover {
  background-color: #ffffff33;
  border-color: #ffffff4d;
}

.hero-image {
  display: flex;
  align-items: center;
}

.totem-img {
  max-height: 840px;
  margin-bottom: -70px;
}

.partners-carousel-container {
  overflow: hidden;
  margin: 60px 0;
}

.partners-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.partners-track {
  display: flex;
  align-items: center;
  width: max-content;
}

.partner-item {
  flex: 0 0 auto;
  padding-right: 30px;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.partner-item h3 {
  font-family: var(--heading-font);
  font-size: 36px;
  font-weight: 700;
  color: var(--text-color);
}

.partner-item::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-left: 30px;
  background-color: var(--text-color);
  border-radius: 50%;
}

.partner-item:last-child::after,
.partner-item:nth-child(5)::after,
.partner-item:nth-child(10)::after {
  display: none;
}

.partners-carousel::before,
.partners-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.partners-carousel::before {
  left: 0;
  background: linear-gradient(to right,
      #ffffff 0%,
      rgba(255, 255, 255, 0) 100%);
}

.partners-carousel::after {
  right: 0;
  background: linear-gradient(to left, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

@keyframes scroll {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

.pause-on-hover:hover {
  animation-play-state: paused;
}


.animate-scroll {
  animation: scroll 124s linear infinite;
}

@media (max-width: 480px) {
  .partners-carousel-container {
    margin: 20px 0px;
  }

  .partner-item h3 {
    font-size: 16px;
  }

  .partner-item {
    padding-right: 16px;
  }

  .partner-item::after {
    margin-left: 16px;
    width: 12px;
    height: 12px;
  }
}

.section-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 100px 120px;
  border-radius: 20px;
  gap: 48px;
  background-image: url("assets/card-background.png");
  background-size: cover;
  background-position: center;
  background-color: var(--primary-bg);
}

.states-content {
  flex: 1;
  max-width: 500px;
}

.section-card h2 {
  font-size: 50px;
  font-weight: 500;
  font-family: var(--heading-font);
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-card p {
  font-size: 22px;
  font-family: var(--body-font);
  line-height: normal;
  margin-bottom: 20px;
}

.brazil-map {
  max-width: 100%;
  height: auto;
}

.section-card-secondary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 120px;
  border-radius: 20px;
  gap: 48px;
  background-image: url("assets/card-background.png");
  background-size: cover;
  background-position: center;
  background-color: var(--primary-bg);
}

.section-card-secondary h2 {
  font-size: 50px;
  font-weight: 500;
  text-align: start;
  font-family: var(--heading-font);
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-card-secondary p {
  font-size: 22px;
  font-family: var(--body-font);
  line-height: normal;
  margin-bottom: 20px;
}

.section-content {
  max-width: 640px;
}

.mobile-user-img {
  margin-top: -36px;
  max-width: 100%;
  height: auto;
}

.stats-section {
  display: flex;
  gap: 64px;
  align-items: center;
  justify-content: center;
  margin: 60px 0px;
}

.stat-item {
  text-align: center;
}

.stat-item h3 {
  font-size: 36px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 6px;
  font-family: var(--body-font);
  color: var(--text-color);
}

.stat-item p {
  font-size: 22px;
  font-weight: 500;
  color: var(--text-color);
  font-family: var(--body-font);
}

.stat-separator {
  width: 4px;
  height: 60px;
  background-color: var(--primary-bg);
}

.benefits-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  margin-bottom: 96px;
}

.benefits-text {
  flex: 1;
}

.benefits-text h2 {
  text-align: start;
  font-size: 50px;
  line-height: 54px;
  font-weight: 500;
  font-family: var(--heading-font);
  color: var(--text-color);
  margin-bottom: 20px;
}

.benefits-text p {
  text-align: start;
  font-size: 20px;
  font-weight: 500;
  font-family: var(--body-font);
  color: var(--text-color);
  margin-bottom: 20px;
}

.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefits-list li {
  display: flex;
  align-items: center;
  color: var(--text-color);
  font-size: 18px;
  font-weight: 400;
  font-family: var(--body-font);
}

.check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  min-height: 28px;
  margin-right: 12px;
  background-color: var(--accent-color);
  border-radius: 50%;
  color: white;
  flex-shrink: 0;
}

.check-icon i {
  font-size: 14px;
}

.benefits-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.computer-img {
  max-width: 100%;
  height: auto;
}

.solutions-section {
  margin-top: 60px;
  background-color: #ffffff;
}

.section-title {
  font-size: 50px;
  font-weight: 500;
  line-height: 54px;
  text-align: center;
  margin-bottom: 20px;
  color: var(--text-color);
  font-family: var(--heading-font);
}

.section-description {
  font-size: 20px;
  font-family: var(--body-font);
  font-weight: 500;
  line-height: normal;
  text-align: center;
  color: var(--text-color);
  max-width: 800px;
  margin: 0 auto 20px;
}

.solutions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  width: 100%;
}

.solution-card {
  width: calc((100% - 64px) / 3);
  flex: 0 0 auto;
  background: linear-gradient(to bottom, #0d2961, #061233);
  border-radius: 10px;
  padding: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

.solution-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px 4px rgba(0, 0, 0, 0.35);
}

.solution-icon {
  display: flex;
  font-size: 24px;
  margin-bottom: 20px;
}

.solution-title {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: var(--body-font);
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.solution-description {
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  font-family: var(--body-font);
}

@media (max-width: 1024px) and (min-width: 481px) {
  .solution-card {
    width: calc((100% - 32px) / 2);
  }
}

@media (max-width: 480px) {
  .solution-card {
    width: 100%;
  }
}

.ceo-quote-section {
  margin-top: 60px;
}

.quote-container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.quote-column {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.quote-background {
  position: relative;
  background-image: url("assets/quotes-background.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  padding: 40px;
  display: flex;
  align-items: center;
}

.quote-content {
  max-width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote-content p {
  font-size: 22px;
  font-weight: 600;
  line-height: normal;
  color: var(--text-color);
  font-family: var(--body-font);
}

.quote-author {
  margin-top: 40px;
  font-family: var(--body-font);
  font-weight: 500;
  font-size: 20px;
  color: var(--text-color);
  text-align: right;
  padding-right: 48px;
}

.event-image {
  flex: 1;
  max-width: 500px;
}

.event-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonials-section {
  background-color: var(--primary-bg);
  background-image: url("assets/card-background.png");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 80px 20px;
  border-radius: 20px;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.testimonials-section .container-testimonials {
  padding: 0 80px;
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
}

.testimonials-section h2 {
  font-size: 50px;
  line-height: 54px;
  font-weight: 500;
  margin-bottom: 20px;
  font-family: var(--heading-font);
  display: block;
  text-align: start;
}

.testimonials-subtitle {
  font-size: 22px;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 20px;
  font-family: var(--body-font);
}

.testimonials-carousel {
  overflow: hidden;
  position: relative;
  margin: 0 -10px;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
  margin: 0 auto;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 20px);
  margin: 0 10px;
  background-color: white;
  border-radius: 10px;
  padding: 24px;
  color: var(--text-color);
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: 300px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
  margin-bottom: 24px;
}

.testimonial-header h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 5px;
  font-family: var(--body-font);
  color: var(--text-color);
}

.testimonial-location {
  font-size: 18px;
  color: var(--text-color);
  font-weight: 400;
  margin-bottom: 10px;
  line-height: normal;
  font-family: var(--body-font);
}

.testimonial-rating {
  color: var(--accent-color);
  font-size: 20px;
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.testimonial-content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  font-family: var(--body-font);
  color: var(--text-color);
}

.carousel-nav {
  position: absolute;
  top: 56%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  font-size: 18px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.carousel-nav:hover {
  background-color: var(--accent-color);
  color: white;
  border-color: var(--accent-color);
}

.prev-button {
  left: 32px;
}

.next-button {
  right: 32px;
}

.carousel-nav.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 20px);
  }

  .testimonials-section {
    margin-top: 40px;
  }

  .testimonials-section {
    padding: 60px 20px;
  }

  .testimonials-section .container-testimonials {
    padding: 0 60px;
  }

  .testimonials-section h2 {
    font-size: 40px;
  }

  .testimonials-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .carousel-nav {
    width: 45px;
    height: 45px;
  }

  .prev-button {
    left: 20px;
  }

  .next-button {
    right: 20px;
  }

}

@media (max-width: 767px) {
  .testimonial-card {
    flex: 0 0 calc(100% - 20px);
    min-height: 250px;
  }

  .testimonials-section {
    padding: 40px 15px;
    border-radius: 15px;
  }

  .testimonials-section .container-testimonials {
    padding: 0 15px;
  }

  .testimonials-section h2 {
    font-size: 28px;
    line-height: 34px;
  }

  .testimonials-subtitle {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .carousel-nav {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .prev-button {
    left: 1%;
  }

  .next-button {
    right: 1%;
  }

  .testimonial-header h3 {
    font-size: 20px;
  }

  .testimonial-location {
    font-size: 16px;
  }

  .testimonial-content p {
    font-size: 14px;
  }

}

.clients-section {
  margin: 60px 0;
  background-color: #fff;
  overflow: hidden;
}

.section-title {
  font-size: 50px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 20px;
  color: var(--text-color);
  font-family: var(--heading-font);
}

.section-description {
  font-size: 20px;
  text-align: center;
  max-width: 850px;
  margin: 0 auto 24px;
  color: var(--text-color);
  font-family: var(--body-font);
}

.clients-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.clients-row-container {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.clients-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.clients-carousel::before,
.clients-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}

.clients-carousel::before {
  left: 0;
  background: linear-gradient(to right,
      #ffffff 0%,
      rgba(255, 255, 255, 0) 100%);
}

.clients-carousel::after {
  right: 0;
  background: linear-gradient(to left, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.clients-track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
}

.clients-track.top-row {
  animation: scroll 30s linear infinite;
}

.clients-track.bottom-row {
  animation: scrollReverse 30s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50%));
  }
}

@keyframes scrollReverse {
  0% {
    transform: translateX(calc(-50%));
  }

  100% {
    transform: translateX(0);
  }
}

.client-item {
  flex: 0 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  height: 220px;
  width: 330px;
  will-change: transform;
}

.client-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1024px) {
  .clients-gallery {
    gap: 20px;
  }

  .clients-track {
    gap: 20px;
  }

  .client-item {
    height: 180px;
    width: 270px;
  }
}

@media (max-width: 480px) {
  .clients-section {
    margin: 30px 0;
  }

  .section-title {
    font-size: 28px;
    line-height: normal;
  }

  .section-description {
    font-size: 16px;
    max-width: 100%;
  }

  .clients-gallery {
    gap: 16px;
  }

  .clients-track {
    gap: 16px;
  }

  .clients-carousel::before,
  .clients-carousel::after {
    width: 60px;
  }

  .client-item {
    height: 140px;
    width: 210px;
  }

  .totem-img {
    margin-bottom: -40px;
  }
}

.faq-section {
  margin-bottom: 60px;
}

.faq-title {
  font-size: 50px;
  font-weight: 500;
  line-height: normal;
  text-align: center;
  margin-bottom: 20px;
  color: var(--text-color);
  font-family: var(--heading-font);
}

.faq-subtitle {
  font-size: 22px;
  font-weight: 500;
  line-height: normal;
  text-align: center;
  color: var(--text-color);
  margin-bottom: 20px;
  font-family: var(--body-font);
}

.faq-container {
  max-width: 80%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question h3 {
  font-size: 22px;
  font-weight: 600;
  line-height: normal;
  font-family: var(--body-font);
  color: var(--text-color);
}

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: var(--accent-color);
  border: 2px solid #ffffff33;
  border-radius: 50%;
  color: white;
  transition: transform 0.3s ease;
}

.faq-icon i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  background-color: var(--accent-color);
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 750px;
}

.faq-answer p {
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  color: var(--text-color);
  font-family: var(--body-font);
}

.site-footer {
  background-image: url("assets/rodapé.png");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 60px 0 30px;
  margin-top: 60px;
  position: relative;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 48px;
}

.footer-brand {
  flex: 2;
  display: flex;
  flex-direction: column;
  max-width: 432px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 20px;
  object-fit: contain;
  object-position: left;
}

.footer-description {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--body-font);
}

.social-icons {
  display: flex;
  gap: 20px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #fbfcff;
  border-radius: 50%;
  color: var(--text-color);
  transition: background-color 0.3s ease;
}

.social-icons a:hover {
  background-color: var(--accent-color);
  color: #fbfcff;
  transform: translateY(-3px);
}

.footer-columns {
  display: flex;
  gap: 48px;
}

.footer-navigation h3,
.footer-policies h3,
.footer-contact h3 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 16px;
  font-family: var(--body-font);
}

.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--body-font);
}

.footer-links a:hover {
  text-decoration: underline;
}

.contact-info {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-family: var(--body-font);
}

.contact-info i {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border: 2px solid white;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  text-align: center;
  flex-shrink: 0;
}

.contact-info a {
  color: white;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--body-font);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: white;
  text-decoration: underline;
}

.footer-bottom p {
  text-align: center;
  color: white;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--body-font);
}

.whatsapp-link {
  width: 55%;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
  }

  .footer-columns {
    flex-direction: column;
  }
}

@media (max-width: 992px) and (min-width: 769px) {
  .footer-content {
    flex-wrap: wrap;
  }

  .footer-brand {
    flex: 100%;
    margin-bottom: 30px;
  }

  .footer-navigation,
  .footer-policies,
  .footer-contact {
    flex: 1;
  }
}

@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    padding-top: 32px;
    gap: 40px;
  }

  .hero-wrapper {
    padding-bottom: 0px;
  }

  .hero-content {
    max-width: 100%;
    margin-bottom: 0px;
  }

  .hero-image {
    justify-content: center;
  }

  .hero h1 {
    font-size: 36px;
    text-align: start;
  }

  .section-card {
    flex-direction: column;
    padding: 60px 40px;
  }

  .states-content {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .section-card h2 {
    font-size: 40px;
  }

  .section-card p {
    font-size: 18px;
  }

  .brazil-map {
    max-width: 90%;
  }

  .section-card-secondary {
    flex-direction: column;
    padding: 60px 40px 0px;
    gap: 20px;
  }

  .section-content {
    max-width: 100%;
  }

  .section-card-secondary h2 {
    font-size: 40px;
    text-align: start;
  }

  .section-card-secondary p {
    font-size: 18px;
    text-align: start;
  }

  .section-card-secondary .secondary-button {
    max-width: 400px;
  }

  .mobile-user-img {
    max-width: 70%;
    margin: 0 auto;
  }

  .solution-card {
    flex: 0 0 calc(50% - 32px);
  }

  .solutions-section {
    margin-top: 40px;
  }

  .stats-section {
    flex-direction: column;
    margin-top: 30px;
    margin-bottom: 40px;
    gap: 24px;
  }

  .stat-item {
    flex: 1 0 100%;
    width: 100%;
  }

  .stat-separator {
    width: 150px;
    height: 4px;
  }

  .benefits-section {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    margin-bottom: 40px;
  }

  .benefits-text p {
    max-width: 100%;
    margin: 0 auto 30px;
  }

  .benefits-list {
    text-align: left;
  }

  .quote-container {
    flex-direction: column;
    gap: 40px;
  }

  .ceo-quote-section {
    margin-top: 40px;
  }

  .event-image {
    max-width: 100%;
  }

  .faq-title {
    font-size: 50px;
    text-align: center;
  }

  .faq-subtitle {
    font-size: 22px;
    text-align: center;
  }

  .faq-container {
    max-width: 90%;
  }

  @media (max-width: 480px) {
    .hero-buttons {
      flex-direction: column;
      width: 100%;
    }

    .hero h1 {
      font-size: 38px;
      text-align: start;
      line-height: 40px;
    }

    .hero p {
      font-size: 16px;
      margin-bottom: 30px;
      text-align: start;
    }

    .primary-button,
    .secondary-button {
      width: 100%;
      justify-content: center;
      font-size: 14px;
    }

    .section-card {
      padding: 20px;
      border-radius: 15px;
    }

    .states-content {
      margin-bottom: 0px;
    }

    .section-card h2 {
      font-size: 28px;
      line-height: 34px;
      text-align: start;
    }

    .section-card p {
      font-size: 16px;
      text-align: start;
      margin-bottom: 30px;
    }

    .section-card .secondary-button {
      width: 100%;
      padding: 14px 6px;
      text-align: center;
    }

    .brazil-map {
      max-width: 100%;
    }

    .stats-section {
      margin-top: 30px;
      margin-bottom: 40px;
      gap: 24px;
    }

    .stat-separator {
      width: 150px;
      height: 4px;
    }

    .section-card-secondary {
      padding: 30px 20px 0px;
      border-radius: 15px;
      gap: 40px;
    }

    .section-card-secondary h2 {
      font-size: 28px;
      text-align: start;
    }

    .section-card-secondary p {
      font-size: 16px;
      text-align: start;
      margin-bottom: 30px;
    }

    .section-card-secondary .secondary-button {
      width: 100%;
      padding: 14px 7px;
    }

    .mobile-user-img {
      max-width: 80%;
    }

    .solutions-section {
      margin-top: 30px;
      margin-bottom: 40px;
    }

    .quote-background {
      width: 100%;
      padding: 60px 20px;
      background-image: url(assets/quotes-background-mobile.png);
    }

    .quote-content p {
      text-align: center;
    }

    .stat-item {
      flex: 1 0 100%;
    }

    .stat-item h3 {
      font-size: 28px;
    }

    .stat-item p {
      font-size: 16px;
      font-weight: 600;
    }

    .benefits-section {
      margin-bottom: 30px;
    }

    .benefits-text h2 {
      font-size: 28px;
      line-height: 32px;
      text-align: start;
    }

    .benefits-text p {
      font-size: 16px;
      text-align: start;
    }

    .check-icon {
      min-width: 16px;
      min-height: 16px;
    }

    .check-icon i {
      font-size: 8px;
    }

    .ceo-quote-section {
      margin-top: 40px;
    }

    .quote-content p {
      font-size: 16px;
    }

    .quote-author {
      font-size: 16px;
      font-weight: 500;
      width: 250px;
      align-self: end;
      margin-top: 20px;
    }

    .section-title {
      font-size: 28px;
      text-align: start;
    }

    .section-description {
      font-size: 16px;
      margin-bottom: 30px;
      text-align: start;
    }

    .solution-card {
      flex: 0 0 100%;
      padding: 20px;
    }

    .faq-title {
      font-size: 28px;
      text-align: start;
    }

    .faq-subtitle {
      font-size: 16px;
      text-align: start;
      margin-bottom: 30px;
    }
  }

  .faq-section {
    margin-bottom: 30px;
  }

  .faq-container {
    max-width: 100%;
  }

  .faq-question {
    padding: 15px;
  }

  .faq-question h3 {
    font-size: 16px;
  }

  .faq-answer p {
    font-size: 14px;
  }

  .faq-item {
    margin-bottom: 10px;
  }

  .faq-icon {
    flex-shrink: 0;
  }

  .site-footer {
    padding: 30px 0 30px;
  }

  .footer-columns {
    gap: 32px;
  }

  .footer-navigation {
    margin-bottom: 0px;
  }

  .footer-content {
    margin-bottom: 30px;
  }
}