a {
  color: inherit;
}

/* Fontes */
@font-face {
  font-family: "Neo Sans Intel";
  src: url("../fonts/NeoSansIntel-Light.ttf") format("truetype");
  font-weight: 300;
}

@font-face {
  font-family: "Neo Sans Intel";
  src: url("../fonts/NeoSansIntel.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Neo Sans Intel";
  src: url("../fonts/NeoSansIntel-Medium.ttf") format("truetype");
  font-weight: 500;
}

body {
  margin: 0;
  font-family: "Neo Sans Intel", sans-serif;
  color: #727376;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 900px;
}

/* Navbar */
.navbar-custom {
  transition: 0.3s;
}

.navbar-custom.scrolled {
  background: rgba(255, 255, 255, 0.96);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 0.5rem 1rem;
}

.navbar-custom .nav-link {
  color: #727376;
  margin-right: 1rem;
  font-weight: 500;
  font-size: 1.1rem;
}

.navbar-custom .nav-link.active,
.navbar-custom .nav-link:hover {
  color: #00afaf;
  border-bottom: 2px solid #00afaf;
}

/* Hero */
#hero {
  background-image: linear-gradient(to bottom, #f8f8f8, #dbdbdb);
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 500;
  color: #000;
}

.hero-text {
  font-size: 1.5rem;
  margin: 1rem 0;
}

.hero-text .text-highlight {
  color: #00afaf;
  font-weight: 500;
}

.btn-primary {
  background: #f79633;
  border: none;
  font-weight: 500;
}

/* Statistics */
#statistics {
  background: #fff;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 500;
  color: #000;
}

.stat-row {
  background: linear-gradient(to left, #f0f0f0, #ffffff);
  padding: 0.5rem;
  margin-bottom: 0.5rem;
  border-radius: 12px;
  /* 🔹 arredonda os cantos */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  /* opcional: dá leve relevo */
}



.stat-line {
  display: flex;
  align-items: baseline;
}

.plus {
  font-size: 2.5rem;
  color: #00afaf;
  font-weight: 500;
}

.number {
  font-size: 2.5rem;
  color: #f79633;
  font-weight: 500;
  margin: 0 0.5rem;
}

.unit {
  font-size: 1.5rem;
  color: #00afaf;
  text-transform: uppercase;
}

.stat-desc {
  margin: 0;
  font-size: 1rem;
  padding-left: calc(2.5rem + 0.5rem);
}

/* Solutions */
#solutions {
  position: relative;
  background: url("../images/solutions-bg.png") center/cover no-repeat;
  padding: 4rem 0;
}

#clientes {
  position: relative;
  background: url("../images/fundo1.png") center/cover no-repeat;
}

#depoimentos {
  position: relative;
  background: url("../images/fundo2.png") center/cover no-repeat;
}

#artigos {
  position: relative;
  background: url("../images/fundo3.png") center/cover no-repeat;
}

#solutions .overlay {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#solutions .container {
  position: relative;
  z-index: 2;
}

#solutions .section-title,
#solutions p {
  color: #fff;
}

#solutions p span {
  color: #f79633;
}

.solution-group {
  /* margem superior 0, auto nas laterais, 3rem embaixo */
  display: flex;
  align-items: flex-start;
  /* ou center, se quiser alinhar verticalmente os itens */
}

.phase-item {
  flex: 8;
  color: #fff;
  font-size: 1.25rem;
  padding-top: 0.5rem;
}

.buttons {
  flex: 8;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 15px;
  margin-bottom: 15px;
}

.sol-btn {
  display: flex;
  align-items: center;
  text-decoration: none;
  background: #fff;
  padding: 0.75rem 1rem;
  border-radius: 8px;
}

.sol-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-param {
  background: #00afaf;
}

.icon-orange {
  background: #f79633;
}

.icon-purple {
  background: #705989;
}

.sol-text {
  margin-left: 1rem;
}

.sol-text .title {
  display: block;
  font-weight: 500;
  text-transform: uppercase;
}

.sol-text .subtitle {
  display: block;
  font-size: 0.9rem;
  color: #555;
}

