:root {
  --color-primary: #01204e;
  --color-secondary: #ff7901;
  --color-accent: #00ad0e;
  --color-white: #ffffff;
  --color-text-dark: #2f2a2a;
  --color-text-light: #ffffff;
  --font-main: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-main);
  background-color: var(--color-white);
  color: var(--color-primary);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

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

h1,
h2,
h3,
h4,
p,
ul {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

section {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* CSS for section section:header */
.site-header {
  background-color: var(--color-white);
  height: 100px;
  display: flex;
  align-items: center;
}

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

.logo img {
  width: 284px;
  height: 40px;
  display: block;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 40px;
}

.main-nav a {
  font-size: 18px;
  font-weight: 400;
  color: var(--color-primary);
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 10px;
  }

  .site-header {
    height: auto;
    padding: 20px 0;
  }

  .main-nav ul {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .main-nav a {
    font-size: 16px;
  }
}

/* CSS for section section:hero */
.hero-section {
  background: radial-gradient(173.07% 205.27% at 50% 50%, #024ab4 0%, #01204e 100%);
  height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  text-align: center;
  position: relative;
  z-index: 100;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.hero-background img {
  position: absolute;
  object-fit: cover;
}

.bg-img-1 {
  width: 100%;
  height: 110%;
  top: -5px;
  left: 0;
  filter: brightness(.7);
}

.bg-img-2 {
  width: 100%;
  height: 110%;
  top: -5px;
  left: 0;
}

.bg-img-3 {
  width: 100%;
  height: 110%;
  top: -5px;
  left: 0;
  filter: brightness(.7);
}

.bg-blur {
  position: absolute;
  width: 3000px;
  height: 660px;
  left: -1200px;
  top: 400px;
  z-index: 3;
  filter: blur(70px);
}

.bg-blur-right {
  position: absolute;
  width: 3000px;
  height: 660px;
  right: -1200px;
  /* ✅ Usar right ao invés de left */
  top: 400px;
  z-index: 3;
  filter: blur(70px);
  transform: scaleX(-1);
  /* ✅ Espelhar horizontalmente */
}

.hero-content-container {
  position: relative;
  padding: 20px;
}

.hero-content {
  position: relative;
  width: 100%;
  height: 775px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}

.mockup-img {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 1140px;
  height: 775px;
  z-index: 1;
  object-fit: contain;
}

.hero-text {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 435px;
  /* Approximate vertical centering of text block */
}

.hero-text h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  max-width: 877px;
}

.gradient-text {
  display: inline-block;
  background: radial-gradient(circle at 50% 50%, #FF9C42 0%, #FF7A00 40%, #FF5E00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientFlow 6s ease-in-out infinite;
  background-size: 200% 200%;
}

@keyframes gradientFlow {
  0% {
    background-position: 50% 50%;
  }

  25% {
    background-position: 70% 30%;
  }

  50% {
    background-position: 50% 70%;
  }

  75% {
    background-position: 30% 30%;
  }

  100% {
    background-position: 50% 50%;
  }
}


.hero-text p {
  font-size: 22px;
  font-weight: 400;
  max-width: 731px;
}

.cta-button {
  background: linear-gradient(90deg, #00ad0e 0%, #24c924 100%);
  color: var(--color-white);
  font-size: 22px;
  font-weight: 700;
  padding: 23px 120px;
  border-radius: 20px;
  margin-top: 20px;
  display: inline-block;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background-size: 150% 150%;
  animation: subtleFlow 8s ease-in-out infinite;
}

/* hover */
.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 173, 14, 0.25);
}

/* keyframes do gradiente fluido */
@keyframes subtleFlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@media (max-width: 1200px) {
  .mockup-img {
    width: 95%;
  }

  .hero-text h1 {
    font-size: 36px;
  }

  .hero-text p {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: auto;
    padding: 100px 0;
  }

  .hero-content {
    height: auto;
    flex-direction: column;
  }

  .mockup-img {
    position: static;
    transform: none;
    width: 100%;
    height: auto;
    margin-bottom: 30px;
  }

  .hero-text {
    margin-top: 0;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .cta-button {
    padding: 15px 40px;
    font-size: 18px;
  }
}

/* CSS for section section:solutions */
.solutions-section {
  background: linear-gradient(270deg, #f6f8fc 0%, #c8dfff 100%);
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  z-index: 10;

}

.solutions-bg-pattern {
  position: absolute;
  top: -1144px;
  left: -2280px;
  width: 5724px;
  height: 5724px;
  opacity: .2;
  z-index: 0;
}

.solutions-section .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.feature-bar {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 1058px;
}

.feature-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px;
  color: var(--color-white);
}

.feature-bar-item p {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.feature-bar-item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.feature-bar-item--blue {
  background: radial-gradient(180% 100% at 50% 0%,
      rgba(255, 255, 255, 0) 0%,
      #024ab4 30%,
      #024ab4 100%);
  border-radius: 20px 0 0 20px;
  flex: 1;
}

.feature-bar-item--orange {
  background: radial-gradient(180% 120% at 50% 0%,
      rgba(255, 255, 255, 0.25) 0%,
      #ff7901 30%,
      #ff7901 100%);
  flex: 1.2;
}

.feature-bar-item--dark-blue {
  background: radial-gradient(180% 120% at 50% 0%,
      rgba(255, 255, 255, 0.25) 0%,
      #023b91 20%,
      #01204e 100%);
  border-radius: 0 20px 20px 0;
  flex: 1;
}

.profile-selector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.profile-selector h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--color-primary);
}

.profile-selector>p {
  font-size: 18px;
  color: var(--color-primary);
}

.profile-cards {
  display: flex;
  gap: 40px;
  margin-top: 20px;
}

.profile-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 20px;
  border-radius: 10px;
  width: 296px;
  gap: 10px;
  box-sizing: border-box;
}

.profile-card--marchante {
  background: linear-gradient(180deg, #e1edff 0%, #038eff7c 100%);
  border: 1px solid #bbd1f1;
  background-size: 200% 200%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-card--marchante:hover {
  animation: gradientFlowMarchante 6s ease-in-out infinite;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Animação do gradiente */
@keyframes gradientFlowMarchante {
  0% {
    background-position: 50% 0%;
  }

  50% {
    background-position: 50% 100%;
  }

  100% {
    background-position: 50% 0%;
  }
}

.profile-card--madeireiro {
  background: linear-gradient(180deg, #ffede1 0%, #ff79017a 100%);
  border: 1px solid #f1d1bb;
  background-size: 200% 200%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-card--madeireiro:hover {
  animation: gradientFlowMadeireiro 6s ease-in-out infinite;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Animação do gradiente */
@keyframes gradientFlowMadeireiro {
  0% {
    background-position: 50% 0%;
  }

  50% {
    background-position: 50% 100%;
  }

  100% {
    background-position: 50% 0%;
  }
}

.profile-card img {
  width: 30px;
  height: 30px;
}

.profile-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary);
}

.profile-card p {
  font-size: 18px;
  color: var(--color-primary);
}

.solution-card {
  position: relative;
  padding: 40px;
  border-radius: 32px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 758px;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  z-index: 15;
  gap: 40px;
  -webkit-box-shadow: 0px 9px 20px 3px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 9px 20px 3px rgba(0, 0, 0, 0.25);
}

.solution-card-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  opacity: .1;
  z-index: 0;
}

.solution-card-bg.rotated {
  transform: translate(-50%, -50%) rotate(180deg);
}

.solution-card--marchantes {
  background: radial-gradient(circle, #bdd7ff 0%, #ffffff 100%);
  border: 1px solid rgba(255, 255, 255, 0.5);

}

.solution-card--madeireiros {
  background: radial-gradient(circle, #ffccaa 0%, #ffffff 100%);
  border: 1px solid rgba(255, 255, 255, 0.5);

}

.solution-header,
.solution-columns {
  position: relative;
  z-index: 1;
}

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

.solution-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-primary);
}

@media (max-width: 768px) {

  .gradient-text {
    backdrop-filter: blur(5px);
    padding: 0px 16px;
  }
}

.solution-header h2 .highlight {
  color: #024ab4;
}

.solution-card--madeireiros .solution-header h2 .highlight {
  color: var(--color-secondary);
}

.solution-header p {
  font-size: 18px;
  margin-top: 10px;
}

.solution-columns {
  display: flex;
  gap: 40px;
}

.solution-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.solution-column h4 {
  font-size: 22px;
  font-weight: 700;
}

.solution-column ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.solution-column li {
  background-color: var(--color-white);
  border: 1px solid #bbd1f1;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 160px;
}

.solution-column h5 {
  font-size: 18px;
  font-weight: 700;
  margin: 5px;
}

.solution-column p {
  font-size: 18px;
  line-height: 1.2;
  margin-left: 10px;
}

@media (max-width: 1024px) {
  .feature-bar {
    flex-direction: column;
  }

  .feature-bar-item {
    border-radius: 20px !important;
  }

  .profile-cards,
  .solution-columns {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .solutions-section {
    padding: 40px 0;
    gap: 40px;
  }

  .profile-selector h2 {
    font-size: 32px;
  }

  .solution-card {
    padding: 20px;
  }

  .solution-header h2 {
    font-size: 24px;
  }
}

/* CSS for section section:gallery */
.gallery-section {
  background: linear-gradient(180deg, #ff7901 0%, #cf6200 100%);
  padding: 60px 0;
}

.gallery-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 19px;
}

.slider-arrow {
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.slider-arrow img {
  width: 18px;
  height: 30px;
  transition: transform 0.4s ease-out;
}

/* ANIMAÇÃO DOS BOTÕES */

/* LOOP — PREV (movimento para a esquerda) */
.slider-arrow.prev img:hover {
  animation: moveLeftLoop 1.4s ease-in-out infinite;
}

/* LOOP — NEXT (movimento para a direita) */
.slider-arrow.next img:hover {
  animation: moveRightLoop 1.4s ease-in-out infinite;
}

/* Keyframes — esquerda */
@keyframes moveLeftLoop {
  0% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-6px);
  }

  50% {
    transform: translateX(0);
  }

  75% {
    transform: translateX(-6px);
  }

  100% {
    transform: translateX(0);
  }
}

/* Keyframes — direita */
@keyframes moveRightLoop {
  0% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(6px);
  }

  50% {
    transform: translateX(0);
  }

  75% {
    transform: translateX(6px);
  }

  100% {
    transform: translateX(0);
  }
}


.slider-image-wrapper {
  width: 872px;
  height: 633px;
  border-radius: 19px;
  overflow: hidden;
}

.slider-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .slider-image-wrapper {
    width: 90%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .gallery-section {
    padding: 40px 0;
  }

  .gallery-slider {
    gap: 10px;
  }

  .slider-arrow {
    padding: 5px;
  }

  .slider-arrow img {
    width: 12px;
    height: 20px;
  }
}

/* CSS for section section:functionalities */
.functionalities-section {
  background: radial-gradient(173.07% 205.27% at 50% 50%, #024ab4 0%, #01204e 100%);
  padding: 100px 0;
  color: var(--color-white);
}

.functionalities-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.functionalities-background .bg-img-1 {
  position: absolute;
  width: 1920px;
  height: 1047px;
  top: -104px;
  left: 0;
  object-fit: cover;
}

.functionalities-background .bg-img-2 {
  position: absolute;
  width: 1322px;
  height: 1322px;
  top: -459px;
  left: 299px;
  transform: rotate(180deg);
}

.functionalities-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.functionalities-container h2 {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
}

.functionalities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  width: 100%;
  max-width: 1022px;
}

.functionality-item {
  position: relative;
  background: rgba(28, 1, 1, 0.45);
  /* fundo translúcido escuro */
  border-radius: 5px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: .2px solid rgba(255, 255, 255, 0.322);

  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  min-height: 140px;
  color: #ffffff;
  /* texto branco para contraste */
  transition: all 0.3s ease;
}

/* Efeito hover sutil e elegante */
.functionality-item:hover {
  background: rgba(28, 1, 1, 0.55);
  box-shadow: 0 6px 35px rgba(0, 0, 0, 0.2);
  transform: translateY(-4px);
}

.functionality-item.full-width {
  grid-column: 2 / 3;
}

.functionality-item img {
  height: 30px;
  width: auto;
}

.functionality-item p {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.15;
}

@media (max-width: 1024px) {
  .functionalities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .functionality-item.full-width {
    grid-column: 1 / 3;
  }
}

@media (max-width: 768px) {
  .functionalities-section {
    padding: 60px 0;
  }

  .functionalities-container h2 {
    font-size: 32px;
  }

  .functionalities-grid {
    grid-template-columns: 1fr;
  }

  .functionality-item.full-width {
    grid-column: auto;
  }
}

/* CSS for section section:testimonials */
.testimonials-section {
  background-color: var(--color-white);
  padding: 80px 0;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 40px;
}

.testimonials-header h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--color-primary);
}

.testimonials-header p {
  font-size: 18px;
  color: var(--color-primary);
  margin-top: 10px;
}

.testimonials-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonial-card {
  background-color: var(--color-white);
  border-radius: 45px;
  box-shadow: 0px 2px 12px 0px rgba(31, 45, 61, 0.1);
  padding: 32px;
  width: 100%;
  max-width: 407px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rating {
  display: flex;
  gap: 4px;
}

.star {
  width: 24px;
  height: 24px;
  background-color: #1c55e0;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.testimonial-card blockquote {
  margin: 0;
  padding: 0;
  text-align: left;
}

.testimonial-card blockquote p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-dark);
  height: 120px;
  overflow: hidden;
  text-align: left;
  margin: 10px 0 20px 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0;
}

.testimonial-author img {
  width: 48px;
  height: 48px;
}

.author-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-dark);
}

.author-role {
  font-size: 18px;
  color: rgba(48, 42, 42, 0.6);
}

/* CSS for section section:cta */
.cta-section {
  background: linear-gradient(270deg, #f6f8fc 0%, #c8dfff 100%);
  padding: 60px 0;
}

.cta-box {
  background: radial-gradient(173.07% 205.27% at 50% 50%, #024ab4 0%, #01204e 100%);
  border-radius: 32px;
  padding: 60px;
  position: relative;
  overflow: hidden;
  text-align: center;
  color: var(--color-white);
  max-width: 946px;
  margin: 0 auto;
}

.cta-bg-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1200px;
  height: 800px;
  opacity: 0.53;
  z-index: 0;
  filter: brightness(0.7);
}

.cta-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cta-content h2 {
  font-size: 40px;
  font-weight: 700;
}

.cta-content p {
  font-size: 22px;
}

.cta-content .cta-button {
  background-color: var(--color-accent);
  color: var(--color-white);
  font-size: 18px;
  font-weight: 700;
  padding: 25px 90px;
  border-radius: 20px;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .cta-box {
    padding: 40px 20px;
  }

  .cta-content h2 {
    font-size: 28px;
  }

  .cta-content p {
    font-size: 18px;
  }

  .cta-content .cta-button {
    padding: 20px 40px;
    width: 100%;
    box-sizing: border-box;
  }
}

/* CSS for section section:footer */
.site-footer {
  background-color: var(--color-white);
  padding: 60px 0;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 14px;
  color: var(--color-primary);
}

.footer-column.about {
  max-width: 219px;
}

.footer-column.about .footer-logo {
  width: 219px;
  height: auto;
}

.footer-column h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 7px;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column ul li {
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer-column a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer-column img:not(.footer-logo) {
  width: 15px;
  height: 15px;
  object-fit: contain;
}

@media (max-width: 992px) {
  .footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: start;
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}

/* Media Query - Header - Mockup*/

@media (max-width: 1200px) {
  .mockup-img {
    width: 95%;
  }
}

@media (max-width: 992px) {
  .mockup-img {
    width: 88%;
    top: 8%;
  }
}

@media (max-width: 768px) {
  .mockup-img {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 500px;
    z-index: 1;
    object-fit: contain;
    filter: brightness(.7);
  }

  /* Ajustar hero-text para não sobrepor */
  .hero-text {
    position: relative;
    margin-top: 250px;
  }

  .hero-text h1 {
    font-size: 27px;
  }

  .hero-section {
    padding: 0;
  }

  .bg-blur {
    position: absolute;
    width: 1500px;
    height: 660px;
    left: -600px;
    top: 210px;
    z-index: 3;
    filter: blur(40px);
    opacity: 0.8;

  }

  .bg-blur-right {
    position: absolute;
    width: 1500px;
    /* ✅ Definir tamanho */
    height: 660px;
    right: -600px;
    /* ✅ Definir posição horizontal */
    top: 210px;
    /* ✅ Definir posição vertical */
    z-index: 3;
    filter: blur(20px);
    opacity: 0.8;
    transform: scaleX(-1);
  }

  .cta-button {
    margin-bottom: 20px;
  }

  .bg-img-1 {
    opacity: 0;
    height: 100%;
  }

  .bg-img-2 {
    opacity: 1;
    height: 100%;
    filter: brightness(.7);
  }

  .bg-img-3{
    width: auto;
  }

  .hero-content {
    height: 490px;
  }

}

/* Imagem pre-footer */
@media (max-width: 768px) {
  .cta-bg-image {
    width: 100%;
    height: 100%;
  }


  /* Imagem cards */
  .solution-card-bg {
    width: auto;
    height: auto;
  }

  /* Pós hero-section */

  .feature-bar {
    gap: 10px;
  }

  /* Grade de Funcionalidades  */
  .functionalities-container .functionalities-grid {
    gap: 10px;
  }
}