.page-title {
  margin-bottom: 0;
}

.products-wrapper h2,
h3 {
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
}

.products-wrapper h2 {
  /* padding: 0 15.6rem; */
  width: 40ch;
  text-align: center;
  margin: 0 auto;
}

.products-videos p {
  font-size: 18px;
  color: white;
  text-align: justify;
  margin: 2.5rem 0;
}

.products-videos {
  background: url("../../img/produtos/background.png");
  background-repeat: no-repeat;
  background-size: cover;
  height: 48rem;
  padding-top: 4.5rem;
  padding-bottom: 5rem;
}

.video-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 43rem;
  position: relative;
  transform: translateY(9px);
}
.product-type {
  padding-top: 31.5rem;
  /* padding-top: 4.5rem; */
}
.product-type h3 {
  color: var(--black);
}

.product-type .subtitle {
  color: var(--orange);
  font-size: 1.6rem;
  font-weight: bold;
  opacity: 0.7;
  margin-bottom: 4rem;
  text-align: center;
}

.product-content {
  /* height: auto; */
  min-height: 800px;
  width: 42.5rem;
  display: flex;
  /* justify-content: center; */
  justify-content: start;
  align-items: center;
  flex-direction: column;
  background-color: #003c75;
}

.product-content h4 {
  color: var(--white);
  font-weight: bold;
  font-size: 2.4rem;
  margin-bottom: 1.6rem;
}

.product-content p {
  color: var(--white);
  font-size: 1.5rem;
  text-align: start;
  font-weight: 500;
}

.img-product {
  width: 100%;
  height: auto;
}

.img-product img {
  width: 100%;
  object-fit: cover;
}

.product-details {
  background-color: var(--light-blue);
  padding: 2rem 3.5rem;
  min-height: 28rem;
}

.product-details::after {
  content: "";
  background-color: var(--orange);
  height: 77%;
  width: 1px;
  position: absolute;
  bottom: 29px;
  left: 19px;
}

.pointer::before {
  content: "\2022";
  border-radius: 100%;
  position: absolute;
  color: var(--orange);
  transform: translate(-26px, -7px);
  font-size: 35px;
}

@media screen and (max-width: 1399px) {
  .product-content {
    width: 49%;
  }
}

@media screen and (max-width: 1024px) {
  .product-content {
    width: 49%;
  }
}

@media screen and (max-width: 1000px) {
  .product-content {
    width: 100%;
  }

  .products-videos {
    height: auto;
  }

  .product-type {
    padding-top: 4.5rem;
  }

  .video-container {
    transform: none;
  }
}

@media screen and (min-width: 768px) and (max-width: 1000px) {
  .product-details {
    padding: 2rem 3.5rem;
    min-height: 32rem;
  }

  .product-content {
    width: 49%;
  }

  .product-content h4 {
    font-size: 2rem;
  }
}
/* ================================
   TABELA TÉCNICA DE ESPUMAS
================================ */

.product-table {
  padding: 80px 0;
  background-color: #f9fafb;
}

.product-table h3 {
  font-size: 45px; /* tamanho grande */
  font-weight: 700;
  margin-bottom: 15px;
  color: black;
}

.product-table .subtitle {
    color: var(--orange);
    font-size: 1.6rem;
    font-weight: bold;
    opacity: 0.7;
    margin-bottom: 4rem;
    text-align: center;
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; /* scroll suave no iOS */
}

.foam-table {
  width: 100%;
  border-collapse: collapse;
  background: #f1f1f1;
  border-radius: 10px;
  overflow: hidden;
  font-size: 2rem; /* mantém o tamanho grande */
  min-width: 1000px; /* força scroll em telas pequenas */
}

.foam-table thead {
  background-color: #003C75; /* azul escuro */
}

.foam-table thead th {
  color: #ffffff;
  padding: 16px;
  font-weight: 700;
  font-size: 1.5rem; /* mantém o tamanho grande */
  text-align: left;
}

.foam-table tbody td {
  padding: 16px;
  font-size: 2rem; /* mantém grande */
  color: #222;
  vertical-align: top;
  border-bottom: 1px solid #d9d9d9;
}

.foam-table tbody tr:hover {
  background-color: #E37F1E; /* laranja hover */
  color: #fff;
  transition: background-color 0.3s, color 0.3s;
}

.foam-table td:first-child {
  font-weight: 700;
  color: #003C75;
  white-space: nowrap;
}

.table-note {
  margin-top: 20px;
  font-size: 1.5rem; /* mantém grande */
    color: var(--orange);
  text-align: center;
}

/* ================================
   RESPONSIVO
   (mantendo tamanho, apenas scroll)
================================ */

@media screen and (max-width: 1200px) {
  .table-responsive {
    overflow-x: auto; /* garante scroll */
  }
  .foam-table {
    min-width: 1000px; /* força scroll horizontal sem reduzir fontes */
  }
}

@media screen and (max-width: 768px) {
  .foam-table {
    min-width: 1000px; /* mantém scroll */
  }
}

@media screen and (max-width: 576px) {
  .foam-table {
    min-width: 1000px; /* scroll horizontal sempre */
  }
}