.plus-btn {
  margin-left: auto;
  font-size: 1.5rem;
  color: #000;
  font-weight: 500;
}

@media (max-width: 768px) {
  .solution-group {
    flex-direction: column;
  }

  .phase-item {
    margin-bottom: 1rem;
  }
}

.portfolio-card {
  position: relative;
  overflow: hidden;
}

.portfolio-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 200 / 250;
  /* ajusta como quiser */
  overflow: hidden;
}

.portfolio-img-wrapper img {
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.4s ease;
}

.first-img {
  z-index: 1;
  transform: translateY(0%);
}

.second-img {
  z-index: 2;
  transform: translateY(100%);
}

.portfolio-card:hover .first-img,
.portfolio-card.clicked .first-img {
  transform: translateY(-100%);
}

.portfolio-card:hover .second-img,
.portfolio-card.clicked .second-img {
  transform: translateY(0%);
}

.buttons .d-inline-block {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.buttons .d-inline-block:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.zoom {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.zoom:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline-laranja {
  color: #f79633;
  border-color: #f79633;
}

.btn-outline-laranja:hover,
.btn-outline-laranja:focus,
.btn-outline-laranja:active,
.btn-outline-laranja.active,
.show>.btn-outline-laranja.dropdown-toggle {
  color: #fff;
  background-color: #f79633;
  border-color: #f79633;
}

/* Shine */
.hover14 figure {
  position: relative;
}

.hover14 figure::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.3) 100%);
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}

