/**
 * SEÇÃO DE PRODUTOS
 */

 .produtos {
    position: relative;
    padding: 100px 20px 60px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-top: 4px solid #e6b800;
    overflow: hidden;
  }
  
  .produtos::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../imagens/formula-premium/background/4K-IA-FP-BACK.jpeg");
    background-size: cover;
    background-position: center;
    z-index: -1;
    opacity: 0.6;
  }
  
  .produtos h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #e6b800;
    font-family: "Bebas Neue", sans-serif;
    position: relative;
    display: inline-block;
  }
  
  .produtos h1::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #e6b800, transparent);
  }
  
  .produto-categoria {
    background: rgba(30, 30, 30, 1);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    margin-bottom: 40px;
    width: 100%;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    min-height: 350px;
  }
  
  .produto-resumo {
    display: flex;
    padding: 30px;
    align-items: stretch;
    gap: 30px;
    cursor: pointer;
    transition: all 0.3s;
    flex: 1;
    min-height: 300px;
  }
  
  .produto-resumo:hover {
    background: rgba(20, 20, 20, 0.8);
  }
  
  .produto-resumo img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
    aspect-ratio: 3/2;
    flex-shrink: 0;
  }
  
  .produto-resumo img:hover {
    transform: scale(1.03);
  }
  
  .resumo-texto {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .resumo-texto h2 {
    font-size: 2rem;
    color: #e6b800;
    margin-bottom: 15px;
    font-family: "Bebas Neue", sans-serif;
  }
  
  .resumo-texto p {
    color: #ddd;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1.1rem;
  }
  
  .btn-ver-modelos {
    background-color: #e6b800;
    color: #111;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-family: "Roboto-Black", sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.1rem;
    width: fit-content;
    margin-top: auto;
  }
  
  .btn-ver-modelos:hover {
    background-color: #d39e00;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }
  
  .modelos-container {
    display: none;
    padding: 20px;
    background: rgba(20, 20, 20, 0.9);
    border-top: 2px solid #e6b800;
    min-height: 350px;
  }
  
  .modelos-container.ativo {
    display: block;
    animation: fadeIn 0.5s ease-out;
  }
  
  .galeria-container {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
  }
  
  .galeria {
    display: flex;
    gap: 20px;
    padding: 10px;
    width: max-content;
  }
  
  .galeria-container::-webkit-scrollbar {
    height: 8px;
  }
  
  .galeria-container::-webkit-scrollbar-track {
    background: rgba(30, 30, 30, 0.5);
    border-radius: 10px;
    margin: 0 20px;
  }
  
  .galeria-container::-webkit-scrollbar-thumb {
    background: #e6b800;
    border-radius: 10px;
    border: 2px solid rgba(30, 30, 30, 0.5);
  }
  
  .galeria-container::-webkit-scrollbar-thumb:hover {
    background: #d39e00;
  }
  
  .item {
    background: #222;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    flex: 0 0 auto;
    width: 280px;
    scroll-snap-align: center;
  }
  
  .item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  }
  
  .image-container {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 15px;
  }
  
  .image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
  }
  
  /* Ajuste específico para bicos - garantir enquadramento consistente */
  .produtos .image-container img {
    object-fit: cover;
    object-position: center;
    background: #1a1a1a;
    padding: 0;
  }
  
  .image-container img.active {
    opacity: 1;
  }
  
  .item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #ffffff;
    font-family: "Bebas Neue", sans-serif;
  }
  
  .item p {
    color: #ddd;
    margin-bottom: 15px;
    font-size: 0.9rem;
  }
  
  .btn-product {
    background-color: #e6b800;
    color: #111;
    padding: 10px 25px;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    font-family: "Roboto-Black", sans-serif;
    display: inline-block;
  }
  
  .btn-product:hover {
    background-color: #d39e00;
    transform: translateY(-3px);
  }