.bannerRotativo {
    position: relative;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
    
}

.slidebanner img {
    width: 100%;
    height: 100vh;       
    object-fit: cover;
    object-position: top center; /* Adicione esta linha. Ela impede de cortar o topo da foto */
    display: none;
}

.slidebanner img.active {
    display: block;
}

.prev, .next {
    position: absolute; 
    top: 50%;
    transform: translateY(-50%);
    
    background: none; 
    border: 1px solid rgba(255, 255, 255, 0.4); 
    
    color: #fff; 
    width: 45px; 
    height: 45px;
    line-height: 40px; 
    text-align: center;
    padding: 0; 
    cursor: pointer;
    font-size: 20px; 
    z-index: 50;
    opacity: 0.8;
    border-radius: 50%; 
    transition: opacity 0.3s, border-color 0.3s, background 0.3s;
    user-select: none;
}

.prev:hover, .next:hover {
    opacity: 1;
    border-color: #fff; 
    background: rgba(255, 255, 255, 0.1); 
}

.prev { 
    left: 20px; 
} 

.next { 
    right: 20px; 
} 


.banner-slide-indicadores {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    padding: 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.indicador {
  cursor: pointer;
  height: 9px;
  width: 9px;
  margin: 0 2px;
  background-color: #555555;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.indicador-ativo,
.indicador:hover {
  background-color: #ffffff;
}

.secao-produtos {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
    text-align: center;
}

.titulo-secao {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.lista-produtos {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.produto-item {
    width: calc(25% - 15px);
    min-width: 200px; 
    text-align: left;
    margin-bottom: 30px;
    
    background-color: #ffffff; 
    padding: 10px; 
    border: 1px solid #eee;
    transition: box-shadow 0.5s ease;
}

.produto-item:hover {
    box-shadow: 0 6px 15px rgba(0,0,0,0.15); 
    transform: translateY(-10px); 
}

.produto-imagem {
    background-color: #f7f7f7;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.produto-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

.produto-info {
    padding-top: 10px;
}

.produto-nome {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}

.produto-preco {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
}

.produto-parcela {
    font-size: 12px;
    color: #555;
}

.btn-comprar {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-comprar:hover {
    background-color: #333;
}



#vejamais {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: black ;
    color: white;
    font-size: 16pwx;
    width: 140px;
    height: 40px;
    margin: auto;
    margin-top: -20px;
    transition: 0.3s ease;
    border: 1px solid #bdbcbc;
}

#vejamais:hover {
    background-color: white;
    color: black;
    border-radius: 1px;
    border: 1px solid #bdbcbc;
    cursor: pointer;
}

#divisoria {
    display: flex;
    margin: auto;
    margin-top: 40px;
    margin-bottom:-20px ;
    background-color: #e0e0e0;
    width: 80%;
    height: 1px;
}

.descricao {
    display: flex;
    justify-content: center;  
    align-items: center;      
    flex-direction: row;      
    gap: 35px;    
    margin-top: 60px;            
}
#textodescr {
    font-size: 18px;
    text-align: center; /* Centraliza o texto no computador */
    max-width: 800px; /* Limita a largura para o texto não virar uma linha gigante e ficar mais elegante */
    margin: 0 auto; /* Garante que a caixa de texto fique bem no meio da tela */
    padding: 0 20px; /* Dá um respiro nas laterais caso a tela seja menor */
}

@media (max-width: 768px) {
    .bannerRotativo .slidebanner img {
        width: 100%;
        height: auto;           /* A altura se ajusta automaticamente à largura */
        min-height: 300px;      /* Garante uma altura mínima para não sumir */
        object-fit: cover;      /* Volta para cover para preencher o espaço */
        object-position: center; /* Centraliza a foto para o corte ser igual dos dois lados */
    }

    .bannerRotativo {
        height: auto;
        background-color: transparent; /* Remove o fundo preto caso algo sobre */
    }
}

    .prev, .next {
        width: 35px;
        height: 35px;
        line-height: 32px;
        font-size: 16px;
    }
    .prev { left: 10px; }
    .next { right: 10px; }

    .banner-slide-indicadores {
        bottom: 10px;
    }
    
    #imgbaixo.descricao {
        flex-direction: column;
        gap: 30px;
        margin-top: 40px;
        padding: 0 20px;
    }
    
    #textodescr {
        font-size: 16px;
        text-align: center;
    }

    #textodescr h2 {
        font-size: 24px;
    }

    #vejamais {
        width: 130px;
        height: 38px;
        font-size: 15px;
        margin-top: 10px;
    }

    #divisoria {
        margin-top: 30px;
        margin-bottom: -10px;
    }

.video-wrapper-home {
    width: 100%;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    flex-shrink: 0;
}

.video-container-vertical {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 177.77%;
    overflow: hidden;
    background-color: #000;
    border-radius: 8px;
}

.video-container-vertical iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 768px) {
    .video-wrapper-home {
        max-width: 400px;
    }
}
/* --- GRID DAS 3 CAMISETAS NA HOME --- */
.grid-3-camisetas {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.produto-item-home {
    width: 30%; /* Divide a tela em 3 */
    min-width: 280px; 
    text-align: left;
    background-color: #ffffff; 
    padding: 15px; 
    border: 1px solid #eee;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.produto-item-home a {
    text-decoration: none;
    color: inherit;
}

.produto-item-home:hover {
    box-shadow: 0 6px 15px rgba(0,0,0,0.15); 
    transform: translateY(-5px); 
}

.produto-imagem-home {
    background-color: #f7f7f7;
    height: 350px; /* Trava a altura para todas ficarem iguais */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.produto-imagem-home img {
    width: 100%;
    height: 100%;
    object-fit: contain; 
    padding: 0px; 
    transform: scale(1.3); 
    transition: transform 0.3s ease;
}

/* No celular, uma embaixo da outra */
@media (max-width: 768px) {
    .produto-item-home {
        width: 100%; 
    }
}