/* Estilos gerais */

.border-test {
  border: solid 1px red;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #f2f2f2;
}
h2 {
  font-family: "Poppins", sans-serif;
}

p {
  font-family: "Funnel Display", sans-serif;
}

main section {
  max-width: 1500px;
  margin: 0 auto;
}

/* SEÇÃO HERO */
.hero-section {
  padding: 60px 100px 0;
  position: relative;
}
@media (max-width: 1400px) and (min-width: 1100px) {
  .hero-section {
    padding: 30px 20px;
  }
}
.home-main-container {
  display: flex;
  align-items: center;
  gap: 25px;
}

.hero-content {
  width: 50%;
}

.hero-content h1 {
  font-family: "Poppins", sans-serif;
  font-size: 54px;
  margin-bottom: 20px;
  line-height: 120%;
  color: #1c1c1c;
  font-weight: 600;
}

.hero-content p {
  font-family: "Funnel Display";
  font-size: 20px;
  font-weight: 400;
  line-height: auto;
  margin-bottom: 30px;
  color: #1c1c1c;
}

.hero-image {
  width: 50%;
  position: relative;
}

.hero-image img {
  width: 100%;
}

.floating-container {
  position: absolute;
  bottom: 3px;
  right: 0;
  width: 30%;
  height: 42%;
}

.floating-container img {
  max-width: 100%;
  height: 100%;
}

.hero-button-container {
  display: flex;
  gap: 20px;
  width: 100%;
  align-items: stretch;
}

.main-button-styles {
  display: inline-block;
  border-radius: 30px;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  padding: 15px 30px;
  font-size: 20px;
  font-weight: 400;
}

.hero-button-container .main-button-styles {
  flex: 1 1 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 20px;
  border-radius: 30px;
  box-sizing: border-box;
  min-width: 0;
  text-decoration: none;
  cursor: pointer;
  font-weight: 400;
  font-family: "Funnel Display", sans-serif;
}

.primary-button {
  background-color: #dc6339;
  color: #fff;
  border: none;
}

.primary-button:hover {
  background-color: #e2e2e2;
  color: #000;
}

.secondary-button {
  padding: 12px 20px;
  font-size: 20px;
  color: black;
}

.secondary-button:hover {
  color: #fff;
  background-color: #dc6339;
}

.hero-button-container a.main-button-styles.secondary-button {
  background-color: #e2e2e2;
  border: 2px solid #e2e2e2;
  color: #1C1C1C;
}

.hero-button-container a.main-button-styles.secondary-button:hover {
  background: #dc6339;
  color: #fff;
  border: 2px solid #dc6339;
}
.hero-button-container a.main-button-styles.secondary-button:visited {
  color: none;
}

.discover-button {
  display: inline-block;
  border-radius: 25px;
  background-color: #dc6339;
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 15px 30px;
  font-size: 16px !important;
  font-weight: 500;
  font-family: "DM SANS", sans-serif;
}

.discover-button a {
  font-family: "DM SANS", sans-serif;
  font-size: 16px !important;
}
.news-button {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
@media (min-width: 768px) {
  .news-button .primary-button.main-button-styles {
    background-color: #1c1c1c;
    color: #fff;
  }

  .news-button .primary-button.main-button-styles:hover {
    background-color: #e2e2e2;
    color: #1c1c1c;
  }
}
/* Estilo padrão (mobile - carrossel com scroll horizontal) */
.carrossel-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 40px 0;
  background-color: #f2f2f2;
}

.carrossel-container {
  display: flex;
  gap: 60px;
  animation: scroll-left 30s linear infinite;
  align-items: center;
}

