body {
    background-color: #F8F8F8 !important;
    font-family: 'Open Sans', sans-serif;
}

  /* Estrutura geral */
  .produto-single {
    color: #272727;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
  } 
  .galeria .swiper-wrapper-container,
  .video-container {
    max-width: 1440px;
    margin: 0 auto;
  }

  .voltar-wrapper {
    margin-top: 50px;
  }

  .link-voltar {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #414141;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .link-voltar:hover {
    color: #FF1C1C;
    text-decoration: none;
  }

  .link-voltar .dashicons {
    flex-shrink: 0;
    transition: transform 0.3s ease;
  }

  .link-voltar:hover .dashicons{
    transform: translateX(-2px);
  }

  /* Seção superior com imagem e informações */
  .topo-produto {
    background-color: #FFE81E;
    display: flex;
    padding: 0 15px;
    padding: 70px 10px;
    border-radius: 8px;
    margin: 10px 0px 60px;
    align-items: center;
  }

  .topo-produto_conteudo {
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
    padding: 20px;
    flex-wrap: space-between;
    gap: 40px;
    align-items: center;
    display:flex;
    box-sizing: border-box;
  }
  
  .imagem-produto {
    width: 250px;
    min-width: 250px;
    display: flex;
    flex-direction: column; /* empilha img e h1 */
    align-items: center;
    justify-content: flex-start;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    padding-bottom: 15px;
  }

  .topo-produto .imagem-produto img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
    display: block;
  }

  .topo-produto .imagem-produto h1 {
    margin-top: 15px;
    padding: 0 10px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
  }

  .topo-produto .informacoes p {
    letter-spacing: 1px;
    font-size: 14px;
    text-align: left;
  }

  .informacoes h2 {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 5px;
    color: #A30F0F;
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
  }

  .informacoes h2::before {
    content: "\f348"; /* dashicon info */
    font-family: 'Dashicons';
    font-size: 20px;
  }

  /* Sessões seguintes em duas colunas */
  .produto-single .meio {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    letter-spacing: 1px;
  }

  .meio section {
    margin-bottom: 30px;
  }

  .meio h2 {
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 5px;
    color: #000;
    margin-bottom: 15px;
  }

  /* Manual PDF */
  .manual a {
    width: 100%;
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #272727;
    border-radius: 4px;
    color: #272727;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
  }

  .manual a:hover {
    background-color: #272727;
    color: #fff;
  }

  /* Galeria e Vídeo */
  .galeria,
  .video {
    text-align: center;
    margin-bottom: 60px;
  }

  .galeria h2,
  .video h2 {
    color: #A30F0F;
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 5px;
  }

  .galeria h2::before {
    content: "\f177"; /* dashicon visibility */
    font-family: "Dashicons";
    font-size: 20px;
    margin-right: 8px;
    vertical-align: middle;
  }

  .video h2::before {
    content: "\f126"; /* dashicon video camera */
    font-family: "Dashicons";
    font-size: 20px;
    margin-right: 8px;
    vertical-align: middle;
  }

  /* Wrapper que engloba swiper e a paginação */
  .galeria .swiper-wrapper-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
  }

  /* Container swiper com overflow controlado */
  .galeria .swiper-container {
    height: 630px;
    width: 100%;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
    border-radius: 8px;
  }

  /* Slides */
  .galeria .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    border-radius: 8px;
  }

  .galeria .swiper-slide img {
    width: 100%;
    height: 98%;
    object-fit: cover;
    border-radius: 8px;
  }

  /* Setas dentro da imagem */
  .carrossel-produto-nav-btn {
    position: absolute;
    align-items: center;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #666666;
    z-index: 10;
    transition: color 0.3s ease;
  }
  .carrossel-produto-nav-btn:hover {
    color: #ffffff;
  }

  .carrossel-produto-nav-btn .swiper-button-prev {
    left: 10px;
  }
  .carrossel-produto-nav-btn .swiper-button-next {
    right: 10px;
  }

  /* Paginação fora do container swiper */
  .galeria .swiper-pagination {
    margin-top: 20px;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 20;
  }
  .galeria .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: transparent !important;
    border: 2px solid #2a2a2a !important;
  }
  .galeria .swiper-pagination-bullet-active {
    background-color: rgba(0, 0, 0, 1) !important;
  }

  /* Responsivo para vídeo (embed YouTube) */
  /* Ajuste para vídeo do YouTube responsivo corrigindo o problema em telas menores */
  .video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 proporção */
    height: 0;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    background-color: #000;
  }

  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: 0;
  }

  /* Call to action */
  .cta-final {
    text-align: center;
    margin-bottom: 80px;
  }

  .cta-final p {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #272727;
    letter-spacing: 1px;
  }

  .cta-final a.botao-orcamento {
    display: inline-block;
    background-color: #272727;
    color: #fff;
    padding: 12px 32px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
  }

  .cta-final a.botao-orcamento:hover {
    background-color: #444;
  }

/* Responsivo */
@media (max-width: 1024px) {
  
  .produto-single .meio {
    grid-template-columns: 1fr;
  }

  .meio h2 {
    font-size: 20px;
  }

  .manual a {
    width: 100%;
    text-align: center;
  }

  .galeria .swiper-container {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .topo-produto > .topo-produto_conteudo {
    flex-direction: column;
    gap: 30px;
  }

  .topo-produto {
    padding: 40px 20px;
  }

  .produto-single .topo-produto_conteudo {
    padding: 10px 20px;
  }
  
  .topo-produto .informacoes p {
    font-size: 12px;
    text-align: center;
  }

  .informacoes h2::before {
    font-size: 18px;
  }

  .informacoes h2 {
    font-size: 18px;
  }

  .informacoes {
    justify-items: center;
  }
  
  .produto-single .meio {
    gap: 15px;
    margin-bottom: 40px;
  }

  .meio section {
    margin-bottom: 10px;
  }

  .meio h2 {
    font-size: 16px;
  }

  .meio p {
    font-size: 14px;
  }

  .galeria .swiper-container {
    height: 320px;
  }
  
  .carrossel-produto-nav-btn {
    display: none;
  }

  .galeria .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
  }

  .galeria h2::before {
    font-size: 16px;
  }

  .video h2::before {
    font-size: 16px;
  }

}

@media (max-width: 480px) {
  .topo-produto > .topo-produto_conteudo {
    gap: 30px;
    text-align: center;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    padding: 10px 10px;
  }
 
  .topo-produto {
    padding: 15px 5px;
  }
  .topo-produto .imagem-produto {
    width: 100%;
    max-width: 220px;
    margin: 0 auto;
  }
  
  .topo-produto .imagem-produto h1 {
    font-size: 14px;
  }

  .topo-produto .informacoes {
    width: 100%;
  }

  .informacoes h2 {
    font-size: 16px;
  }

  .meio h2 {
    font-size: 16px;
  }

  .galeria h2,
  .video h2 {
    font-size: 16px;
  }

  .meio p {
    font-size: 12px;
  }
  .meio .coluna-direita {
    font-size: 12px;
  }
  .cta-final p {
    font-size: 12px;
  }

  .cta-final a.botao-orcamento {
    padding: 10px 24px;
    font-size: 14px;
  }
}