.hover14 figure:hover::before {
  -webkit-animation: shine 0.75s;
  animation: shine 0.75s;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

/* Flashing */
.hover13 figure:hover img {
  opacity: 1;
  -webkit-animation: flash 1.5s;
  animation: flash 1.5s;
}

@-webkit-keyframes flash {
  0% {
    opacity: 0.4;
  }

  100% {
    opacity: 1;
  }
}

@keyframes flash {
  0% {
    opacity: 0.4;
  }

  100% {
    opacity: 1;
  }
}

.portfolio-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.portfolio-card h5 {
  font-size: 1.25rem;
}

.portfolio-card p {
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

.card-img-top {
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.card-title {
  font-size: 1.1rem;
  min-height: 30px;
}

.card-body a:hover {
  text-decoration: underline;
}

.article-content p {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 1.2rem;
}

.article-content h4 {
  font-weight: 600;
  color: #00afaf;
}

.card img {
  max-height: 200px;
  object-fit: contain;
}

.card h6 {
  font-size: 1rem;
  margin-top: 0.5rem;
}

.btn-outline-custom {
  border: 1px solid #00afaf;
  color: #00afaf;
  background-color: transparent;
  transition: 0.3s;
}

.btn-outline-custom:hover {
  background-color: #00afaf;
  color: #fff;
  border-color: #00afaf;
}

.botao-zoom {
  transition: transform 0.3s ease-in-out;
  backface-visibility: hidden;
  transform: translateZ(0);
  /* força renderização em GPU */
}

.botao-zoom:hover {
  transform: scale(1.15);
  /* aplica o zoom suave */
}

.btn-shine {
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  font-weight: 400;
  letter-spacing: 0.3px;
  color: #fff;
  /* cor padrão do texto */
  border: none;
  background: linear-gradient(270deg, #00afaf, #007b7b, #00afaf);
  background-size: 200% 100%;

  /* animação de gradiente */
  animation: gradientMove 4s ease-in-out infinite;

  transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease,
    color 0.28s ease;
  will-change: transform, background-position, color;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.btn-shine:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18), 0 4px 10px rgba(0, 0, 0, 0.1);
  color: #fff;
  /* muda texto para laranja */
}

.btn-shine:active {
  transform: scale(1.04);
}

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

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

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

/* ===== Missão / Visão / Valores ===== */
.mv-section {
  background: linear-gradient(180deg,
      #f7fbfb 0%,
      #eef6f6 100%);
  /* leve, combina com o site e contrasta com o footer preto */
}

.mv-title {
  letter-spacing: 0.4px;
  font-weight: 700;
}

/* Card */
.mv-card {
  position: relative;
  background: #fff;
  border: 0;
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}

/* Filete superior com o degradê da identidade */
.mv-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  background: linear-gradient(90deg, #00afaf 0%, #00c9c9 50%, #00afaf 100%);
  background-size: 200% 100%;
  animation: mvAccent 6s ease-in-out infinite;
}

/* Ícone circular */
.mv-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 175, 175, 0.1);
  color: #00afaf;
  font-size: 28px;
  margin-bottom: 16px;
}

/* Título do card */
.mv-heading {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 10px;
}

/* Texto/Lista */
.mv-text {
  color: #495057;
}

.mv-list {
  margin: 0;
  padding-left: 1.1rem;
  color: #495057;
}

.mv-list li {
  margin: 0.25rem 0;
}

.mv-list li span {
  color: #f79633;
  /* destaque laranja */
  font-weight: 400;
}

/* animação bem sutil do filete superior */
@keyframes mvAccent {
  0% {
    background-position: 0% 50%;
  }

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

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

/* Espaçamentos maiores em telas grandes */
@media (min-width: 992px) {
  .mv-card {
    padding: 32px 28px;
  }

  .mv-heading {
    font-size: 1.35rem;
  }
}

:root {
  --swap-dur: 0.55s;
  --swap-ease: cubic-bezier(0.2, 0.75, 0.2, 1);
  --slide-dist: 26%;
}

/* Wrapper sem aspect-ratio: altura vem da imagem */
.project-thumb.intrinsic {
  display: grid;
  /* empilha os filhos */
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  /* igual aos outros cards */
  /* opcional: padding para “respiro”
  padding: 12px; box-sizing: border-box;
  */
}

/* As duas imagens ocupam a mesma célula da grid */
.project-thumb.intrinsic img {
  grid-area: 1 / 1;
  /* sobrepostas */
  width: 100%;
  height: auto;
  /* mantém o ratio nativo */
  backface-visibility: hidden;
  transition: transform var(--swap-dur) var(--swap-ease),
    opacity var(--swap-dur) var(--swap-ease);
}

/* Estado inicial */
.project-thumb.intrinsic .img-1 {
  transform: translateX(0) rotateY(0) scale(1);
  opacity: 1;
  z-index: 1;
}

.project-thumb.intrinsic .img-2 {
  opacity: 1;
  /* visível, mas fora da área via transform */
  z-index: 2;
}

/* Direções de entrada */
.project-thumb.intrinsic.dir-right .img-2 {
  transform: translateX(100%) rotateY(8deg) scale(1);
}

.project-thumb.intrinsic.dir-left .img-2 {
  transform: translateX(-100%) rotateY(-8deg) scale(1);
}

/* Hover = troca com slide */
@media (hover: hover) {
  .project-thumb.intrinsic.dir-right:hover .img-1 {
    transform: translateX(calc(-1 * var(--slide-dist))) rotateY(-6deg) scale(0.96);
    opacity: 0;
  }

  .project-thumb.intrinsic.dir-right:hover .img-2 {
    transform: translateX(0) rotateY(0) scale(1);
  }

  .project-thumb.intrinsic.dir-left:hover .img-1 {
    transform: translateX(var(--slide-dist)) rotateY(6deg) scale(0.96);
    opacity: 0;
  }

  .project-thumb.intrinsic.dir-left:hover .img-2 {
    transform: translateX(0) rotateY(0) scale(1);
  }
}

/* Menos movimento para quem prefere */
@media (prefers-reduced-motion: reduce) {
  .project-thumb.intrinsic img {
    transition: opacity 0.2s linear !important;
    transform: none !important;
  }

  .project-thumb.intrinsic .img-2 {
    opacity: 0;
  }

  .project-thumb.intrinsic:hover .img-1 {
    opacity: 0;
  }

  .project-thumb.intrinsic:hover .img-2 {
    opacity: 1;
  }
}

/* numeros */

:root {
  --celere-teal: #00afaf;
  --celere-orange: #f79633;
}

.text-orange {
  color: var(--celere-orange) !important;
}

.icon-teal {
  color: var(--celere-teal);
  line-height: 1;
  display: inline-flex;
}

.stats-card {
  border-color: rgba(0, 0, 0, 0.08) !important;
}

/* divisórias verticais só no md+ */
@media (min-width: 768px) {
  .stats-item {
    position: relative;
  }

  .stats-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 16px;
    right: 0;
    bottom: 16px;
    width: 1px;
    background: rgba(0, 0, 0, 0.08);
  }
}

:root {
  --celere-teal: #00afaf;
  --celere-orange: #f79633;
}

.text-teal {
  color: var(--celere-teal) !important;
}

.text-orange {
  color: var(--celere-orange) !important;
}

.btn-orange {
  background: var(--celere-orange);
  border-color: var(--celere-orange);
  color: #1b1b1b;
}

.btn-orange:hover {
  filter: brightness(0.95);
  color: #111;
}

.como-funciona {
  min-height: 520px;
}

.cf-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: none;
}

.cf-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55));
}