.carrossel-container img {
  height: 150px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.carrossel-container img:hover {
  filter: grayscale(0%);
}

/* Animação */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* SEÇÃO DE PRODUTOS */
.products-section {
  padding: 60px 0;
  overflow: hidden;
}

.products-section h2 {
  font-family: "Poppins", sans-serif;
  text-align: start;
  font-size: 45px;
  font-weight: 500;
  color: #1c1c1c;
  line-height: 120%;
  margin-bottom: 60px;
}

/* Carrossel horizontal */
.products-carousel {
  display: flex;
  gap: 36px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
  scrollbar-width: none;
}

.products-carousel::-webkit-scrollbar {
  display: none;
}

/* Card */
.product-card {
  position: relative;
  padding-bottom: 70px;
  flex: 0 0 600px;
  height: 470px;
  background-color: #fff;
  border-radius: 26px;
  overflow: hidden;
}

/* Imagem */
.product-card img {
  width: 100%;
  height: 230px;
  padding: 30px 30px 0 30px;
}

/* Conteúdo interno */
.card-content {
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 20px;
}

.card-content h3 {
  font-size: 26px;
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 0;
}

.card-content p {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 25px;
  color: #1c1c1c;
}

/* Botão */
.card-button {
  position: absolute;
  bottom: 30px;
  left: 115px;
  transform: translateX(-50%);
  font-family: "DM Sans", sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #dc6339;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 30px;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

/* SEÇÃO DE ESTATÍSTICAS */
.stats-section {
  padding: 40px 0;
  margin-bottom: 5%;
}

.stats-cards {
  display: flex;
  gap: 30px;
  padding: 0 20px;
}

.stats-card {
  background-color: #dc6339;
  color: #fff;
  padding: 30px;
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

.stats-card-one {
  width: 30%;
  border-radius: 25px;
}

.stats-title {
  font-size: 55px;
  font-weight: 500;
}

.stats-subtitle {
  font-size: 22px;
  font-weight: 400;
}

/* SEÇÃO DE SOLUÇÕES DESTACADAS */
.section-tag {
  display: inline-block;
  background: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 400;
  font-size: 20px;
  color: #1c1c1c;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}
.section-tag i {
  font-size: 0.8em;
  color: #dc6339;
  text-align: center;
  padding: 5px;
}
.section-header h2 {
  font-family: "Poppins", sans-serif;
  margin-bottom: 40px;
  font-size: 45px;
  line-height: 120%;
  color: #1c1c1c;
  font-weight: 500;
  text-align: left;
}
.section-header p {
  font-family: "Funnel Display", sans-serif;
  margin-bottom: 40px;
  font-size: 20px;
  color: #1c1c1c;
  font-weight: 400;
  text-align: left;
}

.section-header-full h2 {
  margin-bottom: 20px;
  font-size: 45px;
  font-weight: 500;
  text-align: left;
}

.solution-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.solution-card {
  min-width: 600px;
  border-radius: 30px;
  background: linear-gradient(135deg, #1c1c1c, #3c3c3c);
  color: #fff;
  flex-direction: column;
  padding: 20px;
}

.solution-card img {
  display: flex;
  margin: 20px 10px;
  padding: 10px;
  align-self: center;
}

.solution-content {
  padding: 20px;
  padding-top: 0px;
  flex: 1;
}

.solution-content h3 {
  font-family: "Poppins", sans-serif;
  font-size: 26px;
  line-height: 120%;
  margin-bottom: 10px;
  font-weight: 500;
}

.solution-content h2 {
  font-size: 40px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
  max-width: 60%;
}

.solution-content p {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 400;
}

.learn-more i {
  margin-left: 5px;
}

.solution-grid {
  display: grid;
  grid-template-columns: 500px 1fr;
  align-items: start;
  gap: 75px;
}

/* AJUSTE DOS CARDS COMO CARROSSEL */
.solution-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.solution-cards {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; /* esconde a barra no Firefox */
}
.solution-cards::-webkit-scrollbar {
  display: none; /* esconde a barra no Chrome */
}

/* CONTROLES DO CARROSSEL */
.carousel-controls {
  display: flex;
  justify-content: flex-end;
  gap: 5px;
  margin-top: 20px;
}

.carousel-controls img {
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.controls-mobile {
  display: none;
}

/* SEÇÃO DE SOLUÇÕES TRANSFORMADORAS */
.transform-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  margin-bottom: 50px;
}

.transform-item {
  border-bottom: solid 1px #dc6339;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
}

.transform-item:last-child {
  grid-column: 1 / -1;
}

.transform-wrapper {
  flex: 1;
  padding-left: 0;
}

.transform-wrapper h3 {
  font-size: 24px;
  font-weight: 600;
  color: #1e1e1e;
}

.transform-wrapper p {
  font-family: "Funnel Display";
  color: #1e1e1e;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  margin: 0;
}

.item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
}

/* Seção serviçoes disponiveis multimac */
.available-services-cards {
  width: 100%;
  padding: 60px 20px;
  text-align: center;
}

.available-services-cards h2 {
  font-family: "Poppins", sans-serif;
  color: #1c1c1c;
  font-size: 45px;
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 40px;
}

.cards-container {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 20px;
  margin-bottom: 35px;
  scroll-behavior: smooth;
}

.cards-container::-webkit-scrollbar {
  display: none;
}
.card-header {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 15px;
}
.card-header h3 {
  margin: 0;
}

.card {
  position: relative;
  flex: 0 0 378px;
  border: 1px solid #ffa788;
  border-radius: 20px;
  padding: 22px;
  padding-bottom: 60px;
  text-align: left;
  scroll-snap-align: start;
}

.icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 15px;
}

.card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #1c1c1c;
  margin-bottom: 10px;
  line-height: 130%;
}

.card p {
  font-family: "Funnel Display", sans-serif;
  color: #1c1c1c;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 20px;
}

.card button {
  position: absolute;
  bottom: 24px;
  left: 20px;
  background: #dc6339;
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 10px 20px;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: background 0.3s ease;
}
/* SEÇÃO DE PARCEIROS */
.partners-section {
  overflow: hidden;
}

.partners-wrapper {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-around;
  gap: 40px;
  margin: 0 auto;
}

.partners-image img {
  max-width: 500px;
  border-radius: 10px;
}

.partners-content {
  max-width: 620px;
}

.partners-content h2 {
  font-size: 45px;
  font-weight: 500;
  line-height: 118%;
  letter-spacing: -0.32px;
  margin-bottom: 40px;
}

/* ====== GRID DE LOGOS (DESKTOP) ====== */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.partners-grid img {
  height: 80px;
  width: 180px;
  transition: transform 0.3s ease;
}

.partners-grid img:hover {
  transform: translateY(-3px);
}

/* ====== ESCONDER CARROSSEL NO DESKTOP ====== */
.partners-carousel {
  display: none;
}

/* SEÇÃO DE BLOG/DICAS */
.blog-section {
  padding: 60px 0;
  gap: 20px;
}

.blog-section .section-header {
  text-align: center;
}

.blog-section .section-header p {
  max-width: 900px;
  margin: 0 auto;
  color: #666;
}

.blog-text {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 40px;
}

.blog-text h2 {
  font-size: 50px;
  margin: 0;
  flex: 1;
  max-width: 900px;
  font-weight: 600;
  line-height: 120%;
}

.blog-text p {
  font-size: 20px;
  margin: 2.5% 0% 0% 0%;
  flex: 1;
  font-weight: 400;
  max-width: 900px;
  color: #1c1c1c;
}

.blog-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.blog-card {
  background-color: #fff;
  border-radius: 20px;
  border: solid #dc6339 1px;
}

.blog-card > img {
  width: 100%;
  object-fit: cover;
}

.blog-content {
  display: flex;
  align-items: end;
  padding: 0 20px 20px 20px;
}

.blog-content h3 {
  font-size: 20px;
  width: 80%;
  font-weight: 600;
  color: #1e1e1e;
  max-width: 350px;
}

.learn-more {
  font-family: "Funnel Display", sans-serif;
  font-weight: 400;
  color: #1e1e1e;
  font-size: 20px;
  font-weight: 400;
}

.arrow-icon {
  border: 1px solid #1c1c1c;
  padding: 10px;
  border-radius: 25px;
  color: #1c1c1c;
  background: transparent;
}
/* RESPONSIVIDADE */

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

  .hero-content {
    display: contents;
  }

  .hero-content h1 {
    order: 1;
    font-size: 26px;
    font-weight: 600;
    text-align: center;
  }

  .hero-image img {
    width: 100%;
  }

  .section-header h2 {
    font-size: 32px;
    font-weight: 600;
    line-height: 120%;
    text-align: center;
    padding: 0 40px;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
  }
  .section-header p {
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    padding: 0 40px;
    align-items: center;
    justify-content: center;
    margin-bottom: 0px;
  }

  .hero-button-container {
    order: 3;
    flex-direction: column;
    align-items: center;
  }

  .controls-desktop {
    display: none;
  }
  .controls-mobile {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 20px;
  }
  .section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .section-header-full {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .section-tag {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 10px !important;
    border-radius: 25px;
    font-size: 20px;
    font-weight: 600;
  }
  .destaque .section-tag i {
    color: #1c1c1c;
  }
  .product-cards {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 10px;
    padding: 0 20px;
  }

  .product-card {
    min-width: 80%;
    flex: 0 0 auto;
    scroll-snap-align: start;
  }
  .solution-cards {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .solution-card {
    min-width: 100%;
    max-width: 100%;
  }
  .solution-card img {
    width: 300px;
    height: 200px;
  }
  /* Section Parceiros */
  .partners-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .partners-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .partners-grid {
    display: none; /* esconder grid e mostrar carrossel */
  }

  .partners-image {
    order: 2;
    display: flex;
    justify-content: center;
  }

  .partners-image img {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }

  /* === CARROSSEL MOBILE === */
  .partners-carousel {
    display: block;
    margin-top: 20px;
    overflow: hidden;
    position: relative;
  }

  .carousel-track {
    display: flex;
    align-items: center;
    gap: 10px;
    animation: scrollInfinite 35s linear infinite;
  }

  .carousel-track img {
    height: 65px;
  }

  @keyframes scrollInfinite {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

  /* Seção serviços disponiveis Multimac */
  .available-services-cards h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
  }

  .cards-container {
    gap: 15px;
  }
  .card {
    flex: 0 0 344px;
  }
  .card-header {
    gap: 20px;
  }
  .card h3 {
    font-size: 22px;
    font-weight: 600;
  }
  .card p {
    font-size: 18px;
    font-weight: 500;
  }
}

@media (max-width: 640px) {
  .stats-cards {
    display: grid;
    grid-template-columns: 1fr;
    margin: 0 auto;
    width: 100%;
  }
.home-main-container {
  gap: 10px;
}
  .hero-content h1 {
    font-weight: 600;
    font-size: 26px;
    text-align: center;
    padding: 0 47px;
    line-height: 120%;
    margin-bottom: 0;
  }
  .hero-content p {
    order: 1;
    font-size: 16px;
    margin-bottom: 10px;
    text-align: center;
    padding: 0 30px;
  }

  .stats-cards {
    width: 100%;
    padding: 0 30px;
  }

  .stats-card {
    width: 100%;
  }

  .transform-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 40px;
  }
  .transform-item {
    align-items: flex-end;
  }

  .produtos-dropdown {
    grid-template-columns: 1fr;
    width: 100%;
    left: 0;
  }

  .solution-card {
    text-align: left;
  }
  .products-section {
    padding: 10px;
  }

  .product-card {
    flex: 0 0 90%;
    height: auto;
  }
  .products-carousel {
    gap: 20px;
    padding: 0 20px;
  }

  .products-section h2 {
    font-family: "Poppins";
    font-size: 24px;
    font-weight: 500;
    line-height: 120%;
    text-align: center;
    padding: 0 40px;
    margin-bottom: 25px;
  }
 .card-content {
  margin-bottom: 0;
 }


  .section-header-full h2 {
    font-weight: 600;
    line-height: 124%;
    margin-bottom: 23px;
    padding: 0 40px;
    font-size: 30px;
    text-align: center;
  }

  .stats-title {
    font-size: 28px;
  }

  .stats-subtitle {
    font-size: 22px;
    text-align: center;
  }

  .home-main-container {
    flex-direction: column;
  }

  .main-button-styles {
    display: inline;
    font-size: 15px;
    text-align: center;
    margin: 0 auto;
  }
  .hero-content {
    width: 80%;
  }

  .hero-image {
    order: 2;
    width: 80%;
  }

  .blog-section {
    padding: 40px 20px;
  }

  /* Texto do blog (título e parágrafo) */
  .blog-text {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
  }

  .blog-text h2 {
    font-size: 28px;
    /* Tamanho menor para mobile */
    text-align: center;
    width: 100%;
  }

  .blog-text p {
    font-size: 16px;
    text-align: center;
    width: 100%;
  }

  /* Cards do blog */
 .blog-cards {
    grid-template-columns: repeat(1, 1fr);
  }

  /* esconde o 3º card e qualquer outro além dele */
  .blog-card:nth-child(n+3) {
    display: none;
  }

  .blog-card {
    width: 100%;
    margin-bottom: 20px;
  }

  .blog-content {
    flex-direction: column;
    align-items: flex-end;
    padding: 15px;
  }

  .blog-content h3 {
    width: 100%;
    font-size: 18px;
    margin-bottom: 10px;
  }

  .blog-content > div {
    width: 100%;
  }

  .blog-card .fa-arrow-right {
    align-self: flex-end;
    margin-top: 15px;
    color: #000;
    font-size: 1rem;
  }
}

@media (max-width: 1024px) {
  .product-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* Responsividade para telas menores section parceiros*/
@media (max-width: 992px) {
  .solution-grid {
    grid-template-columns: 1fr;
  }

  .carousel-controls {
    justify-content: center;
    margin-bottom: 30px;
  }

  .partners-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .partners-content {
    max-width: 90%;
  }

  .partners-content h2 {
    font-size: 28px;
    font-weight: 600;
  }

  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
  }

  .partners-grid img {
    height: 75px;
  }

  .partners-image img {
    max-width: 400px;
    padding: 20px;
  }
}

/* ====== RESPONSIVIDADE PARA TABLETS (entre 769px e 1024px) ====== */
@media (min-width: 769px) and (max-width: 1024px) {
  body {
    font-size: 90%;
  }

  h1,
  h2,
  h3 {
    font-size: 90%;
  }

  p,
  a,
  button,
  li {
    font-size: 90%;
  }
  .container {
    padding: 0 0px;
  }
  /* Hero */
  .hero-section {
    padding: 40px 20px;
  }
  .hero-content h1 {
    font-size: 30px;
  }
  .hero-content p {
    font-size: 16px;
  }
  .main-button-styles {
    font-size: 16px;
  }

  /* Produtos */
  .products-section h2 {
    font-size: 42px;
  }
  .product-info h3 {
    font-size: 22px;
  }
  .product-cards {
    grid-template-columns: repeat(4, 1fr);
  }
  .card-content h3 {
    font-size: 22px;
  }
  .card-content p {
    font-size: 18px;
    font-weight: 400;
  }
  /* Soluções */
  .section-header h2 {
    font-size: 42px;
  }
  .solution-content h3 {
    font-size: 22px;
  }
  .solution-content p {
    font-size: 18px;
  }
  .transform-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
    column-gap: 100px;
  }
  /* Parceiros */
  .partners-wrapper {
    text-align: left;
    gap: 40px;
  }
  .partners-content h2 {
    font-size: 42px;
  }
  .partners-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .partners-grid img {
    height: 75px;
  }

  /* Blog */
  .blog-text h2 {
    font-size: 42px;
  }
  .blog-text p {
    font-size: 18px;
  }
  .blog-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Estatísticas */
  .stats-title {
    font-size: 45px;
  }
  .stats-subtitle {
    font-size: 20px;
  }

  /* Transformações */
  .transform-wrapper h3 {
    font-size: 20px;
  }
  .transform-wrapper p {
    font-size: 16px;
  }
}


/* CARROSSEL PRODUTOS */
.products-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 10px 0 20px;

  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;

  -webkit-overflow-scrolling: touch; /* iOS */
  scrollbar-width: none; /* Firefox */
}

.products-carousel::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}



/* Opcional: cursor “grab” para desktop */
.products-carousel {
  cursor: grab;
}
.products-carousel.is-dragging {
  cursor: grabbing;
  user-select: none;
}
.products-carousel.is-dragging a,
.products-carousel.is-dragging img {
  pointer-events: none; /* evita clicar sem querer enquanto arrasta */
}



/* --- DRAG + SNAP (sem estragar dimensões existentes) --- */
.products-carousel{
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}

.products-carousel.is-dragging{
  cursor: grabbing;
  user-select: none;
}

.products-carousel.is-dragging a,
.products-carousel.is-dragging img{
  pointer-events: none;
}

/* mantém o tamanho que já tinhas */
.product-card{
  scroll-snap-align: start;
  flex: 0 0 600px; /* <- garante que não estica */

}


