

.conteudo {
    display: flex;    
    justify-content: space-around;         
}

.conteudo__fotos {
    width: 38%;            
}

.conteudo__fotos_principal {
    border-radius: 10px;
    cursor: pointer;
    margin-bottom: 1rem;
    width: 100%;
}

.conteudo__fotos_secundarias {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.conteudo__fotos_secundaria {
    cursor: pointer;      
    height: 7rem;
    width: 7rem;
}

.conteudo__info {
    width: 38%;
}

.conteudo__info_loja {
    text-transform: uppercase;
    color: hsl(26, 100%, 55%);
    font-size: 0.75rem;
    letter-spacing: 2px;
}

.conteudo__info_titulo {
    color: hsl(0, 0%, 0%);
    font-weight: 700;
    font-size: 4rem;
}
.conteudo__info_descricao {
    font-size: 1rem;
    color: hsl(219, 9%, 45%)
}

.conteudo__info_preco {
    display: flex;
    align-items: center;    
}

.conteudo__info_preco_atual {
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 1rem;
}

.conteudo_info_preco_desconto {
    align-items: center;
    background-color: hsl(26, 100%, 95%);
    border-radius: 5px;    
    color: hsl(26, 100%, 55%);    
    display: flex;
    font-weight: 700;
    font-size: 1rem;           
    height: 1.5rem;
    justify-content: center;
    width: 3rem;    
}

.conteudo__info_preco_antigo {
    color: hsl(220, 14%, 75%);
    text-decoration: line-through;
    font-weight: 700;    
}

.conteudo__info_botoes {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
}

.conteudo__info_botoes {        
    height: 3rem;
}

.conteudo__info_botoes_add {
    align-items: center;    
    display: flex;    
    justify-content: center; 
    width: 70%;
    height: 100%;    
}

.conteudo__info_botoes_add img {
    margin-right: 1rem;    
}

.conteudo__info_botoes_qtd {
    align-items: center;
    background-color: hsl(223, 64%, 98%);
    display: flex;
    height: 100%;
    justify-content: space-around;
    width: 20%;
}

.conteudo__fotos_secundaria img {
    border-radius: 10px;
    height: 100%;
    width: 100%;
}

.conteudo__info_botoes_qtd img {
    cursor: pointer;
}

.conteudo__fotos_container {
    align-items: center;    
    display: flex;
    clear: right;
    flex-direction: row;
}

.conteudo__fotos_seta {    
    display: none;        
}

@media screen and (max-width: 900px) {
    .conteudo {
        width: 100%;
        flex-direction: column;        ;
    }    

    .conteudo__fotos {
        width: 100%;        
    }    

    .conteudo__fotos_principal {
        width: 100%;
        border-radius: 0px;
        margin-bottom: 0;
    }    

    .conteudo__fotos_secundarias {
        display: none;
    }

    .conteudo__info {
        width: 100%;
        padding: 1rem;
    }

    .conteudo__info_titulo {
        font-size: 2rem;
    }

    .conteudo__info_loja {
        margin-bottom: 1rem;        
    }

    .conteudo__info_precos {
        align-items: center;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .conteudo__info_botoes {
        flex-wrap: wrap;
    }

    .conteudo__info_botoes_qtd {
        width: 100%;
        margin-bottom: 1rem;
    }

    .conteudo__info_botoes_add {
        width: 100%;        
    }
    
    .conteudo__fotos_seta {
        align-items: center;
        background-color: white;
        border-radius: 100%;
        cursor: pointer;
        display: flex;    
        height: 3rem;    
        justify-content: center;
        position: absolute;    
        width: 3rem;    
    }

    .conteudo__fotos_seta--direita {
        right: 10px;
    }

    .conteudo__fotos_seta--esquerda {
        left: 10px;
    }
   
}