.cf-box {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(3px);
}

.icon-teal {
  color: var(--celere-teal);
  line-height: 1;
  display: inline-flex;
}

/* garante que a navbar e o dropdown fiquem sempre acima do conteúdo */
.navbar-custom {
  z-index: 2000;
}

.dropdown-menu {
  z-index: 2100;
}

/* Visual Celere para o item com dropdown */
.nav-item.dropdown .dropdown-toggle {
  border-bottom: 2px solid transparent;
}

.nav-item.dropdown .dropdown-toggle.show,
.nav-item.dropdown:hover .dropdown-toggle {
  color: #00afaf;
  border-bottom-color: #00afaf;
}

/* Caixa do submenu */
.solutions-dd {
  min-width: 420px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  padding: 0.4rem;
  background: #fff;
}

/* Itens */
.solutions-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  font-size: 0.98rem;
  color: #727376;
}

.solutions-item span {
  font-weight: 500;
  color: #2c2c2c;
}

.solutions-item small {
  color: #8d8f92;
}

.solutions-item:hover {
  background: #eaf7f7;
  color: #00afaf;
}

.solutions-item:hover span {
  color: #00afaf;
}

/* DESKTOP: abrir no hover (sem quebrar o clique do mobile) */
@media (min-width: 992px) {
  .nav-item.dropdown:hover>.dropdown-menu {
    display: block;
    margin-top: 0.25rem;
    /* evita salto */
  }
}

/* ===== Dropdown Soluções: hover no desktop, clique no mobile ===== */

/* base: escondido com transição suave */
.nav-item.dropdown .dropdown-menu {
  display: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.16s ease, transform 0.16s ease,
    visibility 0s linear 0.16s;
  z-index: 2100;
  /* garante que fique acima de tudo */
}

/* FIX: Quando clicar no mobile (Bootstrap adiciona .show), exibir! */
.nav-item.dropdown .dropdown-menu.show {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* DESKTOP: abre no hover, e o link não é clicável */
@media (min-width: 992px) {
  .nav-item.dropdown:hover>.dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
    /* sem atraso pra aparecer */
  }

  /* evita precisar clicar no texto “Soluções” */
  .nav-item.dropdown>.dropdown-toggle {
    pointer-events: none;
    /* ignora cliques no desktop */
  }
}

/* opcional: estilo do item quando aberto por hover */
@media (min-width: 992px) {
  .nav-item.dropdown:hover>.dropdown-toggle {
    color: #00afaf;
    border-bottom: 2px solid #00afaf;
  }
}


/* Cartão da capa */
.card-article {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  overflow: hidden;
}

/* Thumb com proporção fixa (16:9) e mesma altura pra todas */
.card-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  /* garante altura igual */
  overflow: hidden;
}

/* Capa preenche a área sem distorcer */
.card-thumb .thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* corta o excesso */
  display: block;
}

/* opcional: se preferir altura fixa em px em vez de aspect-ratio */
/*
.card-thumb{height:220px;}
.card-thumb .thumb-img{height:100%;}
*/


/* garante referência p/ absolutos dentro do grid */
.project-thumb.intrinsic {
  position: relative;
  /* <- ESSENCIAL para a lupinha aparecer */
  border-radius: 18px;
  overflow: hidden;
  display: grid;
}

/* Lupinha mais chamativa */
.zoom-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 4;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #00afaf;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  border: 2px solid rgba(0, 175, 175, 0.3);
  backdrop-filter: blur(3px);
  transition: all 0.25s ease;
  cursor: pointer;
}

.project-thumb:hover .zoom-btn {
  transform: scale(1.12);
  background: #00afaf;
  color: #fff;
  box-shadow: 0 12px 26px rgba(0, 175, 175, 0.35);
  border-color: #00afaf;
}

.zoom-btn svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  transition: transform 0.25s ease;
}

.project-thumb:hover .zoom-btn svg {
  transform: scale(1.1);
}


/* link invisível cobrindo toda a área, para abrir fancybox ao clicar na foto */
.gallery-cover {
  position: absolute;
  inset: 0;
  z-index: 3;
  /* abaixo da lupa, acima das imagens */
  display: block;
  background: transparent;
}

/* (você já tem) imagens sobrepostas no grid */
.project-thumb.intrinsic img {
  grid-area: 1 / 1;
  width: 100%;
  height: auto;
  transition: transform var(--swap-dur) var(--swap-ease), opacity var(--swap-dur) var(--swap-ease);
}

.rounded-video {
  border-radius: 15px;
  /* ajuste o valor como quiser */
  overflow: hidden;
}

/* =========================================
   MOBILE RESPONSIVENESS & MENU FIXES
   ========================================= */

@media (max-width: 991px) {

  /* --- 1. Off-canvas Menu (Left to Right) --- */
  .navbar-collapse {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background-color: #fff;
    z-index: 9999;
    padding: 2rem 1rem;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);

    /* Animation settings */
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;

    /* Override Bootstrap collapse behavior */
    display: block !important;
    overflow-y: auto;
  }

  .navbar-collapse.show {
    transform: translateX(0);
  }

  /* Semi-transparent Backdrop for the menu */
  /* We use a pseudo-element on the navbar-collapse itself when shown.
     However, positioning it relative to fixed might be tricky if parent has transform.
     Actually, transform creates a new stacking context, so fixed inside transformed element behaves like absolute.
     So 'position: fixed' inside '.navbar-collapse' (which has transform) will be relative to the menu, not viewport.
     This breaks the backdrop idea if defined AS child of .navbar-collapse.
     
     The backdrop should be on the BODY or separate element.
     Since we can't easily add HTML, we can try to use a huge shadow or outline?
     box-shadow: 0 0 0 100vmax rgba(0,0,0,0.5);
  */
  .navbar-collapse.show {
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1), 0 0 0 100vmax rgba(0, 0, 0, 0.5);
  }

  /* Adjust nav links for the drawer look */
  .navbar-nav {
    margin-top: 20px;
    width: 100%;
  }

  .navbar-nav .nav-link {
    font-size: 1.1rem;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #333 !important;
  }

  /* --- 2. Fix Horizontal Scroll & Padding --- */
  body,
  html {
    overflow-x: hidden;
  }

  .container,
  .container-sm,
  .container-fluid {
    width: 100% !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    max-width: 100% !important;
  }

  /* Reset forced widths on specific elements */
  .buttons a,
  .buttons .position-relative {
    width: 100% !important;
    margin-left: 0 !important;
    box-sizing: border-box;
    padding-left: 1rem !important;
    /* Resetting the 90px padding if possible, or adjusting it */
  }

  /* Specific fix for the 'Soluções' buttons which had padding-left: 90px */
  .buttons a.d-flex {
    padding-left: 75px !important;
    /* Reduce slightly or keep if icon fits */
  }

  /* Adjust Font Sizes for Mobile */
  .hero-title {
    font-size: 2rem !important;
  }

  .hero-text {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 1.75rem !important;
  }

  /* Adjust Statistics */
  .stat-row {
    margin-left: 0;
    margin-right: 0;
  }

  .plus,
  .number {
    font-size: 2.2rem !important;
  }

  .unit {
    font-size: 1rem !important;
  }

  /* Fix for "Solutions" images or icons */
  #solutions .row>div {
    padding-left: 15px;
    padding-right: 15px;
  }
}